/* CSS Variables — gelinlik · abiye · bindallı · damatlık (şık nötr + şampanya) */
:root {
    --primary-color: #8b6914;
    --primary-light: #b8976a;
    --primary-dark: #5c4a2e;
    --secondary-color: #9c7b73;

    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #0ea5e9;

    --text-dark: #1c1917;
    --text-main: #44403c;
    --text-gray: #78716c;
    --text-light: #a8a29e;

    --bg-white: #fffcf9;
    --bg-light: #f7f3ee;
    --bg-gray: #efe9e2;
    --bg-dark: #1a1614;

    --glass-bg: rgba(255, 252, 249, 0.92);
    --glass-border: rgba(184, 149, 108, 0.2);
    --surface-border: #e7dfd4;
    --border-color: #ddd4c8;

    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(28 25 23 / 0.04);
    --shadow: 0 4px 6px -1px rgb(28 25 23 / 0.06), 0 2px 4px -2px rgb(28 25 23 / 0.05);
    --shadow-md: 0 12px 20px -6px rgb(28 25 23 / 0.08), 0 4px 8px -4px rgb(28 25 23 / 0.05);
    --shadow-lg: 0 24px 40px -12px rgb(28 25 23 / 0.1);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.04);

    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --accent-champagne: #b8976a;
    --accent-champagne-soft: rgba(184, 151, 106, 0.18);
    --accent-rose: #c4a09a;
    --mega-surface: linear-gradient(180deg, #fffdfb 0%, #faf6f1 100%);

    --page-padding-y: 4rem;
    --section-padding-y: 6rem;

    /* Tipografi — gelinlik / abiye vitrin */
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

/* --- Brand Preloader --- */
/* --- Brand Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    background: radial-gradient(circle at center, #ffffff 0%, var(--bg-light) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

/* Split Curtain Effect (Optional, currently using Scale+Fade for cleaner feel) */
#preloader::before,
#preloader::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: inherit;
    z-index: -1;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader::before { left: 0; transform-origin: left; }
#preloader::after { right: 0; transform-origin: right; }

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-content {
    text-align: center;
    width: 380px; /* Increased to match wide logo */
    max-width: 85vw; /* Safety for mobile */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    margin-bottom: 2.5rem;
    perspective: 1000px;
    width: 100%;
}

.preloader-logo img {
    height: auto;
    max-height: 80px;
    width: 100%;
    max-width: 320px; /* Controlled width for better proportion */
    object-fit: contain;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: preloader-image-reveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    filter: drop-shadow(0 10px 20px rgba(139, 105, 20, 0.1));
}

#preloader:not(.loaded) .preloader-logo img {
    animation:
        preloader-image-reveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        preloader-logo-glow 2.2s ease-in-out 1.2s infinite;
}

.preloader-bar {
    width: 280px; /* Fixed proportional width for the bar */
    max-width: 100%;
    height: 2px;
    background: rgba(139, 105, 20, 0.08);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-champagne) 50%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: preloader-shimmer 2s infinite ease-in-out;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--primary-dark);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    animation: preloader-text-reveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.preloader-slogan {
    width: 100%;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: none;
    margin-bottom: 0.35rem;
    opacity: 0.9;
}

.loading-dots {
    display: inline-flex;
    position: relative;
    width: 1.2em;
    text-align: left;
    height: 1em;
}

.loading-dots::after {
    content: '...';
    display: inline-block;
    animation: loading-dots-step 2s infinite steps(4, start);
    width: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
}

@keyframes loading-dots-step {
    to { width: 1.2em; }
}

@keyframes preloader-image-reveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes preloader-text-reveal {
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

@keyframes preloader-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes preloader-logo-glow {
    0%, 100% {
        filter:
            drop-shadow(0 10px 20px rgba(139, 105, 20, 0.1))
            drop-shadow(0 0 0 rgba(184, 151, 106, 0));
    }
    50% {
        filter:
            drop-shadow(0 12px 26px rgba(139, 105, 20, 0.22))
            drop-shadow(0 0 18px rgba(184, 151, 106, 0.5));
    }
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05); /* Modern scale-out */
}

#preloader.loaded .preloader-inner {
    transform: scale(0.9);
    filter: blur(10px);
}

body.is-loading {
    overflow: hidden !important;
}


/* Reset & Base */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Standard Page Components */
.page-header {
    padding: var(--page-padding-y) 0;
    text-align: center;
    border-bottom: 1px solid var(--surface-border);
    background: var(--bg-white);
    margin-bottom: 3rem;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Base Responsive Utilities */
.hide-mobile {
    display: block !important;
}

.hauteur-full {
    height: 100%;
}

.aspect-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: white;
}

.aspect-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }
}

.hauteur-full {
    height: 100%;
    display: flex;
    align-items: center;
}

.hide-desktop {
    display: none !important;
}

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

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

    #mobileMenuToggle {
        display: flex !important;
    }

    .header-links,
    .search-bar.hide-mobile,
    .header-action-text.hide-mobile {
        display: none !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }
}

/* Header Styles */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 2500;
    /* Increased to stay above products and reveal animations */
    transition: var(--transition);
}

#site-top {
    scroll-margin-top: calc(var(--header-height) + 0.5rem);
}

@media (min-width: 769px) {
    .site-header {
        overflow: visible;
    }
}

.header-top {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
}

.header-top a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.header-top a:hover {
    color: white;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact i {
    color: var(--primary-light);
}

.header-address {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: min(22rem, 36vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8125rem;
    color: inherit;
}

.header-top .divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.header-announcement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
}

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

.announcement-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-links-sep {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    user-select: none;
    padding: 0 0.15rem;
    flex-shrink: 0;
}

.header-main {
    padding: 1rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    margin-left: -5px;
    /* Offset for internal logo whitespace */
}

.site-logo img {
    height: 48px;
    /* Slightly larger for premium feel */
    width: auto;
    display: block;
}

/* Search Bar - Elite Design */
.search-bar {
    flex: 1;
    max-width: 580px;
}

.search-form {
    position: relative;
    display: flex;
}

/* Search AJAX autocomplete */
.search-autocomplete {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 2500;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-height: 360px;
    overflow-y: auto;
    text-align: left;
}

.search-autocomplete[hidden] {
    display: none !important;
}

.search-autocomplete__status,
.search-autocomplete__empty,
.search-autocomplete__error {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.search-autocomplete__error {
    color: #b91c1c;
}

.search-autocomplete__list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.search-autocomplete__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.15s ease;
}

.search-autocomplete__link:hover,
.search-autocomplete__link:focus-visible {
    background: rgba(184, 151, 106, 0.08);
    outline: none;
}

.search-autocomplete__thumb {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

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

.search-autocomplete__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.search-autocomplete__title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-autocomplete__price {
    font-size: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Global Input Standard - Ultra Readable */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184, 151, 106, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    height: 42px;
    width: 42px;
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: var(--primary-color);
    transform: scale(1.04);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.header-action:hover {
    color: var(--primary-color);
}

.header-action i {
    font-size: 1.375rem;
}

.header-action-text {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-color);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    height: 18px;
    min-width: 18px;
    padding: 0 4px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

/* Navigation shell */
.main-nav {
    border-top: 1px solid rgba(184, 151, 106, 0.22);
    position: relative;
    background: linear-gradient(180deg, #f9f5f0 0%, #fffcf9 55%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

@media (min-width: 769px) {

    .main-nav,
    .main-nav .container {
        overflow: visible;
    }
}

.main-nav .nav-item__link,
.main-nav .nav-item__link:visited {
    color: var(--text-dark);
    text-decoration: none;
}

.main-nav .nav-item__link:focus-visible {
    outline: 2px solid var(--accent-champagne);
    outline-offset: 4px;
}

/* Product Detail Modernization */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* CRITICAL: Fix for Swiper stretching in Grid */
.product-detail-layout>div {
    min-width: 0;
}

.product-gallery-stable {
    position: sticky;
    top: 120px;
}

.main-view-wrapper {
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fdfdfd;
    cursor: zoom-in;
    transition: var(--transition);
    aspect-ratio: 2 / 3;
    overflow: hidden;
    position: relative;
    padding: 0; /* Removing any gap */
}

.main-view-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.aspect-wrapper {
    display: none;
    /* Removing as aspect-ratio handles it now */
}

/* Swiper Gallery Adjustments */
.product-thumbs-slider {
    padding: 2px;
}

.product-thumbs-slider .swiper-slide {
    cursor: pointer;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0.6;
}

.product-thumbs-slider .swiper-slide-thumb-active {
    border-color: var(--primary-color);
    opacity: 1;
}

.product-thumbs-slider img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.product-info-panel h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.price-box {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}

.price-box .price {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-color);
}

.price-box .old-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 600;
}

.variant-selector {
    padding: 2.5rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.variant-selector h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.variant-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variant-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--surface-border);
    background: white;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

.variant-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.variant-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.cart-controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.quantity-box {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 56px;
}

.quantity-box button {
    width: 48px;
    height: 100%;
    border: none;
    background: var(--bg-gray);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.quantity-box button:hover {
    background: var(--surface-border);
}

.quantity-box input {
    width: 60px;
    height: 100%;
    text-align: center;
    border: none;
    font-weight: 800;
    font-size: 1.125rem;
    background: white;
    padding: 0;
}

.tab-container {
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 6rem;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--surface-border);
    background: var(--bg-gray);
}

.tab-trigger {
    padding: 1.5rem 3rem;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-trigger.active {
    color: var(--primary-color);
}

.tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.tab-content {
    padding: 2rem 1rem;
    max-width: none;
}

.tab-content h3 {
    margin-bottom: 2rem;
}

/* Lightbox Customization */
.glightbox-container .gslide-image {
    background: white !important;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .product-gallery-stable {
        position: static;
    }
}

/* Footer — SEO / GEO uyumlu vitrin */
.site-footer {
    background: var(--bg-dark);
    color: #e2e8f0;
    margin-top: 6rem;
    padding: 5rem 0 0;
}

.footer-heading-a11y {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: clamp(3rem, 8vw, 6.5rem);
    row-gap: 2.5rem;
    padding-bottom: 4rem;
}

.footer-content > .footer-about {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    min-width: 0;
    max-width: 34rem;
}

.footer-nav-cluster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, max-content));
    column-gap: clamp(2rem, 4.5vw, 3.75rem);
    justify-self: end;
    min-width: 0;
}

.footer-nav-cluster > .footer-section {
    display: contents;
}

.footer-nav-cluster__rule {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 0;
    margin: 0.4rem 0 1.05rem;
    border: 0;
    border-top: 1px solid rgba(184, 151, 106, 0.42);
    align-self: stretch;
    padding: 0;
}

.footer-nav-cluster > nav:nth-of-type(1) .footer-nav-title {
    grid-column: 1;
    grid-row: 1;
}

.footer-nav-cluster > nav:nth-of-type(2) .footer-nav-title {
    grid-column: 2;
    grid-row: 1;
}

.footer-nav-cluster > nav:nth-of-type(3) .footer-nav-title {
    grid-column: 3;
    grid-row: 1;
}

.footer-nav-cluster > nav:nth-of-type(1) .footer-links {
    grid-column: 1;
    grid-row: 3;
}

.footer-nav-cluster > nav:nth-of-type(2) .footer-links {
    grid-column: 2;
    grid-row: 3;
}

.footer-nav-cluster > nav:nth-of-type(3) .footer-links {
    grid-column: 3;
    grid-row: 3;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
}

.footer-logo-img {
    max-height: 52px;
    width: auto;
    height: auto;
    display: block;
}

.footer-brand-text {
    display: inline-block;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
}

.footer-lead {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0;
    margin-top: 0.5rem;
    max-width: 21rem;
    text-align: justify;
    hyphens: auto;
}

.footer-about .footer-social-nav {
    margin-top: 1.15rem;
    margin-bottom: 0;
}

.footer-nav-title {
    color: white;
    margin: 0 0 1.25rem;
    padding-bottom: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-body);
}

.footer-nav-cluster .footer-nav-title {
    margin-bottom: 0;
    align-self: end;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.35rem;
}

.footer-social-nav .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-nav .social-links li {
    margin: 0;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Sticky Contact Bar (WhatsApp / Telefon / Yol Tarifi) */
body {
    padding-bottom: 88px;
}

.contact-dock {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 2850;
    display: none;
    align-items: center;
    gap: 0.45rem;
}

.contact-dock__main {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: 14px;
    background: rgba(10, 8, 7, 0.92);
    border: 1px solid rgba(184, 151, 106, 0.4);
    box-shadow: 0 16px 34px -20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.contact-dock__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    border-radius: 11px;
    min-height: 40px;
    padding: 0.52rem 0.78rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f8f4ee;
    border: 1px solid rgba(184, 151, 106, 0.45);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-dock__pill:hover {
    transform: translateY(-1px);
    background: rgba(184, 151, 106, 0.12);
    border-color: rgba(184, 151, 106, 0.68);
}

.contact-dock__pill--appointment i {
    color: var(--primary-light);
}

.contact-dock__pill--whatsapp {
    width: 40px;
    padding: 0;
}

.contact-dock__pill--whatsapp i {
    font-size: 1.1rem;
    color: #25d366;
    animation: whatsapp-soft-pulse 1.9s ease-in-out infinite;
}

.contact-dock__toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(184, 151, 106, 0.45);
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-light);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-dock__toggle:hover {
    transform: translateY(-1px);
    background: rgba(184, 151, 106, 0.12);
}

.contact-dock__toggle i {
    transition: transform 0.25s ease;
}

.contact-dock.is-open .contact-dock__toggle i {
    transform: rotate(180deg);
}

.contact-dock__panel {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.25rem;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-8px);
    transition: max-width 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.contact-dock.is-open .contact-dock__panel {
    max-width: 360px;
    opacity: 1;
    transform: translateX(0);
}

.contact-dock__panel-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.52rem 0.76rem;
    text-decoration: none;
    border-radius: 11px;
    color: #1f2937;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 22px -16px rgba(0, 0, 0, 0.35);
}

.contact-dock__panel-item i {
    color: var(--primary-color);
}

.contact-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2800;
    padding: 0.45rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(9, 8, 7, 0) 0%, rgba(9, 8, 7, 0.3) 100%);
    border-top: none;
    backdrop-filter: none;
}

.contact-sticky-bar__inner {
    max-width: min(760px, calc(100vw - 1.4rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
    background: rgba(10, 8, 7, 0.93);
    border: 1px solid rgba(184, 151, 106, 0.35);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 18px 36px -22px rgba(0, 0, 0, 0.65);
}

.contact-sticky-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 11px;
    min-height: 44px;
    padding: 0.55rem 0.7rem;
    text-decoration: none;
    color: #f8f4ee;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(184, 151, 106, 0.28);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-sticky-bar__item i {
    color: var(--primary-light);
}

.contact-sticky-bar__item--whatsapp i {
    color: #25d366;
    animation: whatsapp-soft-pulse 1.9s ease-in-out infinite;
    transform-origin: center;
}

.contact-sticky-bar__item:hover {
    transform: translateY(-1px);
    border-color: rgba(184, 151, 106, 0.65);
    background: rgba(184, 151, 106, 0.12);
}

@keyframes whatsapp-soft-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 0 rgba(37, 211, 102, 0);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(37, 211, 102, 0.45);
    }
    45% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 0.92;
        transform: scale(1.06);
        text-shadow: 0 0 8px rgba(37, 211, 102, 0.35);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 991px) {
    .contact-sticky-bar {
        padding: 0.45rem max(0px, env(safe-area-inset-left)) calc(0.55rem + env(safe-area-inset-bottom)) max(0px, env(safe-area-inset-right));
    }

    .contact-sticky-bar__inner {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }

    .contact-sticky-bar {
        display: none;
    }

    .contact-dock {
        display: inline-flex;
        min-width: max-content;
    }

    .contact-sticky-bar {
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .contact-sticky-bar__item {
        min-height: 46px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 82px;
    }

    .contact-sticky-bar__inner {
        gap: 0.38rem;
        padding: 0.4rem max(0.4rem, env(safe-area-inset-left)) 0.4rem max(0.4rem, env(safe-area-inset-right));
    }

    .contact-sticky-bar__item {
        min-height: 40px;
        font-size: 0.74rem;
        padding: 0.42rem 0.35rem;
        gap: 0.3rem;
    }

    .contact-sticky-bar__item i {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-sticky-bar__item--whatsapp i {
        animation: none;
    }

    .contact-dock__pill--whatsapp i {
        animation: none;
    }

    .contact-dock__panel,
    .contact-dock__toggle i {
        transition: none;
    }
}

/* Alt şerit — tam genişlik arka plan; içerik .container ile hizalı */
.footer-bottom {
    width: 100%;
    max-width: none;
    margin: 0.75rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(184, 151, 106, 0.28);
    background: linear-gradient(180deg, rgba(32, 28, 24, 0.72) 0%, rgba(10, 8, 7, 0.97) 100%);
    box-sizing: border-box;
}

.site-footer > .footer-bottom {
    margin-left: 0;
    margin-right: 0;
}

.footer-bottom > .container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-bar {
    padding: 3.75rem 0 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-bottom-contact {
    width: 100%;
}

.footer-bottom-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2.5rem;
    align-items: start;
    padding: 1.75rem 2rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 252, 249, 0.045);
    border: 1px solid rgba(184, 151, 106, 0.2);
    box-shadow: 0 16px 48px -24px rgba(0, 0, 0, 0.45);
}

.footer-bottom-contact-cell {
    min-width: 0;
    text-align: center;
    padding: 0 0.5rem;
}

.footer-bottom-contact-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-light);
    font-family: var(--font-body);
    margin-bottom: 0.85rem;
}

.footer-bottom-contact-body {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.footer-bottom-contact-line {
    display: block;
}

.footer-bottom-contact-line + .footer-bottom-contact-line {
    margin-top: 0.35rem;
}

.footer-bottom-contact-muted {
    color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-contact-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.footer-bottom-contact-link:hover {
    color: var(--primary-light);
}

.footer-bottom-contact-cell--full {
    grid-column: 1 / -1;
    margin: 0.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.footer-bottom-hours {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-hours i {
    margin-right: 0.35rem;
    color: var(--primary-light);
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.35rem 0 0.15rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 0.2rem 0.35rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.28);
    user-select: none;
    padding: 0 0.15rem;
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-legal {
    min-width: 0;
    justify-self: start;
    text-align: left;
}

.footer-bottom-top-wrap {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-scroll-top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 4.5rem;
    padding: 0.85rem 1.15rem 0.75rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(184, 151, 106, 0.28) 0%, rgba(139, 105, 20, 0.2) 100%);
    border: 1px solid rgba(184, 151, 106, 0.45);
    color: #fff;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-body);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);
}

.footer-scroll-top i {
    font-size: 1rem;
    opacity: 0.95;
}

.footer-scroll-top:hover {
    color: #fff;
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(184, 151, 106, 0.42) 0%, rgba(139, 105, 20, 0.32) 100%);
    box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.55);
}

.footer-scroll-top-text {
    line-height: 1;
}

.footer-copyright {
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-tax-meta {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    opacity: 0.95;
}

.footer-bottom-credits {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-design-credit-block {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    font-family: var(--font-body);
    transition: opacity 0.2s ease;
}

.footer-design-credit-block:hover {
    opacity: 0.95;
}

.footer-design-credit-block:hover .footer-design-logo {
    opacity: 1;
}

.footer-design-by {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.2;
    white-space: nowrap;
}

.footer-design-logo {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    opacity: 0.92;
    flex-shrink: 0;
}

.footer-payments-wrap {
    min-width: 0;
    justify-self: end;
    text-align: right;
}

.footer-payments-label {
    margin: 0 0 0.5rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.footer-payments-card {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.footer-payments-card > i {
    font-size: 1.65rem;
    opacity: 0.72;
    color: #e2e8f0;
    transition: opacity 0.2s ease;
}

.footer-payments-card > i:hover {
    opacity: 1;
}

.footer-payments-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(16, 185, 129, 0.95);
    white-space: nowrap;
}

.footer-payments-3d i {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        padding: 2.5rem 0 3.25rem;
        gap: 2rem;
    }

    .footer-bottom-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1.25rem;
    }

    .footer-bottom-contact-cell:not(.footer-bottom-contact-cell--full) {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-bottom-contact-grid:not(:has(.footer-bottom-contact-cell--full)) > .footer-bottom-contact-cell:not(.footer-bottom-contact-cell--full):last-of-type {
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-bottom-contact-cell--full {
        margin-top: 0;
        padding-top: 0.25rem;
        border-top: none;
    }

    .footer-bottom-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1.75rem;
        padding-top: 1.5rem;
    }

    .footer-bottom-legal {
        justify-self: center;
        text-align: center;
        order: 2;
    }

    .footer-bottom-top-wrap {
        order: 1;
    }

    .footer-payments-wrap {
        justify-self: center;
        text-align: center;
        order: 3;
    }

    .footer-payments-card {
        justify-content: center;
    }

    .footer-bottom-credits {
        justify-content: center;
        padding-top: 1.35rem;
    }

    .footer-design-credit-block {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 2.5rem;
    }

    .footer-content > .footer-about {
        grid-column: 1 / -1;
        max-width: none;
        padding-right: 0;
        border-right: none;
    }

    .footer-nav-cluster {
        grid-column: 1 / -1;
        justify-self: stretch;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: clamp(1.5rem, 4vw, 2.75rem);
    }

    .footer-nav-cluster > .footer-section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-nav-cluster {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav-cluster > .footer-section {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-nav-cluster__rule {
        display: none;
    }

    .footer-nav-cluster .footer-nav-title {
        margin-bottom: 0.85rem;
        padding-bottom: 0.65rem;
        border-bottom: 1px solid rgba(184, 151, 106, 0.42);
        align-self: stretch;
    }
}

/* Product Grid - Elite Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Product Grid - Elite Portrait Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #fdfdfd;
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Badges - Premium Minimalist Style */
.product-badge {
    position: absolute;
    top: 1rem;
    z-index: 5;
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.discount-badge {
    right: 0;
    background: #b08d57; /* Bridal Gold */
    color: #fff;
}

.rental-badge {
    left: 0;
    background: #1a1a1a;
    color: #fff;
}

/* Hover Overlay - Luxury Feel */
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.action-btn {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0; /* Keep it sharp and chic */
}

.action-btn i {
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #b08d57;
    color: #fff;
}

.wishlist-btn {
    padding: 0.75rem;
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 50%;
}

/* Product Info - Typography Reset */
.product-info {
    padding: 1.25rem 0.5rem;
    text-align: left;
}

.product-meta {
    margin-bottom: 0.5rem;
}

.product-cat {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    font-weight: 600;
}

.product-title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: var(--font-display, serif);
}

.product-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #b08d57;
}

.product-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prices {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.old-price {
    font-size: 0.85rem;
    color: #bbb;
    text-decoration: line-through;
}

.price-on-request {
    font-size: 0.85rem;
    color: #b08d57;
    font-weight: 600;
    font-style: italic;
}

.rental-price-info {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    gap: 0.35rem;
}

.rental-price-info .label {
    font-weight: 500;
    color: #999;
}

.rental-price-info .val {
    font-weight: 700;
    color: #b08d57;
}

/* Fallback for no image */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* Section Headers - Universal Scale */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Category Cards - New Premium Style */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    position: relative;
    height: 240px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(79, 70, 229, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
}

.category-name {
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Buttons - Elite Refresh */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.btn-outline {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Auth Cards */
.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--surface-border);
}

.auth-card-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Slider - Elite Design */
.hero-slider.modern-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--dynamic-header-height, 180px));
    height: calc(100dvh - var(--dynamic-header-height, 180px));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 75%);
    z-index: 2;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s ease;
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center; /* Added for better centering */
}

.slider-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 122%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.slider-video-embed {
    border: 0;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slider.modern-slider .container.hauteur-full {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Title/Content usually left-aligned in premium designs, but the user asked for center */
}

/* If user wants absolute centering for the brand feel: */
.hero-slider.modern-slider .slider-content {
    text-align: center;
    margin: 0 auto;
}

.slider-content {
    position: relative;
    z-index: 10;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
}

/* Luxury Hero Button */
.slider-btn-lux {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slider-btn-lux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-champagne, #d4af37);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.slider-btn-lux:hover {
    border-color: var(--accent-champagne, #d4af37);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-btn-lux:hover::before {
    width: 100%;
}

.slider-btn-lux i {
    margin-left: 0.75rem;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.slider-btn-lux:hover i {
    transform: translateX(5px);
}


.slider-slogan {
    display: none; /* Removed from slider as per user request to move to separate section */
}

/* Brand Slogan Section - Elite Modern */
.brand-slogan-section {
    padding: 8rem 0;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-slogan-inner {
    max-width: 800px;
    margin: 0 auto;
}

.slogan-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to var(--direction, right), transparent, var(--accent-champagne), transparent);
}

.slogan-ornament .ornament-line:first-child { --direction: left; }
.slogan-ornament .ornament-line:last-child { --direction: right; }

.ornament-icon {
    font-size: 1.25rem;
    color: var(--accent-champagne);
    animation: ornament-pulse 3s infinite ease-in-out;
}

.brand-slogan-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text-dark);
    font-style: normal; /* Non-italic for stronger brand voice */
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    position: relative;
    display: block;
}

.brand-slogan-sub {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
}

@keyframes ornament-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}



@media (max-width: 768px) {
    .hero-slider.modern-slider {
        height: 80vh;
    }
    .slider-title {
        font-size: 2.5rem;
    }
    .slider-slogan {
        font-size: 1.25rem;
    }
}

.slider-item.active .slider-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-badge {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: transparent;
    color: var(--accent-champagne, #d4af37);
    border-radius: 0;
    font-size: 0.85rem; /* Increased from 0.70rem */
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.25em;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slider-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem); /* Increased size */
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); /* Stronger shadow for readability */
    letter-spacing: 0.04em;
}

.slider-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem); /* Increased size */
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 2.5rem auto; 
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}



.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
    display: flex;
    gap: 1rem;
}

.slider-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.slider-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-dot.active {
    width: 32px;
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-slider.modern-slider {
        aspect-ratio: 16 / 9;
    }

    .slider-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slider-nav {
        display: none;
    }

    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

.site-main {
    margin-top: 0;
}

@media (min-width: 1025px) {
    .site-main {
        margin-top: 0;
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    letter-spacing: 0.04em;
}

.section-subtitle {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Pagination - Advanced Style */
.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Mobile Drawer Menu & Overlays */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-search-bar {
    display: none;
    width: 100%;
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--surface-border);
    clear: both;
}

.mobile-search-bar.active {
    display: block;
    overflow: visible;
}

.mobile-search-bar .search-form {
    width: 100%;
    max-width: 100%;
}

.mobile-search-bar .search-input {
    padding: 0.65rem 3rem 0.65rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.mobile-search-bar .search-button {
    right: 4px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 38px;
    width: 38px;
    min-height: 38px;
    min-width: 38px;
    max-width: none !important;
    flex-shrink: 0;
}

.mobile-search-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-main);
    border-radius: 10px;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-search-toggle:hover,
.mobile-search-toggle:focus-visible {
    background: rgba(184, 151, 106, 0.14);
    color: var(--primary-dark);
    outline: none;
}

.mobile-search-toggle.is-open {
    background: rgba(184, 151, 106, 0.2);
    color: var(--primary-dark);
}

.mobile-search-toggle i {
    pointer-events: none;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--surface-border);
    margin-bottom: 1rem;
}

.mobile-nav-header span {
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-dark);
}

#closeMobileMenu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
}

/* Rental Badges & Prices */
.product-card .product-badge-rental {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-champagne);
    color: #fff;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    text-transform: uppercase;
    pointer-events: none;
}

.rental-price-tag {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: rgba(212, 175, 55, 0.04);
    border-radius: 8px;
    border-left: 3px solid var(--accent-champagne);
    transition: background 0.3s ease;
}

.product-card:hover .rental-price-tag {
    background: rgba(212, 175, 55, 0.08);
}

.rental-price-tag .price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.rental-price-tag .price-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-champagne);
    font-family: var(--font-display);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .header-container {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Fixed Force-Fit Viewport */
    body {
        width: 100vw;
        overflow-x: hidden;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header Mobile Refinement */
    .header-main {
        padding: 0.75rem 0;
    }

    .header-container {
        gap: 1rem;
        justify-content: space-between;
    }

    .site-logo img {
        height: 32px;
    }

    #mobileMenuToggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        order: -1;
        cursor: pointer;
        background: transparent;
        border: none;
        color: var(--text-main);
        font-size: 1.5rem;
    }

    .search-bar.hide-mobile,
    .header-links.hide-mobile,
    .header-action-text.hide-mobile,
    .nav-menu:not(.main-nav.active .nav-menu) {
        display: none !important;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .header-actions {
        gap: 0.5rem;
        align-items: center;
        flex-shrink: 0;
    }

    .header-action i {
        font-size: 1.25rem;
    }

    .mobile-search-toggle.hide-desktop {
        display: inline-flex !important;
    }

    .site-logo {
        flex: 1 1 auto;
        justify-content: center;
        margin-left: 0;
        min-width: 0;
    }

    .site-logo a {
        display: inline-flex;
        justify-content: center;
    }

    /* Mobile Drawer Menu */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--bg-white);
        z-index: 2000;
        transform: translateX(-100%);
        border: none;
        padding-top: 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--bg-gray);
    }

    .nav-menu li a {
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-menu li a::after {
        display: none;
    }

    /* Grid Stacking */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-card {
        height: 180px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9375rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Hero Slider */
    .hero-slider.modern-slider {
        aspect-ratio: 1 / 1;
        min-height: 400px;
    }
}

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

    .slider-title {
        font-size: 1.875rem;
    }
}

/* Skeleton & Utils */
@keyframes skeleton-loading {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* FINAL DEFINITIVE MOBILE FIXES */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    #mobileMenuToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001;
    }

    .main-nav {
        display: none !important;
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 280px !important;
        height: 100vh !important;
        background: white !important;
        z-index: 1050;
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        display: block !important;
        left: 0 !important;
    }

    .nav-menu {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        width: 100% !important;
        display: flex !important;
    }

    .nav-menu > .nav-cluster {
        width: 100% !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .hide-mobile {
        display: none !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Side Drawer Quick Cart */
.side-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 90vw;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
}

.drawer-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-display);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.drawer-close:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.drawer-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.drawer-item:hover {
    background: var(--bg-gray);
}

.drawer-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    background: white;
}

.drawer-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-item-title {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.drawer-item-title:hover {
    color: var(--primary-color);
}

.drawer-item-variant {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.drawer-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    font-family: var(--font-display);
}

.drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--surface-border);
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .side-drawer {
        width: 100vw;
        max-width: 100vw;
    }
}

/* Modal System - Elite Premium UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

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

.modal-container {
    background: var(--bg-white);
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.modal-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    font-size: 1.0625rem;
    color: var(--text-main);
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal Variants */
.modal-warning .modal-header h3 {
    color: var(--warning-color);
}

.modal-error .modal-header h3 {
    color: var(--danger-color);
}

.modal-success .modal-header h3 {
    color: var(--success-color);
}

@media (max-width: 576px) {
    .modal-container {
        margin-top: auto;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
    }

    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }
}

/* =====================================================
   HOMEPAGE MODERNIZATION (Elite Edition) 
   ===================================================== */

/* 1. Global Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.shadow-premium {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Quick Categories (Service Cards) */
.quick-categories {
    padding: 2rem 0 4rem;
    background: var(--bg-light);
}

.quick-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-cat-item {
    display: flex;
    align-items: center;
    padding: 1.75rem;
    background: white;
    border-radius: 24px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.quick-cat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quick-cat-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 1.25rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.quick-cat-item:hover .quick-cat-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-cat-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
}

.quick-cat-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* 3. Modernized Product Card */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-light);
}

.product-image {
    background: #ffffff;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background-color: #ffffff;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.product-badge-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger-color);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.product-info {
    padding: 1.5rem !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-category-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-actions-mini button {
    background: none;
    border: none;
    padding: 0;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.product-actions-mini button:hover {
    color: var(--danger-color);
    transform: scale(1.2);
}

.product-title {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    font-size: 1rem;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-price {
    margin-top: auto;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sale-price {
    color: var(--danger-color);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.regular-price {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.product-quick-add button {
    transition: var(--transition);
    border: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 14px;
    height: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.product-quick-add button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.product-card:hover .product-quick-add button::after {
    left: 100%;
}

.product-quick-add button:hover {
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    transform: scale(1.02);
}

/* 4. Banner Grid Enhancements */
.banners-section {
    padding: 6rem 0;
    background: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-md);
    background: #f1f5f9;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.banner-item:hover img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.5s ease;
}

.banner-item:hover .banner-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent 80%);
}

.banner-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-item:hover .banner-content h3 {
    transform: translateY(0);
}

.banner-content .btn-white {
    pointer-events: none;
    font-weight: 800;
    border-radius: 30px;
    padding: 10px 25px;
    background: white;
    color: var(--text-dark);
}

/* 5. Section Titles & Layouts */
.products-section,
.categories-section,
.quick-categories,
.home-collections,
.home-appointment,
.home-faq,
.home-inspiration {
    padding: 6rem 0;
    position: relative;
}

.products-section.alt-bg,
.categories-section.alt-bg,
.quick-categories.alt-bg,
.home-collections.alt-bg,
.home-inspiration.alt-bg {
    background-color: var(--bg-gray);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    position: relative;
    z-index: 1;
}

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

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.section-title-wrapper>div {
    position: relative;
}

.section-title-wrapper>div::before {
    content: 'EXCLUSIVE COLLECTION';
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--primary-color);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1;
    margin: 0;
    letter-spacing: 0.04em;
}

.section-subtitle {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 600px;
}

.view-all-link {
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding-bottom: 0.5rem;
}

.view-all-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* 6. Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* 7./* Category Grid & Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    height: 300px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--bg-gray);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-name {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.category-explore {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.category-explore i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.category-card:hover .category-explore i {
    transform: translateX(4px);
}

/* 7. Responsive Adjustments */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .quick-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .quick-cat-item {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .quick-cat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 1.25rem !important;
    }

    .product-title {
        font-size: 0.95rem !important;
    }
}
/* --- Header nav: üç kolon (sol | kategoriler | sağ) + alt menü --- */
.nav-menu--bar {
    position: relative;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

@media (min-width: 769px) {
    /* Flex: sol/sağ asla sıkışmaz; orta grup ortalanır (grid minmax(0,1fr) sol kolonu çökertip satır kırıyordu) */
    .nav-menu--bar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: clamp(0.75rem, 2vw, 1.75rem);
    }

    .nav-cluster {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: stretch;
    }

    .nav-cluster--left,
    .nav-cluster--right {
        flex: 0 0 auto;
        min-width: max-content;
    }

    .nav-cluster--center {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        overflow: visible;
    }

    .nav-cluster__list {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: clamp(0.65rem, 1.2vw, 1.35rem);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-cluster--left .nav-cluster__list,
    .nav-cluster--right .nav-cluster__list {
        flex-wrap: nowrap;
    }

    .nav-cluster--center .nav-cluster__list {
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        row-gap: 0.15rem;
        max-width: 100%;
        /* overflow: auto burada flyout/mega paneli kırpıyordu — alt menüler görünmüyordu */
        overflow: visible;
    }

    .nav-cluster--center .nav-cluster__list--categories {
        gap: clamp(0.85rem, 1.8vw, 1.65rem);
    }

    .nav-cluster--left .nav-cluster__list {
        justify-content: flex-start;
    }

    .nav-cluster--right .nav-cluster__list {
        justify-content: flex-end;
    }

    .nav-cluster--left .nav-item:not(:last-child) .nav-item__link {
        padding-right: 0.5rem;
    }

    .nav-cluster--left .nav-item:not(:first-child) .nav-item__link {
        padding-left: 0.75rem;
        margin-left: 0.15rem;
        border-left: 1px solid rgba(15, 23, 42, 0.1);
    }

    .nav-cluster--center .nav-item__link {
        letter-spacing: 0.1em;
        font-size: 0.75rem;
    }

    .nav-cluster--left .nav-item__link,
    .nav-cluster--right .nav-item__link {
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
        font-size: 0.75rem;
        color: var(--text-dark);
    }
}

@media (max-width: 768px) {
    .nav-menu--bar {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-cluster {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-cluster__list {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-item--mega {
    position: static;
}

.nav-item__row {
    display: flex;
    align-items: center;
    min-height: 3.5rem;
}

.nav-item__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1.35rem 0;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-item__link::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-champagne);
    transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-item__chev {
    font-size: 0.55rem;
    opacity: 0.45;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (hover: hover) and (pointer: fine) {
    .main-nav .nav-item:hover > .nav-item__row > .nav-item__link,
    .main-nav .nav-item:focus-within > .nav-item__row > .nav-item__link {
        color: #2c2416;
    }

    .main-nav .nav-item:hover > .nav-item__row > .nav-item__link::after,
    .main-nav .nav-item:focus-within > .nav-item__row > .nav-item__link::after {
        width: 100%;
    }

    .main-nav .nav-item--has-children:hover > .nav-item__row > .nav-item__link,
    .main-nav .nav-item--has-children:focus-within > .nav-item__row > .nav-item__link {
        color: var(--accent-champagne);
    }

    .main-nav .nav-item:hover > .nav-item__row .nav-item__chev,
    .main-nav .nav-item:focus-within > .nav-item__row .nav-item__chev {
        transform: rotate(180deg);
        opacity: 0.85;
    }
}

.nav-accordion-trigger {
    display: none;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 0 0 0.25rem;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--border-radius-sm);
    background: var(--bg-gray);
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-accordion-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-accordion-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    .nav-item__link,
    .nav-item__link::after,
    .nav-item__chev,
    .nav-panel,
    .nav-accordion-trigger i {
        transition: none;
    }
}

/* Shared panel base (desktop hidden until hover/focus) */
.nav-panel {
    z-index: 2600;
}

@media (min-width: 769px) {
    .nav-panel {
        pointer-events: none;
    }

    .main-nav .nav-item--has-children:hover > .nav-panel,
    .main-nav .nav-item--has-children:focus-within > .nav-panel {
        pointer-events: auto;
    }
}

/* —— Mega panel —— */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.mega-menu-backdrop {
    position: absolute;
    inset: 0;
    top: 0;
    background: #faf7f3;
    border-top: 1px solid rgba(184, 151, 106, 0.25);
    box-shadow: 0 32px 64px -24px rgba(28, 25, 23, 0.1);
}

.mega-menu-shell {
    position: relative;
    z-index: 1;
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
}

.mega-menu-inner {
    display: grid;
    gap: 2rem 3rem;
    align-items: start;
}

.mega-menu-inner--banner-left {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 2rem 2.75rem;
    align-items: start;
}

.mega-menu-banner--left {
    min-width: 0;
}

.mega-menu-banner-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: min(78vh, 640px);
    overflow-y: auto;
    padding-right: 0.35rem;
    scrollbar-gutter: stable;
}

.mega-menu-banner-stack::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-banner-stack::-webkit-scrollbar-thumb {
    background: rgba(184, 151, 106, 0.45);
    border-radius: 999px;
}

.mega-banner-card {
    position: relative;
    display: block;
    flex-shrink: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(184, 151, 106, 0.35);
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease;
}

.mega-banner-card--primary {
    min-height: 260px;
    max-height: 400px;
}

.mega-banner-card--compact {
    height: 140px;
    min-height: 140px;
}

.mega-banner-card--compact img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-banner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mega-banner-card--primary img {
    width: 100%;
    display: block;
    min-height: 260px;
    max-height: 400px;
    object-fit: cover;
}

.mega-banner-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: linear-gradient(145deg, #3d3530 0%, #6b5346 40%, #a88978 100%);
}

.mega-banner-card--primary .mega-banner-card__placeholder {
    min-height: 260px;
}

.mega-banner-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(180deg, transparent 15%, rgba(26, 22, 20, 0.88) 100%);
}

.mega-banner-card__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
}

.mega-banner-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.mega-banner-card__sub {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.88;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.mega-banner-card__cta {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid var(--accent-champagne);
    padding-bottom: 0.2rem;
}

.mega-banner-card__overlay--compact {
    padding: 0.75rem 1rem;
}

.mega-banner-card__title--compact {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.mega-banner-card__sub--compact {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
}

.mega-banner-card__cta--compact {
    font-size: 0.58rem;
    padding-bottom: 0.12rem;
}

.mega-menu-main {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2.5rem;
    align-items: start;
}

@media (min-width: 1200px) {
    .mega-menu-grid {
        gap: 1.5rem 3rem;
    }
}

/* GELİNLİK MODELLERİ: çok sütunlu grid + sol tek yüksek banner */
.mega-menu-inner--classic {
    align-items: stretch;
}

.mega-banner-card--classic-tall {
    height: 100%;
    min-height: 280px;
    max-height: 400px;
}

.mega-banner-card--classic-tall .mega-banner-card__placeholder {
    min-height: 280px;
    height: 100%;
}

.mega-banner-card--classic-tall img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.mega-menu-grid--classic {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem 2.25rem;
    align-items: start;
}

.mega-menu-grid--classic .mega-links li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-col {
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.mega-col-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--accent-champagne-soft);
    transition: color 0.2s ease;
}

.mega-col-title:hover {
    color: var(--primary-dark);
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 0.5rem;
}

.mega-links li a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    padding: 0.28rem 0;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 100%;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-links li a:hover {
    color: var(--primary-dark);
}

/* ——— Home: Collections / Appointment / FAQ / Inspiration ——— */
.home-collections-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-collection-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    min-height: 378px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 151, 106, 0.18);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(145deg, rgba(61, 53, 48, 0.92) 0%, rgba(107, 83, 70, 0.88) 45%, rgba(168, 137, 120, 0.86) 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-collection-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.home-collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-collection-card__placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(250, 247, 243, 0.12), transparent 55%),
        linear-gradient(145deg, #3d3530 0%, #6b5346 40%, #a88978 100%);
}

.home-collection-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.25rem;
    padding: 1.1rem 1.15rem;
    background: linear-gradient(180deg, transparent 25%, rgba(26, 22, 20, 0.88) 100%);
}

.home-collection-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}

.home-collection-card__desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.35;
}

.home-collection-card__cta {
    margin-top: 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    border-bottom: 2px solid var(--accent-champagne);
    padding-bottom: 0.2rem;
}

/* --- ATELIER APPOINTMENT EXPERIENCE --- */
.home-appointment {
    padding: var(--section-padding-y) 0;
    background: #fff; /* Changed to white */
    overflow: hidden;
}

.home-appointment-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
}

.home-appointment-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem; /* Reduced gap as per user request */
}

.home-appointment-copy .slider-badge {
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-self: flex-start;
    color: var(--primary-dark); /* Darker color for legibility on white bg */
    background: var(--accent-champagne-soft);
    border-color: var(--accent-champagne);
}

.home-appointment-copy .section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin: 0; /* Reset margins to use container gap */
    line-height: 1.1;
    font-weight: 700;
}

.home-perks {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0; /* Reduced from 2.5rem */
}

.home-perks li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.home-perks li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-champagne);
    font-size: 0.85rem;
}

/* Scheduler Card */
.appointment-scheduler--modern {
    background: #ffffff;
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    box-shadow: 0 40px 80px -20px rgba(28, 25, 23, 0.08);
    padding: clamp(1.25rem, 2.5vw, 2.5rem); /* Slightly more compact padding */
    position: relative;
    min-height: 620px; /* Increased and stabilized to prevent jumping */
    display: flex;
    flex-direction: column;
}

.at-pane.is-active {
    display: flex;
    flex-direction: column;
    flex: 1;
    animation: atFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) both;
}

/* Step Indicators */
.appointment-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-steps::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--surface-border);
    z-index: 1;
}

.app-step {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.app-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--surface-border);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.app-step.is-active .app-step__num {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-champagne-soft);
}

.app-step__label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    white-space: nowrap;
}

.app-step.is-active .app-step__label {
    color: var(--text-dark);
}

/* Selection Grid (Step 1) */
.at-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.at-service-card {
    position: relative;
}

.at-service-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.at-service-ui {
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
    background: #fff;
    text-align: center;
}

.at-service-ui i {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.at-service-ui span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.at-service-card input:checked + .at-service-ui {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px -10px var(--accent-champagne-soft);
    transform: translateY(-2px);
}

.at-service-card input:checked + .at-service-ui i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Day/Slot Selection (Step 2) */
.at-date-wrapper {
    margin-bottom: 2.5rem;
}

.at-date-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.at-date-input {
    width: 100%;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.at-date-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-champagne-soft);
}

.at-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.at-slot-btn {
    padding: 0.85rem 0.5rem;
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.at-slot-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.at-slot-btn.is-active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px -4px var(--accent-champagne-soft);
}

.at-slot-btn:disabled {
    background: var(--bg-gray);
    color: var(--text-light);
    opacity: 0.45;
    cursor: not-allowed;
    border-style: dashed;
}

/* Final Form (Step 3) */
.at-form {
    display: grid;
    gap: 1.25rem;
}

.at-input-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .at-input-group {
        grid-template-columns: 1fr 1fr;
    }
}

.at-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s ease;
}

.at-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px var(--accent-champagne-soft);
}

.at-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    min-height: 80px;
    resize: vertical;
    font-family: var(--font-body);
}

/* Elegant Error/Sold Out View */
.at-status-view {
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.at-status-icon {
    font-size: 3rem;
    color: var(--accent-rose);
    animation: pulse 2s infinite;
}

.at-status-msg {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 320px;
}

.at-status-sub {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Breadcrumb-style navigation footer */
.at-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-gray);
}

.btn-at {
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

/* Transitions */
.at-pane {
    display: none;
}

.at-pane.is-active {
    display: block;
    animation: atFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) both;
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(231, 223, 212, 0.95);
    background: rgba(255, 255, 255, 0.85);
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-xs, none);
}

.faq-q {
    cursor: pointer;
    font-weight: 800;
    color: var(--text-dark);
    list-style: none;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-q {
    margin-bottom: 0.5rem;
}

.faq-a {
    color: var(--text-main);
    line-height: 1.55;
    font-size: 0.95rem;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.inspiration-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(231, 223, 212, 0.95);
    background: #f3f4f6;
    text-decoration: none;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inspiration-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.inspiration-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inspiration-card__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(61, 53, 48, 0.12) 0%, rgba(168, 137, 120, 0.18) 100%);
}

@media (max-width: 1024px) {
    .home-collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-appointment-inner {
        grid-template-columns: 1fr;
    }
    .appointment-modern-top {
        grid-template-columns: 1fr;
    }
    .appointment-segment {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .appointment-form-grid {
        grid-template-columns: 1fr;
    }
    .appointment-actions-row {
        grid-template-columns: 1fr;
    }
    .inspiration-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-collections-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .appointment-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .appointment-form-grid {
        grid-template-columns: 1fr;
    }
    .inspiration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 769px) {
    .main-nav .nav-item--mega:hover > .mega-menu,
    .main-nav .nav-item--mega:focus-within > .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dokunmatik tablet / coarse pointer: tıklama ile açılır (JS: .nav-item--open) */
@media (min-width: 769px) {
    body.nav-touch-desktop .main-nav .nav-item--mega.nav-item--open > .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    body.nav-touch-desktop .nav-accordion-trigger {
        display: flex;
        width: 2.25rem;
        height: 2.25rem;
        margin-left: 0.15rem;
        background: transparent;
        border: 1px solid var(--surface-border);
    }

    body.nav-touch-desktop .nav-item__chev {
        display: none;
    }
}

/* Bridge: link ile panel arasında boşluk — hover kırılmasın */
.main-nav .nav-item--mega > .nav-item__row {
    position: relative;
}

.main-nav .nav-item--mega > .nav-item__row::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    z-index: 1;
}

/* Mobile drawer: accordion + görünür alt menü */
@media (max-width: 768px) {
    .nav-menu--bar > .nav-cluster {
        border-bottom: none;
    }

    .nav-cluster__list > .nav-item {
        border-bottom: 1px solid var(--bg-gray);
    }

    .nav-cluster--right .nav-cluster__list > .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item__row {
        min-height: 0;
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.35rem;
    }

    /* .nav-menu li a (FINAL MOBILE FIXES) yatay 1rem veriyor; mega altı başlık/linklerle hizayı bozuyor */
    .main-nav .nav-item__row .nav-item__link {
        flex: 1 1 auto;
        min-width: 0;
        padding: 1rem 0 !important;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-bottom: none !important;
    }

    .nav-accordion-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
        margin: 0;
        border: 1px solid rgba(184, 151, 106, 0.35);
        border-radius: 10px;
        background: rgba(184, 151, 106, 0.08);
        color: var(--primary-dark);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-accordion-trigger i {
        font-size: 0.75rem;
        pointer-events: none;
    }

    .nav-item__link::after {
        display: none;
    }

    .nav-item__chev {
        display: none;
    }

    .nav-panel {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        border: none;
        pointer-events: auto;
    }

    .nav-panel.is-open {
        max-height: min(80vh, 1200px);
    }

    .mega-menu-backdrop {
        display: none;
    }

    .mega-menu .mega-menu-shell {
        padding: 0.75rem 0 1.25rem 0.65rem;
    }

    .mega-menu-inner--banner-left {
        grid-template-columns: 1fr;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem 0;
    }

    .mega-menu-grid--classic .mega-links li a {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .mega-col {
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--bg-gray);
        padding-bottom: 1rem !important;
        margin-bottom: 0.5rem;
    }

    .mega-col:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
        margin-bottom: 0;
    }

    .mega-col-title {
        margin-bottom: 0.75rem;
        font-size: 0.62rem;
    }

    .mega-links li a {
        font-size: 0.9rem;
        white-space: normal;
        text-overflow: unset;
        overflow: visible;
    }

    /* Global mobil bloktaki .nav-menu li a !important alt menüyü bozmasın */
    .main-nav .nav-panel .mega-col-title {
        padding: 0.35rem 0 0.75rem !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
        border-bottom: 1px solid var(--accent-champagne-soft) !important;
    }

    .main-nav .nav-panel .mega-links li a {
        padding: 0.45rem 0 !important;
        border-bottom: none !important;
        display: block !important;
        line-height: 1.45;
    }

    .main-nav .nav-panel .mega-links li {
        margin-bottom: 0.15rem;
    }

    .main-nav .nav-panel .mega-links li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .nav-panel {
        transition: none;
    }
}

/* ——— Hakkımızda (slug: hakkimizda) ——— */
.page-about {
    background: var(--bg-light);
}

.page-about-hero {
    position: relative;
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background:
        linear-gradient(135deg, rgba(184, 151, 106, 0.14) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-bottom: 1px solid var(--surface-border);
}

.page-about-hero-inner {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.page-about-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-about-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.12;
}

.page-about-lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 38rem;
    margin: 0 auto;
}

.page-about-body {
    padding-top: var(--page-padding-y);
    padding-bottom: calc(var(--page-padding-y) * 1.25);
}

.page-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.page-about-aside {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.page-about-highlights {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-about-highlights li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.55;
    padding: 1rem 1.1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-sm);
}

.page-about-highlight-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    background: var(--accent-champagne-soft);
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.page-about-cta-card {
    padding: 1.35rem 1.25rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, var(--primary-dark) 0%, #3d3224 100%);
    color: #faf6f1;
    box-shadow: var(--shadow-md);
}

.page-about-cta-text {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.page-about-cta-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    background: var(--bg-white) !important;
    color: var(--primary-dark) !important;
    border: none;
    font-weight: 600;
}

.page-about-cta-btn:hover {
    background: var(--bg-light) !important;
    color: var(--text-dark) !important;
}

.about-prose {
    background: var(--bg-white);
    padding: clamp(1.75rem, 3vw, 2.75rem);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-main);
}

.about-prose > p:first-of-type {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.about-prose p {
    margin-bottom: 1.25rem;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-champagne-soft);
    color: var(--text-dark);
}

.about-prose h2:first-child {
    margin-top: 0;
}

.about-prose ul,
.about-prose ol {
    margin: 0 0 1.25rem 1.25rem;
    padding-left: 0.5rem;
}

.about-prose li {
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .page-about-grid {
        grid-template-columns: 1fr;
    }

    .page-about-aside {
        position: static;
        order: 2;
    }

    .page-about-prose {
        order: 1;
    }
}

/* Final mobile header/menu UX overrides */
@media (max-width: 768px) {
    .header-top {
        display: none !important;
    }

    .main-nav {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100dvh !important;
        background: #fff !important;
        z-index: 2100 !important;
        display: block !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        overflow-y: auto !important;
        box-shadow: none !important;
        border-top: none !important;
        left: 0 !important;
    }

    .main-nav.active {
        transform: translateX(0) !important;
    }

    .main-nav .container.hauteur-full-mobile {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 0.5rem;
        padding-left: max(1.125rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }

    .mobile-nav-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
        padding: 1rem 0;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid var(--surface-border);
    }

    .mobile-overlay {
        z-index: 2050 !important;
    }

    body.mobile-menu-open {
        overflow: hidden;
        touch-action: none;
    }
}
