/* Healthy Section / Offer Panel Styles */
.healthy-section {
    padding: 30px 0;
}

.product-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    height: auto;
    /* Allow image to dictate height */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Helper for Discount Panel Banners */
.discount-banner {
    width: 100%;
    height: 100%;
    /* Fill the product-wrapper container */
    object-fit: cover;
    /* Maintain aspect ratio within the container */
    display: block;
}

.brand-logo-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    border-color: #1500DD;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Logos should not be cropped */
}


.product-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Specific Wrapper Styles */
.wrapper-one,
.wrapper-two,
.wrapper-three {
    background-color: transparent;
}

/* Info & Text */
.wrapper-info {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.wrapper-details {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

h2.wrapper-details {
    font-size: 24px;
}

h4.wrapper-details {
    font-size: 20px;
}

/* Image Positioning */
.wrapper-img {
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.wrapper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-wrapper:hover .wrapper-img img {
    transform: scale(1.05);
}

/* Wrapper-Specific Layout Adjustments to match snippet intention */
/* Wrapper-Specific Layout Adjustments */
.wrapper-one,
.wrapper-two,
.wrapper-three {
    display: block;
    padding: 0 !important;
}

/* Shop Button */
.shop-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 30px;
}

.shop-btn:hover {
    background: #fff;
    color: #000;
}

.shop-btn span {
    margin-left: 8px;
    display: inline-block;
}

.shop-btn svg {
    fill: currentColor;
    /* Simulate Arrow */
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"/></svg>');
    height: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .gy-4 {
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 767px) {
    .product-wrapper {
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .wrapper-img {
        width: 120px;
        order: 2;
    }

    .wrapper-info {
        flex: 1;
        margin-bottom: 0;
        padding-right: 15px;
    }

    .wrapper-two {
        flex-direction: row;
        /* reset for mobile to look consistent? */
    }
}

/* Force Carousel Arrows visibility for Brand Panel */
.healthy-section .nav_style5.owl-theme .owl-nav .owl-prev {
    left: 10px;
    opacity: 1;
}

.healthy-section .nav_style5.owl-theme .owl-nav .owl-next {
    right: 10px;
    opacity: 1;
}

.healthy-section .nav_style5.owl-theme .owl-nav [class*="owl-"] {
    background-color: #fff;
    color: #1500DD;
}

.healthy-section .nav_style5.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: #1500DD;
    color: #fff;
}