/* SECTION */
.for-category-section {
    background: #fff;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    /* Increased for better separation */
}

/* ITEM */
.for-category-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.for-category-item:hover {
    transform: translateX(5px);
}

/* IMAGE BOX */
.for-category-img {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f8f8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.for-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.for-category-item:hover .for-category-img img {
    transform: scale(1.1);
}

/* PLACEHOLDER */
.for-category-img.placeholder {
    background: #f0f0f0;
}

/* TEXT */
.for-category-text h6 {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.for-category-text p {
    margin: 0px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
    section.for-category-section {
        /* margin-top: 80px !important; */
        margin-top: 50px !important;
    }

    .for-category-img {
        width: 70px;
        height: 70px;
    }
    .for-category-text h6 {
        font-size: 14px;
    }

    .for-category-text p {
        font-size: 10px;
    }
}

/* ======================================================================================================= */
/* ========================================= Home Serch Banner =========================================== */

.hero-search {
    position: relative;
    min-height: 60vh;
    background: url("../img/boutiquebanner.jpeg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0));
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

/* Search box */
.hero-search-box {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #b8860b, #daa520);
    border-radius: 40px;
    padding: 10px 12px;
    gap: 12px;
}

.hero-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.hero-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.search-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.hero-search-box button {
    background: rgba(0, 0, 0, 0.55);
    border: none;
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-search {
        min-height: 320px;
        padding: 24px;
    }
}



/* ======================================================================================================= */
/* ========================================= Categories Banner =========================================== */

.product-category-section {
    background: #fff;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.product-cat-card {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.product-cat-card img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.5s ease;
    z-index: 2;
}

.product-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-cat-card:hover img {
    transform: scale(1.1);
}

.cat-title {
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* Navigation buttons */
.cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.cat-next {
    right: 20px;
}

/* SIDE ARROWS */
.side-arrow {
    position: absolute;
    top: 35%;
    /* Adjusted to center on the 1.5/1 aspect ratio card portion */
    transform: translateY(-50%);
    width: 32px;
    /* Smaller as per user feedback */
    height: 32px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #b3133b;
}

.side-arrow svg {
    width: 18px;
    height: 18px;
}

.side-arrow:hover {
    background: #b3133b;
    color: #fff;
    border-color: #b3133b;
}

.side-arrow.left {
    left: 0;
}

.side-arrow.right {
    right: 0;
}

/* ======================================================================================================= */
/* ========================================= Premium Redesign ============================================ */

/* Section Headings */
.popular-section h2,
.new-arrivals-section h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 40px !important;
    background: none !important;
    padding: 0 !important;
    text-align: left;
    position: relative;
    letter-spacing: -0.5px;
}

.popular-section h2::after,
.new-arrivals-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #b3133b;
    margin: 12px 0 0;
    border-radius: 2px;
}

/* Popular Items Grid */
.items-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 20px;
}

/* Premium Card Style */
.premium-item-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.premium-item-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-img-box {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-item-card:hover .card-img-box img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #b3133b;
    text-transform: uppercase;
}

.card-info-panel {
    padding: 24px;
}

.card-info-panel h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-pill {
    font-size: 10px;
    font-weight: 600;
    color: #777;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
}

.item-price-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.btn-premium-view {
    background: #ed2d3d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-premium-view:hover {
    background: #d62837;
    box-shadow: 0 5px 15px rgba(237, 45, 61, 0.3);
}

/* ========================================= New Arrivals Mosaic Redesign =========================================== */

.new-arrivals-section .new-arrivals-mosaic {
    display: grid !important;
    grid-template-areas:
        "featured side1"
        "featured side2" !important;
    grid-template-columns: 1.5fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 30px !important;
    height: 700px;
}

.mosaic-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.mosaic-item.featured {
    grid-area: featured;
}

.mosaic-item.side1 {
    grid-area: side1;
}

.mosaic-item.side2 {
    grid-area: side2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    opacity: 1;
    transition: background 0.4s ease;
}

.mosaic-item.featured .mosaic-overlay {
    padding: 60px;
}

.mosaic-tag {
    font-size: 12px;
    font-weight: 700;
    color: #ffa4b2;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.mosaic-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #c9bfbf !important;
    background: none !important;
}

.mosaic-item.featured h3 {
    font-size: 42px;
}

.btn-mosaic-discover {
    align-self: flex-start;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mosaic-item:hover .btn-mosaic-discover {
    transform: translateY(0);
    opacity: 1;
}

.mosaic-brand {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 12px;
    z-index: 2;
}

.mosaic-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Mosaic */
@media (max-width: 1200px) {
    .new-arrivals-section .new-arrivals-mosaic {
        height: 600px;
    }

    .mosaic-item.featured h3 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .new-arrivals-section .new-arrivals-mosaic {
        grid-template-areas:
            "featured"
            "side1"
            "side2" !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 500px 300px 300px !important;
        height: auto;
    }
}

@media (max-width: 575px) {
    .new-arrivals-section .new-arrivals-mosaic {
        grid-template-rows: 400px 250px 250px !important;
    }

    .mosaic-overlay {
        padding: 20px;
    }

    .mosaic-item.featured .mosaic-overlay {
        padding: 30px;
    }

    .mosaic-item.featured h3 {
        font-size: 28px;
    }

    .mosaic-overlay h3 {
        font-size: 20px;
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {

    .items-grid,
    .new-arrivals-section .new-arrivals {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {

    .items-grid,
    .new-arrivals-section .new-arrivals {
        grid-template-columns: 1fr !important;
    }

    .popular-section h2,
    .new-arrivals-section h2 {
        font-size: 26px !important;
    }
}




/* Same grid as Popular Items */
.new-arrivals-section .new-arrivals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card size MATCHED */
.new-arrivals-section .new-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    /* 🔥 SAME AS POPULAR ITEMS IMAGE */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Image */
.new-arrivals-section .new-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay (same feel) */
.new-arrivals-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15));
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

/* Text */
.new-arrivals-section h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

/* Button SAME visual weight */
.new-arrivals-section .view-btn {
    background: #ed2d3d;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 14px;
    cursor: pointer;
    width: fit-content;
}

/* Brand logo */
.new-arrivals-section .brand-logo {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-arrivals-section .brand-logo img {
    width: 30px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .new-arrivals-section .new-arrivals {
        grid-template-columns: 1fr;
    }

    .new-arrivals-section .new-card {
        height: 260px;
        /* keep same ratio */
    }
}



/* Popular Items Redesign */
.popular-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    background: none !important;
    /* Remove red background highlight */
    padding: 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.item-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.item-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.item-card:hover img {
    transform: scale(1.05);
}

.item-info {
    padding: 20px;
    background: #fff;
}

.item-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b3133b;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.item-title {
    font-size: 20px;
    font-weight: 300;
    color: #3b3a3a;
    margin-bottom: 12px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.price-tag {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.view-btn-stylish {
    background: #ed2d3d;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: background 0.3s ease;
}

.view-btn-stylish:hover {
    background: #d62837;
}

/* Image Card */
.store-image-card {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.store-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.store-image-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.store-image-card .overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 20px;
}

/* Hover Effects */
.store-image-card:hover img {
    transform: scale(1.06);
}

.store-image-card:hover .overlay {
    opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .popular-stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-image-card {
        height: 160px;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {

    html,
    .occasions-grid {
        overflow-x: auto !important;
    }
}

/* ======================================================================================================= */
/* ========================================= Premium Occasions ============================================ */

.occasions-section {
    padding: 5px 0 10px;
    /* Further reduced for compact layout */
    background: #fff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.occasions-section h2 {
    color: #1a1a1a !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    letter-spacing: -1px;
    margin-bottom: 10px !important;
    background: none !important;
    padding: 0 !important;
}

.occasions-section p {
    color: #666 !important;
    font-size: 16px;
    margin-bottom: 20px;
    /* Reduced gap as per PDF */
}

.occasions-swiper-outer {
    position: relative;
    padding: 0 45px;
}

.occasionsSwiper {
    padding: 20px 5px 60px 5px !important;
    overflow: hidden !important;
}

.square-occasion-card {
    width: 100%;
    aspect-ratio: 1.8 / 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.square-occasion-card:hover {
    transform: translateY(-15px);
    border-color: rgba(179, 19, 59, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(179, 19, 59, 0.05);
}

.square-occasion-card .card-media {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.square-occasion-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.square-occasion-card:hover .card-media img {
    transform: scale(1.15);
}

.square-occasion-card .shade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            transparent 100%);
    transition: all 0.5s ease;
    z-index: 2;
}

.square-occasion-card:hover .shade-overlay {
    background: linear-gradient(to top,
            #b3133b 0%,
            rgba(0, 0, 0, 0.5) 60%,
            transparent 100%);
    opacity: 0.8;
}

.square-occasion-card .occasion-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.square-occasion-card .occasion-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    transition: all 0.4s ease;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.square-occasion-card .explore-text {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    opacity: 0.8;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    transition: all 0.4s ease;
}

.square-occasion-card:hover .explore-text {
    opacity: 1;
    transform: scale(1.05);
}

.square-occasion-card:hover .occasion-content {
    transform: scale(1.05);
}

/* Navigation Arrows for Swipers */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: #b3133b;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(179, 19, 59, 0.25);
}

.slider-btn.left {
    left: 0px;
}

.slider-btn.right {
    right: 0px;
}

/* Mobile Polish for Occasions */
@media (max-width: 991px) {
    .occasions-swiper-outer {
        padding: 0 10px;
    }

    .slider-btn {
        display: none !important;
    }

    .square-occasion-card {
        border-radius: 16px !important;
        aspect-ratio: 1.6 / 1 !important;
    }

    .square-occasion-card .occasion-content {
        padding: 20px !important;
    }

    .square-occasion-card .occasion-title {
        font-size: 20px !important;
    }
}



.new-arrivals-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
}

.new-arrivals {
    display: flex;
    gap: 12px;
    width: max-content;
    scroll-snap-type: x mandatory;
}

.new-card {
    flex: 0 0 calc((100vw - 16px * 2 - 12px) / 2);
    height: 260px;
    scroll-snap-align: start;
}

.new-arrivals-wrapper::-webkit-scrollbar {
    display: none;
}

.new-arrivals-wrapper {
    scrollbar-width: none;
}

@media (max-width: 600px) {
    .for-category-section.py-4 {
        margin-top: 55px;
    }
}

.price-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.price-box p {
    font-size: 14px;
    color: #555;
}


.banner-center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-center h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .banner-center h1 {
        font-size: 32px;
    }
}

.vendor-floating-card {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.vendor-floating-card .filter-input-wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .vendor-floating-card {
        margin-top: -40px;
    }
}

.breadcrumb-section {
    position: relative;
    z-index: 1;
}

.vendor-floating-card {
    z-index: 5;
}

header {
    position: relative;
    z-index: 9999;
}

.vendor-floating-card {
    margin-top: -60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    position: relative;
    z-index: 5;
}

/* ===== ORNAMENT DETAIL UI REFINEMENT ===== */

.ornament-modal {
    font-family: "Inter", system-ui, -apple-system;
}

/* Title */
#modalCakeTitle {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Price highlight */
#modalPrice {
    font-size: 28px;
    font-weight: 800;
    color: #9c1c1c;
}

/* Image styling */
.main-img {
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Thumbnails */
.thumbs img {
    border-radius: 12px;
    transition: all .25s ease;
}

.thumbs img:hover {
    transform: scale(1.05);
    border-color: #9c1c1c;
}

/* Meta list */
.ornament-meta {
    list-style: none;
    padding: 0;
}

.ornament-meta li {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

/* Section headers */
.modal-body h6 {
    margin-top: 18px;
    font-weight: 700;
    color: #111;
}

/* Description */
#modalCakeDesc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Vendor box */
.vendor-box {
    background: #fafafa;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #eee;
}

/* Action buttons */
.action-row button {
    border-radius: 22px;
    padding: 12px 18px;
    font-weight: 700;
}

.btn-outline {
    border: 1.5px solid #000;
}

.btn-solid {
    background: #000;
}

@media (max-width: 768px) {
    #modalCakeTitle {
        font-size: 22px;
    }

    #modalPrice {
        font-size: 24px;
    }
}

#modalCakeTitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #caa24d, #f5d77a);
    margin-top: 8px;
    border-radius: 10px;
}

/* ===============================
   FIX VENDOR CARD OVERLAP (MOBILE)
================================ */
@media (max-width: 768px) {

    /* Stop floating behavior */
    .vendor-floating-card {
        position: relative !important;
        top: auto !important;
        margin-top: 16px;
        margin-bottom: 20px;
        z-index: 1;
    }

    /* Add spacing before sidebar/cart */
    .shop-page {
        padding-top: 110px;
    }

    /* Prevent sidebar overlap */
    .shop-sidebar {
        margin-top: 20px;
    }

    /* Make buttons stack properly */
    .vendor-floating-card .row {
        flex-direction: column;
    }

    .vendor-floating-card .col-lg-6 {
        width: 100%;
    }

    .vendor-floating-card a.primary-btn1 {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================
   VENDOR CONTACT BUTTON STYLE
   (Match Cake Store Design)
================================ */

/* Vendor Card Mobile Refresh (Creamy Style) */
@media (max-width: 768px) {
    .vendor-floating-card {
        background: #fdfae1 !important;
        /* Premium Creamy Background */
        border-radius: 20px 20px 0 0 !important;
        margin-top: -30px !important;
        padding: 20px !important;
        border: none !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05) !important;
    }

    .vendor-contact-icons {
        display: none !important;
        /* Hide old icons if replacing with the new row */
    }

    .mobile-vendor-details {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .mobile-vendor-logo {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        object-fit: cover;
    }

    .mobile-vendor-info h4 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: #1a1a1a;
    }

    .mobile-vendor-info p {
        font-size: 13px;
        color: #666;
        margin: 0;
    }

    .mobile-social-icons {
        display: flex;
        gap: 10px;
        margin-top: 5px;
    }

    .mobile-social-icons a {
        color: #b3133b;
        font-size: 14px;
        border: none !important;
        padding: 0 !important;
    }

    .mobile-contact-row {
        display: flex;
        background: #fff9e3;
        border-radius: 12px;
        padding: 10px;
        justify-content: space-around;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #fff;
        color: #1a1a1a;
        font-size: 18px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        cursor: pointer;
    }
}

/* EMAIL & Phone button (Desktop) */
.vendor-contact-btn,
.vendor-floating-card a {
    background: #fff !important;
    color: #e53935 !important;
    border: 2px solid #e53935 !important;
    border-radius: 30px;
    padding: 10px 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Icon color */
.vendor-floating-card i {
    color: #e53935 !important;
}

/* Hover effect (same feel as cake store) */
.vendor-contact-btn:hover,
.vendor-floating-card a:hover {
    background: #e53935 !important;
    color: #fff !important;
}

/* Icon on hover */
.vendor-floating-card a:hover i {
    color: #fff !important;
}

/* =====================================================
   MODERN HOVER-OVERLAY PRODUCT CARD (2025 UI)
===================================================== */

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* Lift on hover */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.12);
}

/* OVERLAY */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.45),
            transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::after {
    opacity: 1;
}

/* HOVER CONTENT */
.product-card .hover-details {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    z-index: 2;
    color: #fff;
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.4s ease;
}

.product-card:hover .hover-details {
    opacity: 1;
    transform: translateY(0);
}

/* Title on hover */
.product-card .hover-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Price on hover */
.product-card .hover-details span {
    font-size: 15px;
    opacity: 0.9;
}

/* Button on hover */
.product-card .hover-details .primary-btn1 {
    margin-top: 14px;
    background: #fff;
    color: #e53935;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    border: none;
}

/* BELOW IMAGE CONTENT */
.product-card .product-content {
    padding: 16px 18px 20px;
}

.product-card .product-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-card .product-content .price {
    font-size: 14px;
    color: #666;
}

/* ===============================
   MOBILE FRIENDLY
================================ */
/* Mobile Product Card (2 Columns) */
@media (max-width: 768px) {
    #productGrid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }

    .package-card {
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    }

    .package-img-wrap {
        height: 150px !important;
        position: relative;
    }

    .discount-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        background: #c73443;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 10px;
        z-index: 2;
    }

    .package-content {
        padding: 12px !important;
    }

    .pkg-title {
        font-size: 14px !important;
        margin-bottom: 2px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pkg-subtitle {
        font-size: 11px;
        color: #888;
        margin-bottom: 8px;
    }

    .stock-status {
        font-size: 10px;
        color: #28a745;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .price-row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .mobile-price {
        font-size: 15px !important;
        font-weight: 700;
        color: #1a1a1a;
    }

    .purchase-badge {
        font-size: 9px;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 2px 6px;
        color: #666;
    }
}

/* ===============================
   TOP OFFERS - PREMIUM WEB DESIGN
================================ */
.offers-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    padding: 20px 0 !important;
}

.offer-card {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #eee !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
}

.offer-card:hover {
    transform: translateY(-8px) !important;
}

.offer-banner {
    height: 180px !important;
    width: 100% !important;
    position: relative !important;
    border-radius: 16px 16px 0 0 !important;
    overflow: hidden !important;
}

.offer-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.offer-badge {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: #c73443 !important;
    /* Premium Red */
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    z-index: 10 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* THE OVERLAPPING LOGO BOX (WEB) */
.vendor-logo-box {
    position: absolute !important;
    top: 130px !important;
    left: 25px !important;
    width: 100px !important;
    height: 100px !important;
    background: #fff !important;
    border-radius: 16px !important;
    padding: 6px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    z-index: 15 !important;
    border: 3px solid #fff !important;
    display: block !important;
}

.vendor-logo-box img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    object-fit: cover !important;
}

.offer-body {
    padding: 65px 25px 30px !important;
    background: #fff !important;
    border-radius: 0 0 16px 16px !important;
    display: flex !important;
    flex-direction: column !important;
}

.offer-body h4 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 6px !important;
}

.offer-body .desc {
    font-size: 15px !important;
    color: #666 !important;
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
}

.offer-body .items.red {
    display: block !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #c73443 !important;
    text-align: right !important;
    margin-top: auto !important;
}

/* ===============================
   PACKAGE CARD BUTTONS (WEB REVERT)
================================ */
.btn-view-detail {
    width: 100% !important;
    background: transparent !important;
    color: #a87b00 !important;
    /* Premium Gold */
    border: 2px solid #d4af37 !important;
    /* Gold border */
    border-radius: 10px !important;
    padding: 12px 10px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    margin-top: 15px !important;
}

.btn-view-detail:hover {
    background: #d4af37 !important;
    color: #fff !important;
}

/* ==================================================
   PRODUCT CATEGORIES SECTION
================================================== */
.product-category-section {
    background: #fff;
}

.product-cat-card {
    aspect-ratio: 1.5 / 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 10px 10px;
    /* More top padding for icon centering */
    margin-top: 15px;
    /* Margin top added for extra breathing room */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-cat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-cat-card:hover::after {
    opacity: 1;
}

.product-cat-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-cat-card:hover img {
    transform: scale(1.1);
}

.cat-title {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    transition: color 0.3s ease;
}

.swiper-slide:hover .cat-title {
    color: #b3133b;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .product-cat-card {
        border-radius: 10px;
        padding: 5px;
    }

    .cat-title {
        font-size: 13px;
        margin-top: 10px;
    }
}

/* Existing Product Grid styles... */
#productGrid {
    row-gap: 30px;
}

/* Make bootstrap columns stretch */
#productGrid>div {
    display: flex;
}

/* PRODUCT CARD */
.product-card,
.package-card,
.shop-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Hover lift */
.product-card:hover,
.package-card:hover,
.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* IMAGE WRAPPER */
.product-card img,
.package-card img,
.shop-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* Image zoom on hover */
.product-card:hover img,
.package-card:hover img,
.shop-card:hover img {
    transform: scale(1.08);
}

/* CONTENT AREA */
.product-card .product-content,
.package-card .package-content,
.shop-card .content {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.product-card h4,
.package-card h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #111;
    margin-bottom: 6px;
}

/* CATEGORY / META */
.product-card p,
.package-card .location {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.product-card .price,
.package-card .price-area span {
    font-size: 17px;
    font-weight: 700;
    color: #b8860b;
    margin-top: auto;
}

/* BUTTON ALIGNMENT */
.product-card .primary-btn1,
.package-card .primary-btn1 {
    margin-top: 16px;
    align-self: flex-start;
    background: #fff;
    color: #b8860b;
    border: 2px solid #b8860b;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Button hover */
.product-card .primary-btn1:hover,
.package-card .primary-btn1:hover {
    background: #b8860b;
    color: #fff;
}

/* ===============================
   RESPONSIVE POLISH
================================ */
@media (max-width: 991px) {

    .product-card img,
    .package-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {

    .product-card img,
    .package-card img {
        height: 200px;
    }
}

.vendor-floating-card {
    background: #F3EEE8 !important;
    border: 1px solid #D8C7B3;
    box-shadow: 0 20px 80px rgba(120, 90, 50, 0.22);
}


.vendor-floating-card a {
    border-color: #E07A7A !important;
    /* light red / rose */
    color: #8B6A2E !important;
    /* keep gold text */
}

.vendor-floating-card a:hover {
    background: #E07A7A !important;
    color: #fff !important;
}

/* Premium View Button */
.premium-btn {
    margin-top: 14px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #c73642, #e04b55);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 10px 22px rgba(199, 54, 66, 0.35);
}

.premium-btn svg {
    transition: transform 0.35s ease;
}

/* Hover effect */
.premium-btn:hover {
    background: linear-gradient(135deg, #a92b35, #d63f4a);
    box-shadow: 0 14px 28px rgba(199, 54, 66, 0.45);
    transform: translateY(-2px);
}

.premium-btn:hover svg {
    transform: translateX(6px);
}

/* Click feel */
.premium-btn:active {
    transform: scale(0.97);
}

/* ===== Collection Slider Text Color Fix ===== */

/* Title */
.collection-card h4 {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
}

/* Subtitle */
.collection-card span {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Ensure icons/text inherit white */
.collection-card * {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* ======================================================
   ULTRA-PREMIUM AVAILABILITY FILTER RIBBON
   ====================================================== */
.availability-filter-ribbon {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    padding: 15px;
    perspective: 1000px;
    flex-wrap: wrap;
    /* Added for responsiveness */
}

.filter-card {
    flex: 1;
    max-width: 220px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.filter-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.filter-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(179, 19, 59, 0.2);
}

.filter-card:hover ::before {
    opacity: 1;
}

.filter-card.active {
    background: linear-gradient(135deg, #c73642 0%, #e04b55 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 20px 40px rgba(199, 54, 66, 0.4),
        0 0 0 4px rgba(199, 54, 66, 0.1);
    transform: translateY(-5px) scale(1.05);
}

.filter-card.active * {
    color: #fff !important;
}

.filter-card i {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #c73642;
    filter: drop-shadow(0 4px 8px rgba(199, 54, 66, 0.1));
}

.filter-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.filter-card .filter-label {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
    display: block;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.filter-card .filter-desc {
    font-size: 13px;
    opacity: 0.7;
    display: block;
    color: #444;
    font-weight: 500;
}

.filter-card.active .filter-desc {
    opacity: 0.9;
}

/* ======================================================
   STAGGERED GRID ANIMATIONS
   ====================================================== */
@keyframes fadeInUpUltra {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.stagger-item {
    animation: fadeInUpUltra 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Stagger delays for up to 12 items */
.stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    animation-delay: 0.15s;
}

.stagger-item:nth-child(3) {
    animation-delay: 0.2s;
}

.stagger-item:nth-child(4) {
    animation-delay: 0.25s;
}

.stagger-item:nth-child(5) {
    animation-delay: 0.3s;
}

.stagger-item:nth-child(6) {
    animation-delay: 0.35s;
}

.stagger-item:nth-child(7) {
    animation-delay: 0.4s;
}

.stagger-item:nth-child(8) {
    animation-delay: 0.45s;
}

.stagger-item:nth-child(9) {
    animation-delay: 0.5s;
}

.stagger-item:nth-child(10) {
    animation-delay: 0.55s;
}

.stagger-item:nth-child(11) {
    animation-delay: 0.6s;
}

.stagger-item:nth-child(12) {
    animation-delay: 0.65s;
}

@media (max-width: 768px) {
    .availability-filter-ribbon {
        gap: 10px;
        margin-bottom: 90px !important;
        margin-top: 15px;
        padding: 10px 5px;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        z-index: 100;
        /* Ensure ribbon stays above cards */
    }

    .availability-filter-ribbon::-webkit-scrollbar {
        display: none;
    }

    .filter-card {
        padding: 12px 5px;
        border-radius: 16px;
        flex: 1 1 0;
        /* Distribute space equally */
        min-width: 85px;
        /* Minimum width to prevent icon/label overlap */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: none;
        /* Disable transform on mobile to prevent weird overlaps */
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .filter-card.active {
        background: #c73642 !important;
        /* Solid red for better contrast on small screens */
        box-shadow: 0 5px 15px rgba(199, 54, 66, 0.3);
        border-color: transparent;
    }

    .filter-card i {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .filter-card .filter-label {
        font-size: 10px;
        font-weight: 800;
        margin-bottom: 0;
        white-space: nowrap;
        text-transform: uppercase;
    }

    .filter-card .filter-desc {
        display: none;
    }

    /* COMPACT CARDS FOR 2-COLUMN GRID */
    .package-card {
        padding: 12px !important;
    }

    .package-card .package-img-wrap img {
        height: 260px !important;
        /* Larger image for single-column */
    }

    .package-card .pkg-title {
        font-size: 18px !important;
        height: auto;
        overflow: visible;
        display: block;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .package-card .pkg-category {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }

    .package-card .pkg-info-row {
        font-size: 13px !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
        flex-direction: row;
        /* Back to row for full-width */
        flex-wrap: wrap;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .package-card .pkg-info-row span {
        margin-bottom: 0;
    }

    .package-card .pkg-price {
        font-size: 20px !important;
        margin-bottom: 15px !important;
        font-weight: 800;
    }

    .package-card .pkg-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-radius: 30px !important;
        width: 100%;
        text-align: center;
        font-weight: 600;
    }

    .premium-avail-badge {
        padding: 3px 8px !important;
        font-size: 8px !important;
    }
}

/* PREMIUM AVAILABILITY BADGES */
.premium-avail-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.premium-avail-badge.rental {
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.premium-avail-badge.purchase {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.premium-avail-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Gold-Tech Accents */
.tag {
    background: rgba(218, 165, 32, 0.1) !important;
    color: #b8860b !important;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

/* ======================================================================================================= */
/* ========================================= Hide Cart Section =========================================== */
/* Hide the Cart sidebar widget on ornaments pages */
.shop-sidebar .single-widgets .cart-menu,
.shop-sidebar .single-widgets .widget-title:has(+ .cart-menu),
.shop-sidebar .single-widgets:has(.cart-menu) {
    display: none !important;
}

/* ============================================================ 
   PREMIUM GLASS CARD & TOP OFFERS REDESIGN
   ============================================================ */

/* Container resets for cleaner grid */
.offers-grid,
.stores-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    padding: 20px 0 !important;
}

.premium-glass-card {
    background: #fff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
}

.premium-glass-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(179, 19, 59, 0.1) !important;
}

/* Card-Media / Banner Wrapper */
.pg-media-box {
    height: 220px !important;
    position: relative !important;
    overflow: hidden !important;
}

.pg-media-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-glass-card:hover .pg-media-box img {
    transform: scale(1.1) !important;
}

/* Glass Badge */
.pg-glass-badge {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(179, 19, 59, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 40px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    z-index: 5 !important;
    box-shadow: 0 8px 20px rgba(179, 19, 59, 0.2) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Vendor Logo Overlay - Premium Balanced Emblem */
.pg-logo-overlay {
    position: absolute !important;
    bottom: -8px !important;
    left: 20px !important;
    width: 65px !important;
    /* Balanced size */
    height: 65px !important;
    background: #fff !important;
    border-radius: 12px !important;
    /* Modern slightly rounded square */
    padding: 6px !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
    border: 2px solid #fff !important;
    /* Thinner border for professionalism */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Optional premium border accent */
.pg-logo-overlay::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(179, 19, 59, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.pg-logo-overlay img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    object-fit: cover !important;
}

/* Card Body */
.pg-content {
    padding: 30px 25px 25px !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Space for overlapping logo if needed */
.pg-content.logo-overlap {
    padding-top: 45px !important;
}

.pg-content h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.pg-content .short-desc {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 4px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.pg-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 15px !important;
    padding-top: 18px !important;
    border-top: 1px solid #f2f2f2 !important;
}

.pg-info-pill {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #b3133b !important;
}

.pg-action-link {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.pg-action-link i {
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
}

.premium-glass-card:hover .pg-action-link {
    color: #b3133b !important;
}

.premium-glass-card:hover .pg-action-link i {
    transform: translateX(5px) !important;
}

/* Responsive Grid */
@media (max-width: 1100px) {

    .offers-grid,
    .stores-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* padding: 0 20px !important; */
         padding: 0 4px !important;
    }
}

@media (max-width: 768px) {

    .offers-grid,
    .stores-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .pg-media-box {
        height: 190px !important;
    }

    .pg-content h4 {
        font-size: 18px !important;
    }
}

/* ===== MOVING COLLECTIONS - ARTISTIC HORIZONTAL CARDS ===== */
.sub-category-slider .collection-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 35px !important;
    /* Increased inner gap for a wider feel */
    height: 125px !important;
    /* Balanced height */
    padding: 0 40px !important;
    border-radius: 22px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    cursor: pointer !important;
    width: 100% !important;
    /* Fill the slide width */
}

.sub-category-slider .collection-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Artistic Pattern Overlay (Leaves) */
.sub-category-slider .collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 60%), radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    opacity: 0.18;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sub-category-slider .collection-card:hover::before {
    opacity: 0.28;
}

/* Hover Aura Glow */
.sub-category-slider .collection-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sub-category-slider .collection-card:hover::after {
    opacity: 1;
}

.sub-category-slider .collection-icon {
    width: 85px !important;
    /* Larger icon as per pattern */
    height: 85px !important;
    border-radius: 16px !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 2 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    flex-shrink: 0 !important;
}

.sub-category-slider .collection-card:hover .collection-icon {
    transform: scale(1.1) rotate(-3deg) !important;
}

/* Center Text Container */
.sub-category-slider .collection-card>div:not(.collection-icon) {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Center text within its area */
    justify-content: center !important;
    z-index: 2 !important;
}

.sub-category-slider .collection-card h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    letter-spacing: 0.8px !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.sub-category-slider .collection-card span {
    font-size: 16px !important;
    font-style: italic !important;
    font-family: 'Playfair Display', "Garamond", serif !important;
    color: rgba(255, 255, 255, 0.7) !important;
    display: block !important;
    margin-top: 4px !important;
}

/* Collection Card Specific Gradients */
.collection-card.antique {
    background: linear-gradient(135deg, #1f1c2c, #3f2b96) !important;
}

.collection-card.traditional {
    background: linear-gradient(135deg, #42275a, #734b6d) !important;
}

.collection-card.navaratna {
    background: linear-gradient(135deg, #240b36, #c31432) !important;
}

/* Refined Vendor Logo Overlay - Professional Badging */
.pg-logo-overlay {
    position: absolute !important;
    bottom: -8px !important;
    left: 20px !important;
    width: 60px !important;
    /* Balanced refined size */
    height: 60px !important;
    background: #fff !important;
    border-radius: 14px !important;
    padding: 6px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
    border: 2px solid #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.pg-logo-overlay img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 10px !important;
}

.pg-logo-overlay::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1.5px solid rgba(179, 19, 59, 0.08);
    border-radius: 14px;
    pointer-events: none;
}

/* ======================================================
   NEW ARRIVALS - BANNER STYLE CARDS (User Pattern)
   ====================================================== */
.new-arrivals-section {
    padding: 20px 0;
    /* Reduced from 30px */
    margin-bottom: 20px;
    background: #fff;
}

.new-arrivals-header {
    margin-bottom: 20px;
    /* Reduced from 30px */
    padding-left: 0;
    /* Aligned to left */
}

.new-arrivals-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Horizontal Scroll Container (like the pattern) */
.na-banner-container {
    display: flex;
    /* Row layout */
    gap: 20px;
    overflow-x: auto;
    /* Horizontal scroll */
    padding: 10px 0 10px 0;
    /* Reduced bottom padding, removed side padding */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.na-banner-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome */
}

/* The Banner Card */
.na-banner-card {
    flex: 0 0 calc((100% - 40px) / 3);
    /* Exactly 3 cards with 20px gap */
    height: 260px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.na-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Dark Gradient Overlay for readability */
.na-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Content Container */
.na-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Bottom alignment or spread */
    align-items: flex-start;
}

/* Text - Top Left styling */
.na-banner-text {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 60%;
}

.na-banner-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-bottom: 4px;
}

.na-banner-weight {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    display: block;
}

/* Button - Bottom Left (Solid Red) */
.na-banner-btn {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #ed2d3d;
    /* Solid Red */
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(237, 45, 61, 0.4);
    transition: background 0.3s ease;
}

.na-banner-btn:hover {
    background: #d62837;
}

/* Logo - Bottom Right Inset */
.na-banner-logo-box {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #0f0f13;
    /* Dark background like pattern */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.na-banner-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .na-banner-card {
        flex: 0 0 300px;
        /* Smaller width on mobile */
        height: 180px;
    }

    .new-arrivals-header h2 {
        font-size: 24px;
    }
}

/* ======================================================
   PREMIUM PARTNERS SECTION
   ====================================================== */
.premium-partners-section {
    background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    position: relative;
    overflow: hidden;
}

.premium-partners-section .premium-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.premium-partners-section .premium-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 0;
}

.brandPlatformSwiper {
    padding: 20px 0;
}

.brandPlatformSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.brand-slide {
    padding: 10px;
}

.brand-slide .logo-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.brand-slide img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.brand-slide .logo-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: #fff;
    border-color: rgba(212, 20, 90, 0.2);
    box-shadow: 0 20px 40px rgba(212, 20, 90, 0.1);
}

.brand-slide .logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-partners-section .premium-title {
        font-size: 22px;
    }

    .brand-slide .logo-card {
        height: 80px;
        padding: 15px;
    }

    .brand-slide img {
        height: 40px;
    }
}

/* ======================================================================================================= */
/* ========================================= HIGHLIGHTS SECTION ========================================== */
/* ======================================================================================================= */

.highlights-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlights-header {
    text-align: left;
    margin-bottom: 50px;
}

.highlights-header h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 8px !important;
    background: none !important;
    padding: 0 !important;
    letter-spacing: -0.5px;
    position: relative;
}

.highlights-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #b3133b;
    margin: 12px 0 0;
    border-radius: 2px;
}

.highlights-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Highlight Card */
.highlight-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.highlight-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.highlight-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-card:hover .highlight-img-wrapper img {
    transform: scale(1.1);
}

/* Gradient Overlay */
.highlight-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            transparent 70%);
    z-index: 1;
    transition: background 0.4s ease;
}

.highlight-card:hover .highlight-gradient {
    background: linear-gradient(to top,
            rgba(179, 19, 59, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            transparent 80%);
}

/* Content Area */
.highlight-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

/* Tag */
.highlight-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #b3133b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(179, 19, 59, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-tag {
    background: rgba(179, 19, 59, 0.2);
    color: #8e0f2f;
}

/* Title */
.highlight-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.highlight-card:hover .highlight-title {
    color: #b3133b;
}

/* Description */
.highlight-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 18px;
}

/* Explore Button */
.btn-highlight-explore {
    background: #b3133b;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(179, 19, 59, 0.2);
    width: 100%;
}

.btn-highlight-explore:hover {
    background: #8e0f2f;
    box-shadow: 0 6px 20px rgba(179, 19, 59, 0.35);
    transform: translateY(-2px);
}

/* ============================================ */
/* RESPONSIVE DESIGN - TABLETS */
/* ============================================ */
@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .highlight-img-wrapper {
        height: 240px;
    }
}

/* ============================================ */
/* RESPONSIVE DESIGN - MOBILE */
/* ============================================ */
@media (max-width: 768px) {
    .highlights-section {
        padding: 40px 0;
    }

    .highlights-header {
        margin-bottom: 30px;
    }

    .highlights-header h2 {
        font-size: 26px !important;
    }

    .highlights-subtitle {
        font-size: 16px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-img-wrapper {
        height: 220px;
    }

    .highlight-content {
        padding: 20px;
    }

    .highlight-title {
        font-size: 20px;
    }

    .highlight-desc {
        font-size: 13px;
    }

    .btn-highlight-explore {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ============================================ */
/* RESPONSIVE DESIGN - SMALL MOBILE */
/* ============================================ */
@media (max-width: 480px) {
    .highlights-section {
        padding: 30px 0;
    }

    .highlight-img-wrapper {
        height: 200px;
    }

    .highlight-content {
        padding: 18px;
    }

    .highlight-title {
        font-size: 18px;
    }

    .highlight-tag {
        font-size: 9px;
        padding: 4px 10px;
    }
}

/* ===============================
   SKELETON LOADING
================================ */
@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

.skeleton-text {
    height: 12px;
    width: 80%;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-cat-card {
    aspect-ratio: 1/1;
    border-radius: 12px;
    width: 100%;
}

.skeleton-item-card {
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.skeleton-item-img {
    height: 320px;
    width: 100%;
}

.skeleton-item-info {
    padding: 24px;
}

.skeleton-glass-card {
    height: 300px;
    border-radius: 20px;
    width: 100%;
}

.skeleton-for-cat {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 200px;
}

.skeleton-for-cat-img {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    flex-shrink: 0;
}

.skeleton-for-cat-text {
    flex: 1;
}

.skeleton-occ-card {
    aspect-ratio: 1/1;
    border-radius: 24px;
    width: 100%;
}