    .product-image-container {
        position: relative;
        width: 100%;
        padding-bottom: 100%; /* Creates a square aspect ratio */
        overflow: hidden;
        margin-bottom: 10px;
    }

    .product-image-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: contain; /* This ensures the image maintains its aspect ratio */
        transition: transform 0.5s cubic-bezier(.23,1.02,.64,1), box-shadow 0.4s cubic-bezier(.23,1.02,.64,1);
        box-shadow: 0 0 0 rgba(0,0,0,0);
        z-index: 1;
    }

    .product-image-container:hover img,
    .product-image-container:focus img {
        transform: translate(-50%, -50%) scale(1.08) rotate(-7deg);
        box-shadow: 0 12px 32px 0 rgba(44, 62, 80, 0.18), 0 2px 8px 0 rgba(44, 62, 80, 0.10);
        filter: brightness(1.08) drop-shadow(0 0 12px #bfae82cc);
    }

    .btn-view-purchase {
        background-color: #28a745;
        border-color: #28a745;
        color: white;
    }

    .btn-view-purchase:hover {
        background-color: #218838;
        border-color: #1e7e34;
        color: white;
    }

    /* Modern Section Titles - Enhanced */
    .modern-section-title {
        background: linear-gradient(135deg, #8DC63F 0%, #808285 50%, #8DC63F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 28px;
        font-weight: 800;
        text-shadow: 0 4px 8px rgba(0,0,0,0.15);
        position: relative;
        display: inline-block;
        letter-spacing: 0.5px;
        animation: titleGlow 3s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
        0% {
            filter: brightness(1) drop-shadow(0 0 5px rgba(141, 198, 63, 0.3));
        }
        100% {
            filter: brightness(1.1) drop-shadow(0 0 15px rgba(141, 198, 63, 0.6));
        }
    }

    .modern-section-title::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #8DC63F 0%, #808285 50%, #8DC63F 100%);
        border-radius: 4px;
        opacity: 0.9;
        box-shadow: 0 2px 8px rgba(141, 198, 63, 0.4);
    }

    .modern-section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #8DC63F, transparent);
        border-radius: 2px;
        opacity: 0.6;
    }

    .modern-section-title i {
        background: linear-gradient(135deg, #8DC63F 0%, #808285 50%, #8DC63F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }

    /* View All Button - Enhanced */
    .btn-view-all {
        background: linear-gradient(135deg, #808285 0%, #8DC63F 50%, #808285 100%);
        border: none;
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 6px 20px rgba(141, 198, 63, 0.4);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .btn-view-all::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }

    .btn-view-all::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }

    .btn-view-all:hover {
        background: linear-gradient(135deg, #8DC63F 0%, #808285 50%, #8DC63F 100%);
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 30px rgba(141, 198, 63, 0.6);
        color: white;
        text-decoration: none;
    }

    .btn-view-all:hover::before {
        left: 100%;
    }

    .btn-view-all:hover::after {
        width: 300px;
        height: 300px;
    }

    .btn-view-all i {
        transition: all 0.4s ease;
        display: inline-block;
    }

    .btn-view-all:hover i {
        transform: translateX(-5px) rotate(-10deg);
    }

    .btn-view-all span {
        position: relative;
        z-index: 2;
    }

    /* Top category cards */
    .top-categories-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .top-category-card {
        --card-shadow: rgba(0, 0, 0, 0.35);
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        padding: 18px 18px 16px;
        min-height: 190px;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none;
        box-shadow: 0 20px 36px -18px var(--card-shadow);
        transform: translateY(0) scale(1);
        transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
        isolation: isolate;
    }

    .top-category-card::before {
        content: "";
        position: absolute;
        inset: -120% -35%;
        background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .3) 50%, transparent 62%);
        transform: translateX(-75%) rotate(8deg);
        transition: transform .85s cubic-bezier(.2, .7, .2, 1);
        z-index: 0;
    }

    .top-category-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(110% 90% at 100% 0%, rgba(255, 255, 255, .28), transparent 56%),
                    radial-gradient(90% 80% at 0% 100%, rgba(255, 255, 255, .18), transparent 58%);
        z-index: 0;
        pointer-events: none;
    }

    .top-category-content,
    .top-category-action {
        position: relative;
        z-index: 1;
    }

    .top-category-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .top-category-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .2);
        border: 1px solid rgba(255, 255, 255, .3);
        font-size: 21px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
        animation: iconBob 2.8s ease-in-out infinite;
    }

    .top-category-title {
        margin: 0;
        font-size: 20px;
        font-weight: 900;
        line-height: 1.3;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
    }

    .top-category-desc {
        margin: 0;
        font-size: 13px;
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
        min-height: 44px;
    }

    .top-category-action {
        margin-top: 10px;
    }

    .top-category-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        padding: 9px 16px;
        background: rgba(255, 255, 255, .16);
        border: 1px solid rgba(255, 255, 255, .42);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
        backdrop-filter: blur(6px);
        transition: transform .28s ease, background .28s ease, border-color .28s ease;
    }

    .top-category-btn i {
        font-size: 12px;
        transition: transform .25s ease;
    }

    .top-category-card:hover {
        transform: translateY(-8px) scale(1.015);
        box-shadow: 0 28px 48px -18px var(--card-shadow);
        text-decoration: none;
        color: #fff;
    }

    .top-category-card:hover::before {
        transform: translateX(62%) rotate(8deg);
    }

    .top-category-card:hover .top-category-btn {
        background: rgba(255, 255, 255, .24);
        border-color: rgba(255, 255, 255, .62);
        transform: translateX(-3px);
        color: #fff;
        text-decoration: none;
    }

    .top-category-card:hover .top-category-btn i {
        transform: translateX(-4px);
    }

    .card-kiacoffee {
        --card-shadow: rgba(89, 148, 26, .55);
        background: linear-gradient(135deg, #8dc63f 0%, #6bb224 48%, #4f8f14 100%);
    }

    .card-kiatajhiz {
        --card-shadow: rgba(13, 24, 42, .62);
        background: linear-gradient(135deg, #324764 0%, #223247 48%, #111d2e 100%);
    }

    .card-kiacut {
        --card-shadow: rgba(108, 45, 122, .62);
        background: linear-gradient(135deg, #7f3f8f 0%, #5d2d79 48%, #3f1f5f 100%);
    }

    @keyframes iconBob {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-3px); }
    }

    @media (max-width: 992px) {
        .top-categories-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }
    }

    @media (max-width: 768px) {
        .top-categories-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 6px;
            margin-top: 14px;
            margin-bottom: 6px;
        }

        .top-category-card {
            min-height: 0;
            padding: 10px 6px 8px;
            border-radius: 12px;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
        }

        .top-category-card:hover {
            transform: translateY(-3px) scale(1.02);
        }

        .top-category-content {
            flex: 1;
            width: 100%;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            min-width: 0;
        }

        .top-category-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            font-size: 15px;
            flex-shrink: 0;
            margin: 0;
        }

        .top-category-title {
            font-size: 11px;
            line-height: 1.35;
            font-weight: 800;
        }

        .top-category-desc {
            display: none;
        }

        .top-category-action {
            margin-top: 0;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .top-category-btn {
            padding: 6px;
            font-size: 0;
            line-height: 1;
            width: 28px;
            height: 28px;
            justify-content: center;
            border-radius: 50%;
        }

        .top-category-btn i {
            font-size: 10px;
            margin: 0;
        }
    }

    @media (max-width: 400px) {
        .top-categories-grid {
            gap: 5px;
        }

        .top-category-card {
            padding: 8px 4px 7px;
            border-radius: 10px;
        }

        .top-category-icon {
            width: 30px;
            height: 30px;
            font-size: 13px;
            border-radius: 8px;
        }

        .top-category-title {
            font-size: 10px;
        }

        .top-category-btn {
            width: 24px;
            height: 24px;
            padding: 5px;
        }

        .top-category-btn i {
            font-size: 9px;
        }
    }

    /* Quick categories (modern icon boxes) */
    .quick-categories-wrap {
        margin-top: 34px;
        margin-bottom: 6px;
    }

    .quick-categories-grid {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 12px;
    }

    .quick-category-card {
        --quick-accent: #6bb224;
        background: linear-gradient(165deg, #ffffff 0%, #f7f9fc 100%);
        border: 1px solid rgba(137, 150, 171, .22);
        border-radius: 16px;
        min-height: 122px;
        padding: 12px 8px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        color: #1f2937;
        box-shadow: 0 10px 22px -16px rgba(15, 23, 42, .45);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease, border-color .28s ease;
    }

    .quick-category-card::before {
        content: "";
        position: absolute;
        inset: -110% -35%;
        background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, .9) 50%, transparent 62%);
        transform: translateX(-80%) rotate(9deg);
        transition: transform .85s cubic-bezier(.2, .7, .2, 1);
        z-index: 0;
    }

    .quick-category-card::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--quick-accent) 50%, transparent 100%);
        opacity: .8;
        z-index: 0;
    }

    .quick-category-icon,
    .quick-category-title {
        position: relative;
        z-index: 1;
    }

    .quick-category-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(140deg, color-mix(in srgb, var(--quick-accent) 18%, #fff), color-mix(in srgb, var(--quick-accent) 5%, #fff));
        color: color-mix(in srgb, var(--quick-accent) 75%, #152238);
        border: 1px solid color-mix(in srgb, var(--quick-accent) 28%, #e2e8f0);
        box-shadow: 0 8px 18px -10px color-mix(in srgb, var(--quick-accent) 45%, #0f172a);
        font-size: 20px;
        transition: transform .3s ease, box-shadow .3s ease;
        animation: quickIconPulse 3.2s ease-in-out infinite;
    }

    .quick-category-title {
        font-size: 12px;
        line-height: 1.5;
        font-weight: 800;
        color: #243142;
        text-align: center;
    }

    .quick-category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 30px -20px rgba(15, 23, 42, .55);
        border-color: color-mix(in srgb, var(--quick-accent) 46%, #d1d5db);
        text-decoration: none;
        color: #1f2937;
    }

    .quick-category-card:hover::before {
        transform: translateX(62%) rotate(9deg);
    }

    .quick-category-card:hover .quick-category-icon {
        transform: scale(1.08) rotate(-6deg);
        box-shadow: 0 14px 22px -14px color-mix(in srgb, var(--quick-accent) 62%, #0f172a);
    }

    .quick-accent-powder { --quick-accent: #4f46e5; }
    .quick-accent-coffee { --quick-accent: #7c3f00; }
    .quick-accent-topping { --quick-accent: #ef4444; }
    .quick-accent-syrup { --quick-accent: #8b5cf6; }
    .quick-accent-tea { --quick-accent: #059669; }
    .quick-accent-apron { --quick-accent: #0ea5e9; }
    .quick-accent-hat { --quick-accent: #f59e0b; }
    .quick-accent-chef { --quick-accent: #ec4899; }

    @keyframes quickIconPulse {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-2px); }
    }

    @media (max-width: 1200px) {
        .quick-categories-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }

    @media (max-width: 768px) {
        .quick-categories-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
        .quick-category-card {
            min-height: 108px;
            padding: 10px 8px;
        }
        .quick-category-icon {
            width: 42px;
            height: 42px;
            font-size: 18px;
        }
    }

    /* Spotlight category cards */
    .banner-ads {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .spotlight-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .spotlight-card {
        --spot-accent: #d4b896;
        --spot-glow: rgba(212, 184, 150, .28);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 210px;
        padding: 22px 20px 20px;
        border-radius: 20px;
        text-decoration: none !important;
        color: #f8fafc;
        overflow: hidden;
        isolation: isolate;
        background:
            radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, .07), transparent 55%),
            linear-gradient(165deg, #0c1529 0%, #152240 42%, #101b34 100%);
        border: 1px solid rgba(255, 255, 255, .09);
        box-shadow: 0 16px 36px -22px rgba(8, 13, 30, .75);
        transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease, border-color .35s ease;
    }

    .spotlight-card__glow {
        position: absolute;
        width: 160px;
        height: 160px;
        top: -50px;
        left: -40px;
        border-radius: 50%;
        background: var(--spot-glow);
        filter: blur(36px);
        opacity: .55;
        transition: opacity .45s ease, transform .45s ease;
        pointer-events: none;
        z-index: 0;
    }

    .spotlight-card__watermark {
        position: absolute;
        top: 14px;
        left: 14px;
        font-size: 56px;
        line-height: 1;
        color: rgba(255, 255, 255, .05);
        transition: transform .5s ease, color .35s ease;
        pointer-events: none;
        z-index: 0;
    }

    .spotlight-card__shine {
        position: absolute;
        inset: 0;
        background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .09) 50%, transparent 58%);
        transform: translateX(-120%);
        transition: transform .75s cubic-bezier(.22, 1, .36, 1);
        pointer-events: none;
        z-index: 2;
    }

    .spotlight-card__bar {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--spot-accent), transparent);
        transform: scaleX(.22);
        transform-origin: right center;
        transition: transform .5s cubic-bezier(.22, 1, .36, 1);
        z-index: 3;
    }

    .spotlight-card__content {
        position: relative;
        z-index: 1;
    }

    .spotlight-card__tag {
        display: inline-flex;
        align-items: center;
        margin-bottom: 10px;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .1);
        color: rgba(226, 232, 240, .82);
        font-size: 11px;
        font-weight: 700;
    }

    .spotlight-card__title {
        margin: 0 0 14px;
        font-size: clamp(1.25rem, 1.8vw, 1.55rem);
        font-weight: 900;
        color: #fff;
        line-height: 1.15;
        letter-spacing: -.4px;
    }

    .spotlight-card__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        color: var(--spot-accent);
        font-size: 12px;
        font-weight: 800;
        transition: background .35s ease, border-color .35s ease, color .35s ease, gap .35s ease, transform .35s ease;
    }

    .spotlight-card__link i {
        font-size: 10px;
        transition: transform .35s ease;
    }

    .spotlight-card--coffee { --spot-accent: #e8c49a; --spot-glow: rgba(232, 196, 154, .32); }
    .spotlight-card--hotchoc { --spot-accent: #f0b27a; --spot-glow: rgba(240, 178, 122, .3); }
    .spotlight-card--syrup { --spot-accent: #c4b5fd; --spot-glow: rgba(196, 181, 253, .28); }
    .spotlight-card--masala { --spot-accent: #86efac; --spot-glow: rgba(134, 239, 172, .26); }

    .spotlight-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, .16);
        box-shadow:
            0 26px 50px -20px rgba(8, 13, 30, .85),
            0 0 0 1px rgba(255, 255, 255, .05);
    }

    .spotlight-card:hover .spotlight-card__bar {
        transform: scaleX(1);
    }

    .spotlight-card:hover .spotlight-card__shine {
        transform: translateX(120%);
    }

    .spotlight-card:hover .spotlight-card__glow {
        opacity: .9;
        transform: scale(1.15);
    }

    .spotlight-card:hover .spotlight-card__watermark {
        transform: scale(1.08) rotate(-6deg);
        color: rgba(255, 255, 255, .08);
    }

    .spotlight-card:hover .spotlight-card__link {
        background: var(--spot-accent);
        border-color: var(--spot-accent);
        color: #0f172a;
        gap: 11px;
    }

    .spotlight-card:hover .spotlight-card__link i {
        transform: translateX(-3px);
    }

    @media (max-width: 991.98px) {
        .spotlight-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .spotlight-card {
            min-height: 188px;
            padding: 18px 16px 16px;
        }

        .spotlight-card__watermark {
            font-size: 46px;
        }
    }

    @media (max-width: 575.98px) {
        .spotlight-card {
            min-height: 170px;
        }

        .spotlight-card__title {
            font-size: 1.1rem;
        }
    }

    /* Product widgets/cards - modern unified look */
    .widget.widget-product.card.border_all.bglight {
        border: 1px solid rgba(148, 163, 184, .24) !important;
        border-radius: 24px !important;
        background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
        box-shadow: 0 18px 42px -26px rgba(15, 23, 42, .45);
        overflow: hidden;
        position: relative;
    }

    .widget.widget-product.card.border_all.bglight::before {
        content: "";
        position: absolute;
        inset: -120% -30%;
        background: linear-gradient(125deg, transparent 42%, rgba(255, 255, 255, .72) 50%, transparent 58%);
        transform: translateX(-70%) rotate(8deg);
        transition: transform 1s cubic-bezier(.2, .7, .2, 1);
        pointer-events: none;
        z-index: 0;
    }

    .widget.widget-product.card.border_all.bglight:hover::before {
        transform: translateX(58%) rotate(8deg);
    }

    .widget.widget-product.card.border_all.bglight > * {
        position: relative;
        z-index: 1;
    }

    .widget.widget-product.card.border_all.bglight .card-header {
        background: linear-gradient(180deg, rgba(248, 250, 252, .98) 0%, rgba(255, 255, 255, .9) 100%);
        border-bottom: 1px solid rgba(148, 163, 184, .16);
        padding: 18px 18px 14px;
        margin-bottom: 10px;
    }

    .widget.widget-product.card.border_all.bglight .product-carousel {
        padding: 4px 8px 16px;
    }

    .widget.widget-product.card.border_all.bglight .product-carousel .owl-item .item {
        background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%) !important;
        border: 1px solid rgba(203, 213, 225, .42);
        border-radius: 18px !important;
        padding: 14px 12px 12px;
        box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .45);
        transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .widget.widget-product.card.border_all.bglight .product-carousel .owl-item .item:hover {
        transform: translateY(-6px);
        border-color: rgba(141, 198, 63, .52);
        box-shadow: 0 22px 34px -22px rgba(15, 23, 42, .5);
    }

    .widget.widget-product.card.border_all.bglight .product-image-container {
        background: linear-gradient(150deg, #f8fafc 0%, #eef2f7 100%);
        border-radius: 14px;
        border: 1px solid rgba(148, 163, 184, .2);
        padding: 10px;
    }

    .widget.widget-product.card.border_all.bglight .product_title {
        margin: 12px 0 8px;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .widget.widget-product.card.border_all.bglight .product_title a {
        color: #1f2937;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.6;
        text-decoration: none;
        transition: color .22s ease;
    }

    .widget.widget-product.card.border_all.bglight .product_title a:hover {
        color: #5b8f15;
    }

    .widget.widget-product.card.border_all.bglight .price {
        margin-bottom: 10px;
        text-align: center;
    }

    .widget.widget-product.card.border_all.bglight .price ins {
        text-decoration: none;
    }

    .widget.widget-product.card.border_all.bglight .price ins span {
        color: #84b63a;
        font-size: 16px;
        font-weight: 900;
    }

    .widget.widget-product.card.border_all.bglight .price del span {
        color: #94a3b8;
        font-size: 12px;
    }

    .widget.widget-product.card.border_all.bglight .product-seller-details-item-grid {
        margin-top: auto;
    }

    .widget.widget-product.card.border_all.bglight .btn-main-masai {
        width: 100%;
        border-radius: 999px !important;
        border: 1px solid rgba(141, 198, 63, .45);
        background: linear-gradient(135deg, #8dc63f 0%, #6fb328 100%) !important;
        color: #fff !important;
        font-weight: 800;
        letter-spacing: .1px;
        padding: 10px 12px;
        box-shadow: 0 10px 20px -14px rgba(111, 179, 40, .8);
        transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
    }

    .widget.widget-product.card.border_all.bglight .btn-main-masai:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 24px -16px rgba(111, 179, 40, .9);
        filter: brightness(1.03);
    }

    .widget.widget-product.card.border_all.bglight .owl-carousel .owl-nav .owl-prev,
    .widget.widget-product.card.border_all.bglight .owl-carousel .owl-nav .owl-next {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, .3);
        background: #fff !important;
        box-shadow: 0 8px 16px -12px rgba(15, 23, 42, .55);
    }

    .widget.widget-product.card.border_all.bglight .owl-carousel .owl-nav .owl-prev i,
    .widget.widget-product.card.border_all.bglight .owl-carousel .owl-nav .owl-next i {
        color: #475569;
        font-size: 14px;
    }

    @media (max-width: 768px) {
        .widget.widget-product.card.border_all.bglight {
            border-radius: 18px !important;
        }

        .widget.widget-product.card.border_all.bglight .card-header {
            padding: 14px 12px 10px;
        }

        .widget.widget-product.card.border_all.bglight .product-carousel .owl-item .item {
            border-radius: 14px !important;
            padding: 10px 9px;
        }

        .widget.widget-product.card.border_all.bglight .product_title a {
            font-size: 12px;
        }

        .widget.widget-product.card.border_all.bglight .price ins span {
            font-size: 14px;
        }
    }

    /* Fix carousel layout regression */
    .widget.widget-product.card.border_all.bglight .product-carousel {
        padding: 0 !important;
    }

    .widget.widget-product.card.border_all.bglight .product-carousel .owl-stage-outer {
        padding: 4px 6px 14px;
    }

    .widget.widget-product.card.border_all.bglight .product-carousel .owl-item {
        display: block !important;
    }

    .widget.widget-product.card.border_all.bglight .product-carousel .owl-item .item {
        width: 100%;
        box-sizing: border-box;
    }

    .widget.widget-product.card.border_all.bglight .product-image-container {
        padding-bottom: 88%;
        margin-bottom: 8px;
    }

    .widget.widget-product.card.border_all.bglight .product-seller-details-item-grid .btn-main-masai {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .modern-section-title {
            font-size: 22px;
            letter-spacing: 0.3px;
        }
        
        .modern-section-title::before {
            height: 3px;
            bottom: -6px;
        }
        
        .modern-section-title::after {
            height: 1.5px;
            bottom: -10px;
        }
        
        .btn-view-all {
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 25px;
        }
        
        .card-header.d-flex {
            flex-direction: row !important;
            align-items: flex-start !important;
            justify-content: space-between !important;
            gap: 8px;
        }
        
        .card-header.d-flex .card-title {
            margin-bottom: 0 !important;
            padding: 0 !important;
            flex: 1;
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .card-header.d-flex .card-title .modern-section-title {
            display: inline-flex;
            align-items: center;
            padding: 0 !important;
            margin: 0 !important;
            line-height: 1.2;
        }
        
        .card-header.d-flex .btn-view-all {
            margin-top: 0 !important;
            margin-bottom: 0 !important;
            padding: 5px 10px !important;
            font-size: 11px !important;
            white-space: nowrap !important;
            flex-shrink: 0;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            height: auto;
            line-height: 1.2;
        }
    }

    @media (max-width: 480px) {
        .modern-section-title {
            font-size: 20px;
        }
        
        /* Ensure card headers with buttons are aligned in mobile */
        .card-header.d-flex {
            flex-direction: row !important;
            align-items: flex-start !important;
            justify-content: space-between !important;
            gap: 8px;
        }
        
        .card-header.d-flex .card-title {
            margin-bottom: 0 !important;
            padding: 0 !important;
            flex: 1;
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .card-header.d-flex .card-title .modern-section-title {
            display: inline-flex;
            align-items: center;
            padding: 0 !important;
            margin: 0 !important;
            line-height: 1.2;
        }
        
        .card-header.d-flex .btn-view-all {
            margin-top: 0 !important;
            margin-bottom: 0 !important;
            padding: 5px 10px !important;
            font-size: 11px !important;
            white-space: nowrap !important;
            flex-shrink: 0;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            height: auto;
            line-height: 1.2;
        }
        
        /* General button styles */
        .btn-view-all {
            padding: 5px 10px;
            font-size: 11px;
        }
    }

    /* Time-Limited Discounts Section Styles */
    .time-limited-discounts-section {
        position: relative;
        overflow: hidden;
    }

    .time-limited-discounts-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .time-limited-discounts-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        z-index: 0;
    }

    .time-limited-discounts-section .widget {
        position: relative;
        z-index: 1;
    }

    .time-limited-products-carousel {
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    @media (min-width: 992px) {
        .time-limited-products-carousel {
            padding: 0 20px;
        }
    }

    @media (max-width: 480px) {
        .time-limited-products-carousel {
            padding: 0;
        }
    }

    @media (max-width: 768px) {
        .time-limited-discounts-section {
            padding: 30px 0 !important;
        }

        .time-limited-products-carousel {
            padding: 0;
        }

        .time-limited-discounts-section .card-title span {
            font-size: 22px !important;
        }
    }

    @media (max-width: 480px) {
        .time-limited-discounts-section {
            padding: 20px 0 !important;
        }

        .time-limited-discounts-section .card-title span {
            font-size: 18px !important;
        }

        .time-limited-discounts-section-wrapper .card-header {
            padding-bottom: 15px !important;
            align-items: flex-start !important;
            gap: 8px !important;
            flex-direction: row !important;
            justify-content: space-between !important;
            margin-bottom: 0 !important;
        }

        .time-limited-discounts-section-wrapper .card-title {
            margin-bottom: 0 !important;
            padding: 0 !important;
            flex: 1;
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .time-limited-discounts-section-wrapper .card-title span {
            font-size: 18px !important;
            line-height: 1.2;
            display: inline-flex;
            align-items: center;
            padding: 0 !important;
            margin: 0 !important;
        }

        .time-limited-discounts-section-wrapper .btn-view-all {
            padding: 5px 10px !important;
            font-size: 11px !important;
            margin: 0 !important;
            margin-top: 0 !important;
            margin-bottom: 0 !important;
            white-space: nowrap !important;
            flex-shrink: 0;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            height: auto;
            line-height: 1.2;
        }

    }

    /* Modern Discount Product Cards */
    .time-limited-discounts-section-wrapper {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .time-limited-discounts-section-wrapper .widget {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .time-limited-discounts-section-wrapper .product-carousel {
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    /* Style for "View All" button in time-limited discounts section */
    .time-limited-discounts-section-wrapper .btn-view-all {
        background: rgba(255, 255, 255, 0.25) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        color: white !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .time-limited-discounts-section-wrapper .btn-view-all:hover {
        background: rgba(255, 255, 255, 0.4) !important;
        border-color: rgba(255, 255, 255, 0.7) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .modern-discount-product-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none !important;
        height: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        isolation: isolate;
        box-sizing: border-box;
        width: 100%;
    }

    /* Desktop only - wider cards */
    @media (min-width: 768px) {
        .modern-discount-product-card {
            width: calc(100% + 25px);
            min-width: calc(100% + 25px);
        }
    }

    /* Remove owl-carousel default borders and shadows */
    .time-limited-products-carousel {
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    /* Desktop only - allow overflow for hover effects */
    @media (min-width: 768px) {
        .time-limited-products-carousel {
            overflow: visible !important;
        }
        
        .time-limited-products-carousel .owl-carousel {
            overflow: visible !important;
        }
    }

    .time-limited-products-carousel .owl-stage-outer {
        position: relative;
        z-index: 1;
        overflow: hidden !important;
        padding: 0;
        margin: 0;
    }

    .time-limited-products-carousel .owl-stage {
        position: relative;
        z-index: 1;
        display: flex !important;
    }

    .time-limited-products-carousel .owl-item {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        position: relative;
        z-index: 1 !important;
        box-sizing: border-box;
    }

    /* Desktop only - add margins between items */
    @media (min-width: 768px) {
        .time-limited-products-carousel .owl-item {
            margin-left: 20px !important;
            margin-right: 20px !important;
        }
    }

    .time-limited-products-carousel .owl-item .item {
        border: none !important;
        box-shadow: none !important;
        
        position: relative;
        z-index: 100;
    }

    .time-limited-products-carousel .owl-item:hover {
        z-index: 100 !important;
    }

    .time-limited-products-carousel .owl-item:hover .item {
        z-index: 100 !important;
    }

    /* Override default owl-carousel item styles */
    .time-limited-products-carousel .owl-stage .owl-item {
        border: none !important;
        background: transparent !important;
        position: relative;
        z-index: 1 !important;
        box-sizing: border-box !important;
    }

    .time-limited-products-carousel .owl-stage .owl-item:hover {
        z-index: 100 !important;
    }

    .modern-discount-product-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 71, 87, 0.25);
        border-color: rgba(255, 71, 87, 0.3);
        z-index: 100 !important;
        position: relative;
    }

    .modern-product-image-wrapper {
        position: relative;
        height: 240px;
        background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .modern-product-image {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modern-discount-product-card:hover .modern-product-image {
        transform: scale(1.1) rotate(2deg);
    }

    .modern-product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 71, 87, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .modern-discount-product-card:hover .modern-product-overlay {
        opacity: 1;
    }

    /* Modern Discount Badge */
    .modern-discount-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 20;
        background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
        border-radius: 50px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
        animation: pulse-badge 2s ease-in-out infinite;
    }

    @keyframes pulse-badge {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
        }
    }

    .modern-discount-percent {
        color: white;
        font-weight: 800;
        font-size: 16px;
        line-height: 1;
    }

    .modern-discount-text {
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        font-size: 11px;
        line-height: 1;
    }

    /* Modern Countdown Timer */
    .modern-countdown-wrapper {
        position: absolute;
        bottom: 12px;
        right: 12px;
        left: 12px;
        z-index: 20;
    }

    .modern-countdown-timer {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 8px;
        padding: 5px 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
        border: 1.5px solid rgba(255, 71, 87, 0.3);
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: nowrap;
    }

    .modern-countdown-icon {
        color: #ff4757;
        font-size: 10px;
        animation: rotate-clock 3s linear infinite;
        flex-shrink: 0;
    }

    @keyframes rotate-clock {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .modern-countdown-display {
        display: flex;
        align-items: center;
        gap: 3px;
        direction: ltr;
        flex: 1;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .modern-countdown-item {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .modern-countdown-value {
        background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
        color: white;
        font-weight: 800;
        font-size: 10px;
        padding: 2px 5px;
        border-radius: 4px;
        min-width: 18px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(255, 71, 87, 0.3);
        line-height: 1.1;
        white-space: nowrap;
    }

    .modern-countdown-separator {
        color: #ff4757;
        font-weight: 800;
        font-size: 10px;
        margin: 0 1px;
        animation: blink 1s ease-in-out infinite;
        line-height: 1;
        flex-shrink: 0;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    /* Modern Product Content */
    .modern-product-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        background: white;
    }

    .modern-product-title {
        margin: 0 0 12px 0;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        min-height: 21px;
        height: 21px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .modern-product-title a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .modern-product-title a:hover {
        color: #ff4757;
    }

    .modern-product-price-wrapper {
        margin-bottom: 16px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .modern-price-original {
        color: #999;
        font-size: 13px;
        text-decoration: line-through;
        font-weight: 500;
        text-align: center;
        width: 100%;
    }

    .modern-price-discounted {
        color: #ff4757;
        font-size: 17px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        width: 100%;
    }

    .modern-price-regular {
        color: #2c3e50;
        font-size: 17px;
        font-weight: 800;
        text-align: center;
        width: 100%;
    }

    .modern-price-discounted::before {
        content: '';
        width: 8px;
        height: 8px;
        background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
        border-radius: 50%;
        animation: pulse-dot 1.5s ease-in-out infinite;
    }

    @keyframes pulse-dot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.3); opacity: 0.7; }
    }

    /* Modern Add to Cart Button */
    .modern-add-to-cart-btn {
        background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
        color: white;
        border: none;
        border-radius: 12px;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
        margin-top: auto;
        position: relative;
        overflow: hidden;
    }

    .modern-add-to-cart-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .modern-add-to-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 71, 87, 0.5);
        color: white;
        text-decoration: none;
    }

    .modern-add-to-cart-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .modern-add-to-cart-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
    }

    .modern-add-to-cart-btn i {
        font-size: 16px;
        position: relative;
        z-index: 1;
    }

    .modern-add-to-cart-btn span {
        position: relative;
        z-index: 1;
    }

    /* ============================
       Home Hero Video Banner
       ============================ */
    .home-video-banner {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 60%),
                    linear-gradient(135deg, #2d3748 0%, #1a202c 60%, #111827 100%);
    }

    .home-video-wrapper {
        position: relative;
        background: #000;
    }

    .home-video {
        width: 100%;
        height: auto;
        display: block;
        max-height: 420px;
        object-fit: cover;
    }

    /* Main hero slider arrows on left/right sides */
    .slider_main .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        padding: 0 12px;
        margin: 0;
    }

    .slider_main .owl-nav button.owl-prev,
    .slider_main .owl-nav button.owl-next {
        pointer-events: auto;
        margin: 0;
        background: transparent !important;
    }

    .slider_main .owl-nav .prev-slide,
    .slider_main .owl-nav .next-slide {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        font-size: 16px;
        transition: all .2s ease;
    }

    .slider_main .owl-nav .prev-slide:hover,
    .slider_main .owl-nav .next-slide:hover {
        background: rgba(0, 0, 0, 0.65);
    }

    .home-video-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        background: radial-gradient(circle at center, rgba(0,0,0,0.25), transparent 60%);
        transition: opacity 0.4s ease;
    }

    .home-video-play-icon {
        width: 80px;
        height: 80px;
        border-radius: 999px;
        border: 2px solid rgba(255,255,255,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 60%),
                    rgba(0,0,0,0.55);
        pointer-events: auto;
        cursor: pointer;
        backdrop-filter: blur(8px);
        color: #ffffff;
        font-size: 28px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.45);
        animation: pulse-video 2s ease-in-out infinite;
    }

    @keyframes pulse-video {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.45);
        }
        50% {
            transform: scale(1.08);
            box-shadow: 0 14px 40px rgba(0,0,0,0.6);
        }
    }

    @media (max-width: 768px) {
        .home-video-banner {
            border-radius: 14px;
        }
        .home-video-play-icon {
            width: 60px;
            height: 60px;
            font-size: 22px;
        }
        .home-video {
            max-height: 320px;
        }
    }

    @media (max-width: 480px) {
        .home-video-play-icon {
            width: 52px;
            height: 52px;
            font-size: 20px;
        }
        .home-video {
            max-height: 260px;
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .modern-product-image-wrapper {
            height: 160px;
        }

        .modern-discount-product-card {
            border-radius: 12px;
        }

        .modern-product-content {
            padding: 10px;
        }

        .modern-product-title {
            font-size: 12px;
            margin-bottom: 8px;
        }

        .modern-price-discounted,
        .modern-price-regular {
            font-size: 13px;
        }

        .modern-price-original {
            font-size: 11px;
        }

        .modern-add-to-cart-btn {
            padding: 8px 10px;
            font-size: 11px;
        }

        .modern-discount-badge {
            padding: 4px 8px;
        }

        .modern-discount-percent {
            font-size: 12px;
        }

        .modern-countdown-timer {
            padding: 4px 6px;
            gap: 3px;
        }

        .modern-countdown-icon {
            font-size: 8px;
        }

        .modern-countdown-value {
            font-size: 9px;
            padding: 2px 4px;
            min-width: 16px;
        }

        .modern-countdown-separator {
            font-size: 8px;
        }

        .modern-countdown-display {
            gap: 2px;
        }

        .modern-discount-badge {
            padding: 6px 12px;
        }

        .modern-discount-percent {
            font-size: 14px;
        }

        .modern-product-content {
            padding: 15px;
        }

        .modern-price-discounted {
            font-size: 15px;
        }

        .modern-price-regular {
            font-size: 15px;
        }
    }
