@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-luxury: #F6F4EF;
    --bg-dark: #111111;
    --bg-dark-accent: #1A1A1A;
    
    --text-primary: #111111;
    --text-secondary: #666666;
    --text-light: #FAFAFA;
    --text-muted: #888888;
    
    --accent-gold: #C8A24D;
    --accent-gold-hover: #B08D3C;
    --border-color: #EAEAEA;
    --border-dark: #333333;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --container-max-width: 1440px;
    --header-height: 90px;
    
    --mouse-glow-x: 0px;
    --mouse-glow-y: 0px;
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scrolling */
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(48px, 6vw, 90px);
}

h2 {
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(24px, 2.5vw, 36px);
}

h4 {
    font-size: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Custom editorial formatting */
.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
}

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

.letter-spacing-wide {
    letter-spacing: 0.15em;
}

.uppercase-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 15px;
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
}

.section-padding {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

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

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

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

/* Mouse Glow Effect */
.mouse-glow-container {
    position: relative;
}
.mouse-glow-container::before {
    content: '';
    position: absolute;
    top: var(--mouse-glow-y);
    left: var(--mouse-glow-x);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 162, 77, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 4%;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-logo span {
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Icon Buttons */
.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.nav-icon-btn svg {
    width: 20px;
    height: 20px;
}

.nav-icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 300;
    display: block;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-solid {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-solid:hover::before {
    left: 0;
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--text-primary);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-outline:hover::before {
    height: 100%;
}

.btn-outline:hover {
    color: var(--bg-primary);
}

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

.btn-gold {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-gold:hover::before {
    height: 100%;
}

.btn-gold:hover {
    color: var(--bg-primary);
}

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

/* Elegant Text Button */
.btn-link {
    font-size: 13px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 4px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.btn-link:hover svg {
    transform: translateX(5px);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
    width: 100%;
    align-items: center;
}

.hero-content {
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-title {
    margin-bottom: 25px;
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 45px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
    height: 90%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-img-container {
    width: 90%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 12s ease-out;
}

.hero:hover .hero-img-container img {
    transform: scale(1);
}

.hero-image-bg {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 80%;
    height: 80%;
    background-color: var(--bg-luxury);
    z-index: -1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    writing-mode: vertical-lr;
    color: var(--text-secondary);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--border-color);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent-gold);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% {
        top: -20px;
    }
    50% {
        top: 50px;
    }
    100% {
        top: 50px;
    }
}

/* --- SIGNATURE COLLECTIONS --- */
.collections-showcase {
    background-color: var(--bg-primary);
}

.editorial-layout {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.editorial-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

.editorial-row:nth-child(even) .editorial-img-col {
    order: 2;
}

.editorial-img-col {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.editorial-img-inner {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.editorial-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-img-col:hover .editorial-img-inner img {
    transform: scale(1.06);
}

.editorial-text-col {
    padding: 0 10%;
}

.editorial-text-col h3 {
    margin-bottom: 25px;
    font-size: 42px;
}

.editorial-text-col p {
    margin-bottom: 35px;
}

.gold-accent-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin-bottom: 30px;
}

/* --- FEATURED PRODUCTS --- */
.featured-products {
    background-color: var(--bg-secondary);
}

.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.product-wishlist-btn:hover {
    border-color: var(--accent-gold);
}

.product-wishlist-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    fill: transparent;
}

.product-wishlist-btn.active svg {
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

.product-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 10;
}

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

.product-details {
    padding: 25px;
    text-align: center;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.product-card:hover::after {
    left: 0;
    width: 100%;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-gold);
}

/* --- CRAFTSMANSHIP TIMELINE --- */
.craftsmanship {
    background-color: var(--bg-luxury);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    max-width: 1000px;
    margin: 80px auto 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-gold);
    transform: translateX(-50%);
}

.timeline-step {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
    align-items: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:nth-child(even) .timeline-info {
    order: 2;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
}

.timeline-step:nth-child(even) .timeline-media {
    order: 1;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bg-luxury);
    border: 2px solid var(--border-color);
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: var(--transition-fast);
}

.timeline-step.active .timeline-dot {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(200, 162, 77, 0.4);
}

.timeline-info {
    padding-right: 50px;
    text-align: right;
}

.timeline-step:nth-child(even) .timeline-info {
    text-align: left;
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

.timeline-info h3 {
    margin-bottom: 15px;
    font-size: 28px;
}

.timeline-media {
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    position: relative;
}

.timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* --- SOCIAL PROOF --- */
.social-proof {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-bottom: 1px solid var(--border-dark);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.counter-item {
    padding: 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 64px);
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 300;
}

.counter-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* --- STYLE QUIZ --- */
.quiz-section {
    background-color: var(--bg-primary);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 60px;
}

.quiz-question-container {
    text-align: center;
}

.quiz-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.quiz-option {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.quiz-option:hover,
.quiz-option.selected {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.quiz-option h4 {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.quiz-option p {
    font-size: 14px;
    line-height: 1.5;
}

.quiz-result-container {
    display: none;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-result-rec {
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    padding: 40px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.quiz-result-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.quiz-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-result-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.quiz-result-info .category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 15px;
}

.quiz-result-info p {
    font-size: 15px;
    margin-bottom: 25px;
}

/* --- CUSTOM JEWELRY CONFIGURATOR --- */
.configurator-section {
    background-color: var(--bg-primary);
}

.configurator-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.configurator-preview-pane {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jewelry-canvas-container {
    position: relative;
    width: 80%;
    height: 80%;
}

.jewelry-svg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: filter 0.8s ease, fill 0.8s ease;
}

/* SVG metallic and gem shaders */
.metal-color {
    transition: fill 0.6s ease;
}
.stone-color {
    transition: fill 0.6s ease;
}

.configurator-control-pane {
    padding-right: 5%;
}

.config-group {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.config-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.config-group-title {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.config-group-title span.selected-value {
    color: var(--accent-gold);
    font-weight: 400;
}

/* Option Chips (Selector) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-chip {
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    cursor: pointer;
    background: var(--bg-primary);
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.option-chip:hover,
.option-chip.active {
    border-color: var(--accent-gold);
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: inline-block;
}

.option-chip span {
    font-size: 14px;
    font-weight: 500;
}

/* Configurator summary and quote button */
.config-summary {
    background: var(--bg-luxury);
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.config-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.config-price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.config-price {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--accent-gold);
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials {
    background-color: var(--bg-luxury);
    overflow: hidden;
}

.swiper-testimonials {
    padding: 20px 0 80px 0 !important;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px auto;
    border: 1px solid var(--accent-gold);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-client-info {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    font-weight: 500;
}

.testimonial-client-info span {
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 10px;
}

/* Swiper styling override */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-gold) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}
.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
}

/* --- INSTAGRAM MASONRY --- */
.instagram-section {
    background-color: var(--bg-primary);
}

.masonry-grid {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s ease;
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay-icon {
    color: var(--bg-primary);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.masonry-item:hover .masonry-overlay-icon {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border: 1px solid var(--border-dark);
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    font-size: 30px;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

/* --- BOOK APPOINTMENT --- */
.booking-section {
    background-color: var(--bg-luxury);
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 80px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.form-control:focus {
    border-color: var(--accent-gold);
}

textarea.form-control {
    min-height: 100px;
    resize: none;
}

.form-error-msg {
    font-size: 12px;
    color: #C0392B;
    margin-top: 5px;
    display: none;
}

.form-group.has-error .form-control {
    border-color: #C0392B;
}

.form-group.has-error .form-error-msg {
    display: block;
}

/* Booking Success Screen */
.booking-success {
    display: none;
    text-align: center;
    padding: 60px 0;
    animation: fadeIn 0.8s ease;
}

.booking-success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.booking-success h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.booking-success p {
    max-width: 500px;
    margin: 0 auto 40px auto;
}

/* --- NEWSLETTER --- */
.newsletter-section {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-top: 40px;
    border-bottom: 1px solid var(--border-color);
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 20px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    color: var(--accent-gold);
}

/* --- FOOTER --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 35% 15% 15% 35%;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-muted);
    font-size: 15px;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    line-height: 1.5;
}

.footer-contact-info svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-copyright span {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold);
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

/* --- QUICK VIEW MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1500;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 1000px;
    padding: 50px;
    position: relative;
    animation: modalReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalReveal {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
}

.modal-img-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-col {
    padding-left: 20px;
}

.modal-info-col h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.modal-info-col .category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 20px;
}

.modal-info-col .price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.modal-info-col p {
    font-size: 16px;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* Wishlist Drawer */
.wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: -10px 0 40px rgba(0,0,0,0.05);
    z-index: 1600;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.wishlist-drawer.active {
    transform: translateX(0);
}

.wishlist-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h3 {
    font-size: 24px;
}

.wishlist-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.wishlist-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wishlist-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin: auto 0;
}

.wishlist-item {
    display: grid;
    grid-template-columns: 80px 1fr 30px;
    gap: 20px;
    align-items: center;
}

.wishlist-item-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.wishlist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-info h4 {
    font-size: 16px;
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.wishlist-item-info span {
    font-size: 14px;
    color: var(--accent-gold);
}

.wishlist-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.wishlist-item-remove:hover {
    color: #C0392B;
}

.wishlist-footer {
    padding: 30px 40px;
    border-top: 1px solid var(--border-color);
}

/* Page Banner */
.page-banner {
    background-color: var(--bg-luxury);
    padding: 120px 0 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs span {
    margin: 0 10px;
    color: var(--border-color);
}

/* --- LUXURY INTERACTIVE ENHANCEMENTS --- */

/* Sparkle Canvas */
.sparkle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Hotspot Editorial Lookbook */
.lookbook-section {
    background-color: var(--bg-primary);
}

.lookbook-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0 auto;
    border: 1px solid var(--border-color);
    overflow: visible;
}

.lookbook-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.lookbook-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(200, 162, 77, 0.5);
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: var(--transition-fast);
}

.hotspot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(200, 162, 77, 0.4);
    border-radius: 50%;
    animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.hotspot:hover,
.hotspot.active {
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px rgba(200, 162, 77, 0.8);
}

.hotspot-card {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    background: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 20;
}

.hotspot-card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--accent-gold);
}

.hotspot:hover .hotspot-card,
.hotspot.active .hotspot-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hotspot-card h4 {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.hotspot-card p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.hotspot-card .price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Stacking Builder Custom Rules */
.stacker-visual-tray {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.stack-canvas {
    width: 80%;
    height: 80%;
    position: relative;
}

.stack-ring-layer {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 0;
    transform: translateY(60px) scale(0.8);
}

.stack-ring-layer.active {
    opacity: 1;
}

/* Custom visual offsets for stacked rings */
.stack-ring-layer[data-index="0"].active { transform: translateY(30px) scale(0.9); }
.stack-ring-layer[data-index="1"].active { transform: translateY(-5px) scale(0.93); }
.stack-ring-layer[data-index="2"].active { transform: translateY(-40px) scale(0.96); }

/* Ring Sizer Tool Modal */
.sizer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1800;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sizer-modal.active {
    display: flex;
    opacity: 1;
}

.sizer-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    position: relative;
    animation: modalReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sizer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.sizer-visual-circle {
    width: 130px;
    height: 130px;
    border: 2px dashed var(--accent-gold);
    border-radius: 50%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--accent-gold);
    transition: width 0.1s ease, height 0.1s ease;
}

.sizer-slider-control {
    width: 100%;
    margin: 25px 0;
    accent-color: var(--accent-gold);
}

/* Gifting Wizard Suite styling */
.gift-wizard-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gift-step {
    display: none;
    animation: fadeIn 0.6s ease;
}

.gift-step.active {
    display: block;
}

.gift-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gift-chip {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 25px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gift-chip:hover,
.gift-chip.selected {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.gift-chip h4 {
    font-size: 15px;
    letter-spacing: 0.05em;
}

/* Gift Card Ribbon wrapping animation */
.gift-animation-screen {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.gift-box-vector {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px auto;
    border: 2px solid var(--accent-gold);
    background: var(--bg-luxury);
}

.gift-ribbon-v {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 100%;
    background: var(--accent-gold);
    transform: translateX(-50%);
}

.gift-ribbon-h {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 12px;
    background: var(--accent-gold);
    transform: translateY(-50%);
}

.gift-bow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: var(--accent-gold);
    border-radius: 50% 50% 0 0;
}

.wrapping-pulse {
    animation: giftWrapPulse 1.5s infinite ease-in-out;
}

@keyframes giftWrapPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); box-shadow: 0 0 25px rgba(200, 162, 77, 0.3); }
    100% { transform: scale(1); }
}

/* Material Plating Inspector Custom */
.material-inspector {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
    align-items: center;
}

.inspector-graphic {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.inspector-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspector-hotspot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
}

.inspector-hotspot:hover {
    transform: scale(1.2);
}

.inspector-details {
    padding-left: 20px;
}

.inspector-detail-card {
    display: none;
    animation: fadeIn 0.5s ease;
}

.inspector-detail-card.active {
    display: block;
}

.inspector-detail-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}
