/* Global Wrapper Variables */
.elementor-widget-woo_product_section_db8be76b {
    --woo-gap: 20px;
    --woo-cols: 4;
}

/* Grid Layout */
.woo-prod-grid-db8be76b {
    display: grid;
    grid-template-columns: repeat(var(--woo-cols), 1fr);
    gap: var(--woo-gap);
}

/* Carousel Layout Overrides */
.woo-prod-carousel-db8be76b {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.woo-prod-inner-db8be76b {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Image Wrapping */
.woo-prod-img-wrap-db8be76b {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1/1; /* Default, overridden by settings */
    overflow: hidden;
    background: #f5f5f5;
}

.woo-prod-img-wrap-db8be76b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Sale Badge */
.woo-prod-badge-db8be76b {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hover Effects */
.woo-prod-img-wrap-db8be76b.hover-zoom:hover img.main-img {
    transform: scale(1.08);
}

.woo-prod-img-wrap-db8be76b.hover-second-img img.second-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.woo-prod-img-wrap-db8be76b.hover-second-img:hover img.main-img {
    opacity: 0;
}

.woo-prod-img-wrap-db8be76b.hover-second-img:hover img.second-img {
    opacity: 1;
}

/* Content Area */
.woo-prod-content-db8be76b {
    padding: 15px 0;
    text-align: center;
}

.woo-prod-title-db8be76b {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 500;
}

.woo-prod-title-db8be76b a {
    color: inherit;
    text-decoration: none;
}

.woo-prod-price-db8be76b {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

/* Add to Cart Button */
.woo-prod-cart-db8be76b a.button {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.woo-prod-cart-db8be76b a.button:hover {
    background: #333;
}
