/* Sticky Image Wrapper (Global) */
.sticky-img-wrapper {
    position: relative !important;
    z-index: 10;
}

/* Product Details Contact Form Styles */
.section.contact-background {
    background: url('../../media/contact_form_bg.png') no-repeat center center !important;
    background-size: cover !important;
}

/* Apply premium styling to this form too */
.contact-us-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-us-form label {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.contact-us-form .form-control {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s;
    outline: none;
    background: #fff;
    margin-bottom: 20px;
}

.contact-us-form .form-control:focus {
    border-color: #2a4e21;
    box-shadow: 0 0 0 4px rgba(42, 78, 33, 0.1);
}

.contact-us-form button,
.contact-us-form input[type="submit"] {
    background: #2a4e21 !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-us-form button:hover,
.contact-us-form input[type="submit"]:hover {
    background: #F26522 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
}

/* Responsive sticky wrapper for LG screens and above */
.sticky-img-wrapper-lg {
    position: relative !important;
}

/* Cool Image Effect for About Section */
.cool-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.cool-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.cool-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(42, 78, 33, 0.4);
}

.cool-image {
    transition: transform 0.7s ease;
    border-radius: 15px;
    display: block;
    width: 100%;
}

.cool-image-wrapper:hover .cool-image {
    transform: scale(1.06);
}

>

/* Fade Overlay Animation for Category Cards */
.fade-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.fade-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.fade-card-front {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.fade-card:hover .fade-card-front {
    transform: scale(1.05);
}

.fade-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 78, 33, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px;
}

.fade-card:hover .fade-card-back {
    opacity: 1;
}

.fade-title {
    color: white !important;
    font-size: 26px !important;
    font-weight: 700;
    margin-top: 15px;
    text-transform: capitalize;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.fade-card:hover .fade-title {
    transform: translateY(0);
}




/* Premium Product Details Form */
.block-content form.contact-form {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-top: none !important;
    margin-top: 20px !important;
}

.block-content form.contact-form .form-control {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.block-content form.contact-form .form-control:focus {
    border-color: #2a4e21;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(42, 78, 33, 0.1);
    outline: none;
}

.block-content form.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.block-content form.contact-form input.button {
    background: #d35400;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.block-content form.contact-form input.button:hover {
    background: #2a4e21;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 78, 33, 0.3);
}


/* Premium Benefits Table */
.premium-benefits-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.premium-benefits-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 16px;
}

.premium-benefits-table tr:last-child td {
    border-bottom: none;
}

.premium-benefits-table tr:nth-child(even) {
    background-color: rgba(42, 78, 33, 0.03);
    /* Very light green */
}

.premium-benefits-table td:first-child {
    color: #2a4e21;
    /* Dark green for the label */
    font-weight: 700 !important;
    border-right: 2px dashed rgba(211, 84, 0, 0.4);
    /* Orange dashed separator */
    background-color: rgba(42, 78, 33, 0.05);
    /* Slightly darker green bg for label */
}

.premium-benefits-table tr:hover td {
    background-color: rgba(211, 84, 0, 0.08);
    /* Light orange on hover */
    transition: background-color 0.3s ease;
}


/* Product Details Images Styling */
.scroll-image.main-image {
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    background: #fff;
}

.img-thumbnail-scroll img {
    border-radius: 8px;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    padding: 2px;
}

.img-item.slick-current .img-thumbnail-scroll img,
.img-thumbnail-scroll img:hover {
    border: 2px solid #d35400;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.2);
}


html,
body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
}

.page-wrapper {
    overflow-x: clip !important;
    width: 100%;
    max-width: 100%;
}

/* Fix horizontal scroll globally caused by Bootstrap rows */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.container,
.container-fluid {
    overflow-x: clip !important;
}

/* Ensure parents of product-details image column allow sticky scrolling */
.site-content,
.shop-details,
.product-top-info,
.product-top-info .section-padding,
.product-top-info .section-container,
.product-top-info .row {
    overflow: visible !important;
}

/* Product Details Sticky Left Column (Desktop Only) */
@media (min-width: 992px) {
    .sticky-product-images,
    .product-images {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 120px !important;
        align-self: flex-start !important;
        z-index: 10 !important;
    }
}

@media (max-width: 991px) {
    .sticky-product-images,
    .product-images {
        position: static !important;
        top: auto !important;
    }
}