/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ+Guides&display=swap'); */

:root {
    --color-primary: #9d9167;
    --color-secondary: #004e89;
    --color-dark: #1a1a2e;
    --color-light: #f7f7f7;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --accent-color: #5344db;
    --grey: #484848;
    --bg-grey: #efefef;
    --bg-green: #097969;
    --bg-red: #ff0000;
    --sld-bg-color: #0f172a;
    /* Dark Navy Background */
    --sld-text-color: #ffffff;
    /* White Text */
    --sld-highlight-color: #fbbf24;
    /* Amber for icons/highlights */
    --sld-speed: 30s;
    /* Time for one full loop */
    --sld-height: 48px;
    /* Height of the ticker */
    --slider-height-desktop: 700px;
    /* Fixed height for mobile to prevent scroll lag */
    --slider-height-mobile: 500px;
    --primary-color: #ffffff;
}

/* ======================= HOMEPAGE SECTION ASPECT RATIO (651:831) ======================= */
/* Recent Products, Featured Products, Most Viewed Product */
.product-image {
    position: relative;
    aspect-ratio: 651 / 831;
    height: auto;
    overflow: hidden;
    background: var(--color-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--color-light);
}

/* Mix Match Curation & New Categories */
.mix-match-section .card-frame img {
    aspect-ratio: 651 / 831;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* All Collections */
.collection-image {
    aspect-ratio: 651 / 831;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hero Slider Container */
.hero-slider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Swiper Slide */
.swiper-slide {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Handling */
.slide-bg-image {
    width: 100%;
    height: 100%;
    display: block;
}

.slide-bg-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    pointer-events: none;
}

/* FIXED: Navigation Arrows - Swiper v11 Classes */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent;
    width: 60px;
    height: 100%;
    top: 0;
    margin-top: 0;
    z-index: 10 !important;
    /* CRITICAL: Above slides */
    transition: all 0.3s ease;
}

.swiper-button-prev {
    left: 0;
    padding-left: 20px;
    justify-content: flex-start;
}

.swiper-button-next {
    right: 0;
    padding-right: 20px;
    justify-content: flex-end;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.swiper-button-prev:hover {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
    font-weight: 300;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
    font-family: swiper-icons !important;
    /* Swiper icon font */
}

/* FIXED: Pagination Bullets - Swiper v11 Classes */
.hero-slider .swiper-pagination {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
    width: 40px !important;
    /* EXTRA THICK */
    height: 4px !important;
    /* EXTRA THICK */
    border-radius: 4px !important;
    margin: 0 10px !important;
    transition: all 0.4s ease !important;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #ffffff !important;
    width: 60px !important;
    /* SUPER THICK ACTIVE */
    /* height: 10px !important;       SUPER THICK ACTIVE */
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.8) !important;
    border-radius: 10px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider {
        height: var(--slider-height-mobile);
    }

    .swiper-slide {
        height: var(--slider-height-mobile);
    }

    .slide-bg-image {
        height: 100%;
    }

    .slide-bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .hero-slider .swiper-pagination-bullet {
        width: 20px !important;
        height: 3px !important;
    }

    .hero-slider .swiper-pagination-bullet-active {
        width: 30px !important;
        /* height: 8px !important; */
    }

    .swiper-pagination {
        bottom: 20px;
    }
}

/* pRODUCT tICKER */
.sld-ticker-container {
    width: 100%;
    height: var(--sld-height);
    background-color: var(--sld-bg-color);
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* The Track: Holds the two sets of items and moves */
.sld-ticker-track {
    display: flex;
    width: fit-content;
    height: 100%;
    align-items: center;
    /* The Animation Logic */
    animation: sld-scroll var(--sld-speed) linear infinite;
}

/* The Animation Keyframes */
@keyframes sld-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Moves left by 50% of the track's width.
                   Since the track contains two identical sets, 
                   -50% brings the second set exactly where the first started. */
        transform: translateX(-50%);
    }
}

/* Hover Pause: Optional - Stops scrolling when user hovers */
.sld-ticker-container:hover .sld-ticker-track {
    animation-play-state: paused;
}

/* Individual Items */
.sld-ticker-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    /* Prevents text from wrapping */
    padding: 0 2rem;
    color: var(--sld-text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Separator style (dot between items) */
.sld-separator {
    width: 6px;
    height: 6px;
    background-color: var(--sld-highlight-color);
    border-radius: 50%;
    margin-right: 15px;
    opacity: 0.7;
}

/* Icon styling */
.sld-icon {
    color: var(--sld-highlight-color);
    margin-right: 8px;
}

/* Link styling (if items are links) */
a.sld-ticker-item {
    text-decoration: none;
    transition: opacity 0.2s;
}

a.sld-ticker-item:hover {
    opacity: 0.8;
    color: var(--sld-text-color);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    :root {
        --sld-speed: 20s;
        /* Speed up slightly on mobile so they don't wait too long */
    }

    .sld-ticker-item {
        font-size: 0.85rem;
        padding: 0 1.5rem;
    }
}

/* ======================= PRODUCTS SCROLL SECTION ======================= */

/* Products Section */
.section {
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
}

.view-all {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all:hover {
    gap: 10px;
}

/* Products Wrapper with Arrows */
.products-wrapper {
    position: relative;
}

/* Scroll Arrows */
.products-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
    border: 2px solid var(--color-border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.products-scroll-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.products-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.products-scroll-prev {
    left: -20px;
}

.products-scroll-next {
    right: -20px;
}

/* Horizontal Scroll Container */
.products-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.products-scroll-container::-webkit-scrollbar {
    display: none;
}

.products-scroll-container:active {
    cursor: grabbing;
}

/* Product Card */
.product-card {
    flex: 0 0 280px;
    /* Fixed width for each card */
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* .product-image is now defined in the aspect ratio section above */

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

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

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 5;
}

.wishlist-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.ftr-prod-view {
    display: block;
    /* force full width */
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    /* center text/icon inside link */
    text-decoration: none;
    /* remove underline for <a> */
}



.ftr-prod-view:hover {
    background: var(--color-secondary);
}

/* ======================= RESPONSIVE STYLES ======================= */

@media (max-width: 1024px) {
    .products-scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .products-scroll-prev {
        left: -15px;
    }

    .products-scroll-next {
        right: -15px;
    }

    .product-card {
        flex: 0 0 250px;
    }

    /* .product-image uses aspect-ratio instead of fixed height */
}

@media (max-width: 768px) {
    .section {
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .products-scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .products-scroll-prev {
        left: 0;
    }

    .products-scroll-next {
        right: 0;
    }

    .products-scroll-container {
        gap: 15px;
        padding: 15px 5px;
    }

    .product-card {
        flex: 0 0 220px;
    }

    /* .product-image uses aspect-ratio instead of fixed height */

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 15px;
    }

    .product-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 0 10px;
        margin: 30px auto;
    }

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

    .products-scroll-container {
        gap: 12px;
    }

    .product-card {
        flex: 0 0 200px;
    }

    /* .product-image uses aspect-ratio instead of fixed height */

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .ftr-prod-view {
        padding: 10px;
        font-size: 14px;
    }
}

/* ======================= CATEGORIES SCROLL SECTION ======================= */

/* Categories Wrapper with Arrows */
.categories-wrapper {
    position: relative;
    margin-bottom: 40px;
}

/* Scroll Arrows */
.category-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
    border: 2px solid var(--color-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.category-scroll-arrow:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.category-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.category-scroll-prev {
    left: -25px;
}

.category-scroll-next {
    right: -25px;
}

/* Categories Scroll Container */
.categories-scroll-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    padding: 30px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: flex-start;
    cursor: grab;
    user-select: none;
    overscroll-behavior-x: none;
    will-change: scroll-position;
}

.categories-scroll-container::-webkit-scrollbar {
    display: none;
}

.categories-scroll-container:active {
    cursor: grabbing;
}

/* Category Card - Desktop (1080p) shows 5 items */
.category-card {
    flex: 0 0 calc((100% - 160px) / 9);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-user-drag: none;
    user-select: none;
    will-change: transform;
}

.category-card:hover {
    transform: translateY(-10px);
}

/* CIRCULAR IMAGE - This makes it perfectly round */
.category-image {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 4px solid var(--color-primary);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    position: relative;
}

.category-card:hover .category-image {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.08);
}

/* Image inside circular container */
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    line-height: 1.4;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================= RESPONSIVE STYLES ======================= */

/* Responsive Heights for Slider */
@media (max-width: 1200px) {
    .slider-container {
        height: 400px;
    }
}

/* Tablet - 3-4 items visible */
@media (max-width: 1366px) {
    .category-card {
        flex: 0 0 calc((100% - 120px) / 6);
    }

    .category-image {
        max-width: 180px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-icons {
        gap: 15px;
    }

    .categories-scroll-container {
        gap: 30px;
    }

    .category-card {
        flex: 0 0 calc((100% - 90px) / 4);
    }

    .category-image {
        max-width: 160px;
    }

    .category-scroll-prev {
        left: -20px;
    }

    .category-scroll-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .header-container {
        justify-content: center;
        position: relative;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 15px;
    }

    .logo {
        font-size: 24px;
        text-align: center;
    }

    .header-icons {
        position: absolute;
        right: 15px;
    }

    .header-icons .icon-btn:not(.profile-icon) {
        display: none;
    }

    .bottom-nav {
        display: block;
    }

    .section-title {
        font-size: 22px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    /* .product-image uses aspect-ratio instead of fixed height */

    .sidebar,
    .category-sidebar,
    .search-sidebar {
        width: 280px;
    }

    /* Category scroll mobile styles */
    .category-scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .category-scroll-prev {
        left: 0;
    }

    .category-scroll-next {
        right: 0;
    }

    .categories-scroll-container {
        gap: 30px;
        padding: 25px 5px;
        align-items: flex-start;
    }

    .category-card {
        flex: 0 0 calc((100% - 30px) / 3);
    }

    .category-image {
        max-width: 180px;
        border-width: 3px;
        margin-bottom: 12px;
    }

    .category-name {
        font-size: 14px;
        min-height: 40px;
        line-height: 1.3;
    }

    .hero-slider {
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 0px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-container {
        height: 200px;
    }

    /* Category scroll small mobile styles */
    .category-scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .categories-scroll-container {
        gap: 25px;
        padding: 20px 5px;
    }

    .category-card {
        flex: 0 0 calc((100% - 25px) / 3);
    }

    .category-image {
        max-width: 120px;
    }

    .category-name {
        font-size: 13px;
        min-height: 38px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .categories-scroll-container {
        gap: 20px;
    }

    .category-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .category-image {
        max-width: 140px;
    }

    .category-name {
        font-size: 12px;
        min-height: 36px;
    }
}

/* ======================= MIX MATCH CURATION SECTION ======================= */

.mix-match-section {
    position: relative;
    background-image: url("img/imgsection/Mix_Match_Curation_new.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 80px 0px; */
    overflow: hidden;
}

.mix-match-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 235, 220, 0.7);
    z-index: 0;
}

.mix-match-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 30px 0px;
}

/* Title Section */
.mix-match-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #3a2a1a;
    margin-bottom: 60px;
    font-family: "Georgia", serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.mix-match-title .title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mix-match-title img {
    width: 60px;
    height: 60px;
    display: block;
}

.mix-match-title .title-text {
    display: block;
}

.mix-match-title i {
    color: #8B0000;
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.title-decoration {
    display: block;
    width: 80px;
    height: 3px;
    background: #8B0000;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Layout */
.mix-match-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Individual Card */
.mix-match-card {
    position: relative;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.mix-match-card:hover {
    transform: translateY(-10px);
}

/* Card Frame - Simple Rectangle */
.card-frame {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    backdrop-filter: blur(0px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.mix-match-card:hover .card-frame {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.card-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.mix-match-card:hover .card-frame img {
    transform: scale(1.05);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
    transition: var(--transition);
}

.card-title {
    color: #d3d3d3 !important;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    font-family: "Georgia", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Decorative Models at Bottom */
.card-models {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.card-models img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.model-left {
    margin-left: -10px;
}

.model-right {
    margin-right: -10px;
}

/* Decorative Elements */
.decoration-sunflower,
.decoration-heart,
.decoration-sparkle {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.sunflower-1 {
    top: 50px;
    left: 50px;
    color: #f4c542;
    font-size: 60px;
}

.sunflower-2 {
    top: 80px;
    right: 80px;
    color: #f4c542;
    font-size: 50px;
    animation-delay: 0.5s;
}

.heart-1 {
    top: 40%;
    left: 10%;
    color: var(--color-primary);
    animation-delay: 1s;
}

.heart-2 {
    top: 30%;
    right: 15%;
    color: var(--color-primary);
    font-size: 30px;
    animation-delay: 1.5s;
}

.sparkle-1 {
    bottom: 30%;
    left: 20%;
    color: #d4a574;
    font-size: 25px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ======================= RESPONSIVE STYLES ======================= */

@media (max-width: 1200px) {
    .mix-match-grid {
        gap: 30px;
    }

    .card-frame img {
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .mix-match-title {
        font-size: 30px;
    }

    .mix-match-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .card-frame img {
        height: 400px;
    }

    .decoration-sunflower,
    .decoration-heart,
    .decoration-sparkle {
        font-size: 30px;
    }

    .sunflower-1,
    .sunflower-2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .mix-match-section {
        padding: 60px 15px;
    }

    .mix-match-title {
        font-size: 24px;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }

    .mix-match-title i {
        font-size: 22px;
    }

    .mix-match-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 columns */
        gap: 20px;
    }

    .card-frame img {
        height: 300px;
    }

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

    .card-models img {
        width: 60px;
    }

    .decoration-sunflower,
    .decoration-heart,
    .decoration-sparkle {
        display: none;
    }
}

@media (max-width: 480px) {
    .mix-match-section {
        padding: 40px 10px;
    }

    .mix-match-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .mix-match-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 images side by side */
        gap: 15px;
    }

    .card-frame img {
        height: 250px;
        /* Smaller height for mobile */
    }

    .card-title {
        font-size: 16px;
    }

    .card-overlay {
        padding: 30px 15px 15px;
    }

    .card-models img {
        width: 50px;
    }
}

@media (max-width: 360px) {
    .mix-match-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Still 2 columns */
        gap: 10px;
    }

    .card-frame img {
        height: 220px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-models img {
        width: 45px;
    }
}


/* Define the keyframe animation for continuous horizontal scrolling */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Apply the animation to the container holding the text */
.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

/* Ensure smooth movement and hide overflow */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

/* Individual content blocks */
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 40px;
    /* Space between the end of content and next duplicate */
}

/* Message container with spacing between diamond and text */
.message-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* Space between diamond and text */
}

/* Separator styling with spacing */
.separator {
    display: inline-block;
    padding: 0 16px;
    /* Space around separator */
}


/* ======================= category page sidebar ======================= */