/* Card Container */
.dz-product-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    display: flex !important;
    flex-direction: column !important; /* Forces vertical stack */
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Image Box - Isko block rakha hai taake text neeche hi rahay */
.dz-img-box {
    width: 100%;
    height: 180px; /* Mobile ke liye best height */
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
}

.dz-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: static !important; /* Theme ki absolute position ko khatam karne ke liye */
}

/* Product Title */
.dz-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    color: #222;
    display: block !important;
    position: static !important;
    width: 100%;
}

/* Price Section */
.dz-price {
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: auto; /* Push button to the very bottom */
    display: block !important;
    position: static !important;
}

/* Button */
.dz-buy-btn {
    display: block;
    width: 100%;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    position: static !important;
}

/* Swiper Mobile Specific */
@media (max-width: 768px) {
    .dz-img-box {
        height: 150px; /* Mobile par image thodi choti taake text nazar aaye */
    }
}