:root {
    --primary-blue: #032E6D;
    --light-blue: #f0f4f8;
    --gold: #cba86c;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --font-heading: 'Tenor Sans', ui-serif, Georgia, serif;
    --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'ss01', 'cv11';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.bg-blue {
    background-color: var(--primary-blue);
    color: white;
}

.section {
    padding: 80px 5%;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: #071736;
}

.btn-outline {
    background-color: #ffffff;
    color: var(--primary-blue);
    border: 1px solid #dddde0;
}

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

.btn-light-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-light-outline:hover {
    background-color: white;
    color: var(--primary-blue);
}

.shop-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    border-bottom: 1px solid var(--text-light);
    padding-bottom: 2px;
    display: inline-block;
    margin-top: 15px;
}

.shop-link i {
    margin-left: 5px;
}

.shop-link:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.top-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 5%;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.top-bar .main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (min-width: 769px) {
    .top-bar {
        height: 40px !important;
        padding: 0 5% !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .top-bar .main-container {
        height: 100% !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.top-bar-center {
    font-weight: 300;
}

.top-bar-right {
    position: absolute;
    right: 5%;
    display: flex;
    align-items: center;
}

.top-bar-right a {
    color: white;
    font-weight: 500;
    letter-spacing: 2px;
}

.show-desktop-only {
    display: none !important;
}
.show-mobile-only {
    display: block !important;
}
@media (min-width: 769px) {
    .show-desktop-only {
        display: block !important;
    }
    .show-mobile-only {
        display: none !important;
    }
}

.divider {
    margin: 0 15px;
    opacity: 0.5;
}

/* Header */
.header {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-bottom-color 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 769px) {
    .header {
        height: 80px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .header-container {
        height: 80px !important;
        max-width: 1280px !important;
        padding: 0 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .logo {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .nav-links {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
        margin: 0 !important;
    }

    .nav-links li {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
        padding: 0 !important;
    }

    .nav-icons {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
}

.header.header-scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(234, 234, 234, 0.5);
}

.logo {
    text-align: center;
    margin-right: 40px;
}

.logo h1 {
    font-size: 32px;
    letter-spacing: 8px;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 400;
    transition: all 0.3s ease;
}

.logo-sub {
    font-size: 8px;
    letter-spacing: 6px;
    color: var(--text-light);
    display: block;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.header-logo-img {
    max-height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Tablet Logo Sizing */
@media (max-width: 1024px) {
    .logo h1 {
        font-size: 24px !important;
        letter-spacing: 6px !important;
        margin-bottom: 3px !important;
    }
    .logo-sub {
        font-size: 7px !important;
        letter-spacing: 5px !important;
        margin-left: 6px !important;
    }
    .header-logo-img {
        max-height: 40px !important;
    }
}

/* Mobile Logo Sizing */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px !important;
        letter-spacing: 4px !important;
        margin-bottom: 2px !important;
    }
    .logo-sub {
        font-size: 5px !important;
        letter-spacing: 3px !important;
        margin-left: 4px !important;
    }
    .header-logo-img {
        max-height: 30px !important;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li {
    padding: 10px 0;
}

.nav-links li a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--text-dark);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

/* Mega Menu */
#mobile-menu-toggle {
    display: none;
}
.mobile-dropdown-toggle {
    display: none;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}

.mega-menu-content {
    display: flex;
    justify-content: flex-start;
    padding: 40px 5%;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.mega-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-col ul li {
    padding: 0;
}

.mega-col ul li a {
    font-size: 13px;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-dark);
    border: none;
}

.mega-col ul li a:hover {
    color: var(--primary-blue);
    border: none;
}

.mega-category {
    width: 250px;
}

.mega-category h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 400;
}

.mega-category p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mega-category .view-all {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 500;
    border-bottom: 1px solid var(--primary-blue);
    display: inline-block;
    width: fit-content;
    max-width: fit-content;
    padding-bottom: 2px;
}

.mega-image {
    margin-left: auto;
    text-align: center;
}

.mega-image img {
    width: 350px;
    height: 263px;
    object-fit: cover;
    margin-bottom: 15px;
    background: #F8F9FB;
}

.mega-image .img-caption {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.nav-icons {
    display: flex;
    gap: 25px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 300;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 0% 0%, #dbeafe 0%, #eff6ff 20%, #ffffff 75%);
    position: relative;
    padding: 0 32px 64px 32px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 0% 0%, rgba(191, 219, 254, 0.5) 0%, rgba(224, 242, 254, 0.25) 20%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-circle-1,
.hero-bg-circle-2 {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
    margin-top: 16px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.hero-buttons .btn {
    height: 52px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img,
.hero-image video {
    width: 560px;
    height: 560px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .hero {
        padding: 32px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: center;
    }

    .hero-bg-circle-1,
    .hero-bg-circle-2 {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 0 20px;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-image img,
    .hero-image video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        margin-top: 24px;
    }

    .hero-image img,
    .hero-image video {
        max-width: 440px;
    }
}

/* Category Section - Carousel */
.category-section {
    padding: 56px 5%;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-carousel-container .carousel-track {
    /* Removed mask-image to eliminate side shadows */
}

.carousel-btn {
    background: white;
    border: 1px solid #eaeaea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    color: var(--primary-blue);
    position: absolute;
    top: 40%;
}

.left-btn {
    left: 10px;
    z-index: 100;
}

.right-btn {
    right: 10px;
    z-index: 100;
}

.carousel-btn:hover,
.cat-nav-btn:hover,
.loved-nav-btn:hover,
.explore-nav-btn:hover {
    background: #ffffff !important;
    color: var(--primary-blue) !important;
    border-color: #eaeaea !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.category-item {
    text-align: center;
    cursor: pointer;
    min-width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.category-item .circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #fcecd6;
    border: none;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
}

.category-item .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-item:hover .circle-img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.category-item .category-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .category-section {
        padding: 32px 5%;
    }

    .carousel-track {
        gap: 16px;
    }

    .category-item .circle-img {
        width: 96px;
        height: 96px;
        margin-bottom: 10px;
    }

    .category-item .category-label {
        font-size: 11px;
        margin-top: 10px;
    }

    /* Align buttons with image center on mobile */
    .category-carousel-container .carousel-btn {
        display: flex !important;
        top: 70px !important;
        transform: translateY(-50%) !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 10px !important;
    }
    .category-carousel-container .left-btn {
        left: -12px !important;
    }
    .category-carousel-container .right-btn {
        right: -12px !important;
    }
}

/* Banner Split */
.banner-split {
    display: flex;
    max-width: 100%;
    margin: 0 auto 80px auto;
    width: 100%;
}

@media (min-width: 769px) {
    .banner-split {
        max-width: 100%;
        height: 460px;
    }
}

.banner-text {
    flex: 1;
    background-color: var(--primary-blue);
    color: white;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-text h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.banner-text p {
    margin-bottom: 40px;
    font-size: 15px;
    opacity: 0.8;
    max-width: 400px;
}

.banner-img {
    flex: 1.2;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Diamonds Shape */
.mobile-sig-slider-btn {
    display: none;
}

.shape-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.shape-featured {
    flex: 1;
}

.shape-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.shape-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

@media (min-width: 769px) {
    .shape-item-inner {
        width: 123px !important;
        height: 123px !important;
    }
    .shape-item-inner img {
        width: 123px !important;
        height: 123px !important;
        object-fit: contain !important;
    }
}

.shape-item svg {
    margin-bottom: 10px;
    opacity: 0.4;
    transition: 0.3s;
}

.shape-item p {
    font-size: 11px;
    text-transform: capitalize;
    color: var(--text-light);
}

.shape-item:hover svg {
    opacity: 1;
    stroke: var(--primary-blue);
}

.shape-item:hover p {
    color: var(--primary-blue);
}

.shape-item-inner img {
    transition: transform 0.3s ease;
}

.shape-item:hover .shape-item-inner img {
    transform: scale(1.15);
}


/* Discover Your Signature Piece */
.explore-card .img-container {
    overflow: hidden;
    position: relative;
}

.explore-card .img-container img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important; /* માત્ર આ એક લાઈન ઉમેરો */
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.explore-card:hover .img-container img {
    transform: scale(1.08);
}

.signature-grid {
    display: flex;
    gap: 30px;
}

.sig-item {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.sig-item>img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: 0.7s;
}

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

.sig-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
}

.sig-content h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 10px;
}

.sig-content .shop-link {
    color: white;
    border-bottom-color: white;
}

/* KAYRA Promises */
.promises {
    padding: 80px 5%;
    text-align: center;
}

.promises-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.promise-item {
    flex: 1;
    min-width: 200px;
}

.promise-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.promise-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.promise-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
    .promises-grid {
        flex-wrap: nowrap;
        gap: 30px;
        justify-content: space-between;
    }

    .promise-item {
        flex: 1;
        text-align: center;
        border: none;
        background: transparent;
        padding: 0;
    }

    .promise-item .icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px auto;
    }

    .promise-item .icon span {
        font-size: 24px !important;
        margin: 0;
    }

    .promise-item h4 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .promise-item p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Explore Rings by Style */
.style-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.style-item {
    text-align: center;
    flex: 1;
}

.style-item .img-wrapper {
    background-color: #fcfcfc;
    padding: 30px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.style-item img {
    width: 100%;
    max-width: 200px;
}

.style-item:hover .img-wrapper {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.style-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.style-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* Most Loved */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.product-card {
    text-align: center;
    background: white;
    padding: 30px;
    position: relative;
    flex: 1;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.wishlist-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
}

.wishlist-icon:hover {
    color: red;
}

.product-card img {
    max-width: 200px;
    margin-bottom: 20px;
}

.product-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.product-card .price {
    font-size: 14px;
    color: var(--text-light);
}

/* Clarity Section */
.clarity-section {
    padding: 80px 5%;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.clarity-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.clarity-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.clarity-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Newsletter */
.newsletter {
    padding: 80px 5%;
    background-color: white;
    border-top: 1px solid #eaeaea;
}

.newsletter .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--text-light);
    font-size: 14px;
}

.newsletter-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 1px solid #ccc;
    width: 350px;
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: 30px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-blue);
}

/* Footer */
.footer {
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1440px;
    margin: 0 auto 60px auto;
    width: 100%;
}

.footer-col {
    /* flex: 1; removed for grid */
}

.accordion-icon {
    display: none !important;
}

.brand-col {
    padding-right: 50px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.footer-col h4.accordion-header {
    padding: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: white;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 13px;
}

.contact-info i {
    margin-right: 8px;
    width: 15px;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: white;
    color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    letter-spacing: 2px;
}

.footer-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    max-width: 1440px;
    margin: 0 auto 20px auto;
    width: 100%;
}

.badge-group h5 {
    color: white;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.badge-icons {
    display: flex;
    gap: 15px;
}

.badge-box {
    background: white;
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-box img {
    height: 20px;
    object-fit: contain;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background: white;
    width: 80%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 4px;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.search-modal-header h2 {
    font-size: 16px;
    color: var(--primary-blue);
    margin: 0;
}

.search-modal-header button {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
}

.search-input-wrapper {
    position: relative;
    padding: 0 30px 20px;
    border-bottom: 1px solid #eaeaea;
}

.search-input-wrapper i {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    margin-top: -10px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #eaeaea;
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 4px;
    outline: none;
}

.search-input-wrapper input:focus {
    border-color: var(--primary-blue);
}

.search-results-container {
    display: flex;
    padding: 30px;
    gap: 40px;
}

.search-history {
    flex: 1;
}

.history-list {
    list-style: none;
    margin-bottom: 30px;
}

.history-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 13px;
    cursor: pointer;
}

.history-list li i.fa-magnifying-glass {
    color: var(--text-light);
    margin-right: 15px;
}

.history-list li i.fa-arrow-trend-up {
    margin-left: auto;
    color: var(--text-light);
    font-size: 12px;
}

.history-list li:hover {
    color: var(--primary-blue);
}

.suggestions h3 {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.suggestion-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 8px 15px;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.search-top-picks {
    flex: 1;
}

.top-picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.top-picks-header h3 {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary-blue);
}

.top-picks-header a {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary-blue);
    text-decoration: none;
}

.top-picks-grid {
    display: flex;
    gap: 15px;
    position: relative;
}

.pick-card {
    flex: 1;
}

.pick-img {
    position: relative;
    background: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 2px;
    overflow: hidden;
}

.pick-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.pick-img .fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-light);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pick-card h4 {
    font-size: 11px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.pick-card p {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.carousel-nav {
    position: absolute;
    top: 50px;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #eaeaea;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.prev-nav {
    left: -15px;
}

.next-nav {
    right: -15px;
}

/* Wishlist Page */
.wishlist-page {
    padding: 60px 5% 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.wishlist-header {
    margin-bottom: 20px;
}

.wishlist-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.wishlist-header h1 {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 10px;
}

.wishlist-header p {
    font-size: 13px;
    color: var(--text-light);
}

.wishlist-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 30px 0 80px;
}

.wishlist-empty-state {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 100px;
}

.empty-heart-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #e8dac9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 24px;
    color: #cba86c;
}

.wishlist-empty-state h2 {
    font-size: 22px;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 15px;
}

.wishlist-empty-state p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.wishlist-newsletter {
    background-color: #f7f9fa;
    padding: 60px 5%;
}

.wishlist-newsletter .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.wishlist-newsletter .newsletter-content {
    flex: 1;
    max-width: 500px;
}

.wishlist-newsletter .newsletter-content h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 400;
}

.wishlist-newsletter .newsletter-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.wishlist-newsletter .newsletter-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.wishlist-newsletter .newsletter-form input {
    padding: 15px 20px;
    border: 1px solid #eaeaea;
    width: 400px;
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: 4px;
    outline: none;
}

.wishlist-newsletter .newsletter-form button {
    border-radius: 4px;
    padding: 15px 40px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Product Page */
.product-page {
    padding: 60px 5% 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--text-light);
}

.product-main {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.product-image-col {
    flex: 1;
}

.product-image-col img.main-img {
    width: 100%;
    background: #F8F9FB;
    display: block;
    mix-blend-mode: multiply;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: #eaeaea;
    border-radius: 4px;
}

.product-thumbnails .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: #F8F9FB;
    cursor: pointer;
    opacity: 0.6;
    border: 1px solid transparent;
    transition: all 0.3s;
    mix-blend-mode: multiply;
}

.product-thumbnails .thumb:hover {
    opacity: 0.9;
}

.product-thumbnails .thumb.active {
    opacity: 1;
    border-color: var(--primary-blue);
}

.product-info-col {
    flex: 1;
    max-width: 600px;
}

.product-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.product-title-row h1 {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 400;
}

.wishlist-btn-large {
    background: white;
    border: 1px solid #eaeaea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
}

.alert-box {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-bottom: 25px;
}

.alert-title {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.alert-box p {
    font-size: 11px;
    color: var(--text-dark);
    line-height: 1.5;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (min-width: 481px) {
    .product-desc {
        font-size: 15px;
    }
}

.product-options {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.option-label strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 480px) {
    .option-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

.color-swatches {
    display: flex;
    gap: 15px;
}

.swatch {
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
    .swatch {
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 768px) {
    .swatch {
        width: 24px !important;
        height: 24px !important;
    }
}

.swatch.active {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.white-gold {
    background: #e6e8ea;
}

.yellow-gold {
    background: #d4af37;
}

.rose-gold {
    background: #e0bfb8;
}

.purity-pills {
    display: flex;
    gap: 10px;
}

.purity-btn {
    border: 1px solid #eaeaea;
    background: white;
    color: var(--text-light);
    font-size: 11px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

@media (min-width: 769px) {
    .purity-btn {
        width: 52px !important;
        height: 36px !important;
        font-size: 10px !important;
        border-radius: 20px !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .purity-btn {
        padding: 6px 12px !important;
        font-size: 10px !important;
        border-radius: 20px !important;
    }
}

.purity-btn.active {
    background: var(--primary-blue) !important;
    color: white !important;
    border-color: var(--primary-blue) !important;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-block {
    width: 100%;
    display: block;
}

.product-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
    margin-bottom: 30px;
}

.product-features span {
    font-size: 10px;
    color: var(--text-dark);
}

.product-features i {
    color: var(--text-dark);
    margin-right: 5px;
}

.product-accordions .accordion {
    border-bottom: 1px solid #eaeaea;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 15px;
    color: var(--primary-blue);
    font-weight: 500;
}

.accordion-header i {
    color: var(--primary-blue);
    font-size: 12px;
}

@media (min-width: 481px) {
    .accordion-header h3 {
        font-size: 20px;
    }
    .accordion-header i {
        font-size: 16px;
    }
}

.accordion-body {
    padding-bottom: 20px;
    display: none;
}

.accordion.active .accordion-body {
    display: block;
}

.accordion-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 13px;
}

.specs-table td:first-child {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 150px;
}

.specs-table td:last-child {
    color: var(--text-dark);
}

/* Tablet View specs-table sizes */
@media (min-width: 481px) and (max-width: 768px) {
    .specs-table td {
        font-size: 14px;
    }
    .specs-table td:first-child {
        text-transform: none;
        letter-spacing: normal;
        width: 200px;
    }
}

/* Desktop View specs-table sizes */
@media (min-width: 769px) {
    .specs-table td {
        font-size: 14px;
    }
    .specs-table td:first-child {
        text-transform: none;
        letter-spacing: normal;
        width: 220px;
    }
}

.related-products h2 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Category Dropdown Navigation Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    padding: 15px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dropdown-menu li {
    padding: 8px 20px !important;
}

.dropdown-menu li a {
    font-size: 12px !important;
    text-transform: capitalize !important;
    letter-spacing: 1px !important;
    color: var(--text-dark) !important;
    border: none !important;
    display: block;
    width: 100%;
    padding-bottom: 0 !important;
    transition: color 0.2s, padding-left 0.2s;
}

.dropdown-menu li a:hover {
    color: var(--gold) !important;
    padding-left: 5px !important;
    border: none !important;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS (ADDED)
   ========================================================================== */

@media (max-width: 1024px) {

    /* Header & Navigation */
    #mobile-menu-toggle {
        display: inline-block !important;
    }

    .logo {
        margin-right: 0 !important;
        flex: 1;
        text-align: left;
    }

    .header-container {
        padding: 15px 5%;
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        z-index: 2000;
        padding: 20px 0;
        border-top: 1px solid #eaeaea;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 5%;
    }

    .nav-links li {
        width: 100%;
        position: relative;
        border-bottom: 1px solid #f7f7f7;
    }

    .nav-links li a {
        display: block;
        padding: 10px 0;
        font-size: 13px;
        width: 100%;
    }

    .mobile-dropdown-toggle {
        display: block;
        padding: 10px;
        cursor: pointer;
        color: var(--text-dark);
        font-size: 14px;
    }

    /* Mega menu mobile adjustments */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 10px 15px;
        border: none;
    }

    .has-mega-menu:hover .mega-menu {
        display: none !important;
    }

    .has-mega-menu.open .mega-menu {
        display: block !important;
    }

    .mega-menu-content {
        flex-direction: column;
        gap: 10px;
        padding: 5px 0 15px 0;
    }

    .mega-col.mega-image {
        display: none;
    }

    .mega-col.mega-category {
        display: flex;
        flex-direction: column;
        order: 99;
        padding: 15px 10px 0 10px;
        align-items: center;
    }

    .mega-col.mega-category span,
    .mega-col.mega-category h2,
    .mega-col.mega-category p {
        display: none !important;
    }

    .mega-col.mega-category .view-all {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 14px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        color: var(--primary-blue);
        font-weight: 500;
        font-size: 14px;
        text-transform: none;
    }

    .mega-col span {
        display: block;
        font-size: 10px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 20px 10px 5px 10px;
        font-weight: 600;
    }

    .mega-col ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mega-col ul li a {
        display: flex;
        align-items: center;
        padding: 14px 10px 14px 37px;
        color: var(--text-dark);
        font-size: 14px;
        border-bottom: 1px solid #f2f2f2;
    }

    .mega-col.mega-col-metal ul li a {
        padding-left: 10px;
    }

    .mega-col.mega-col-metal ul li a::before {
        content: "\f1db";
        font-family: "Font Awesome 6 Free";
        font-weight: 400;
        font-size: 12px;
        color: #999;
        margin-right: 15px;
    }

    .mega-col ul li a::after {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 10px;
        color: #bbb;
        margin-left: auto;
    }

    /* Top Bar */
    .top-bar {
        padding: 8px 5% !important;
        text-transform: none !important;
    }

    .top-bar .main-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        position: relative !important;
    }

    .top-bar-center {
        text-align: left !important;
        font-size: 9px !important;
        line-height: 1.35 !important;
        max-width: calc(100% - 85px) !important;
        font-weight: 400 !important;
    }

    .top-bar-center span {
        display: block !important;
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }

    .top-bar-right {
        position: absolute !important;
        right: 0 !important;
        display: flex !important;
        font-size: 10px !important;
    }

    .top-bar-right a {
        text-decoration: underline !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
    }

    /* Grid adjustments */
    .section-header {
        margin-bottom: 25px !important;
    }

    .section-header h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .section-header .subtitle {
        font-size: 9px !important;
        letter-spacing: 3px !important;
        margin-bottom: 5px !important;
    }

    .shape-container {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .shape-featured {
        width: 100% !important;
        text-align: center !important;
    }

    .shape-featured img,
    .shape-featured video {
        max-width: 250px !important;
    }

    .shape-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 0 5px;
    }

    .shape-item-inner {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1.2;
    }

    .shape-item p {
        font-size: 9px !important;
        margin-top: 5px !important;
    }

    .signature-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding-bottom: 20px !important;
        margin-left: -5% !important;
        margin-right: -5% !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        position: relative;
    }

    .signature-grid::-webkit-scrollbar {
        display: none;
    }

    .mobile-sig-slider-btn {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: white;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }

    .mobile-sig-slider-btn-left {
        left: 0;
        right: auto;
    }

    .mobile-sig-slider-btn-right {
        right: 0;
        left: auto;
    }

    .sig-item {
        flex: 0 0 45% !important;
        scroll-snap-align: start;
        height: 250px !important;
        min-width: 0 !important;
        max-width: none !important;
    }


    .sig-item>img {
        height: 100% !important;
    }

    .sig-content {
        padding: 20px 15px !important;
    }

    .sig-content h3 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }

    .related-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .product-card .img-wrapper {
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
}
@media (max-width: 767px) {
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 0px !important;
    }

    .footer-col h4 {
        margin-bottom: 0 !important;
    }

    .accordion-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-weight: 400 !important;
        font-size: 15px !important;
        width: 100% !important;
    }

    .accordion-header .accordion-icon {
        display: block !important;
    }

    .accordion-content {
        margin: 0 !important;
        padding-top: 15px !important;
        padding-bottom: 20px !important;
        display: none;
    }

    .footer-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-top: 30px !important;
        width: 100%;
    }

    .badge-group:last-child .badge-icons {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        width: 100%;
    }
    .badge-group:first-child .badge-icons {
        flex-wrap: wrap;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 15px !important;
        padding-top: 30px !important;
    }

    .footer-bottom p {
        text-align: center !important;
        line-height: 1.5 !important;
    }

    /* Newsletter */
    .newsletter-row {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .newsletter-text h2 {
        text-align: center !important;
    }

    .newsletter-text p {
        text-align: center !important;
        margin: 0 auto !important;
    }

    .newsletter-form-wrapper {
        justify-content: center !important;
        width: 100% !important;
    }

    .newsletter-form {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        align-items: center !important;
    }

    .newsletter-form-row {
        flex-direction: column !important;
        height: auto !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .newsletter-form-row input {
        width: 100% !important;
        max-width: none !important;
        height: 44px !important;
        box-sizing: border-box !important;
        text-align: left !important;
        border-radius: 0 !important;
        -webkit-appearance: none !important;
        -webkit-border-radius: 0 !important;
    }

    .newsletter-form-row button {
        width: 100% !important;
        max-width: none !important;
        height: 44px !important;
        box-sizing: border-box !important;
    }

    .newsletter-form-row input::placeholder {
        color: #999 !important;
        font-weight: 300 !important;
    }

    .newsletter-disclaimer {
        text-align: center !important;
        margin-top: 5px !important;
    }

    .social-icons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 200px;
        margin: 20px 0 0 0;
    }

    .social-icons a {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
}

@media (max-width: 640px) {
    /* Hero / Homepage sections */
    .hero {
        padding: 0 5% 40px 5% !important;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column-reverse !important;
        min-height: auto !important;
        gap: 30px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-content {
        padding-right: 0 !important;
        text-align: center !important;
        align-items: center !important;
    }

    .hero-content h1 {
        font-size: clamp(24px, 8vw, 32px) !important;
        margin-top: 10px !important;
        line-height: 1.2 !important;
        color: var(--primary-blue) !important;
    }

    .hero-tagline {
        font-size: clamp(9px, 3vw, 11px) !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 8px !important;
    }

    .hero-content p {
        font-size: 14px !important;
        margin: 0 auto 25px auto !important;
        line-height: 1.5 !important;
    }

    .hero-buttons {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        display: block !important;
        padding: 15px 20px !important;
    }

    .hero-image {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-image img,
    .hero-image video {
        max-height: 320px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: contain !important;
    }
}

@media (max-width: 768px) {
    /* Category mobile section layout */
    .category-section h2 {
        font-size: 28px !important;
        white-space: nowrap !important;
    }

    .category-item {
        min-width: calc((100% - 40px) / 3) !important;
        flex: 0 0 calc((100% - 40px) / 3) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .circle-img {
        width: 100% !important;
        max-width: 100px !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        margin: 0 auto 15px !important;
    }

    .carousel-track {
        gap: 20px !important;
    }

    .category-item p {
        font-size: 11px !important;
        margin-top: 8px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* Banner Split mobile layout */
    .banner-split {
        flex-direction: column !important;
        margin: 0 0 50px !important;
    }

    .banner-text {
        padding: 40px 20px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .banner-text h2 {
        font-size: clamp(20px, 6vw, 26px) !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .banner-text p {
        font-size: 14px !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }

    .banner-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .banner-buttons .btn {
        width: 100% !important;
    }

    .banner-img {
        min-height: 250px !important;
        height: 250px !important;
    }

    .hero-slider {
        height: 60vh !important;
    }

    .hero-slide h2 {
        font-size: clamp(24px, 8vw, 32px) !important;
    }

    .hero-slide p {
        font-size: clamp(12px, 4vw, 14px) !important;
    }

    .clarity-section h2 {
        font-size: clamp(22px, 7vw, 30px) !important;
    }

    .clarity-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    /* KAYRA Edit Section */
    .kayra-edit-section {
        padding: 40px 5% !important;
    }

    .kayra-edit-row {
        flex-direction: column-reverse !important;
        gap: 30px !important;
    }

    .kayra-edit-text {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kayra-edit-subtitle {
        text-align: center !important;
    }

    .kayra-edit-title {
        font-size: 32px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .kayra-edit-desc {
        text-align: center !important;
    }

    .kayra-edit-btns {
        justify-content: center !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .kayra-edit-btns .btn {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    .clarity-buttons .btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Product details page */
    .product-main {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .product-image-col {
        position: static !important;
    }

    .product-options {
        flex-direction: column;
        gap: 25px !important;
    }

    .option-label {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    /* Bespoke / Custom design multi-step form */
    .custom-form-container {
        padding: 30px 20px !important;
    }

    .stepper-bar {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .stepper-step {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 5px !important;
        background: transparent !important;
    }

    .stepper-line {
        display: block !important;
        flex: 1 !important;
        margin-top: 16px !important;
        /* Half of circle height */
    }

    .step-label {
        font-size: 9px !important;
        text-align: center !important;
    }

    .trust-badges-grid {
        flex-direction: row !important;
        gap: 10px !important;
    }
    
    .trust-badges-grid .badge-item {
        padding: 10px !important;
        flex-direction: column;
        gap: 5px;
    }
    
    .trust-badges-grid .badge-item p {
        font-size: 9px !important;
        letter-spacing: 1px !important;
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column-reverse !important;
        gap: 15px !important;
    }

    .nav-buttons .nav-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .custom-form-group select,
    .custom-form-group input,
    .custom-form-group textarea {
        font-size: 14px !important;
    }

    .step-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Search modal */
    .search-modal-content {
        width: 95% !important;
        max-height: 95vh !important;
        padding: 15px !important;
    }

    .search-input-wrapper input {
        font-size: 16px !important;
        padding: 10px 10px 10px 40px !important;
    }

    .search-results-container {
        flex-direction: column !important;
        padding: 20px 0 !important;
        gap: 30px !important;
    }

    .search-top-picks {
        width: 100% !important;
    }

    .sig-item {
        min-width: 100% !important;
        height: 350px !important;
    }

    .style-item {
        min-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-slide h2 {
        font-size: 24px !important;
    }

    .nav-icons {
        gap: 10px !important;
    }

    .trust-badges-grid {
        flex-direction: column !important;
        gap: 15px !important;
    }

}

/* General mobile fixes to prevent overflow */
html,
body {
    max-width: 100vw;
    overflow-x: clip;
}

/* Tablet fixes */
@media (min-width: 769px) and (max-width: 1024px) {

    .related-grid,
    .product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .product-card .img-wrapper {
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
}

/* AJAX SPA Loading Animation */
#ajax-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gold, #d4af37);
    width: 0%;
    z-index: 99999;
    transition: width 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 0 10px var(--gold, #d4af37);
}

.ajax-transition {
    transition: opacity 0.3s ease-out;
    opacity: 1;
}

@keyframes skeleton-pulse {
    0% {
        opacity: 0.7;
        filter: grayscale(50%);
    }

    50% {
        opacity: 0.3;
        filter: grayscale(100%);
    }

    100% {
        opacity: 0.7;
        filter: grayscale(50%);
    }
}

.ajax-fade-out {
    animation: skeleton-pulse 1.2s infinite ease-in-out;
    pointer-events: none;
}

/* 1. Premium Hover Effects */
.product-card:hover .img-wrapper img {
    transform: scale(1.08) !important;
}

/* 2. Scroll Micro-animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Sticky Add to Cart (Mobile) */
.mobile-sticky-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-btn {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px 20px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .mobile-sticky-btn .btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .product-page {
        padding-bottom: 90px;
    }
}

/* Desktop Sticky Action Bar */
.desktop-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
}

.desktop-sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    padding: 10px 5%;
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-product-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.sticky-product-details h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-blue);
    margin: 0 0 2px 0;
}

.sticky-product-details p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 1px;
}

.sticky-actions {
    display: flex;
    gap: 15px;
}

.sticky-actions .btn {
    padding: 10px 20px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .desktop-sticky-bar {
        display: none !important;
    }
}

/* --------------------------------------
   Category Page Specific Styles
-------------------------------------- */

/* Hero Banner */
.category-hero {
    position: relative;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 16 / 9;
    max-height: 800px;
    overflow: hidden;
    color: white;
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.category-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 27, 61, 0.4);
    /* dark overlay for text readability */
}

.category-hero-content {
    position: relative;
    z-index: 1;
}

.category-hero h1 {
    font-size: 64px;
    margin-bottom: 16px;
    color: white;
    font-family: var(--font-heading);
}

.category-hero p {
    font-size: 16px;
    max-width: 640px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Subcategories Quick-Nav */
.subcategories-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    max-width: 1440px;
    margin: 20px auto 40px;
    padding: 0 5% 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.subcategories-grid::-webkit-scrollbar {
    display: none;
}

.subcategory-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    min-width: 130px;
    width: 130px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    box-sizing: border-box;
}

.subcategory-img-wrapper {
    width: 100%;
    height: 130px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F8F9FB;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.subcategory-tile:hover,
.subcategory-tile.active {
    border-color: #DDDDE0;
    box-shadow: 0 4px 12px rgba(11, 34, 76, 0.08);
}

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

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

.subcategory-tile span {
    font-size: 11px;
    font-weight: 500;
    padding: 10px 6px;
    text-align: center;
    width: 100%;
    background: #fff;
    color: var(--primary-blue);
    border-top: 1px solid #eaeaea;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    line-height: 1.25;
    box-sizing: border-box;
}

.subcategories-pill-nav {
    display: none;
    overflow-x: auto;
    gap: 8px;
    padding: 20px 5%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.subcategories-pill-nav::-webkit-scrollbar {
    display: none;
}

.pill-nav-item {
    height: 36px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #eaeaea;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--text-dark);
}

.pill-nav-item.active,
.pill-nav-item:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

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

.product-card-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.3s;
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #F8F9FB;
    overflow: hidden;
    border-radius: 4px;
}

.product-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

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

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    color: #ccc;
    font-size: 16px;
}

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

.wishlist-btn.active,
.loved-heart.active,
.wishlist-btn-large.active,
.wishlist-icon.active {
    background-color: #CFAA6A !important;
    border-color: #CFAA6A !important;
}

.wishlist-btn.active i,
.loved-heart.active i,
.wishlist-btn-large.active i,
.wishlist-icon.active i {
    color: #032E6D !important;
}

.product-card-info {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.metal-swatches {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.metal-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-name {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.product-card-info .price {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    /* Hero Banner */
    .category-hero {
        padding: 32px 5%;
        aspect-ratio: 1 / 1;
        max-height: 500px;
    }

    .category-hero h1 {
        font-size: 32px;
    }

    .category-hero p {
        font-size: 14px;
    }

    /* Subcategories */
    .subcategories-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        grid-template-columns: none;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .subcategories-grid::-webkit-scrollbar {
        display: none;
    }

    .subcategory-tile {
        min-width: min-content;
    }

    .subcategory-img-wrapper {
        width: 145px;
        height: 145px;
        flex-shrink: 0;
    }

    .subcategories-pill-nav {
        display: flex;
        /* Show pill nav on mobile */
    }

    /* Product Grid */
    .product-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

/* Dynamic Page Styles */

/* Dynamic Page Styles */
.dynamic-page {
    max-width: 900px;
    margin: 120px auto 100px;
    padding: 0 20px;
    font-family: var(--font-body);
    line-height: 1.8;
    color: #333;
    min-height: 50vh;
}

.dynamic-page h1 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: capitalize;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.dynamic-page .page-content {
    font-size: 15px;
    color: #555;
}

/* Specific Legal Page Styles matching Reference */
.dynamic-page.legal-page {
    max-width: 800px;
}

.dynamic-page.legal-page .eyebrow {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dynamic-page.legal-page h1 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
    font-size: 46px;
    padding-bottom: 0;
}

/* Center the first introductory paragraph */
.dynamic-page.legal-page .page-content>p:first-of-type {
    text-align: center;
    margin-bottom: 50px;
    font-size: 14px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Style the numbered headings (usually h2, h3 or strong paragraphs) */
.dynamic-page.legal-page .page-content h2,
.dynamic-page.legal-page .page-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 400;
    margin-top: 45px;
    margin-bottom: 15px;
}

/* List styling */
.dynamic-page.legal-page .page-content ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 25px;
}

.dynamic-page.legal-page .page-content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.dynamic-page.legal-page .page-content ul li::before {
    content: "\2022";
    color: #d1b88e;
    /* brownish gold bullet */
    position: absolute;
    color: #d1b88e;
    /* brownish gold bullet */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1.6;
}

.dynamic-page.legal-page .page-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* Ensure accordion content is visible on desktop */
@media (min-width: 769px) {
    .accordion-content {
        display: block !important;
        padding-bottom: 0 !important;
        margin-top: 15px !important;
    }

    .accordion-header {
        border-top: none !important;
        padding: 0 !important;
        pointer-events: none;
    }

    .accordion-header .accordion-icon {
        display: none !important;
    }
}

/* Skeleton Loaders for AJAX Transitions */
.skeleton-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    box-sizing: border-box;
    opacity: 0;
    animation: skeletonFadeIn 0.3s forwards;
}

@keyframes skeletonFadeIn {
    to { opacity: 1; }
}

/* Shimmer animation */
.shine {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation: placeholderShimmer 1.2s linear infinite forwards;
    position: relative;
    overflow: hidden;
}

@keyframes placeholderShimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

/* Grid Skeleton */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.skeleton-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.skeleton-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #edeef1;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-title {
    width: 40%;
    height: 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.skeleton-text {
    width: 90%;
    height: 14px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.skeleton-price {
    width: 30%;
    height: 12px;
    border-radius: 3px;
}

/* Detail page skeleton */
.skeleton-detail-container {
    display: flex;
    gap: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .skeleton-detail-container {
        flex-direction: column;
        gap: 24px;
    }
}

.skeleton-detail-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.skeleton-detail-main-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    margin-bottom: 16px;
}

.skeleton-detail-thumbs {
    display: flex;
    gap: 10px;
}

.skeleton-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.skeleton-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.skeleton-subtitle {
    width: 30%;
    height: 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.skeleton-title-large {
    width: 80%;
    height: 24px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.skeleton-price-large {
    width: 40%;
    height: 18px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.skeleton-option-label {
    width: 25%;
    height: 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.skeleton-swatches {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.skeleton-swatch {
    width: 32px;
    height: 32px;
}

.skeleton-swatch.circle {
    border-radius: 50%;
}

.skeleton-purity-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.skeleton-purity-btn {
    width: 52px;
    height: 36px;
    border-radius: 4px;
}

.skeleton-btn-large {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.skeleton-desc-block {
    width: 100%;
    height: 80px;
    border-radius: 4px;
}

/* Image Cards Loading Skeleton CSS */
.image-skeleton-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation: placeholderShimmer 1.2s linear infinite forwards;
    z-index: 10;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.img-with-skeleton {
    opacity: 0;
    transition: opacity 0.3s ease !important;
}

.img-with-skeleton.loaded {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .product-title {
        font-size: 28px !important;
    }
}