/* CSS Variables — TU&KU Diamond (luxury jewelry) */
:root {
    /* Brand accents — copper rose (distinct from champagne #C9A86A) */
    --primary-color: #B07D62;
    --primary-light: #CFA891;
    --primary-dark: #1A1A1A;
    --secondary-color: #B07D62;

    --success-color: #4A6B5A;
    --danger-color: #9E5A4E;
    --warning-color: #B07D62;
    --info-color: #7A7F86;

    /* Graphite / diamond neutrals */
    --text-dark: #111111;
    --text-main: #2B2B2B;
    --text-gray: #6B6B6B;
    --text-light: #8E8E8E;
    --text-muted: #9A9A9A;

    /* Surfaces — cool platinum / diamond white */
    --bg-white: #FFFFFF;
    --bg-light: #F7F8FA;
    --bg-gray: #E8EAEE;
    --bg-soft: #F1F2F4;
    --bg-dark: #111111;
    --bg-graphite: #2B2B2B;

    --glass-bg: rgba(255, 255, 255, 0.94);
    --glass-border: rgba(176, 125, 98, 0.2);
    --surface-border: #E2E5EA;
    --border-color: #D8DCE2;

    --border-radius-sm: 2px;
    --border-radius: 4px;
    --border-radius-lg: 6px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(17 17 17 / 0.03);
    --shadow: 0 4px 16px -4px rgb(17 17 17 / 0.06);
    --shadow-md: 0 12px 32px -10px rgb(17 17 17 / 0.08);
    --shadow-lg: 0 24px 56px -18px rgb(17 17 17 / 0.1);
    --shadow-inner: inset 0 1px 2px 0 rgb(0 0 0 / 0.03);

    --container-width: 1240px;
    --header-height: 80px;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --accent-champagne: #B07D62;
    --accent-champagne-soft: rgba(176, 125, 98, 0.14);
    --accent-rose: #C9A594;
    --accent-silver: #BFC5CE;
    --accent-platinum: #D8DCE2;
    --mega-surface: linear-gradient(180deg, #FFFFFF 0%, #F5F6F8 100%);

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

    /* Typography — Fraunces (display) + Outfit (UI / prices) */
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-price: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --fs-display: clamp(2.75rem, 5.5vw, 4.25rem);
    --fs-h1: clamp(2.25rem, 4vw, 3.25rem);
    --fs-h2: clamp(1.85rem, 3.2vw, 2.5rem);
    --fs-h3: clamp(1.35rem, 2.2vw, 1.65rem);
    --fs-h4: clamp(1.15rem, 1.6vw, 1.35rem);
    --fs-lead: clamp(1.05rem, 1.4vw, 1.2rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-eyebrow: 0.6875rem;
    --lh-display: 1.1;
    --lh-heading: 1.18;
    --lh-body: 1.75;
    --tracking-display: -0.01em;
    --tracking-heading: 0.01em;
    --tracking-eyebrow: 0.22em;
    --tracking-body: 0.015em;
}

/* --- Brand Preloader --- */
/* --- Brand Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
	background: radial-gradient(circle at center, #292316 0%, #2f2933 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: #fff;
    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: var(--lh-body);
    font-size: var(--fs-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: var(--tracking-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-weight: 500;
    line-height: var(--lh-heading);
    letter-spacing: var(--tracking-heading);
    text-wrap: balance;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-display);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 500;
}

h4 {
    font-size: var(--fs-h4);
    font-weight: 500;
}

h5 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h6 {
    font-family: var(--font-body);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--text-gray);
}

p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--text-main);
    letter-spacing: var(--tracking-body);
}

p.lead,
.lead {
    font-size: var(--fs-lead);
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

a {
    color: var(--text-dark);
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--accent-champagne);
}

/* 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.85rem;
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: var(--fs-h1);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-display);
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-lead);
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.7;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Contact page */
.contact-page {
    margin-bottom: var(--section-padding-y);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-info-intro {
    color: var(--text-gray);
    font-size: 1.0625rem;
    margin-bottom: 3.5rem;
    line-height: 1.7;
    opacity: 0.8;
}

.contact-quick-actions {
    display: none;
}

.contact-info-list {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-icon--whatsapp {
    color: #25d366;
}

.contact-info-label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-info-text {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: inherit;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.contact-form-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    margin-bottom: 2rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-field {
    margin-bottom: 1.5rem;
}

.contact-form-field:last-of-type {
    margin-bottom: 2rem;
}

.contact-form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.15);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    width: 100%;
    padding: 1rem;
}

.contact-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.contact-directions-link:hover {
    text-decoration: underline;
}

.contact-map-block {
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.contact-map-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-map-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-dark);
}

.contact-map-subtitle {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-map-cta:hover {
    filter: brightness(0.95);
    color: #fff;
}

.contact-map-frame-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background: var(--bg-light);
    aspect-ratio: 21 / 9;
    min-height: 280px;
}

.contact-map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-intro {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .contact-map-frame-wrap {
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .contact-page.container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-header {
        margin-bottom: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .contact-quick-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-quick-action {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-height: 72px;
        padding: 0.75rem 0.5rem;
        border-radius: var(--border-radius);
        border: 1px solid var(--border-color);
        background: var(--bg-white);
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.8125rem;
        font-weight: 600;
        text-align: center;
        transition: var(--transition);
    }

    .contact-quick-action i {
        font-size: 1.125rem;
        color: var(--primary-color);
    }

    .contact-quick-action--whatsapp i {
        color: #25d366;
    }

    .contact-quick-action:active {
        transform: scale(0.98);
        background: var(--bg-light);
    }

    .contact-info-list {
        gap: 1.25rem;
    }

    .contact-info-item {
        gap: 1rem;
    }

    .contact-info-item:not(:first-child) {
        display: none;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .contact-form-title {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
    }

    .contact-form-field {
        margin-bottom: 1rem;
    }

    .contact-form-field:last-of-type {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 380px) {
    .contact-quick-actions {
        grid-template-columns: 1fr;
    }

    .contact-quick-action {
        flex-direction: row;
        min-height: 52px;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        text-align: left;
    }
}

/* 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: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--surface-border);
    position: sticky;
    top: 0;
    z-index: 2500;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Anasayfa: hero üzerine binen şeffaf header */
body.is-home .site-header {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}

body.is-home .site-header.is-transparent {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.18) 70%, transparent 100%);
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

body.is-home .site-header.is-transparent .header-top {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-home .site-header.is-transparent .header-main {
    background: transparent;
}

body.is-home .site-header.is-transparent .main-nav {
    background: transparent;
    border-top-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

body.is-home .site-header.is-transparent .brand-wordmark,
body.is-home .site-header.is-transparent .brand-wordmark span,
body.is-home .site-header.is-transparent .header-action,
body.is-home .site-header.is-transparent .header-action-text,
body.is-home .site-header.is-transparent .mobile-menu-toggle,
body.is-home .site-header.is-transparent .mobile-search-toggle,
body.is-home .site-header.is-transparent .nav-item__link,
body.is-home .site-header.is-transparent .nav-item__link:visited,
body.is-home .site-header.is-transparent .header-top,
body.is-home .site-header.is-transparent .header-top a,
body.is-home .site-header.is-transparent .header-links a,
body.is-home .site-header.is-transparent .header-top-brand {
    color: #fff;
}

body.is-home .site-header.is-transparent .header-contact i,
body.is-home .site-header.is-transparent .nav-item__chev {
    color: var(--accent-champagne);
}

body.is-home .site-header.is-transparent .search-input {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
}

body.is-home .site-header.is-transparent .search-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

body.is-home .site-header.is-transparent .search-button {
    background: #fff;
    color: var(--text-dark);
}

body.is-home .site-header.is-transparent .nav-item__link::after {
    background: var(--accent-champagne);
}

/* Hero üzerinde hover: koyu metin yerine beyaz / şampanya */
@media (hover: hover) and (pointer: fine) {
    body.is-home .site-header.is-transparent .main-nav .nav-item:hover > .nav-item__row > .nav-item__link,
    body.is-home .site-header.is-transparent .main-nav .nav-item:focus-within > .nav-item__row > .nav-item__link,
    body.is-home .site-header.is-transparent .main-nav .nav-item--has-children:hover > .nav-item__row > .nav-item__link,
    body.is-home .site-header.is-transparent .main-nav .nav-item--has-children:focus-within > .nav-item__row > .nav-item__link {
        color: #fff;
    }

    body.is-home .site-header.is-transparent .main-nav .nav-item:hover > .nav-item__row .nav-item__chev,
    body.is-home .site-header.is-transparent .main-nav .nav-item:focus-within > .nav-item__row .nav-item__chev {
        color: var(--accent-champagne);
    }
}

body.is-home .site-header.is-transparent .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-item__row > .nav-item__link {
    color: #fff;
}

body.is-home .site-header.is-transparent .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-item__row .nav-item__chev {
    color: var(--accent-champagne);
}

/* Scroll sonrası: opak, okunabilir lüks header */
body.is-home .site-header.is-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--surface-border);
    box-shadow: var(--shadow-sm);
}

body.is-home .site-header.is-scrolled .header-top {
    background: var(--bg-dark);
    border-bottom: none;
}

body.is-home .site-header.is-scrolled .main-nav {
    background: #fff;
    border-top: 1px solid var(--surface-border);
    box-shadow: none;
}

body.is-home .site-header.is-scrolled .brand-wordmark {
    color: var(--text-dark);
}

body.is-home .site-header.is-scrolled .brand-wordmark span {
    color: var(--accent-champagne);
}

body.is-home .site-header.is-scrolled .header-action,
body.is-home .site-header.is-scrolled .header-action-text,
body.is-home .site-header.is-scrolled .nav-item__link,
body.is-home .site-header.is-scrolled .nav-item__link:visited,
body.is-home .site-header.is-scrolled .mobile-menu-toggle {
    color: var(--text-dark);
}

body.is-home .site-header.is-scrolled .search-input {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.is-home .site-header.is-scrolled .search-input::placeholder {
    color: var(--text-light);
}

body.is-home .site-header.is-scrolled .search-button {
    background: var(--text-dark);
    color: #fff;
}

#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;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.15rem;
    min-width: 0;
    flex: 1 1 auto;
}

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

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

.header-address {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 0.8125rem;
    color: inherit;
    line-height: 1.35;
}

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

.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;
    flex-shrink: 0;
    margin-left: auto;
}

.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: 0.85rem 0;
    background: #fff;
}

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

.site-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 7.5rem;
}

.site-logo a {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none !important;
    border: none;
    box-shadow: none;
    color: inherit;
}

.site-logo a:hover,
.site-logo a:focus,
.site-logo a:visited {
    text-decoration: none !important;
    color: inherit;
}

.site-logo img,
.site-logo__img {
    height: var(--site-logo-height, 40px);
    width: auto;
    display: block;
}

/* Çift logo: varsayılan (beyaz header / sticky) koyu varyant */
.site-logo--dual .site-logo__img--light {
    display: none;
}

.site-logo--dual .site-logo__img--dark {
    display: block;
}

/* Ana sayfa şeffaf header: açık (beyaz) logo */
body.is-home .site-header.is-transparent:not(.is-scrolled) .site-logo--dual .site-logo__img--light {
    display: block;
}

body.is-home .site-header.is-transparent:not(.is-scrolled) .site-logo--dual .site-logo__img--dark {
    display: none;
}

/* Sticky / scroll sonrası: koyu logo */
body.is-home .site-header.is-scrolled .site-logo--dual .site-logo__img--light {
    display: none;
}

body.is-home .site-header.is-scrolled .site-logo--dual .site-logo__img--dark {
    display: block;
}

/* Search Bar - Elite Design */
.search-bar {
    flex: 1 1 auto;
    max-width: 420px;
    margin: 0 auto;
}

.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.7rem 3.1rem 0.7rem 1.15rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.search-input:focus {
    background: #fff;
    border-color: var(--accent-champagne);
    box-shadow: 0 0 0 3px var(--accent-champagne-soft);
    outline: none;
}

.search-button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    background: var(--text-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(--accent-champagne);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1.04);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex: 0 0 auto;
    min-width: 7.5rem;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
    min-width: 44px;
    min-height: 44px;
}

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

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

.header-action-text {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -2px;
    right: 2px;
    background: var(--accent-champagne);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 700;
    height: 16px;
    min-width: 16px;
    padding: 0 4px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
}

/* Navigation shell */
.main-nav {
    border-top: 1px solid var(--surface-border);
    position: relative;
    background: #fff;
}

@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: 1 / 1;
    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,
.product-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.5vw, 2.35rem);
    font-weight: 500;
    font-optical-sizing: auto;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.product-sku-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.item-unit-price {
    margin-bottom: 1rem;
    font-family: var(--font-price);
    font-size: 1.25rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.cart-total-amount {
    font-family: var(--font-price);
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.price-box .price {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-family: var(--font-price);
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-dark);
}

.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;
    }
}

@media (max-width: 768px) {
    .product-info-panel h1,
    .product-detail-title {
        margin-bottom: 1rem;
    }
}

/* Ürün listesi — filtre & başlık (mobil öncelikli) */
.product-list-page {
    padding-bottom: 3rem;
}

.product-list-page .product-grid {
    margin-top: 0;
}

.product-list-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
}

.product-list-breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
}

.product-list-breadcrumb__sep {
    color: var(--text-light);
    opacity: 0.5;
}

.product-list-breadcrumb__current {
    color: var(--primary-color);
    font-weight: 800;
}

.product-list-page-title {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.product-list-count-badge {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    border: 1px solid var(--surface-border);
}

.product-list-count-badge i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.product-list-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.125rem;
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-list-toolbar__form {
    width: 100%;
    min-width: 0;
}

.product-list-filters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    width: 100%;
}

.product-list-filter {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.product-list-filter__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
}

.product-list-filter__select-wrap {
    position: relative;
    width: 100%;
}

.product-list-filter__select {
    width: 100%;
    min-height: 44px;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius-sm);
    background: var(--bg-white);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.2;
}

.product-list-filter__select:focus {
    outline: 2px solid rgba(184, 151, 106, 0.45);
    outline-offset: 1px;
    border-color: var(--accent-champagne);
}

.product-list-filter__chevron {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.7rem;
    color: #64748b;
}

.product-list-breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
}

.product-list-breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.product-list-empty {
    text-align: center;
    padding: 3.5rem 1.25rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px dashed var(--surface-border);
}

.product-list-empty i {
    font-size: 3rem;
    color: var(--bg-gray);
    margin-bottom: 1.25rem;
}

.product-list-empty h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-list-empty p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.product-list-pagination {
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
}

.product-list-pagination .page-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .product-list-filters-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-list-toolbar {
        padding: 1.25rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .product-list-toolbar {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }

    .product-list-filters-grid {
        grid-template-columns: repeat(3, minmax(9rem, 1fr));
        gap: 1rem;
    }

    .product-list-filter__select {
        font-size: 0.875rem;
        min-width: 9rem;
    }
}

/* Footer — SEO / GEO uyumlu vitrin */
.site-footer {
    background: var(--bg-dark);
    color: #e2e8f0;
    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: var(--fs-eyebrow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-eyebrow);
    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 — scroll ile göster / gizle */
body {
    padding-bottom: 88px;
}

.contact-dock {
    position: fixed;
    left: 50%;
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 2850;
    display: none;
    align-items: center;
    gap: 0.45rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(18px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.contact-dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.contact-dock__main {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: linear-gradient(165deg, #3a414b 0%, #232830 55%, #1a1e24 100%);
    border: 1px solid rgba(191, 197, 206, 0.32);
    box-shadow: 0 18px 40px -18px rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(10px);
}

.contact-dock__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    border-radius: 999px;
    min-height: 40px;
    padding: 0.52rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 650;
    color: #f4f6f8;
    border: 1px solid rgba(191, 197, 206, 0.22);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-dock__pill:hover,
.contact-dock__pill:focus-visible,
a.contact-dock__pill:hover,
a.contact-dock__pill:focus-visible {
    transform: translateY(-1px);
    color: #fff !important;
    background: var(--accent-champagne, #B07D62);
    border-color: transparent;
}

.contact-dock__pill:hover i,
.contact-dock__pill:hover span,
.contact-dock__pill:focus-visible i,
.contact-dock__pill:focus-visible span,
a.contact-dock__pill:hover i,
a.contact-dock__pill:hover span,
a.contact-dock__pill:focus-visible i,
a.contact-dock__pill:focus-visible span {
    color: #fff !important;
}

.contact-dock__pill--whatsapp:hover i,
.contact-dock__pill--whatsapp:focus-visible i,
a.contact-dock__pill--whatsapp:hover i,
a.contact-dock__pill--whatsapp:focus-visible i {
    color: #fff !important;
}

.contact-dock__pill--top:hover i,
.contact-dock__pill--top:focus-visible i {
    color: #fff !important;
}

.contact-dock__pill--top {
    border-color: rgba(176, 125, 98, 0.45);
    background: rgba(176, 125, 98, 0.18);
}

.contact-dock__pill--top i {
    color: #e8c4b0;
}

.contact-dock__pill--whatsapp {
    width: 40px;
    padding: 0;
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
}

.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: 999px;
    border: 1px solid rgba(191, 197, 206, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #e8ecf0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-dock__toggle:hover {
    transform: translateY(-1px);
    background: var(--accent-champagne, #B07D62);
    color: #fff;
    border-color: transparent;
}

.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: 999px;
    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:hover,
a.contact-dock__panel-item:hover {
    color: #fff !important;
    background: var(--accent-champagne, #B07D62);
    border-color: transparent;
}

.contact-dock__panel-item:hover i,
a.contact-dock__panel-item:hover i {
    color: #fff !important;
}

.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(28, 32, 38, 0) 0%, rgba(28, 32, 38, 0.35) 100%);
    border-top: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.contact-sticky-bar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.contact-sticky-bar__inner {
    max-width: min(860px, calc(100vw - 1.4rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0.45rem;
    background: linear-gradient(165deg, #3a414b 0%, #232830 55%, #1a1e24 100%);
    border: 1px solid rgba(191, 197, 206, 0.3);
    border-radius: 18px;
    padding: 0.45rem;
    box-shadow: 0 18px 40px -18px rgba(17, 17, 17, 0.55);
}

.contact-sticky-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 12px;
    min-height: 44px;
    padding: 0.5rem 0.55rem;
    text-decoration: none;
    color: #f4f6f8;
    font-size: 0.8rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    border: 1px solid rgba(191, 197, 206, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.contact-sticky-bar__item--top {
    border-color: rgba(176, 125, 98, 0.45);
    background: rgba(176, 125, 98, 0.18);
}

.contact-sticky-bar__item--top i {
    color: #e8c4b0;
}

.contact-sticky-bar__item i {
    color: #d7dde5;
}

.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,
.contact-sticky-bar__item:focus-visible,
a.contact-sticky-bar__item:hover,
a.contact-sticky-bar__item:focus-visible {
    transform: translateY(-1px);
    color: #fff !important;
    border-color: transparent;
    background: var(--accent-champagne, #B07D62);
}

.contact-sticky-bar__item:hover i,
.contact-sticky-bar__item:hover span,
.contact-sticky-bar__item:focus-visible i,
.contact-sticky-bar__item:focus-visible span,
a.contact-sticky-bar__item:hover i,
a.contact-sticky-bar__item:hover span,
a.contact-sticky-bar__item:focus-visible i,
a.contact-sticky-bar__item:focus-visible span {
    color: #fff !important;
}

.contact-sticky-bar__item--top:hover i,
.contact-sticky-bar__item--top:focus-visible i {
    color: #fff !important;
}

.contact-sticky-bar__item--whatsapp:hover i,
.contact-sticky-bar__item--whatsapp:focus-visible i,
a.contact-sticky-bar__item--whatsapp:hover i,
a.contact-sticky-bar__item--whatsapp:focus-visible i {
    color: #fff !important;
}

@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;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .contact-sticky-bar {
        padding: 0.35rem 0 calc(0.4rem + env(safe-area-inset-bottom));
    }

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

    .contact-sticky-bar__item {
        min-height: 48px;
        font-size: 0.58rem;
        padding: 0.3rem 0.15rem;
        gap: 0.15rem;
        flex-direction: column;
        letter-spacing: 0;
    }

    .contact-sticky-bar__item i {
        font-size: 1rem;
        line-height: 1;
    }

    .contact-sticky-bar__item span {
        line-height: 1.1;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* 5 öğeli orta bar — dar ekranda sadece ikon, taşmayı önler */
@media (max-width: 420px) {
    .contact-sticky-bar__item span {
        display: none;
    }

    .contact-sticky-bar__item {
        min-height: 44px;
        padding: 0.35rem 0.2rem;
    }

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

@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 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-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: 1;
    }

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

    .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;
}

/* Full-card click target; wishlist sits above via z-index */
.product-card-stretch-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.product-card-stretch-link:focus-visible {
    outline: 2px solid #b08d57;
    outline-offset: 2px;
}

.product-card-inner {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.product-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    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);
    pointer-events: none;
}

.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;
    pointer-events: none;
}

.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%;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    background: #fff;
}

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

.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: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}

.product-title-text {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card:hover .product-title-text {
    color: var(--accent-champagne);
}

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

.prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    min-width: 0;
    max-width: 100%;
}

.prices--sale {
    flex-direction: row;
    align-items: baseline;
}

.prices--sale .current-price {
    order: 1;
}

.prices--sale .old-price {
    order: 2;
}

.current-price {
    font-size: 1.1rem;
    font-family: var(--font-price);
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.old-price {
    font-size: 0.85rem;
    color: #bbb;
    text-decoration: line-through;
    line-height: 1.2;
    max-width: 100%;
}

.product-card .prices .old-price,
.product-card .prices .current-price {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* İndirimli fiyat bloğu — ürün detay */
.price-box-sale {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

.price-box-sale__old {
    order: 2;
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.55;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
    max-width: 100%;
}

.price-box-sale__current {
    order: 1;
    color: var(--text-dark);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    font-family: var(--font-price);
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 100%;
}

@media (max-width: 768px) {
    .prices--sale {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    .prices--sale .old-price {
        font-size: 0.72rem;
        order: 0;
    }

    .prices--sale .current-price {
        font-size: 0.95rem;
        order: 1;
    }

    .price-box-sale {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .price-box-sale__old {
        font-size: 0.9rem;
        order: 0;
        white-space: nowrap;
    }

    .price-box-sale__current {
        font-size: 1.75rem;
        order: 1;
        white-space: nowrap;
    }
}

.price-on-request {
    font-size: 1.15rem !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-family: var(--font-price) !important;
}

.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: 3.5rem;
}

.section-eyebrow,
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--accent-champagne);
    margin-bottom: 0.85rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-heading);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--text-gray);
    max-width: 34rem;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.section-title-wrapper .section-title {
    font-size: var(--fs-h2);
    font-weight: 400;
}

.section-title-wrapper .section-subtitle {
    margin-left: 0;
    text-align: left;
}

/* 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: var(--fs-h3);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: var(--tracking-display);
}

.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.95rem 2rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-white);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.6875rem;
    font-weight: 600;
    box-shadow: none;
    border: 1px solid var(--text-dark);
}

a.btn-primary,
button.btn-primary {
    color: var(--bg-white);
}

.btn-primary:hover,
.btn-primary:focus-visible,
a.btn-primary:hover,
a.btn-primary:focus-visible,
button.btn-primary:hover,
button.btn-primary:focus-visible {
    background: var(--accent-champagne);
    border-color: var(--accent-champagne);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary:hover i,
.btn-primary:focus-visible i,
a.btn-primary:hover i,
a.btn-primary:focus-visible i {
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.6875rem;
    font-weight: 600;
}

.btn-outline:hover,
.btn-outline:focus-visible,
a.btn-outline:hover,
a.btn-outline:focus-visible,
button.btn-outline:hover,
button.btn-outline:focus-visible {
    background: var(--text-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: none;
}

.btn-outline:hover i,
.btn-outline:focus-visible i,
a.btn-outline:hover i,
a.btn-outline:focus-visible i {
    color: #fff;
}

/* 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: 100vh;
    height: 100dvh;
    min-height: 560px;
    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: center;
}

.hero-slider.modern-slider .slider-content {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.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: 44rem;
    padding: 2rem 1.5rem;
}

/* Luxury Hero Button */
.slider-btn-lux {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    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, #B07D62);
    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, #B07D62);
    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: clamp(2.35rem, 10vw, 3.25rem);
        letter-spacing: -0.01em;
    }
    .slider-subtitle {
        font-size: 0.9375rem;
        letter-spacing: 0.04em;
        margin-bottom: 2rem;
    }
    .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, #B07D62);
    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(2.75rem, 5.5vw, 4.75rem);
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.08;
    text-transform: none;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
    max-width: 16ch;
    text-wrap: balance;
}

.slider-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
    font-weight: 400;
    font-style: normal;
    color: rgba(255, 250, 245, 0.88);
    max-width: 34rem;
    margin: 0 auto 0.5rem;
    line-height: 1.75;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}



.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: clamp(2.5rem, 7vw, 3.5rem);
        max-width: 18ch;
    }
}

@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: var(--fs-h2);
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-heading);
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--text-gray);
    margin-top: 0.85rem;
    font-size: var(--fs-small);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

/* 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: min(var(--site-logo-height, 40px), 36px);
    }

    #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: clamp(2.15rem, 9.5vw, 2.5rem);
        max-width: none;
    }

    .slider-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.03em;
        line-height: 1.65;
    }

    .slider-cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 18rem;
        margin-top: 1.5rem;
    }

    .slider-btn-lux,
    .slider-btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* 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(--text-dark);
    font-size: 1rem;
    font-family: var(--font-price);
    font-variant-numeric: tabular-nums lining-nums;
}

.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-family: var(--font-display);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    font-size: 1.05rem;
    height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

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

.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: var(--fs-eyebrow);
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent-champagne);
    letter-spacing: var(--tracking-eyebrow);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: var(--lh-heading);
    margin: 0;
    letter-spacing: var(--tracking-display);
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-weight: 400;
    font-size: var(--fs-small);
    margin-top: 0.85rem;
    max-width: 34rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.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: clamp(1.75rem, 3.5vw, 2.25rem);
    }
}

@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: clamp(1.65rem, 6vw, 2rem);
    }

    .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);
    }

    .nav-item__link--home {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        min-width: 2rem;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
        font-size: 0.95rem;
        letter-spacing: 0;
        text-transform: none;
    }

    .nav-item__link--home i {
        font-size: 0.95rem;
        line-height: 1;
        opacity: 0.92;
    }

    .nav-cluster--left .nav-item:first-child .nav-item__link--home {
        border-left: none;
        margin-left: 0;
        padding-left: 0.35rem;
    }
}

@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: 2.85rem;
}

.nav-item__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.95rem 0;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    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: 0.65rem;
    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.16s ease, visibility 0.16s ease, transform 0.22s cubic-bezier(0.19, 1, 0.22, 1);
}

.mega-menu-backdrop {
    position: absolute;
    inset: 0;
    top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
    border-top: 1px solid rgba(176, 125, 98, 0.22);
    box-shadow: 0 28px 56px -28px rgba(17, 17, 17, 0.12);
}

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

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

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

.mega-menu-inner--no-banner {
    grid-template-columns: minmax(0, 1fr);
}

.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: 180px;
    max-height: 280px;
}

.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: 180px;
    max-height: 280px;
    object-fit: cover;
}

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

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

.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: start;
}

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

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

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

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

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

/* Düz alt kategori listesi — sıkı satırlar */
.mega-links--flat {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 0;
    max-width: 36rem;
}

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

.main-nav .mega-menu .mega-links--flat li a,
.mega-links--flat li a {
    display: block;
    box-sizing: border-box;
    padding: 0.42rem 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    font-family: var(--font-body);
    font-size: 0.68rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.3 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.main-nav .mega-menu .mega-links--flat li a:hover,
.mega-links--flat li a:hover {
    color: var(--accent-champagne);
    padding-left: 0.2rem !important;
}

.mega-links--flat li:nth-last-child(-n+2) a {
    border-bottom: none;
}

@media (min-width: 1100px) {
    .mega-links--flat {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 48rem;
        column-gap: 2.25rem;
    }

    .mega-links--flat li:nth-last-child(-n+3) a {
        border-bottom: none;
    }
}

.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.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.65rem;
    padding-bottom: 0.4rem;
    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.15rem;
}

.mega-links li a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    line-height: 1.3;
    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(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-collection-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 340px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(176, 125, 98, 0.2);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(160deg, #2B2B2B 0%, #3a3530 45%, #B07D62 160%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s 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: 500;
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.home-collection-card__desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.45;
    letter-spacing: 0.03em;
}

.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;
    min-width: 0;
}

.home-appointment-inner > * {
    min-width: 0;
}

.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;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.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;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.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 {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 1rem 0.85rem;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px; /* iOS zoom önleme */
    color: var(--text-dark);
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 576px) {
    .at-pane {
        min-width: 0;
        max-width: 100%;
    }

    .at-date-input {
        padding: 0.85rem 0.65rem;
        font-size: 16px;
    }
}

.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) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    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;
}

@media (max-width: 576px) {
    .at-slot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .at-slot-btn {
        padding: 0.75rem 0.35rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .at-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 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;
    align-items: start;
}

.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-grid--instagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

/* Instagram Reels carousel */
.reels-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reels-carousel__viewport {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.reels-carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reels-carousel__track::-webkit-scrollbar {
    display: none;
}

.reel-card {
    position: relative;
    flex: 0 0 min(220px, 38vw);
    aspect-ratio: 9 / 16;
    border-radius: 1rem;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(231, 223, 212, 0.95);
    background: #111;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: block;
    width: auto;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
}

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

.reel-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-card__img--loading {
    opacity: 0.35;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
}

.reel-card__badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.reel-card__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    transition: background 0.25s ease;
}

.reel-card:hover .reel-card__play {
    background: rgba(0, 0, 0, 0.28);
}

.reel-card__play i {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
    padding-left: 0.15rem;
}

.reels-carousel__nav {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 151, 106, 0.35);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.reels-carousel__nav:hover {
    background: #fff;
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .reels-carousel__nav {
        display: none;
    }

    .reel-card {
        flex: 0 0 min(68vw, 240px);
    }
}

/* Reels oynatıcı modal */
body.reel-modal-open {
    overflow: hidden;
}

body.reel-modal-open .site-header,
body.reel-modal-open .contact-dock,
body.reel-modal-open .contact-sticky-bar {
    z-index: 100;
}

.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reel-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reel-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.reel-modal__panel {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    max-height: min(92vh, 860px);
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.96) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reel-modal.is-open .reel-modal__panel {
    transform: scale(1) translateY(0);
}

.reel-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.reel-modal__title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.reel-modal__close {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--text-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reel-modal__close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.reel-modal__body {
    flex: 1;
    min-height: 0;
    background: #000;
}

.reel-modal__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 720px);
    margin: 0 auto;
    background: #111;
}

.reel-modal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #111;
}

.reel-modal__footer {
    padding: 0.75rem 1rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reel-modal__external {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted, #64748b);
    text-decoration: none;
}

.reel-modal__external:hover {
    color: var(--text-dark);
}

.inspiration-grid--instagram .inspiration-card--reel {
    aspect-ratio: 9 / 16;
    max-height: min(52vh, 480px);
    width: 100%;
    margin: 0 auto;
}

.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%);
}

.inspiration-card--reel .inspiration-card__placeholder--reel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(61, 53, 48, 0.55) 0%, rgba(168, 137, 120, 0.45) 100%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 2rem;
}

.inspiration-card--reel-embed {
    cursor: pointer;
    background: #111;
}

.inspiration-card__embed-scaler {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.inspiration-card--reel-embed .instagram-media,
.inspiration-card--reel-embed iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.62) !important;
    transform-origin: center center !important;
    width: 326px !important;
    min-width: 326px !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.inspiration-card--reel-embed .inspiration-card__reel-badge {
    z-index: 3;
    pointer-events: none;
}

.inspiration-card__reel-badge {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inspiration-card__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
    transition: background 0.25s ease;
}

.inspiration-card--reel:hover .inspiration-card__play {
    background: rgba(0, 0, 0, 0.22);
}

.inspiration-card__play i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    font-size: 0.85rem;
    padding-left: 0.12rem;
}

@media (max-width: 1280px) {
    .home-collections-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@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));
    }
    .inspiration-grid--instagram {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-collections-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .home-collection-card {
        min-height: 0;
        aspect-ratio: 3 / 4;
    }

    .home-collection-card img {
        object-position: top center;
    }

    .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));
    }
    .inspiration-grid--instagram {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .inspiration-grid--instagram {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .inspiration-grid--instagram {
        grid-template-columns: repeat(6, 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);
    }

    /* JS hover intent: anlık :hover ile panel zıplamasın */
    .main-nav.nav-hover-managed .nav-item--mega:hover > .mega-menu,
    .main-nav.nav-hover-managed .nav-item--mega:focus-within > .mega-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
    }

    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

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

    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-panel,
    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-panel * {
        pointer-events: auto;
    }

    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover .mega-menu-backdrop {
        pointer-events: none;
    }

    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-item__row > .nav-item__link {
        color: var(--accent-champagne);
    }

    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-item__row > .nav-item__link::after {
        width: 100%;
    }

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

    .main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .mega-menu {
        transition-delay: 0s;
    }

    .main-nav.nav-hover-managed .nav-item--mega > .mega-menu {
        transition-delay: 0.04s;
    }
}

/* 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: 18px;
    z-index: 1;
    pointer-events: none;
}

.main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .nav-item__row::after,
.main-nav.nav-hover-managed .nav-item--mega.nav-item--hover > .mega-menu::before {
    pointer-events: auto;
}

.main-nav .nav-item--mega > .mega-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    z-index: 0;
    pointer-events: none;
}

.main-nav.nav-hover-managed .nav-item--mega.nav-item--hover .mega-menu-shell a,
.main-nav.nav-hover-managed .nav-item--mega.nav-item--hover .mega-menu-shell button {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* 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--flat {
        display: grid;
        grid-template-columns: 1fr;
        max-width: none;
        column-gap: 0;
    }

    .main-nav .nav-panel .mega-links--flat li a {
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid var(--bg-gray) !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.06em;
        line-height: 1.35 !important;
    }

    .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;
    }
}

/* ——— Site promo popup ——— */
body.site-promo-popup-open {
    overflow: hidden;
}

.site-promo-popup {
    position: fixed;
    inset: 0;
    z-index: 4200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-promo-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-promo-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 12, 0.62);
    backdrop-filter: blur(3px);
}

.site-promo-popup__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: min(90vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(184, 151, 106, 0.22);
    transform: translateY(14px) scale(0.98);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-promo-popup.is-open .site-promo-popup__panel {
    transform: translateY(0) scale(1);
}

.site-promo-popup__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-promo-popup__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light);
}

.site-promo-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-promo-popup__body {
    padding: 1.35rem 1.4rem 1.5rem;
}

.site-promo-popup__title {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.25;
    color: var(--text-dark);
}

.site-promo-popup__subtitle {
    margin: 0 0 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.site-promo-popup__text {
    margin: 0 0 1rem;
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.site-promo-popup__coupon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: rgba(184, 151, 106, 0.12);
    border: 1px dashed rgba(184, 151, 106, 0.45);
}

.site-promo-popup__coupon-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-gray);
    width: 100%;
}

.site-promo-popup__coupon-code {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.06em;
}

.site-promo-popup__coupon-copy {
    margin-left: auto;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
}

.site-promo-popup__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-promo-popup__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 0.9rem 1rem;
}

.site-promo-popup__mute {
    border: 0;
    background: transparent;
    color: var(--text-gray);
    font-size: 0.8125rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0.25rem;
}

@media (max-width: 640px) {
    .site-promo-popup {
        padding: 0.75rem;
        align-items: flex-end;
    }

    .site-promo-popup__panel {
        width: 100%;
        border-radius: 18px 18px 12px 12px;
        max-height: 88vh;
    }

    .site-promo-popup__media {
        aspect-ratio: 16 / 11;
    }
}

/* ——— Home trust / feature boxes (İlham köşesi altı) ——— */
.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;
}

.home-trust-features {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.9) 0%, transparent 55%),
        linear-gradient(180deg, #f3eee7 0%, #ebe4da 100%);
}

.home-trust-features__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.75rem, 3vw, 2.75rem);
}

.home-trust-features__item {
    margin: 0;
}

.home-trust-features__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    padding: 0.35rem 0.5rem;
    transition: transform 0.35s ease;
}

a.home-trust-features__card:hover {
    transform: translateY(-3px);
}

.home-trust-features__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.15rem;
    color: #3d3530;
}

.home-trust-features__icon svg {
    width: 100%;
    height: 100%;
}

.home-trust-features__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: var(--tracking-heading);
}

.home-trust-features__text {
    margin: 0;
    max-width: 16.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: var(--tracking-body);
}

@media (max-width: 1024px) {
    .home-trust-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .home-trust-features {
        padding: 2.5rem 0;
    }

    .home-trust-features__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-trust-features__text {
        max-width: 22rem;
    }
}

/* ——— Yardım Merkezi (slug: yardim) ——— */
.page-help {
    background:
        radial-gradient(1200px 480px at 10% -10%, rgba(184, 151, 106, 0.12), transparent 55%),
        linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 42%, var(--bg-white) 100%);
}

.page-help-hero {
    padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid var(--surface-border);
}

.page-help-hero-inner {
    max-width: 40rem;
    text-align: center;
    margin: 0 auto;
}

.page-help-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;
    animation: helpFadeUp 0.55s ease both;
}

.page-help-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.35rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: helpFadeUp 0.55s ease 0.06s both;
}

.page-help-lead {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    animation: helpFadeUp 0.55s ease 0.12s both;
}

.page-help-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    animation: helpFadeUp 0.55s ease 0.18s both;
}

.page-help-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.85rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.page-help-cta--ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--surface-border);
}

.page-help-cta--ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.page-help-cta--whatsapp {
    background: #128c7e;
    color: #fff;
    border: 1px solid transparent;
}

.page-help-cta--whatsapp:hover {
    background: #0f7a6e;
    color: #fff;
}

.page-help-body {
    padding-top: clamp(2rem, 4vw, 3.25rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    max-width: 920px;
}

.page-help-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 1.9rem);
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.page-help-section-lead {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0 0 1.35rem;
    max-width: 36rem;
}

.page-help-topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.page-help-topic {
    animation: helpFadeUp 0.5s ease both;
    animation-delay: calc(0.04s * var(--help-i, 0));
}

.page-help-topic-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.05rem 1.15rem;
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-help-topic-link:hover {
    border-color: rgba(184, 151, 106, 0.55);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.page-help-topic-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-champagne-soft, rgba(184, 151, 106, 0.16));
    color: var(--primary-dark);
    font-size: 1rem;
}

.page-help-topic-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.page-help-topic-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.02rem;
}

.page-help-topic-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.45;
}

.page-help-topic-action {
    margin-top: 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.page-help-topic-chevron {
    color: var(--text-gray);
    opacity: 0.55;
    font-size: 0.85rem;
}

.page-help-prose {
    scroll-margin-top: calc(var(--header-height, 5rem) + 1rem);
}

.page-help-prose h2[id] {
    scroll-margin-top: calc(var(--header-height, 5rem) + 1rem);
}

.page-help-faq-list {
    display: grid;
    gap: 0.65rem;
}

.page-help-faq-item {
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius);
    padding: 0.15rem 1.1rem;
}

.page-help-faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1rem 0;
    position: relative;
    padding-right: 1.75rem;
}

.page-help-faq-item summary::-webkit-details-marker {
    display: none;
}

.page-help-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.page-help-faq-item[open] summary::after {
    content: '–';
}

.page-help-faq-answer {
    padding: 0 0 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.98rem;
}

.page-help-faq-more {
    margin: 1.25rem 0 0;
}

.page-help-faq-more a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.page-help-faq-more a:hover {
    text-decoration: underline;
}

.page-help-empty {
    padding: 1.1rem 1.2rem;
    background: var(--bg-white);
    border: 1px dashed var(--surface-border);
    border-radius: var(--border-radius);
    color: var(--text-gray);
}

.page-help-local-inner {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--border-radius-lg);
    background: linear-gradient(165deg, #3a414b 0%, #232830 55%, #1a1e24 100%);
    border: 1px solid rgba(191, 197, 206, 0.28);
    color: #f4f6f8;
}

.page-help-local .page-help-section-title,
.page-help-local h2.page-help-section-title {
    color: #ffffff !important;
}

.page-help-local-text {
    margin: 0 0 0.85rem;
    line-height: 1.65;
    font-size: 0.98rem;
    color: rgba(244, 246, 248, 0.92) !important;
}

.page-help-local-address {
    margin: 0 0 1.15rem;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff !important;
}

.page-help-local-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
}

.page-help-local-actions a {
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.92rem;
}

.page-help-local-actions a:hover {
    color: #e8c4b0 !important;
}

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

@media (prefers-reduced-motion: reduce) {
    .page-help-eyebrow,
    .page-help-title,
    .page-help-lead,
    .page-help-cta-group,
    .page-help-topic {
        animation: none;
    }
}

@media (max-width: 720px) {
    .page-help-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .page-help-cta {
        width: 100%;
    }

    .page-help-topic-link {
        grid-template-columns: auto 1fr;
        gap: 0.85rem;
    }

    .page-help-topic-chevron {
        display: none;
    }

    .page-help-local-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }
}

/* ——— Kiralama Sistemi (/kiralama-sistemi) ——— */
.page-rental {
    background: var(--bg-white);
}

.page-rental-hero {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: flex-end;
    padding: clamp(5rem, 12vw, 7.5rem) 0 clamp(2.75rem, 6vw, 4rem);
    background:
        linear-gradient(145deg, #2c2419 0%, #4a3d2e 42%, #6b5a3e 100%);
    color: #faf6f1;
    overflow: hidden;
}

.page-rental-hero--has-image {
    background-image:
        linear-gradient(105deg, rgba(28, 22, 16, 0.88) 0%, rgba(28, 22, 16, 0.55) 48%, rgba(28, 22, 16, 0.28) 100%),
        var(--rental-hero-image);
    background-size: cover;
    background-position: center top;
}

.page-rental-hero__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 280px at 80% 20%, rgba(184, 151, 106, 0.22), transparent 60%);
    pointer-events: none;
}

.page-rental-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.page-rental-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-champagne);
    margin: 0 0 1rem;
    animation: rentalFadeUp 0.6s ease both;
}

.page-rental-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 1.1rem;
    color: #fff;
    animation: rentalFadeUp 0.6s ease 0.06s both;
}

.page-rental-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.75rem;
    opacity: 0.92;
    max-width: 32rem;
    animation: rentalFadeUp 0.6s ease 0.12s both;
}

.page-rental-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    animation: rentalFadeUp 0.6s ease 0.18s both;
}

.page-rental-cta-group--start {
    justify-content: flex-start;
    animation: none;
}

.page-rental-cta-group--end {
    justify-content: flex-end;
    animation: none;
}

.page-rental-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.85rem;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.page-rental-cta--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.page-rental-cta--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.page-rental-cta--whatsapp {
    background: #128c7e;
    color: #fff;
    border: 1px solid transparent;
}

.page-rental-cta--whatsapp:hover {
    background: #0f7a6e;
    color: #fff;
}

.page-rental-cta--on-dark {
    background: #fff !important;
    color: var(--primary-dark) !important;
    border: none;
}

.page-rental-cta--ghost-light {
    background: transparent;
    color: #faf6f1;
    border: 1px solid rgba(250, 246, 241, 0.4);
}

.page-rental-cta--ghost-light:hover {
    border-color: #fff;
    color: #fff;
}

.page-rental-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    scroll-margin-top: calc(var(--header-height, 5rem) + 0.75rem);
}

.page-rental-section--soft {
    background:
        linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.page-rental-section__inner {
    max-width: 880px;
}

.page-rental-section__inner--wide {
    max-width: 1200px;
}

.page-rental-section__head {
    margin-bottom: 2rem;
}

.page-rental-section__head--row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.page-rental-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.page-rental-section__lead {
    margin: 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36rem;
}

.page-rental-link-all {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
}

.page-rental-link-all:hover {
    text-decoration: underline;
}

.page-rental-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    counter-reset: none;
}

.page-rental-step {
    padding-top: 1rem;
    border-top: 2px solid var(--accent-champagne);
    animation: rentalFadeUp 0.5s ease both;
    animation-delay: calc(0.05s * var(--rental-i, 0));
}

.page-rental-step__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--accent-champagne);
    line-height: 1;
    margin-bottom: 0.65rem;
}

.page-rental-step__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.45rem;
}

.page-rental-step__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-gray);
}

.page-rental-includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.35rem 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-rental-include {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.page-rental-include__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-champagne-soft);
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.page-rental-include__title {
    margin: 0 0 0.3rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-dark);
}

.page-rental-include__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-gray);
}

.page-rental-products {
    margin-top: 0.5rem;
}

.page-rental-faq-list {
    display: grid;
    gap: 0.65rem;
}

.page-rental-faq {
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius);
    padding: 0.1rem 1.1rem;
}

.page-rental-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1rem 1.75rem 1rem 0;
    position: relative;
}

.page-rental-faq summary::-webkit-details-marker {
    display: none;
}

.page-rental-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.page-rental-faq[open] summary::after {
    content: '–';
}

.page-rental-faq__answer {
    padding: 0 0 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.98rem;
}

.page-rental-faq-more {
    margin: 1.35rem 0 0;
    font-size: 0.95rem;
}

.page-rental-faq-more a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.page-rental-faq-more a:hover {
    text-decoration: underline;
}

.page-rental-footer-cta {
    background: linear-gradient(145deg, var(--primary-dark) 0%, #3d3224 100%);
    color: #faf6f1;
    padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.page-rental-footer-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.page-rental-footer-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin: 0 0 0.45rem;
    color: #fff;
    font-weight: 600;
}

.page-rental-footer-cta__text {
    margin: 0;
    opacity: 0.92;
    line-height: 1.6;
    max-width: 28rem;
    font-size: 0.98rem;
}

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

@media (prefers-reduced-motion: reduce) {
    .page-rental-eyebrow,
    .page-rental-title,
    .page-rental-lead,
    .page-rental-cta-group,
    .page-rental-step {
        animation: none;
    }
}

@media (max-width: 900px) {
    .page-rental-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-rental-hero {
        min-height: min(78vh, 640px);
        align-items: flex-end;
        text-align: left;
    }

    .page-rental-hero--has-image {
        background-position: center 15%;
    }

    .page-rental-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .page-rental-cta {
        width: 100%;
    }

    .page-rental-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-rental-includes {
        grid-template-columns: 1fr;
    }

    .page-rental-footer-cta__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .page-rental-cta-group--end {
        justify-content: stretch;
    }

    .page-rental-section__head--row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   TU&KU Diamond — luxury homepage & commerce polish
   ========================================================= */

.brand-wordmark {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none !important;
    white-space: nowrap;
    border-bottom: none;
    line-height: 1;
}

.brand-wordmark span {
    color: var(--accent-champagne);
    font-weight: 400;
}

.site-logo .brand-wordmark {
    line-height: 1;
    padding-bottom: 0;
}

.header-actions .header-action-text {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.slider-btn-lux {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--bg-white);
    letter-spacing: 0.2em;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: none;
}

.slider-btn-lux:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.slider-btn-lux::before {
    background: transparent;
}

.slider-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    width: 100%;
}

.slider-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    letter-spacing: 0.2em;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
}

.slider-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.brand-slogan-section {
    padding: 3.5rem 0 2rem;
    background: var(--bg-white);
    text-align: center;
}

.brand-slogan-text {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    letter-spacing: var(--tracking-display);
    color: var(--text-dark);
    margin: 0.75rem 0 0.5rem;
    line-height: var(--lh-heading);
}

.brand-slogan-sub {
    font-family: var(--font-body);
    color: var(--text-gray);
    font-size: var(--fs-small);
    max-width: 36rem;
    margin: 0 auto;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.home-education {
    padding: var(--section-padding-y) 0;
    background: var(--bg-white);
}

.home-education__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-education__card {
    display: block;
    padding: 2.25rem 1.75rem;
    background: var(--bg-light);
    border: 1px solid var(--surface-border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    min-height: 100%;
}

.home-education__card:hover {
    border-color: var(--accent-champagne);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.home-education__num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--accent-champagne);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 1rem;
}

.home-education__title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: var(--tracking-display);
}

.home-education__text {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--text-gray);
    line-height: 1.7;
    letter-spacing: var(--tracking-body);
    margin-bottom: 1.25rem;
}

.home-education__cta {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
}

.home-testimonials {
    padding: var(--section-padding-y) 0;
    background: var(--bg-light);
}

.home-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-testimonial {
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    padding: 2rem 1.75rem;
}

.home-testimonial__quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.home-testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.home-testimonial__name {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
}

.home-testimonial__place {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.home-newsletter {
    padding: 4.5rem 0;
    background:
        radial-gradient(ellipse at top, rgba(176, 125, 98, 0.12), transparent 55%),
        var(--bg-dark);
    color: #fff;
    text-align: center;
}

.home-newsletter__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-heading);
}

.home-newsletter__text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.72);
    max-width: 28rem;
    margin: 0 auto 1.75rem;
    font-size: var(--fs-small);
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.home-newsletter__form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 1rem 1.15rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.home-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.home-newsletter__btn {
    background: var(--accent-champagne);
    color: var(--text-dark);
    border: none;
    padding: 0 1.4rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.home-newsletter__btn:hover {
    background: #fff;
}

.product-badge.new-badge {
    background: var(--text-dark);
    color: #fff;
}

.product-badge.bestseller-badge {
    background: var(--accent-champagne);
    color: var(--text-dark);
}

.product-card .product-title-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.product-card .current-price {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-gray) 25%, #f5f3ef 50%, var(--bg-gray) 75%);
    background-size: 200% 100%;
    animation: tuku-skeleton 1.4s ease-in-out infinite;
    border-radius: var(--border-radius-sm);
}

@keyframes tuku-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pdp-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: none;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--surface-border);
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgb(17 17 17 / 0.06);
}

.pdp-sticky-bar.is-visible {
    display: block;
}

.pdp-sticky-bar__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pdp-sticky-bar__meta {
    min-width: 0;
}

.pdp-sticky-bar__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-dark);
}

.pdp-sticky-bar__price {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-price);
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .home-education__grid,
    .home-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .home-newsletter__form {
        flex-direction: column;
    }

    .home-newsletter__btn {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .pdp-sticky-bar {
        bottom: calc(72px + env(safe-area-inset-bottom));
    }

    body:not(:has(.contact-sticky-bar)) .pdp-sticky-bar {
        bottom: 0;
    }
}

/* Home overlay header — mobile solid menu panel */
@media (max-width: 768px) {
    body.is-home .site-header.is-transparent .main-nav {
        background: #fff;
    }

    body.is-home .site-header.is-transparent .main-nav .nav-item__link,
    body.is-home .site-header.is-transparent .main-nav .nav-item__link:visited,
    body.is-home .site-header.is-transparent .mobile-nav-header {
        color: var(--text-dark);
    }

    body.is-home .site-header {
        position: absolute;
    }

    body.is-home .site-header.is-scrolled {
        position: fixed;
    }

    .hero-slider.modern-slider {
        min-height: 520px;
    }
}

.header-top-brand {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Mega dropdown: link aralığını kesin sıkıştır (.nav-menu li a şişirmesini ezer) */
@media (min-width: 769px) {
    .main-nav .mega-menu .mega-links--flat {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 1.75rem !important;
        row-gap: 0 !important;
        max-width: 34rem;
    }

    .main-nav .mega-menu .mega-links--flat li a,
    .main-nav .mega-menu .mega-links li a,
    .main-nav .mega-menu .mega-col-title {
        padding: 0.42rem 0 !important;
        margin: 0 !important;
        min-height: 0 !important;
        line-height: 1.3 !important;
        font-size: 0.68rem !important;
    }

    .main-nav .mega-menu .mega-col {
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-nav .mega-menu .mega-col-title {
        border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
        padding-bottom: 0.22rem !important;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 1100px) {
    .main-nav .mega-menu .mega-links--flat {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        max-width: 46rem;
    }
}
