/* ================= CONTENT PROTECTION ================= */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
a img, button img, .setting-image img, .product-card img, .ring-card img {
    pointer-events: auto;
}
video {
    -webkit-user-drag: none;
    pointer-events: none;
}
a video, .setting-image video {
    pointer-events: auto;
}

/* ================= MOBILE NAVIGATION ================= */
@media (max-width: 768px) {
    .nav-left {
        display: none !important;
    }

    .nav-right {
        display: flex !important;
        align-items: center;
        gap: 0;
        flex: 0 0 auto;
    }

    .nav-right .nav-link,
    .nav-right .nav-cta {
        display: none !important;
    }

    .nav-right .nav-icons {
        display: flex !important;
        gap: 0.25rem;
    }

    .nav-right .currency-selector {
        display: none;
    }

    .navbar {
        padding: 0.5rem 0 !important;
        position: fixed !important;
    }

    .nav-container {
        padding: 0 0.75rem !important;
        justify-content: space-between !important;
    }

    .navbar > .mobile-menu-btn,
    .navbar .mobile-menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        justify-content: center;
        z-index: 1100 !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.5rem !important;
        background: none !important;
        border: none !important;
        color: #ffffff !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0;
        order: -1;
    }

    .nav-logo {
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .nav-logo .logo {
        height: 70px !important;
    }
    .mobile-menu-overlay {
        display: block !important;
    }

    body {
        padding-top: 60px !important;
    }

    .hero-section {
        padding-top: 60px !important;
        min-height: 70vh !important;
    }

    /* Hide My Account button on configurator page to avoid overlap */
    body.configurator-page .portal-floating-btn {
        display: none !important;
    }

    /* Hide hero video on mobile to save ~5.7MB bandwidth */
    .hero-bg {
        display: none !important;
    }
    .hero-section {
        background: url('../images/hero/hea-diamonds-hero.webp') center center / cover no-repeat !important;
    }

    /* Hide product hover videos on mobile (saves ~12MB) */
    .setting-video {
        display: none !important;
    }
}
/* Ensure hero section and video display correctly */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Account for fixed navbar */
    padding-bottom: 2rem;
}
/* Remove background from .c-section p */
.c-section p {
    background: none !important;
}
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury theme palette */
    --header-bg: #0D0D0D;
    --page-bg: #FFFFFF;
    --text: #111111;
    --accent-gold: #C5A572;
    --section-bg: #FAF9F7;

    /* Back-compat tokens used throughout the CSS */
    --black: #0D0D0D;
    --white: #FFFFFF;
    --rose-gold: #C5A572;
    --rose-gold-dark: #C5A572;
    --gray: #8B8B8B;
    --gray-light: #D4D4D4;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Account for fixed navbar */
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* SEO CHANGE: Force all content links to maintain rose gold color */
.comparison-desc a,
.comparison-desc a:visited,
.comparison-desc a:hover,
.comparison-desc a:active,
section p a,
section p a:visited,
section p a:hover,
section p a:active {
    color: var(--accent-gold) !important;
    text-decoration: underline;
}

/* Legacy inline SVG gold (old palette) -> new accent */
svg [fill="#c9a169"],
svg [fill="#d9b380"] {
    fill: var(--accent-gold) !important;
}

svg [stroke="#c9a169"],
svg [stroke="#d9b380"] {
    stroke: var(--accent-gold) !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--header-bg);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Navbar CTA Button */
.nav-cta {
    background: var(--accent-gold);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #b8935f;
    transform: translateY(-1px);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-toggle:hover {
    color: var(--accent-gold);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 13, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem 0;
    margin-top: 1rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, margin-top 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(197, 165, 114, 0.12);
    color: var(--accent-gold);
}

.nav-logo .logo {
    height: 160px;
    width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    line-height: 1;
}

.mobile-menu-btn:hover {
    color: var(--accent-gold);
}

.search-btn, .cart-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.search-btn:hover, .cart-btn:hover {
    color: var(--accent-gold);
}

/* Mobile Menu Overlay */
/* Mobile Menu Overlay - Fullscreen Navigation */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.97);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--rose-gold);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding: 0.85rem 1rem;
    transition: color 0.3s ease;
    display: block;
    min-height: 44px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--rose-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 50vh;
    padding: 7rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.78));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0.75rem;
    margin-top: 80px; /* Push content below fixed navbar */
}

.hero-eyebrow {
    color: var(--rose-gold);
    font-size: 0.875rem;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.hero-title {
    color: #f8f6f1;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-accent {
    color: var(--rose-gold);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1rem;
    color: #f8f6f1;
    line-height: 1.7;
    margin-bottom: 0.9rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2.2rem;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--header-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-lr;
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 0;
    background: var(--page-bg);
    color: var(--text);
}

.section-eyebrow {
    text-align: center;
    color: var(--rose-gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 400;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.08);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
}

.comparison-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.diamond-image {
    margin-bottom: 2rem;
    background: var(--black);
    padding: 1.5rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
}

.diamond-img {
    width: 100%;
    max-width: 260px;
    max-height: 180px;
    height: auto;
    object-fit: contain;
}

.comparison-heading {
    font-size: 1.75rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.comparison-desc {
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.comparison-bullets {
    color: #444;
    line-height: 1.8;
    margin: 0 auto 2rem;
    max-width: 320px;
    text-align: left;
    padding-left: 1.25rem;
}

.comparison-bullets li {
    margin-bottom: 0.5rem;
}

.comparison-bullets li:last-child {
    margin-bottom: 0;
}

.comparison-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(17, 17, 17, 0.2);
    color: var(--text);
}

.badge-link {
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.badge-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(197, 165, 114, 0.12);
    transform: translateY(-2px);
}

/* Settings Section */
.settings-section {
    padding: 4rem 0 8rem; /* Reduced top padding for better visibility */
    background: var(--page-bg);
    color: var(--text);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.setting-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.setting-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--header-bg);
}

.setting-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.setting-image img,
.setting-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.setting-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.setting-card:hover .setting-image img {
    opacity: 0;
}

.setting-card:hover .setting-video {
    opacity: 1;
}

.setting-info {
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.setting-info h3 {
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.setting-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

.setting-price {
    margin-top: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.05rem;
}

.setting-cta-row {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.setting-cta {
    display: inline-block;
    padding: 0.7rem 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.setting-cta:hover {
    transform: translateY(-1px);
}

.setting-cta-primary {
    background: var(--accent-gold);
    color: var(--header-bg);
}

.text-center {
    text-align: center;
}

.link-arrow {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: letter-spacing 0.3s;
}

.link-arrow:hover {
    letter-spacing: 3px;
}

/* Bespoke Section */
.bespoke-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.bespoke-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.bespoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.bespoke-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    color: var(--white);
}

.bespoke-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white);
}

.bespoke-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: var(--header-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 200px;
    width: auto;
    margin-top: -10px;
    margin-left: -10px;
}

.footer-col h4 {
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.email-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.875rem;
}

.email-input::placeholder {
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.875rem;
}

/* Social Media Section */
.social-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-section h4 {
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--black);
    transform: translateY(-3px);
}

.instagram-feed {
    min-height: 100px;
}

/* Responsive — Content sections (no nav overrides, handled by top block) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero Section — inspired by reference: 85vh, stacked buttons, cleaner text */
    .hero-section {
        min-height: 85vh;
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 1.25rem;
        margin-top: 0;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    /* Hide second subtitle paragraph on mobile to keep hero clean */
    .hero-subtitle + .hero-subtitle {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1rem;
        margin-top: 0.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.65rem;
    }

    /* Sections */
    .comparison-section,
    .settings-section,
    .bespoke-section {
        padding: 3rem 1rem;
    }

    .section-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Comparison Grid */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-card {
        padding: 1.5rem 1.25rem;
    }

    .comparison-heading {
        font-size: 1.5rem;
    }

    .comparison-desc {
        font-size: 0.95rem;
    }

    /* Settings Grid */
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .setting-info h3 {
        font-size: 1.125rem;
        letter-spacing: 1.5px;
    }

    .setting-info p {
        font-size: 0.9rem;
    }

    .link-arrow {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    /* Bespoke Section */
    .bespoke-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .bespoke-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        height: 120px;
        margin: 0 auto;
        display: block;
    }

    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-col ul li {
        margin-bottom: 0.5rem;
    }

    .footer-col a,
    .footer-col p {
        font-size: 0.8rem;
    }

    .email-input {
        font-size: 16px;
        padding: 0.75rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* ================= INLINE-STYLE MOBILE OVERRIDES ================= */
/* Many homepage sections use inline style= with hardcoded grids.
   These !important rules override them on mobile so content stacks. */
@media (max-width: 768px) {
    /* Force ALL inline grids inside sections to single column on tablet/phone */
    section [style*="grid-template-columns: repeat(2"],
    section [style*="grid-template-columns: repeat(3"],
    section [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials grid (minmax 300px overflows on phones) */
    section [style*="minmax(300px"] {
        grid-template-columns: 1fr !important;
    }

    /* Certifications grid — 1 col on phones, auto-fit works but SVGs too wide */
    section [style*="minmax(220px"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Reduce inline section padding on mobile */
    section[style*="padding: 5rem"],
    section[style*="padding: 4rem"] {
        padding: 3rem 0 !important;
    }

    /* Reduce inline heading sizes */
    section [style*="font-size: 2.5rem"],
    section h2[style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }
    section [style*="font-size: 2.2rem"],
    section h2[style*="font-size: 2.2rem"] {
        font-size: 1.6rem !important;
    }
    section h3[style*="font-size: 1.4rem"] {
        font-size: 1.15rem !important;
    }
    section h3[style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important;
    }

    /* Reduce cert badge SVGs on mobile */
    section svg[style*="width: 140px"] {
        width: 100px !important;
        height: 100px !important;
    }

    /* Fix inline card padding on mobile */
    section [style*="padding: 2rem"][style*="border-radius"] {
        padding: 1.25rem !important;
    }

    /* Ensure all inline containers don't overflow */
    section .container,
    section [style*="max-width: 1000px"],
    section [style*="max-width: 900px"] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Fix inline text body sections */
    section [style*="font-size: 1.1rem"][style*="line-height: 1.9"] {
        font-size: 1rem !important;
    }

    /* Craftsmanship icon row - stack on mobile */
    section [style*="display: flex"][style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }

    /* Browse categories grid items */
    section [style*="flex-direction: column"][style*="gap: 0.5rem"] a {
        font-size: 0.9rem !important;
    }
}

/* Phone-specific overrides for inline styles */
@media (max-width: 480px) {
    /* Even tighter section padding */
    section[style*="padding: 5rem"],
    section[style*="padding: 4rem"] {
        padding: 2rem 0 !important;
    }

    /* Smaller cert badge SVGs on phones */
    section svg[style*="width: 140px"],
    section svg[style*="width: 100px"] {
        width: 80px !important;
        height: 80px !important;
    }

    /* Reduce heading margin */
    section h2[style*="margin-bottom: 3rem"] {
        margin-bottom: 1.5rem !important;
    }
    section h2[style*="margin-bottom: 2rem"] {
        margin-bottom: 1.25rem !important;
    }

    /* Testimonial cards smaller padding */
    section [style*="box-shadow"][style*="padding: 2rem"] {
        padding: 1.25rem !important;
    }

    /* Body text slight reduction */
    section [style*="font-size: 1.1rem"] {
        font-size: 0.95rem !important;
    }
    section [style*="font-size: 1.05rem"] {
        font-size: 0.95rem !important;
    }

    /* Inline heading sizes even smaller on phone */
    section h2[style*="font-size: 2.5rem"],
    section [style*="font-size: 2.5rem"] {
        font-size: 1.5rem !important;
    }
    section h2[style*="font-size: 2.2rem"],
    section [style*="font-size: 2.2rem"] {
        font-size: 1.4rem !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-subtitle br {
        display: none;
    }

    .comparison-card {
        padding: 1.5rem 1rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Nav icon buttons (search, wishlist, cart) */
.search-btn,
.wishlist-btn,
.cart-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.4rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.search-btn:hover,
.wishlist-btn:hover,
.cart-btn:hover {
    color: var(--accent-gold);
}
.search-btn svg,
.wishlist-btn svg,
.cart-btn svg {
    display: block;
}

/* Nav Icons Container */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
}

/* Currency Selector */
.currency-selector {
    position: relative;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px 7px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 165, 114, 0.1);
}

.currency-btn .currency-code {
    font-weight: 600;
}

.currency-btn svg {
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.currency-selector.open .currency-btn svg {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 3px;
    min-width: 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.currency-selector.open .currency-dropdown,
.currency-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: block;
    width: 100%;
    padding: 5px 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.7rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s ease;
    text-align: left;
}

.currency-option:hover {
    background: rgba(197, 165, 114, 0.15);
}

.currency-option.active {
    background: rgba(197, 165, 114, 0.2);
    color: var(--accent-gold);
}

/* ================= COMPREHENSIVE MOBILE RESPONSIVE STYLES ================= */

/* Tablet Breakpoint — unique rules only (nav/hero handled above) */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    /* Typography scaling */
    h1 { font-size: clamp(2rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }

    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Grid layouts - 2 columns on tablet */
    .ring-grid,
    .product-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Buttons - ensure touch targets */
    .btn,
    button,
    .option-btn,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Forms - full width inputs, prevent iOS zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    select,
    textarea {
        width: 100%;
        min-height: 44px;
        font-size: 16px;
        padding: 0.75rem;
    }

    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Modal adjustments */
    .modal-dialog,
    .modal-content {
        width: 95vw;
        max-width: 95vw;
        margin: 1rem auto;
        max-height: 85vh;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    /* Cards */
    .card,
    .ring-card,
    .product-card {
        padding: 1rem;
    }

    /* Feature grids */
    .features-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Trust badges */
    .trust-badges,
    .trust-points {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .trust-badge,
    .trust-point {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Phone Breakpoint (480px and below) */
@media (max-width: 480px) {
    /* Further typography reduction */
    h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
    h3 { font-size: clamp(1.125rem, 5vw, 1.5rem); }

    body {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Hero adjustments */
    .hero-section {
        height: 60vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    /* Single column grids */
    .ring-grid,
    .product-grid,
    .gallery-grid,
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer - single column */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Buttons - full width */
    .btn,
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
    }

    /* Container padding */
    .container,
    section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Section spacing */
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    /* Modal full screen on phone */
    .modal-dialog,
    .modal-content {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    /* Form elements stacking */
    .form-row,
    .form-group-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    /* Thumbnails in modals */
    .modal-thumbnails,
    .thumbnail-gallery {
        gap: 0.5rem;
    }

    .modal-thumbnails img,
    .thumbnail-gallery img {
        width: 60px;
        height: 60px;
    }

    /* Price displays */
    .price,
    .product-price {
        font-size: 1.25rem;
    }

    /* Filter chips */
    .filter-chips,
    .shape-chips {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-chip,
    .shape-chip {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Small Phone Breakpoint (375px and below) */
@media (max-width: 375px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }

    body {
        font-size: 0.9rem;
    }

    .hero-section {
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.875rem;
    }

    .nav-logo .logo {
        height: 70px;
    }
}

/* Mobile menu visibility - controlled by top @media block and JS */
@media (max-width: 767px) {
    .mobile-menu-overlay {
        display: block;
    }
}

/* ================= TOUCH-FRIENDLY ENHANCEMENTS ================= */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific styles */
    .btn:active,
    button:active {
        transform: scale(0.98);
    }

    /* Larger touch targets */
    a, button, input, select, textarea {
        min-height: 44px;
    }

    /* Remove hover effects that don't work on touch */
    .btn:hover {
        transform: none;
    }

    /* Add active states instead */
    .btn:active {
        background: var(--accent-gold);
        color: var(--black);
    }
}

/* ================= LANDSCAPE PHONE ORIENTATION ================= */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .modal-dialog {
        max-height: 95vh;
    }
}

/* =============================================
   My Account Floating Button - Global Styles
   ============================================= */
.portal-floating-btn {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    z-index: 9998 !important;
    padding: 12px 24px !important;
    background: #c9a169 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0.3px !important;
}

.portal-floating-btn:hover {
    background: #b8935f !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
    .portal-floating-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        bottom: 20px !important;
        right: 16px !important;
    }
}

/* ================= CART NOTIFICATION ================= */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a1a;
    border: 1px solid #c9a169;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification--success {
    border-color: #4ade80;
}

.cart-notification--success span {
    color: #4ade80;
}

.cart-notification--info span {
    color: #c9a169;
}

.cart-notification span {
    font-size: 0.95rem;
    font-weight: 500;
}

.cart-notification__link {
    color: #fff;
    background: #c9a169;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.cart-notification__link:hover {
    background: #b8916a;
}

@media (max-width: 768px) {
    .cart-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: space-between;
    }
}

/* ==================== */
/* Wishlist Styles      */
/* ==================== */

/* Wishlist button in header */
.wishlist-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: var(--accent-gold, #C9A169);
}

.wishlist-count {
    position: absolute;
    top: 0;
    right: -4px;
    background: var(--accent-gold, #C9A169);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Heart icon on product cards */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    color: #fff;
}

.product-card:hover .wishlist-heart,
.diamond-card:hover .wishlist-heart,
.wishlist-heart.active {
    opacity: 1;
}

.wishlist-heart:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--accent-gold, #C9A169);
}

.wishlist-heart.active {
    background: var(--accent-gold, #C9A169);
    border-color: var(--accent-gold, #C9A169);
    color: #fff;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.wishlist-heart.active {
    animation: heartPop 0.3s ease;
}

/* Wishlist notification */
.wishlist-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.wishlist-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.wishlist-notification-icon {
    font-size: 1.25rem;
}

.wishlist-notification-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Wishlist page styles */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.wishlist-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wishlist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.wishlist-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wishlist-item-info {
    padding: 1.25rem;
}

.wishlist-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.wishlist-item-price {
    color: var(--accent-gold, #C9A169);
    font-weight: 600;
    margin-bottom: 1rem;
}

.wishlist-item-actions {
    display: flex;
    gap: 0.75rem;
}

.wishlist-item-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.wishlist-item-btn.primary {
    background: var(--accent-gold, #C9A169);
    color: #000;
    border: none;
}

.wishlist-item-btn.primary:hover {
    background: #b8916a;
}

.wishlist-item-btn.secondary {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.wishlist-item-btn.secondary:hover {
    border-color: #999;
    color: #333;
}

.wishlist-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.wishlist-empty-icon {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.wishlist-empty-icon svg {
    width: 64px;
    height: 64px;
}

.wishlist-empty h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.wishlist-empty p {
    color: #666;
    margin-bottom: 1.5rem;
}

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

    .wishlist-heart {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= TIDIO CHAT POSITIONING ================= */
/* Move Tidio chat button to avoid overlapping with My Account */
#tidio-chat-iframe {
    bottom: 90px !important;
}

#tidio-chat {
    bottom: 90px !important;
}

iframe[title="Tidio Chat"] {
    bottom: 90px !important;
}

/* Additional Tidio selectors */
div#tidio-chat-iframe {
    bottom: 200px !important;
}

[id^="tidio"] {
    bottom: 200px !important;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 16px 24px;
    border-left: 4px solid #C5A572;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    z-index: 100000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: min(400px, calc(100vw - 40px));
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}
.toast-notification.toast-success { border-left-color: #4CAF50; }
.toast-notification.toast-error { border-left-color: #f44336; }
