/* ==========================================================================
   LUCCHETTO HAUTE JOAILLERIE & FINE GOLD
   Design System — Pristine White Luxury (Tuana Inspired Haute Aesthetics)
   ========================================================================== */

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

:root {
    --bg-main: #ffffff;
    --bg-surface: #faf9f6;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfbfa;
    --bg-glass: rgba(255, 255, 255, 0.96);
    
    --gold-base: #b8903e;
    --gold-light: #dfba47;
    --gold-muted: #9e7b2e;
    --gold-deep: #7a5e1e;
    --gold-gradient: linear-gradient(135deg, #b8903e 0%, #dfba47 50%, #9e7b2e 100%);
    --gold-subtle: rgba(184, 144, 62, 0.08);
    
    --text-pure: #111111;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-gold: #b8903e;
    
    --border-hairline: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(184, 144, 62, 0.3);
    --border-gold-strong: #b8903e;
    
    --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Montserrat', sans-serif;
    --font-ar: 'Cairo', 'Outfit', sans-serif;
    
    --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: all 0.45s var(--ease-luxury);
    --transition-fast: all 0.22s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-pure);
}

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

/* Arabic RTL Support */
html[lang="ar"] body,
html[dir="rtl"] body {
    font-family: var(--font-ar);
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .nav-link,
html[lang="ar"] .btn-primary-gold,
html[lang="ar"] .eyebrow {
    font-family: var(--font-ar);
    letter-spacing: 0px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Typography & Utility */
.font-serif {
    font-family: var(--font-serif);
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gold-accent, .gold-txt {
    color: var(--gold-base) !important;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-base);
    display: inline-block;
    margin-bottom: 12px;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-pearl {
    background-color: #faf9f6 !important;
}

/* ==========================================================================
   MINIMALIST HAUTE HEADER & NAVIGATION (White Tuana Style)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-hairline);
    transition: var(--transition-slow);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid rgba(184, 144, 62, 0.25);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    transition: height 0.3s ease;
}

.site-header.scrolled .nav-inner {
    height: 70px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

.brand-logo-img {
    height: 38px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: var(--transition-slow);
}

.site-header.scrolled .brand-logo-img {
    height: 30px;
}

.brand-logo-link:hover .brand-logo-img {
    transform: scale(1.02);
}

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

.nav-links-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.mobile-nav-close-btn {
    display: none !important;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #444444;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.25s ease;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-base);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #111111;
    font-weight: 600;
}

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

.nav-actions-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Selector (TR / EN / AR) */
.lang-selector {
    display: flex;
    align-items: center;
    background: #f5f4ef;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    padding: 3px;
    flex-shrink: 0;
    gap: 2px;
}

.lang-toggle-btn {
    background: transparent;
    border: none;
    color: #666666;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-toggle-btn.active {
    background: var(--gold-base);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(184, 144, 62, 0.3);
}

.nav-hamburger {
    display: none;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    color: #111111;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-hamburger:hover {
    background: var(--gold-base);
    color: #ffffff;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(184, 144, 62, 0.3);
    transition: var(--transition-slow);
    text-align: center;
}

.btn-primary-gold:hover {
    box-shadow: 0 8px 30px rgba(184, 144, 62, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #111111;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 9999px;
    border: 1px solid var(--border-gold);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary-luxury:hover {
    background: var(--gold-base);
    color: #ffffff;
    border-color: var(--gold-base);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 9999px;
    background: transparent;
    color: var(--gold-base);
    border: 1px solid var(--border-gold);
    transition: var(--transition-fast);
}

.btn-outline-gold:hover {
    background: var(--gold-base);
    color: #ffffff;
}

/* ==========================================================================
   PAGE HERO BANNER (Subpages - Generous Luxury Breathing Spacing)
   ========================================================================== */
.page-hero-banner {
    padding: clamp(75px, 8vw, 110px) 0 clamp(45px, 5vw, 65px);
    background: linear-gradient(180deg, #faf9f6 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-hairline);
    text-align: center;
}

.page-hero-inner {
    max-width: 780px;
    margin: 0 auto;
}

.breadcrumb-trail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-trail a:hover {
    color: var(--gold-base);
}

.breadcrumb-arrow {
    font-size: 0.65rem;
    color: var(--gold-base);
}

.page-hero-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: clamp(0.96rem, 1.6vw, 1.12rem);
    color: #555555;
    line-height: 1.8;
}

/* ==========================================================================
   HERO SWIPER SLIDER (Tuana Inspired Dynamic Haute Slider)
   ========================================================================== */
.hero-swiper-container {
    position: relative;
    width: 100%;
    height: clamp(520px, 82vh, 760px);
    overflow: hidden;
    background: #060606;
}

.swiper.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060606;
}

.hero-slide-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    transform: none !important;
}

.swiper-slide-active .hero-slide-bg-img {
    transform: none !important;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6,6,6,0.65) 0%, rgba(6,6,6,0.25) 45%, transparent 75%);
    z-index: 2;
}

.hero-slide-content-wrap {
    position: relative;
    z-index: 5;
    max-width: 640px;
    padding: 0 10px;
}

.hero-slider-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.3rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-slider-p {
    font-size: clamp(0.96rem, 1.8vw, 1.15rem);
    color: #d6d6d6;
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 520px;
    font-weight: 300;
}

/* Floating Social Bar (Fixed on Right) */
.hero-floating-socials {
    position: fixed;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(14, 14, 14, 0.85);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 8px;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(184, 144, 62, 0.15);
}

.hero-social-btn {
    color: #e5e5e5;
    font-size: 1.32rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.hero-social-btn:hover {
    color: #ffffff;
    background: var(--gold-base);
    transform: scale(1.12);
    box-shadow: 0 0 15px rgba(184, 144, 62, 0.6);
}

/* Swiper Pagination */
.swiper-pagination-hero {
    position: absolute;
    bottom: 30px !important;
    left: 28px !important;
    z-index: 10;
    display: flex;
    gap: 8px;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 28px !important;
    height: 3px !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-base) !important;
    width: 44px !important;
}

/* ==========================================================================
   SECTIONS & GRIDS (White Haute Aesthetics)
   ========================================================================== */
.section-pad {
    padding: clamp(65px, 9vw, 110px) 0;
}

.section-head-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 55px);
}

.section-h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    color: #555555;
    line-height: 1.8;
}

.section-center-action {
    text-align: center;
    margin-top: clamp(35px, 5vw, 55px);
}

/* Prestige Assurance Section */
.prestige-assurance-section {
    background: #faf9f6;
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
    padding: clamp(65px, 8vw, 100px) 0;
}

.prestige-box-card {
    background: #ffffff;
    border: 1px solid var(--border-gold);
    padding: clamp(28px, 4vw, 45px);
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
}

.prestige-box-card:hover {
    border-color: var(--gold-base);
    box-shadow: 0 12px 40px rgba(184, 144, 62, 0.12);
}

.prestige-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.prestige-seal-icon {
    font-size: 2.2rem;
    color: var(--gold-base);
}

.prestige-title-h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 24px;
}

.prestige-stats-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #eeebe3;
    padding-top: 20px;
}

.prestige-stat-item h4 {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-base);
    margin-bottom: 6px;
    font-weight: 600;
}

.prestige-stat-item p {
    font-size: 0.86rem;
    color: #555555;
    line-height: 1.6;
}

.editorial-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(35px, 5vw, 60px);
    align-items: center;
}

.hero-editorial-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hero-editorial-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-editorial-card:hover .hero-editorial-img {
    transform: scale(1.03);
}

/* ==========================================================================
   LOOKBOOK / EDITORIAL CATEGORIES LIST (White Tuana Style)
   ========================================================================== */
.lookbook-categories-section {
    padding: clamp(65px, 9vw, 110px) 0;
    background: #ffffff;
}

.lookbook-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
}

.lookbook-card-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebe7df;
    padding-bottom: 24px;
    transition: var(--transition-slow);
    gap: 22px;
}

.lookbook-card-item:hover {
    border-bottom-color: var(--gold-base);
}

.lookbook-thumb-holder {
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 8px;
    background: #faf9f6;
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.lookbook-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lookbook-card-item:hover .lookbook-thumb-img {
    transform: scale(1.08);
}

.lookbook-info-panel {
    flex-grow: 1;
}

.lookbook-category-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 400;
    color: #111111;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.lookbook-card-item:hover .lookbook-category-title {
    color: var(--gold-base);
}

.lookbook-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lookbook-explore-txt {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777777;
}

.lookbook-arrow-link {
    color: var(--gold-base);
    font-size: 1.15rem;
    transition: transform 0.35s ease;
}

.lookbook-card-item:hover .lookbook-arrow-link {
    transform: translateX(6px);
}

/* ==========================================================================
   CRAFT & SUSTAINABILITY PROCESS CARDS
   ========================================================================== */
.craft-process-section {
    background: #faf9f6;
    border-top: 1px solid var(--border-hairline);
    border-bottom: 1px solid var(--border-hairline);
    padding: clamp(65px, 8vw, 100px) 0;
}

.craft-steps-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3.5vw, 36px);
}

.craft-step-card {
    background: #ffffff;
    border: 1px solid #eeebe3;
    padding: clamp(28px, 4vw, 40px);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.craft-step-card:hover {
    border-color: var(--gold-base);
    box-shadow: 0 10px 35px rgba(184, 144, 62, 0.12);
    transform: translateY(-4px);
}

.step-num-badge {
    font-size: 2rem;
    color: var(--gold-base);
    margin-bottom: 20px;
}

.craft-card-h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 12px;
}

.craft-card-desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.7;
}

/* ==========================================================================
   CATALOG PRODUCT CARDS & FILTER BAR (koleksiyonlar.html)
   ========================================================================== */
.catalog-section {
    padding: clamp(50px, 7vw, 90px) 0;
    background: #ffffff;
}

.catalog-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(35px, 5vw, 55px);
}

.cat-filter-btn {
    background: #f5f4ef;
    border: 1px solid #e8e4dc;
    color: #444444;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cat-filter-btn:hover {
    border-color: var(--gold-base);
    color: #111111;
}

.cat-filter-btn.active {
    background: var(--gold-base);
    border-color: var(--gold-base);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(184, 144, 62, 0.3);
}

.product-grid-4col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(24px, 3.5vw, 36px);
}

.product-card {
    background: #ffffff;
    border: 1px solid #ece8e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gold-base);
    box-shadow: 0 12px 35px rgba(184, 144, 62, 0.14);
    transform: translateY(-5px);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #faf9f6;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-tag-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gold-base);
    border: 1px solid var(--border-gold);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-info-wrap {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-spec-row {
    font-size: 0.82rem;
    color: #666666;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.product-spec-val {
    color: #111111;
    font-weight: 500;
}

.product-card-action {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f2eee8;
}

/* ==========================================================================
   PRODUCT DETAIL MODAL (White Theme)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content-box {
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    max-width: 860px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f4ef;
    border: 1px solid #e2ddd3;
    color: #111111;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: var(--gold-base);
    color: #ffffff;
}

.modal-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
}

.modal-img-holder {
    background: #faf9f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-img-holder img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
}

.modal-details-pane {
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
}

.modal-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--gold-base);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 12px;
}

.modal-product-desc {
    font-size: 0.88rem;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.spec-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    background: #faf9f6;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #ede8df;
}

.spec-item-lux {
    display: flex;
    flex-direction: column;
}

.spec-label-lux {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value-lux {
    font-size: 0.88rem;
    color: #111111;
    font-weight: 600;
}

/* ==========================================================================
   FORMS & CONTACT (White Theme)
   ========================================================================== */
.contact-section {
    padding: clamp(65px, 8vw, 100px) 0;
    background: #ffffff;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(35px, 5vw, 60px);
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #faf9f6;
    border: 1px solid #eeebe3;
    padding: 24px;
    border-radius: 10px;
    display: flex;
    gap: 18px;
    transition: var(--transition-fast);
}

.contact-info-card:hover {
    border-color: var(--gold-base);
    box-shadow: 0 6px 20px rgba(184, 144, 62, 0.08);
}

.contact-icon-bubble {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    color: var(--gold-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-base);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-card-text {
    font-size: 0.92rem;
    color: #333333;
}

.luxury-form-wrap {
    background: #faf9f6;
    border: 1px solid #eeebe3;
    padding: clamp(28px, 4vw, 44px);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.form-title-serif {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 22px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field-group {
    margin-bottom: 18px;
}

.form-label-lux {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 6px;
}

.form-input-lux,
.form-select-lux,
.form-textarea-lux {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e0dbd1;
    border-radius: 6px;
    padding: 12px 16px;
    color: #111111;
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.form-input-lux:focus,
.form-select-lux:focus,
.form-textarea-lux:focus {
    outline: none;
    border-color: var(--gold-base);
    box-shadow: 0 0 10px rgba(184, 144, 62, 0.2);
}

.form-btn-full {
    width: 100%;
}

/* Showroom Map Section */
.showroom-map-container {
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
}

.map-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #faf9f6;
    border-bottom: 1px solid #eeebe3;
    flex-wrap: wrap;
    gap: 12px;
}

.map-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333333;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-base);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 9999px;
    transition: var(--transition-fast);
}

.btn-map-directions:hover {
    background: var(--gold-base);
    color: #ffffff;
}

.map-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #faf9f6;
}

.map-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   MINIMALIST LUXURY FOOTER (Deep Obsidian High Contrast)
   ========================================================================== */
.haute-footer {
    background: #0c0c0c;
    border-top: 1px solid #222222;
    padding: clamp(65px, 8vw, 95px) 0 30px;
    color: #999999;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(30px, 4vw, 55px);
    margin-bottom: clamp(45px, 6vw, 65px);
}

.footer-brand-logo-img {
    height: 36px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(1.2);
}

.footer-bio-p {
    font-size: 0.86rem;
    color: #888888;
    line-height: 1.8;
    max-width: 320px;
}

.footer-head-title {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-base);
    margin-bottom: 20px;
}

.footer-nav-col {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-item {
    font-size: 0.88rem;
    color: #aaaaaa;
    transition: color 0.2s ease;
}

.footer-nav-item:hover {
    color: #ffffff;
}

.footer-contact-item {
    font-size: 0.88rem;
    color: #aaaaaa;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom-bar {
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #666666;
    flex-wrap: wrap;
    gap: 12px;
}

/* Toast Notice */
.toast-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #ffffff;
    border: 1px solid var(--border-gold);
    color: #111111;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 9999px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    z-index: 4000;
    opacity: 0;
    transition: all 0.35s ease;
}

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

/* ==========================================================================
   TABLET & MOBILE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991px) {
    .container {
        padding: 0 16px;
    }

    .nav-inner {
        height: 66px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .brand-logo-img {
        height: 28px;
        max-width: 145px;
        object-fit: contain;
    }

    .nav-actions-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .lang-selector {
        padding: 2px;
        gap: 2px;
    }

    .lang-toggle-btn {
        padding: 4px 7px;
        font-size: 0.65rem;
    }

    .nav-hamburger {
        display: flex !important;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        border-radius: 8px;
    }

    .hero-swiper-container {
        height: 75vh;
        min-height: 480px;
    }

    .hero-slide-bg-img {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        object-fit: cover !important;
        object-position: 75% center !important;
        opacity: 0.85 !important;
    }

    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(6,6,6,0.2) 0%, rgba(6,6,6,0.65) 55%, rgba(6,6,6,0.92) 100%) !important;
    }

    .editorial-split-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .editorial-split-grid .editorial-content-block {
        order: 1 !important;
        width: 100% !important;
    }

    .editorial-split-grid .hero-editorial-card {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .lookbook-categories-grid,
    .craft-steps-3col,
    .contact-layout-grid,
    .modal-split-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    /* Full-Screen Luxury Mobile Drawer */
    .nav-links-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 2500;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 60px 24px 40px;
        overflow-y: auto;
    }

    .nav-links-list.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links-list .nav-link {
        font-size: 1.25rem;
        letter-spacing: 2.5px;
        color: #222222;
        padding: 8px 0;
        font-weight: 500;
    }

    .nav-links-list .nav-link.active,
    .nav-links-list .nav-link:hover {
        color: var(--gold-base);
    }

    .mobile-nav-close-btn {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: #f5f4ef;
        border: 1px solid #e2ddd3;
        color: #111111;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1.6rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-fast);
    }

    .mobile-nav-close-btn:hover {
        background: var(--gold-base);
        color: #ffffff;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .nav-inner {
        height: 62px;
    }

    .site-header.scrolled .nav-inner {
        height: 56px;
    }

    .brand-logo-img {
        height: 26px;
        max-width: 140px;
    }

    .site-header.scrolled .brand-logo-img {
        height: 22px;
    }

    .hero-swiper-container {
        height: 65vh;
        min-height: 420px;
    }

    .hero-slider-h1 {
        font-size: clamp(2rem, 7vw, 2.7rem);
    }

    .hero-slider-p {
        font-size: 0.92rem;
        margin-bottom: 22px;
    }

    .prestige-stats-2col,
    .form-grid-2,
    .spec-stat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .modal-content-box {
        max-height: 95vh;
        border-radius: 8px;
    }

    .modal-img-holder img {
        max-height: 280px;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .brand-logo-img {
        height: 24px;
        max-width: 125px;
    }
}
