/* -------------------------------------------------------------
   Stil Kauçuk Design System - Rolex & Hermès Ultra-Luxury Overhaul
   Theme: Obsidian Dark, Royal Sapphire Blue & Platinum Silver
   Fonts: Cormorant Garamond (Headers/Serif), Inter (UI/Sans-Serif)
------------------------------------------------------------- */

/* Custom Reset & CSS Variables */
:root {
    --bg-dark: #EAE2D5; /* Luxurious Loro Piana Warm Cashmere/Latte Brown */
    --bg-surface: #DFD5C6; /* Light warm sand/tan for beautiful panel contrast */
    --bg-surface-elevated: #FAF8F5; /* Soft warm silk/white for elevated surface cards */
    --bg-surface-hover: #D5C7B4; /* Warm hover slate */
    
    --primary: #8C765C; /* Luxurious Antique Bronze/Gold */
    --primary-hover: #705E49;
    --primary-glow: rgba(140, 118, 92, 0.22);
    --accent-platinum: #A37E2C; /* Rolex Muted Brass/Gold */
    --accent-light: #EAE2D5;
    
    --text-primary: #1C160E; /* Deep rich dark cocoa/espresso */
    --text-secondary: #4D4032; /* Dark warm cocoa for descriptions */
    --text-muted: #7E6C59; /* Muted warm sand-stone for legible captions */
    
    --border-color: #D3C5B1; /* Clean thin warm-beige luxury borders */
    --border-glow: rgba(140, 118, 92, 0.1);
    
    --success: #4F6B58; /* Muted luxury emerald/sage green */
    --danger: #A63A3A; /* Soft rich terracotta/crimson */
    
    --font-header: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --border-radius-sm: 2px;
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
    
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-hover);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Container Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-success { color: var(--accent-platinum) !important; }
.text-danger { color: var(--danger) !important; }

/* Buttons (Rolex Classical Style: Clean, Minimal, Non-Rounded Capsule) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 2.5px;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    outline: none;
    text-transform: uppercase;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 9.5px;
    letter-spacing: 2px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF; /* High contrast text on primary button */
    border: none;
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 20px var(--primary-glow); /* Premium glow */
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(28, 26, 23, 0.2);
}
.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(28, 26, 23, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 118, 92, 0.06);
}

/* Glassmorphic Nav Header */
.app-header {
    height: var(--header-height);
    background: rgba(234, 226, 213, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.app-logo {
    height: 38px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500; /* Increased weight for visibility */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.8px; /* Increased letter spacing */
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth); /* Smoother hover transition */
    padding: 10px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--text-primary);
    background: rgba(28, 26, 23, 0.03);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.mobile-menu-btn .bar {
    width: 22px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(234, 226, 213, 0.99);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-nav-link {
    font-family: var(--font-header);
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
}

/* Page Spacing Layout */
main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 150px);
}

.app-page {
    display: none;
}

.app-page.active {
    display: block;
}

/* Section and Page headers */
.page-header {
    padding: 120px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 52px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.page-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 44px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* -------------------------------------------------------------
   PAGE: HERO SECTION (Rolex Watch Blueprints Engine)
------------------------------------------------------------- */
.hero-container {
    position: relative;
    height: calc(100vh - var(--header-height));
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 40px;
    animation: fadeInReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 102px;
    line-height: 1;
    letter-spacing: 6px;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 0 60px rgba(140, 118, 92, 0.1);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Scroll Down indicator mouse */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 20px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--primary);
    border-radius: 1px;
    animation: scrollWheel 2s infinite ease-in-out;
}

/* SECTION 2: ABOUT US (Classical split layout) */
.about-section {
    padding: 100px 40px;
}

.split-about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.about-headline h2 {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.about-story p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.8;
}

/* Clean Metrics Grid */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 48px;
}

.counter-card {
    text-align: left;
}

.counter-number {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 46px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.counter-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
}

/* SECTION 4: PRODUCTION PROCESS */
.process-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.process-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 20px;
}

.process-step {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 38px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 24px;
}

.process-card h3 {
    font-family: var(--font-header);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.process-card p {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
}

.process-line-indicator {
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 1px;
    background: var(--border-color);
}

/* SECTION 5: WORLD MAP */
.map-section {
    padding: 100px 40px;
}

.interactive-map-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.world-svg {
    width: 100%;
    max-height: 420px;
    height: auto;
}

.pulse-point {
    animation: pointPulse 2.5s infinite ease-out;
}

.map-dest {
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-dest:hover {
    fill: var(--text-primary);
    r: 6px;
}

.export-line {
    stroke-dashoffset: 120;
    animation: dashLoop 5s linear infinite;
    opacity: 0.6;
}

.map-tooltip {
    position: absolute;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: opacity 0.3s;
}

/* -------------------------------------------------------------
   PRODUCTS & FILE LIST SECTION
------------------------------------------------------------- */
/* Certifications catalog style */
.documents-ribbon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.doc-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    transition: var(--transition-smooth);
}

.doc-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(140, 118, 92, 0.06);
}

.doc-icon-svg {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.doc-info {
    flex-grow: 1;
}

.doc-info h3 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}

.doc-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Filter controls catalog */
.catalog-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding-bottom: 160px;
}

.catalog-filters {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.search-box {
    position: relative;
    margin-bottom: 40px;
}

.search-box input {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 12px 40px 12px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--text-primary);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: 0.4;
}

.filter-group h4 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-pill {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500; /* Sized up weight for visibility */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    transition: var(--transition-smooth); /* Smooth hover */
    border-bottom: 1px solid transparent;
    width: fit-content;
}
.filter-pill:hover {
    color: var(--accent-platinum) !important; /* Brand Gold */
    transform: translateX(4px); /* Slight interactive nudge */
}

.filter-pill:hover {
    color: var(--text-primary);
}

.filter-pill.active {
    color: var(--text-primary);
    border-bottom-color: var(--primary);
}

/* Display controls grid/list */
.display-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-count {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 300;
}

.view-toggles {
    display: flex;
    gap: 12px;
}

.view-toggle-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.view-toggle-btn.active,
.view-toggle-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Asymmetric luxury cards grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: rgba(28, 26, 23, 0.1);
    box-shadow: 0 10px 30px rgba(140, 118, 92, 0.04);
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--bg-surface-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-sole {
    opacity: 0.25;
    transition: var(--transition-smooth);
}

.product-card:hover .placeholder-sole {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.4;
}

.product-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-surface-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 400;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-header);
    font-size: 23px; /* Sized up slightly */
    font-weight: 600; /* Sized weight up for immediate readability */
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-specs {
    font-size: 10px;
    font-family: var(--font-body);
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.85; /* Increased line-height for better readability */
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-price-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
}

/* Pricing Table List view styling */
.products-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.products-table th,
.products-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.products-table th {
    background: var(--bg-surface-elevated);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-table tbody tr {
    transition: var(--transition-fast);
}

.products-table tbody tr:last-child td {
    border-bottom: none;
}

.products-table tbody tr:hover {
    background: var(--bg-surface-hover);
}

.table-product-title {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 18px;
}

.table-product-cat {
    display: inline-block;
    background: var(--bg-surface-elevated);
    padding: 4px 8px;
    font-size: 9.5px;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-price {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--primary);
}

/* -------------------------------------------------------------
   ABOUT US DETAIL
------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    padding-bottom: 160px;
}

.about-text h2 {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 38px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.75;
}

.values-mini {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-mini-item {
    display: flex;
    gap: 24px;
}

.v-icon {
    width: 20px;
    height: 20px;
    background: rgba(140, 118, 92, 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.value-mini-item h4 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
}

.value-mini-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-image-card {
    height: 300px;
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.visual-placeholder-pattern {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background-image: 
        radial-gradient(var(--border-glow) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.about-image-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(28, 26, 23, 0.9) 0%, transparent 100%);
}

.about-image-card .card-overlay h3 {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.about-image-card .card-overlay p {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.corporate-meta-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-top: 40px;
}

.corporate-meta-box h3 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.corp-meta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.corp-meta-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

.corp-meta-list li:last-child {
    border-bottom: none;
}

.corp-meta-list li strong {
    color: var(--text-secondary);
    font-weight: 400;
}

.corp-meta-list li span {
    color: var(--text-primary);
    font-weight: 500;
}

/* -------------------------------------------------------------
   CONTACT
------------------------------------------------------------- */
.contact-container {
    padding-bottom: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 38px;
    margin-bottom: 16px;
}

.contact-info-sub {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.c-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.c-card-icon-svg {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.c-card h4 {
    font-family: var(--font-body);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.c-card-link {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 18px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.c-card-link:hover {
    color: var(--primary);
}

.c-card-text {
    font-size: 14px;
    font-weight: 400;
}

.registration-panel {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    padding: 24px;
}

.registration-panel h4 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reg-grid small {
    display: block;
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.reg-grid p {
    font-family: var(--font-header);
    font-size: 14.5px;
    font-weight: 400;
}

/* Underline forms (Rolex style) */
.styled-form {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--text-primary);
}

/* Map Mock */
.map-mock {
    height: 360px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: 
        radial-gradient(var(--primary) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}

.map-pin {
    font-size: 40px;
    animation: bounce 2.5s infinite ease-in-out;
}

.map-bubble {
    background: var(--bg-dark);
    border: 1px solid var(--primary);
    padding: 14px 24px;
    border-radius: var(--border-radius-sm);
    margin-top: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(28,26,23,0.1);
}

.map-bubble strong {
    font-family: var(--font-header);
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 400;
    display: block;
}

.map-bubble p {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.map-hint {
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-size: 10.5px;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
   ADMIN PORTAL
------------------------------------------------------------- */
.admin-login-container {
    display: flex;
    justify-content: center;
    padding: 100px 24px 140px;
}

.login-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(28,26,23,0.08);
}

.lock-icon {
    font-size: 44px;
    margin-bottom: 20px;
}

.login-card h2 {
    font-family: var(--font-header);
    font-weight: 300;
    font-size: 28px;
    margin-bottom: 10px;
}

.login-card p {
    color: var(--text-secondary);
    font-size: 13.5px;
    margin-bottom: 32px;
}

.login-tip {
    font-size: 10.5px !important;
    color: var(--text-muted) !important;
    margin-top: 24px;
}

/* Admin Dashboard layout */
.admin-dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-bottom: 140px;
}

.dashboard-sidebar {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    height: fit-content;
}

.admin-profile {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.admin-profile .avatar {
    width: 46px;
    height: 46px;
    background: var(--bg-surface-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.admin-profile h4 {
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 400;
}

.admin-profile .badge {
    display: inline-block;
    background: rgba(140, 118, 92, 0.12);
    color: var(--text-secondary);
    border: 1px solid rgba(140, 118, 92, 0.25);
    font-size: 9px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 2px;
    letter-spacing: 1px;
}

.dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-menu-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12.5px;
    text-align: left;
    transition: var(--transition-fast);
    width: 100%;
}

.dash-menu-btn:hover {
    background: rgba(28,26,23,0.02);
    color: var(--text-primary);
}

.dash-menu-btn.active {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.dash-menu-btn.btn-danger-text {
    color: var(--danger);
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    border-radius: 0;
    padding-top: 24px;
}

.dash-menu-btn.btn-danger-text:hover {
    background: rgba(166, 58, 58, 0.05);
}

/* Tab contents */
.dash-tab-pane {
    display: none;
}

.dash-tab-pane.active {
    display: block;
}

.pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.pane-header h2 {
    font-family: var(--font-header);
    font-size: 28px;
    font-weight: 300;
}

.pane-header p {
    color: var(--text-secondary);
    font-size: 13px;
}

.loc-section-hdr {
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-upload-block {
    padding: 10px 0;
}

/* Admin lists table */
.admin-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th,
.admin-table td {
    padding: 16px 20px;
    font-size: 13px;
}

.admin-table th {
    background: var(--bg-surface-elevated);
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 1.5px;
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.admin-table tbody tr:hover {
    background: var(--bg-surface-hover);
}

.admin-table .product-thumb {
    width: 40px;
    height: 40px;
    background: var(--bg-surface-elevated);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.admin-table .action-btns {
    display: flex;
    gap: 8px;
}

.action-btn {
    border: none;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-edit {
    background: var(--bg-surface-elevated);
    color: var(--primary);
    border: 1px solid var(--border-color);
}
.action-edit:hover {
    background: var(--primary);
    color: var(--text-primary);
}

.action-delete {
    background: rgba(166, 58, 58, 0.1);
    color: var(--danger);
}
.action-delete:hover {
    background: var(--danger);
    color: var(--text-primary);
}

/* Modals */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(234, 226, 213, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.form-overlay.active {
    display: flex;
}

.form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 680px;
    padding: 48px;
    position: relative;
    box-shadow: 0 30px 60px rgba(28,26,23,0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.close-form-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
}

.close-form-btn:hover {
    color: var(--text-primary);
}

.form-card h3 {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--primary);
}

.form-buttons-row {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 10px;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.app-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding-top: 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 13.5px;
    margin-bottom: 30px;
    max-width: 380px;
    font-family: var(--font-body);
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-icon:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    font-family: var(--font-body);
    font-weight: 300;
    transition: var(--transition-fast);
}

.footer-list a:hover {
    color: var(--text-primary);
}

.footer-contact-list li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
   WHATSAPP FLOAT & TOASTS
------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2.5s infinite ease-out;
}

/* Toast Alerts */
.toast-container {
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-surface);
    border-left: 2px solid var(--primary);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    color: var(--text-primary);
    font-size: 12.5px;
    font-family: var(--font-body);
    font-weight: 300;
    box-shadow: 0 15px 40px rgba(28,26,23,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.4s, transform 0.4s;
}

.toast.success { border-left-color: var(--text-primary); }
.toast.danger { border-left-color: var(--danger); }

.toast.hiding {
    opacity: 0;
    transform: translateX(100px);
}

/* -------------------------------------------------------------
   ANIMATIONS
------------------------------------------------------------- */
@keyframes pointPulse {
    0% { r: 3px; opacity: 1; fill: var(--accent-platinum); }
    50% { r: 10px; opacity: 0.3; fill: var(--primary); }
    100% { r: 3px; opacity: 1; fill: var(--accent-platinum); }
}

@keyframes dashLoop {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes slideIn {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInReveal {
    0% { transform: translateY(15px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.2; }
    100% { transform: translateY(0); opacity: 1; }
}

/* -------------------------------------------------------------
   RESPONSIVENESS
------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }
    .split-about {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-line-indicator {
        display: none;
    }
    .catalog-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .catalog-filters {
        position: relative;
        top: 0;
        width: 100%;
    }
    .admin-dashboard-container {
        grid-template-columns: 1fr;
    }
    .documents-ribbon {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(4.5px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: 4px;
    }
    .hero-subtitle {
        font-size: 11px;
    }
    .about-section {
        padding: 100px 30px;
    }
    .about-headline h2 {
        font-size: 36px;
    }
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .reg-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* -------------------------------------------------------------
   LUXURY STYLE ADJUSTMENTS FOR LIGHT THEME
   ------------------------------------------------------------- */
#worldMapSvg path[fill="#06070B"] {
    fill: #EAE6E1 !important;
    stroke: #D6CFC7 !important;
}

.search-icon-svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.dash-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.dash-menu-btn.active .dash-icon {
    opacity: 1;
}

/* Light theme mobile menu bars */
.mobile-menu-btn .bar {
    background-color: var(--text-primary) !important;
}

/* Make sure counter elements are legible */
.counter-number {
    color: var(--primary) !important;
}

/* Dynamic counter cards styling */
.counter-card {
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

/* Adjust value items */
.v-icon {
    background: rgba(140, 118, 92, 0.12) !important;
    color: var(--primary) !important;
}

/* Adjust map bubble */
.map-bubble {
    background: var(--bg-surface-elevated) !important;
    border-color: var(--border-color) !important;
}

/* Lock card overlay adjustments */
.login-card {
    background: var(--bg-surface-elevated) !important;
}

/* Form card styling */
.form-card {
    background: var(--bg-surface-elevated) !important;
}

/* Grayscale luxury map styling */
.map-iframe-container {
    width: 100%;
    height: 360px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    filter: grayscale(0.9) contrast(1.1) invert(0.04);
    transition: var(--transition-smooth);
}

.map-iframe-container:hover {
    filter: none;
}

/* Leaflet Maps Luxury Styling Overrides */
#worldMapLeaflet {
    filter: sepia(0.08) contrast(1.03) saturate(0.92);
}

.leaflet-container {
    background-color: var(--bg-surface) !important;
}

.leaflet-bar {
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    border-radius: var(--border-radius-sm) !important;
}

.leaflet-bar a {
    background-color: var(--bg-surface-elevated) !important;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color) !important;
    transition: var(--transition-fast) !important;
}

.leaflet-bar a:hover {
    background-color: var(--bg-surface-hover) !important;
    color: var(--accent-platinum) !important;
}

.leaflet-popup-content-wrapper {
    background: var(--bg-surface-elevated) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-sm) !important;
    box-shadow: 0 4px 15px rgba(28,26,23,0.06) !important;
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
}

.leaflet-popup-tip {
    background: var(--bg-surface-elevated) !important;
    border: 1px solid var(--border-color) !important;
}

/* Language toggle TR/EN custom styles */
.lang-selector-wrap {
    display: flex;
    align-items: center;
}

.lang-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    padding: 6px 12px;
}

.lang-opt {
    transition: var(--transition-fast);
}

.lang-opt.active {
    color: var(--accent-platinum) !important;
    font-weight: 600;
}

.lang-opt:not(.active):hover {
    color: var(--text-primary);
}

.lang-divider {
    opacity: 0.3;
    pointer-events: none;
}

/* Center Interactive Showcase for industrial materials */
.hero-showcase-container {
    position: relative;
    width: 320px;
    height: 240px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.showcase-element {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(28, 26, 23, 0.12));
    pointer-events: none;
    user-select: none;
}

/* Initial vertical offsets for assembly storytelling */
.showcase-element.sole {
    z-index: 12;
}

.showcase-element.upper {
    z-index: 14;
    opacity: 0;
    transform: translateY(-120px);
}

.showcase-element.complete {
    z-index: 16;
    opacity: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
}

/* Hero side materials absolute styling */
.hero-side-material {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: auto;
    z-index: 5;
    pointer-events: none;
    user-select: none;
}

.hero-side-material.left {
    left: 8%;
}

.hero-side-material.right {
    right: 8%;
}

.hero-side-material img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 45px rgba(28, 26, 23, 0.1));
}

@media (max-width: 1280px) {
    .hero-side-material {
        width: 190px;
    }
    .hero-side-material.left { left: 2%; }
    .hero-side-material.right { right: 2%; }
}

@media (max-width: 1024px) {
    .hero-side-material {
        display: none; /* Hidden on smaller screens to prevent overlap */
    }
}

/* -------------------------------------------------------------
   SECTION: MECHANICAL NEEDLED FELT GALLERY (Rolex/Hermes Style)
   ------------------------------------------------------------- */
.felt-gallery-section {
    padding: 100px 40px;
    background: #F4ECE1; /* Visibly warm silk-beige that is compatible and stands out from white */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.felt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.felt-gallery-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: none;
}

.felt-gallery-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.felt-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.felt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: var(--transition-smooth);
}

.felt-gallery-card:hover .felt-thumb {
    transform: scale(1.08);
}

.felt-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(140, 118, 92, 0.12);
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.felt-gallery-card:hover .felt-card-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(28, 26, 23, 0.15);
    transition: var(--transition-fast);
}

.felt-gallery-card:hover .zoom-icon {
    transform: scale(1.1);
}

.felt-card-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.felt-card-info h3 {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.25;
}

.felt-card-info p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Lightbox Modal CSS Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 14, 13, 0.96); /* Elegant deeper dark backdrop */
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 38px;
    font-weight: 200;
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
    z-index: 2100;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary); /* Gold close icon on hover */
    transform: scale(1.1);
}

.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 70vh;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.97);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer; /* Click to go to next image */
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 18px;
    padding: 0 4px;
}

.lightbox-caption {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 48px;
    font-weight: 100;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 2050;
    outline: none;
}

.lightbox-nav:hover {
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Responsive adjustments for navigation */
@media (max-width: 1200px) {
    .lightbox-prev {
        left: -60px;
    }
    .lightbox-next {
        right: -60px;
    }
}

@media (max-width: 900px) {
    .lightbox-nav {
        font-size: 36px;
        padding: 10px;
    }
    .lightbox-prev {
        left: -40px;
    }
    .lightbox-next {
        right: -40px;
    }
}

@media (max-width: 600px) {
    .lightbox-content-wrapper {
        max-width: 95%;
    }
    .lightbox-nav {
        position: fixed;
        top: auto;
        bottom: 20px;
        transform: none;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lightbox-nav:hover {
        transform: scale(1.05);
    }
    .lightbox-prev {
        left: 20px;
        bottom: 20px;
    }
    .lightbox-next {
        right: 20px;
        bottom: 20px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 32px;
    }
    .lightbox-caption-bar {
        margin-top: 12px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

/* Split Layout for needled felt intro and specs */
.felt-split-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.felt-intro-text p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.felt-specs-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
}

.felt-specs-table-wrapper h4 {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.felt-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.felt-specs-table td {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(140, 118, 92, 0.2);
    font-family: var(--font-body);
    font-size: 12.5px;
}

.felt-specs-table tr:last-child td {
    border-bottom: none;
}

.felt-specs-table .spec-label {
    font-weight: 500;
    color: var(--text-primary);
    width: 35%;
}

.felt-specs-table .spec-value {
    color: var(--text-secondary);
    font-weight: 300;
    width: 65%;
}

/* Swatches styling */
.felt-swatches-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.swatch-group {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.swatch-group-title {
    font-family: var(--font-header);
    font-size: 26px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: -0.2px;
}

.swatches-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.swatch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.swatch-circle-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: transparent;
    border: none;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(40, 30, 20, 0.08);
    transition: var(--transition-smooth);
    position: relative;
}

/* Outer premium gold/bronze halo glow */
.swatch-circle-wrap::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 15px rgba(140, 118, 92, 0.4);
    pointer-events: none;
    z-index: -1;
}

.swatch-circle-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(140, 118, 92, 0.1);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 1;
}

.swatch-card:hover .swatch-circle-wrap {
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 16px 30px rgba(40, 30, 20, 0.18);
}

.swatch-card:hover .swatch-circle-wrap::before {
    opacity: 1;
    transform: scale(1);
}

.swatch-card:hover .swatch-circle-wrap::after {
    opacity: 1;
}

.swatch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.swatch-label {
    margin-top: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.swatch-card:hover .swatch-label {
    color: var(--primary);
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Responsiveness for Felt Gallery */
@media (max-width: 1200px) {
    .swatches-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .felt-split-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .felt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .swatches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .felt-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .swatches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .felt-gallery-section {
        padding: 60px 20px;
    }
    .swatch-circle-wrap {
        width: 100px;
        height: 100px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
    }
}

/* -------------------------------------------------------------
   Admin Floating Control Panel & Inline Editor
   ------------------------------------------------------------- */
.admin-floating-panel {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(28, 26, 23, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.admin-floating-panel.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.admin-floating-panel .panel-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    border-right: 1px solid rgba(140, 118, 92, 0.3);
    padding-right: 15px;
    white-space: nowrap;
}

.admin-floating-panel .panel-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-floating-panel .panel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.admin-floating-panel .panel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.admin-floating-panel .panel-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.admin-floating-panel .panel-btn-danger {
    border-color: rgba(166, 58, 58, 0.4);
    color: #FF8F8F;
}

.admin-floating-panel .panel-btn-danger:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: #FFFFFF;
}

/* Page Editable Style */
[contenteditable="true"] {
    outline: 2px dashed var(--primary) !important;
    outline-offset: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: text !important;
}

[contenteditable="true"]:focus {
    background: rgba(140, 118, 92, 0.08);
    outline: 2px solid var(--primary) !important;
}

body.admin-edit-active [data-i18n]:hover {
    background: rgba(140, 118, 92, 0.04);
}
