/* ========================================
   MobilArt Mobilya - Editorial Luxury CSS
   Noto Serif + Manrope | Sharp Corners
   Material Symbols | No 1px borders
   ======================================== */


/* ----------------------------------------
   0. CSS RESET
   ---------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Material Symbols base style */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface-white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav,
section, summary {
    display: block;
}

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

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

button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.1;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote, q {
    quotes: none;
}

::selection {
    background-color: var(--secondary);
    color: var(--surface-white);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--surface-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* ----------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
    /* --- Brand Colors --- */
    --primary: #1a1a1a;
    --primary-90: #2a2a2a;
    --primary-80: #3a3a3a;
    --primary-70: #4a4a4a;
    --primary-60: #5a5a5a;
    --primary-50: #6a6a6a;
    --primary-40: #8a8a8a;
    --primary-30: #aaaaaa;
    --primary-20: #cccccc;
    --primary-10: #e6e6e6;

    --secondary: #725b3f;
    --secondary-light: #8b7355;
    --secondary-dark: #5c482f;
    --secondary-10: rgba(114, 91, 63, 0.1);
    --secondary-20: rgba(114, 91, 63, 0.2);

    /* --- Accent Colors --- */
    --accent-gold: #dcae43;
    --accent-gold-light: #e8c46e;
    --accent-gold-dark: #c49a2f;
    --accent-peach: #ffe7db;
    --accent-peach-dark: #f5cdb8;
    --accent-sage: #f0f4f3;
    --accent-sage-dark: #dce5e2;

    /* --- Surface Colors --- */
    --surface-white: #ffffff;
    --surface-off: #f9f9f8;
    --surface-light: #f7f7f7;
    --surface-mid: #f1f1f1;
    --surface-dark: #e8e8e8;

    /* --- Text Colors --- */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #6a6a6a;
    --text-muted: #8a8a8a;
    --text-light: #aaaaaa;
    --text-inverse: #ffffff;

    /* --- Semantic --- */
    --success: #2d6a4f;
    --error: #c42b1c;
    --warning: #dcae43;
    --info: #3a6ea5;

    /* --- Typography --- */
    --font-heading: 'Noto Serif', 'Georgia', serif;
    --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

    /* Font sizes - Editorial scale */
    --text-display: 72px;
    --text-h1: 56px;
    --text-h2: 44px;
    --text-h3: 32px;
    --text-h4: 24px;
    --text-h5: 20px;
    --text-h6: 16px;
    --text-xl: 20px;
    --text-lg: 18px;
    --text-base: 15px;
    --text-sm: 13px;
    --text-xs: 11px;
    --text-label: 11px;

    /* Line heights */
    --leading-none: 1;
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* Letter spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;
    --tracking-widest: 0.2em;

    /* Font weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* --- Spacing --- */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;
    --space-6xl: 192px;

    /* --- Layout --- */
    --container-max: 1440px;
    --container-narrow: 960px;
    --container-wide: 1600px;
    --container-padding: 48px;
    --sidebar-width: 280px;

    /* --- Transitions --- */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease);
    --transition-normal: 0.4s var(--ease);
    --transition-slow: 0.6s var(--ease);
    --transition-slower: 0.8s var(--ease);

    /* --- Shadows (subtle, luxury feel) --- */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.1);

    /* --- Z-index scale --- */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-max: 9999;

    /* --- Header --- */
    --header-height: 72px;
    --announcement-height: 36px;
}

@media (max-width: 1024px) {
    :root {
        --text-display: 48px;
        --text-h1: 40px;
        --text-h2: 32px;
        --text-h3: 26px;
        --text-h4: 22px;
        --container-padding: 32px;
    }
}

@media (max-width: 640px) {
    :root {
        --text-display: 36px;
        --text-h1: 32px;
        --text-h2: 26px;
        --text-h3: 22px;
        --text-h4: 20px;
        --container-padding: 20px;
        --header-height: 60px;
        --announcement-height: 32px;
    }
}


/* ----------------------------------------
   2. TYPOGRAPHY
   ---------------------------------------- */

/* Headings */
h1, .h1 {
    font-family: var(--font-heading);
    font-size: var(--text-h1);
    font-weight: var(--weight-regular);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
}

h2, .h2 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: var(--weight-regular);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
}

h3, .h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    font-weight: var(--weight-regular);
    line-height: var(--leading-snug);
    color: var(--text-primary);
}

h4, .h4 {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    font-weight: var(--weight-regular);
    line-height: var(--leading-snug);
    color: var(--text-primary);
}

h5, .h5 {
    font-family: var(--font-heading);
    font-size: var(--text-h5);
    font-weight: var(--weight-medium);
    line-height: var(--leading-snug);
    color: var(--text-primary);
}

h6, .h6 {
    font-family: var(--font-heading);
    font-size: var(--text-h6);
    font-weight: var(--weight-medium);
    line-height: var(--leading-snug);
    color: var(--text-secondary);
}

/* Display text */
.display {
    font-family: var(--font-heading);
    font-size: var(--text-display);
    font-weight: var(--weight-regular);
    line-height: var(--leading-none);
    letter-spacing: var(--tracking-tight);
}

/* Body text */
.text-xl { font-size: var(--text-xl); }
.text-lg { font-size: var(--text-lg); }
.text-base { font-size: var(--text-base); }
.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }

/* Label - uppercase small text */
.label,
.section-label,
.category-label {
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-muted);
}

/* Paragraph */
p {
    margin-bottom: 1em;
    line-height: var(--leading-normal);
}

p:last-child {
    margin-bottom: 0;
}

/* Text colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--secondary); }
.text-gold { color: var(--accent-gold); }

/* Serif body for editorial blocks */
.serif {
    font-family: var(--font-heading);
}

/* Italic accent */
.italic-accent {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--secondary);
}

/* Strong */
strong, b {
    font-weight: var(--weight-semibold);
}


/* ----------------------------------------
   3. LAYOUT UTILITIES
   ---------------------------------------- */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-full {
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Section spacing */
.section {
    padding-top: var(--space-5xl);
    padding-bottom: var(--space-5xl);
}

.section-sm {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.section-lg {
    padding-top: var(--space-6xl);
    padding-bottom: var(--space-6xl);
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* Grid */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-12 { grid-template-columns: repeat(12, 1fr); }

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

@media (max-width: 640px) {
    .grid-4,
    .grid-3,
    .grid-2 { grid-template-columns: 1fr; }
}

/* Visibility */
.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;
}

.no-scroll {
    overflow: hidden;
}


/* ----------------------------------------
   4. BUTTONS
   ---------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    padding: 16px 36px;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-90);
    transform: translateY(-1px);
}

.btn-secondary-fill {
    background-color: var(--secondary);
    color: var(--text-inverse);
}

.btn-secondary-fill:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    box-shadow: inset 0 0 0 2px var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    font-size: var(--text-xs);
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.btn-ghost:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary);
    font-weight: var(--weight-bold);
}

.btn-gold:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-1px);
}

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

.btn-white:hover {
    background-color: var(--surface-off);
}

/* Button sizes */
.btn-sm {
    padding: 10px 24px;
    font-size: var(--text-xs);
}

.btn-lg {
    padding: 20px 48px;
    font-size: var(--text-sm);
}

/* Button with icon */
.btn .material-symbols-outlined,
.btn .icon {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .material-symbols-outlined,
.btn:hover .icon {
    transform: translateX(3px);
}

/* Slide fill effect for primary buttons */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    transform: translateX(-101%);
    transition: transform var(--transition-normal);
    z-index: 0;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}


/* ----------------------------------------
   5. ANNOUNCEMENT BAR
   ---------------------------------------- */

.announcement-bar {
    background-color: var(--primary);
    color: var(--text-inverse);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    overflow: hidden;
    position: relative;
    z-index: var(--z-sticky);
}

.announcement-bar a {
    color: var(--text-inverse);
    transition: opacity var(--transition-fast);
}

.announcement-bar a:hover {
    opacity: 0.7;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    white-space: nowrap;
}

.announcement-divider {
    width: 4px;
    height: 4px;
    background-color: var(--secondary);
    flex-shrink: 0;
}

.announcement-close {
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-inverse);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-close:hover {
    opacity: 1;
}

.announcement-close .material-symbols-outlined {
    font-size: 16px;
}

/* Marquee animation for announcement */
.announcement-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ----------------------------------------
   6. HEADER
   ---------------------------------------- */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--surface-white);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
}

.logo-text span {
    color: var(--secondary);
}

/* Navigation - centered */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    transition: color var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* Header right icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-shrink: 0;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    color: var(--secondary);
}

.header-icon .material-symbols-outlined {
    font-size: 22px;
}

/* Cart badge */
.header-icon .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background-color: var(--secondary);
    color: var(--text-inverse);
    font-size: 9px;
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Menu toggle */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.menu-toggle-lines span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.menu-toggle-lines span:nth-child(2) {
    width: 16px;
    margin-left: auto;
}

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

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

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

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

    .menu-toggle {
        display: flex;
    }
}


/* ----------------------------------------
   7. MOBILE MENU
   ---------------------------------------- */

/* (Eski mobile-menu kuralları silindi — aktif olan tanımlar 52. MOBILE MENU bölümünde) */


/* ----------------------------------------
   8. HERO SLIDER
   ---------------------------------------- */

.hero {
    position: relative;
    height: 700px;
    background-color: var(--surface-light);
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
}

.hero-text {
    flex: 1;
    max-width: 50%;
    padding-right: var(--space-4xl);
    z-index: 2;
}

.hero-label {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--secondary);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background-color: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-display);
    font-weight: var(--weight-regular);
    line-height: var(--leading-none);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: var(--tracking-tight);
}

.hero-title em {
    font-style: italic;
    color: var(--secondary);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, var(--surface-light), transparent);
    z-index: 1;
}

/* Hero pagination dots */
.hero-pagination {
    position: absolute;
    bottom: var(--space-2xl);
    left: var(--container-padding);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-20);
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

/* Hero arrows */
.hero-arrows {
    position: absolute;
    bottom: var(--space-2xl);
    right: var(--container-padding);
    display: flex;
    gap: var(--space-xs);
    z-index: 3;
}

.hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--surface-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-arrow:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.hero-arrow .material-symbols-outlined {
    font-size: 20px;
}

/* Hero counter */
.hero-counter {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    z-index: 3;
}

.hero-counter-current {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: 760px;
    }

    .hero-slide {
        position: absolute;
        height: 100%;
    }

    .hero-content {
        flex-direction: column;
        padding-top: var(--space-4xl);
        padding-bottom: var(--space-4xl);
    }

    .hero-text {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: var(--space-2xl);
    }

    .hero-label {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 360px;
    }

    .hero-image::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 640px;
    }

    .hero-content {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .hero-image {
        height: 280px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-pagination {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-arrows {
        display: none;
    }
}


/* ----------------------------------------
   9. CATEGORY SECTION
   ---------------------------------------- */

.categories-section {
    padding: 80px 0 64px;
    background-color: #fff;
}

.categories-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

.categories-section .section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 40px;
    padding-bottom: 0;
    text-align: left;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* (Aktif kurallar 71. CATEGORY HOVER FRAME bölümünde — bu blok intentionally minimal) */

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .categories-section .container { padding: 0 32px; }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .categories-section { padding: 56px 0 40px; }
    .categories-section .container { padding: 0 20px; }
    .categories-section .section-label { margin-bottom: 24px; }
}


/* ----------------------------------------
   10. PROMO BANNERS
   ---------------------------------------- */

.promo-section {
    padding: 0 0 var(--space-4xl) 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.promo-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.promo-card {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-light);
    cursor: pointer;
}

.promo-card-tall {
    height: 400px;
}

.promo-card-short {
    height: 250px;
}

.promo-card-full {
    height: 100%;
    min-height: 666px;
}

.promo-card-gold {
    background-color: var(--accent-gold);
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

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

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

/* Gold banner — image fills bottom row entirely (cover, no gap) */
.promo-card-gold img {
    position: relative;
    grid-row: 2;
    grid-column: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    padding: 0;
    transform: none;
}
.promo-card-gold:hover img {
    transform: scale(1.03);
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-2xl);
    z-index: 2;
}

.promo-card-gold .promo-overlay {
    position: relative;
    grid-row: 1;
    grid-column: 1;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px var(--space-2xl) 16px;
    height: auto;
}

.promo-tag {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-inverse);
    margin-bottom: var(--space-xs);
}

.promo-card-gold .promo-tag {
    color: var(--primary);
}

.promo-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    font-weight: var(--weight-regular);
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.promo-card-gold .promo-title {
    color: var(--primary);
    font-size: var(--text-h2);
}

.promo-cta {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-inverse);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: gap var(--transition-fast);
}

.promo-card-gold .promo-cta {
    color: var(--primary);
}

.promo-card:hover .promo-cta {
    gap: var(--space-md);
}

/* Dark gradient for text readability on image */
.promo-card:not(.promo-card-gold)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    pointer-events: none;
}

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

    .promo-card-full {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .promo-card-tall {
        height: 300px;
    }

    .promo-card-short {
        height: 200px;
    }

    .promo-card-full {
        min-height: 300px;
    }
}


/* ----------------------------------------
   11. DISCOUNT / FEATURE BAR
   ---------------------------------------- */

.feature-bar {
    background-color: var(--accent-peach);
    height: 160px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.feature-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    gap: var(--space-2xl);
}

.feature-bar-number {
    font-family: var(--font-heading);
    font-size: 96px;
    font-weight: var(--weight-bold);
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: var(--tracking-tight);
}

.feature-bar-number span {
    font-size: 48px;
    vertical-align: super;
}

.feature-bar-text {
    flex: 1;
}

.feature-bar-title {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-bar-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.feature-bar-cta {
    flex-shrink: 0;
}

.feature-items {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--primary);
}

.feature-item-icon .material-symbols-outlined {
    font-size: 24px;
}

.feature-item-text {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .feature-bar {
        height: auto;
        padding: var(--space-2xl) 0;
    }

    .feature-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .feature-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xl);
    }
}

@media (max-width: 640px) {
    .feature-bar-number {
        font-size: 64px;
    }

    .feature-items {
        flex-direction: column;
        gap: var(--space-lg);
    }
}


/* ----------------------------------------
   12. PRODUCT GRID SECTION
   ---------------------------------------- */

.products-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-white);
}

.products-layout {
    display: flex;
    gap: var(--space-4xl);
}

.products-title-col {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--header-height) + var(--space-2xl));
    align-self: flex-start;
    padding-right: var(--space-lg);
}

.products-title-col .section-label {
    margin-bottom: var(--space-md);
}

.products-title-col h2 {
    margin-bottom: var(--space-lg);
}

.products-title-col p {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2xl);
}

.products-grid-col {
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.products-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

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

@media (max-width: 1024px) {
    .products-layout {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .products-title-col {
        width: 100%;
        position: static;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .products-grid,
    .products-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid,
    .products-grid.cols-3,
    .products-grid.cols-2 {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------
   13. PRODUCT CARD
   ---------------------------------------- */

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    group: product;
}

.product-card-image {
    position: relative;
    background-color: var(--surface-light);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Second image on hover */
.product-card-image .product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-card-image .product-img-hover {
    opacity: 1;
}

/* Product badges */
.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 4px 10px;
    font-size: 9px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    z-index: 2;
}

.product-badge-hot {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.product-badge-sale {
    background-color: var(--error);
    color: var(--text-inverse);
}

.product-badge-new {
    background-color: var(--secondary);
    color: var(--text-inverse);
}

/* Quick action buttons on hover */
.product-card-actions {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: var(--space-xs);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 2;
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-action-btn:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.product-action-btn .material-symbols-outlined {
    font-size: 18px;
}

/* Product info */
.product-card-info {
    padding: 0 var(--space-2xs);
}

.product-card-category {
    font-size: var(--text-label);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-muted);
    margin-bottom: var(--space-2xs);
}

.product-card-name {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: var(--leading-snug);
    transition: color var(--transition-fast);
}

.product-card:hover .product-card-name {
    color: var(--secondary);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.product-card-price .current {
    font-size: 12px;
    font-weight: var(--weight-bold);
    color: var(--text-primary);
}

.product-card-price .original {
    font-size: 11px;
    font-weight: var(--weight-regular);
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Product card colors/variants */
.product-card-colors {
    display: flex;
    gap: 6px;
    margin-top: var(--space-xs);
}

.product-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.product-color-dot:hover {
    transform: scale(1.3);
}


/* ----------------------------------------
   14. BLOG SECTION (Home)
   ---------------------------------------- */

.blog-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-off);
}

.blog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-3xl);
}

.blog-section-header h2 {
    max-width: 480px;
}

.blog-home-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

/* Featured blog card */
.blog-featured {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-light);
    cursor: pointer;
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.03);
}

.blog-featured-content {
    padding: var(--space-2xl);
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.blog-meta-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.blog-meta-category {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--secondary);
}

.blog-featured-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.blog-featured:hover .blog-featured-title {
    color: var(--secondary);
}

.blog-featured-excerpt {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
}

/* Sidebar blog list — 2x2 grid (4 mini cards) */
.blog-sidebar-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-content: start;
}

.blog-sidebar-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--surface-light);
    transition: transform var(--transition-fast);
}

.blog-sidebar-item:hover {
    transform: translateY(-3px);
}

.blog-sidebar-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--surface-mid);
}

.blog-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-sidebar-item:hover .blog-sidebar-image img {
    transform: scale(1.05);
}

.blog-sidebar-content {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.blog-sidebar-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-sidebar-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: var(--leading-snug);
    transition: color var(--transition-fast);
    margin: 0;
}

.blog-sidebar-item:hover .blog-sidebar-title {
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-list {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 640px) {
    .blog-sidebar-list {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------
   15. PARALLAX / STATEMENT SECTION
   ---------------------------------------- */

.parallax-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(1) brightness(0.3);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
}

.parallax-text {
    font-family: var(--font-heading);
    font-size: 12rem;
    font-weight: var(--weight-bold);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    user-select: none;
}

.parallax-subtitle {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
    .parallax-text {
        font-size: 6rem;
    }

    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 640px) {
    .parallax-section {
        height: 300px;
    }

    .parallax-text {
        font-size: 3.5rem;
    }
}


/* ----------------------------------------
   16. FOOTER
   ---------------------------------------- */

.footer {
    background-color: var(--surface-white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--surface-mid);
}

.footer-main {
    padding: var(--space-4xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    color: var(--text-primary);
}

.footer-desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface-light);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

/* Footer columns */
.footer-col-title {
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
    padding: 2px 0;
}

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

/* Newsletter */
.footer-newsletter {
    margin-top: var(--space-lg);
}

.footer-newsletter-form {
    position: relative;
}

.footer-newsletter-input {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid var(--primary-20);
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.footer-newsletter-input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter-input:focus {
    border-bottom-color: var(--secondary);
}

.footer-newsletter-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.footer-newsletter-btn:hover {
    color: var(--secondary);
}

/* Footer bottom */
.footer-bottom {
    padding: var(--space-lg) 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--container-padding);
    right: var(--container-padding);
    height: 1px;
    background-color: var(--surface-mid);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}


/* ----------------------------------------
   17. SCROLL-TO-TOP BUTTON
   ---------------------------------------- */

.scroll-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--secondary);
}

.scroll-top .material-symbols-outlined {
    font-size: 20px;
}


/* ----------------------------------------
   18. WHATSAPP BUTTON
   ---------------------------------------- */

.whatsapp-btn {
    position: fixed;
    bottom: calc(var(--space-xl) + 60px);
    right: var(--space-xl);
    width: 52px;
    height: 52px;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-sticky);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}


/* ----------------------------------------
   19. PRODUCT DETAIL PAGE
   ---------------------------------------- */

.product-detail {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.product-gallery-main {
    position: relative;
    background-color: var(--surface-light);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform var(--transition-normal);
}

.product-gallery-main:hover img {
    transform: scale(1.02);
}

.product-gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
}

.product-gallery-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: var(--surface-light);
    cursor: pointer;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    opacity: 1;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery nav arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--surface-white);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-gallery-main:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.gallery-nav-prev {
    left: var(--space-md);
}

.gallery-nav-next {
    right: var(--space-md);
}

/* Product info */
.product-info {
    padding-top: var(--space-sm);
}

.product-info-category {
    display: inline-block;
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--secondary);
    margin-bottom: var(--space-md);
    padding: 6px 12px;
    background-color: var(--secondary-10);
}

.product-info-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-lg);
}

.product-info-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.product-info-price .current-price {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
}

.product-info-price .original-price {
    font-size: var(--text-lg);
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-info-price .discount-tag {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    color: var(--error);
    background-color: rgba(196, 43, 28, 0.08);
    padding: 4px 10px;
}

.product-info-desc {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2xl);
}

/* Specs table */
.product-specs {
    margin-bottom: var(--space-2xl);
}

.product-specs-title {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.product-specs-table {
    width: 100%;
}

.product-specs-row {
    display: flex;
    padding: var(--space-sm) 0;
    position: relative;
}

.product-specs-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--surface-mid);
}

.product-specs-label {
    width: 140px;
    flex-shrink: 0;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
}

.product-specs-value {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

/* Color/variant selection */
.product-variants {
    margin-bottom: var(--space-2xl);
}

.product-variant-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.product-variant-options {
    display: flex;
    gap: var(--space-sm);
}

.product-variant-option {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.product-variant-option.active::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid var(--primary);
}

.product-variant-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quantity */
.product-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.product-quantity-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
}

.product-quantity-control {
    display: flex;
    align-items: center;
}

.product-quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface-light);
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color var(--transition-fast);
    user-select: none;
}

.product-quantity-btn:hover {
    background-color: var(--surface-mid);
}

.product-quantity-value {
    width: 48px;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    background-color: var(--surface-light);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA buttons */
.product-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.product-cta .btn {
    flex: 1;
}

.product-cta .btn-icon {
    flex: 0;
    width: 52px;
    min-width: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Delivery info */
.product-delivery {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background-color: var(--surface-off);
}

.product-delivery-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.product-delivery-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--secondary);
}

/* Related products */
.related-products {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-off);
}

.related-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .product-gallery {
        position: static;
    }

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

@media (max-width: 640px) {
    .product-cta {
        flex-direction: column;
    }

    .product-cta .btn-icon {
        width: 100%;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        gap: var(--space-xs);
    }

    .product-gallery-thumb {
        width: 60px;
        height: 60px;
    }
}


/* ----------------------------------------
   20. CATALOG / PRODUCT LISTING PAGE
   ---------------------------------------- */

.catalog-page {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.catalog-header {
    margin-bottom: var(--space-2xl);
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.catalog-count {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.catalog-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Sidebar */
.catalog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.sidebar-section {
    margin-bottom: var(--space-2xl);
}

.sidebar-title {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.sidebar-link:hover {
    color: var(--text-primary);
    padding-left: var(--space-sm);
}

.sidebar-link.active {
    color: var(--secondary);
    font-weight: var(--weight-semibold);
}

.sidebar-link-count {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Price range filter */
.price-range {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.price-input {
    flex: 1;
    padding: var(--space-sm);
    background-color: var(--surface-light);
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.price-input::placeholder {
    color: var(--text-muted);
}

.price-separator {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Toolbar */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    position: relative;
}

.catalog-toolbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--surface-mid);
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.catalog-sort-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.catalog-sort select {
    font-size: var(--text-sm);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--surface-light);
    cursor: pointer;
}

.catalog-view-toggle {
    display: flex;
    gap: var(--space-xs);
}

.catalog-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.catalog-view-btn.active,
.catalog-view-btn:hover {
    color: var(--text-primary);
}

.catalog-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.catalog-products.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-3xl);
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-item:hover {
    background-color: var(--surface-light);
}

.pagination-item.active {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.pagination-item.disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: none;
    }

    .catalog-sidebar.active {
        display: block;
    }

    .catalog-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-products,
    .catalog-products.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .catalog-products,
    .catalog-products.cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Mobile filter toggle */
.filter-toggle {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--surface-light);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .filter-toggle {
        display: inline-flex;
    }
}


/* ----------------------------------------
   21. ABOUT PAGE
   ---------------------------------------- */

.about-hero {
    padding: var(--space-4xl) 0;
    background-color: var(--surface-off);
}

.about-hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.about-hero-label {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-h1);
    color: var(--text-primary);
    max-width: 720px;
    margin: 0 auto var(--space-lg);
}

.about-hero-desc {
    font-size: var(--text-lg);
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* Story section */
.about-story {
    padding: var(--space-5xl) 0;
}

.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-story-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--surface-light);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-content .section-label {
    margin-bottom: var(--space-md);
}

.about-story-content h2 {
    margin-bottom: var(--space-xl);
}

.about-story-content p {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
}

/* Values grid */
.about-values {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-off);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-value-card {
    padding: var(--space-2xl);
    background-color: var(--surface-white);
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--secondary-10);
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

.about-value-icon .material-symbols-outlined {
    font-size: 28px;
}

.about-value-card h3 {
    font-size: var(--text-h5);
    margin-bottom: var(--space-sm);
}

.about-value-card p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
}

/* Team section */
.about-team {
    padding: var(--space-5xl) 0;
}

.about-team-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.team-card {
    text-align: center;
}

.team-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--surface-light);
    margin-bottom: var(--space-md);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-card-image img {
    transform: scale(1.03);
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: var(--space-2xs);
}

.team-card-role {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

@media (max-width: 1024px) {
    .about-story-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

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

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}


/* ----------------------------------------
   22. GALLERY PAGE
   ---------------------------------------- */

.gallery-page {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    margin-bottom: var(--space-md);
}

.gallery-header p {
    color: var(--text-tertiary);
    max-width: 520px;
    margin: 0 auto;
}

/* Filter tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.gallery-filter {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-muted);
    padding: var(--space-xs) var(--space-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-filter:hover {
    color: var(--text-primary);
}

.gallery-filter.active {
    color: var(--text-inverse);
    background-color: var(--primary);
}

/* Masonry / grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-light);
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform var(--transition-slow);
}

.gallery-item.tall img {
    aspect-ratio: 1 / 2;
}

.gallery-item.wide img {
    aspect-ratio: 2 / 1;
}

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

/* Gallery overlay */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 26, 26, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
    background-color: rgba(26, 26, 26, 0.4);
}

.gallery-item-icon {
    color: var(--text-inverse);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-item-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-item-icon .material-symbols-outlined {
    font-size: 32px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: #ffffff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-nav:hover {
    color: #ffffff;
}

.lightbox-prev {
    left: var(--space-xl);
}

.lightbox-next {
    right: var(--space-xl);
}

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

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

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .gallery-item img,
    .gallery-item.tall img,
    .gallery-item.wide img {
        aspect-ratio: 4 / 3;
    }
}


/* ----------------------------------------
   23. CONTACT PAGE
   ---------------------------------------- */

.contact-page {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.contact-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    margin-bottom: var(--space-md);
}

.contact-header p {
    color: var(--text-tertiary);
    max-width: 520px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Contact info side */
.contact-info {
    padding-top: var(--space-md);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--surface-light);
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-info-icon .material-symbols-outlined {
    font-size: 22px;
}

.contact-info-label {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-muted);
    margin-bottom: var(--space-2xs);
}

.contact-info-value {
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: var(--leading-normal);
}

.contact-info-value a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.contact-info-value a:hover {
    color: var(--secondary);
}

.contact-map {
    margin-top: var(--space-2xl);
    aspect-ratio: 16 / 9;
    background-color: var(--surface-light);
    overflow: hidden;
}

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

/* Contact form */
.contact-form {
    padding: var(--space-2xl);
    background-color: var(--surface-off);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    margin-bottom: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-sm) 0;
    background: transparent;
    border-bottom: 1px solid var(--primary-20);
    font-size: var(--text-base);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom-color: var(--secondary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.form-submit {
    margin-top: var(--space-lg);
}

.form-message {
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    font-size: var(--text-sm);
}

.form-message-success {
    background-color: rgba(45, 106, 79, 0.08);
    color: var(--success);
}

.form-message-error {
    background-color: rgba(196, 43, 28, 0.08);
    color: var(--error);
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------
   24. FAQ PAGE
   ---------------------------------------- */

.faq-page {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.faq-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    margin-bottom: var(--space-md);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.faq-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--surface-mid);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: var(--text-h5);
    color: inherit;
    flex: 1;
    padding-right: var(--space-lg);
}

.faq-question-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: var(--space-xl);
    font-size: var(--text-base);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
}


/* ----------------------------------------
   25. BLOG LISTING PAGE
   ---------------------------------------- */

.blog-page {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.blog-page-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.blog-page-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    margin-bottom: var(--space-md);
}

.blog-page-header p {
    color: var(--text-tertiary);
    max-width: 520px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Blog card */
.blog-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--surface-light);
    margin-bottom: var(--space-lg);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.blog-card-category {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--secondary);
}

.blog-card-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-h5);
    color: var(--text-primary);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--secondary);
}

.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    margin-top: var(--space-md);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.blog-card-readmore .material-symbols-outlined {
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card-readmore .material-symbols-outlined {
    transform: translateX(4px);
}

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

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


/* ----------------------------------------
   26. BLOG DETAIL PAGE
   ---------------------------------------- */

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--secondary);
    z-index: var(--z-max);
    transition: width 0.1s linear;
}

.blog-detail {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.blog-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--container-padding);
}

.blog-detail-category {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: var(--text-h1);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    line-height: var(--leading-tight);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.blog-detail-meta-item .material-symbols-outlined {
    font-size: 16px;
}

/* Featured image */
.blog-detail-image {
    max-width: var(--container-max);
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--container-padding);
}

.blog-detail-image img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

/* (Eski .blog-detail-content max-width:720px kuralı kaldırıldı — yeni kurallar 75. BLOG DETAIL bölümünde) */

.article-content {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    color: var(--text-primary);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.article-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-h5);
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.article-content p {
    margin-bottom: var(--space-lg);
}

.article-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.article-content a:hover {
    color: var(--secondary-dark);
}

.article-content img {
    width: 100%;
    margin: var(--space-2xl) 0;
}

.article-content blockquote {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) var(--space-2xl);
    background-color: var(--surface-off);
    border-left: 3px solid var(--secondary);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--text-primary);
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: var(--space-xs);
    padding-left: var(--space-xs);
}

.article-content figure {
    margin: var(--space-2xl) 0;
}

.article-content figcaption {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

.article-content table {
    width: 100%;
    margin: var(--space-2xl) 0;
}

.article-content th,
.article-content td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-size: var(--text-sm);
}

.article-content th {
    background-color: var(--surface-light);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
}

.article-content td {
    background-color: var(--surface-white);
    color: var(--text-secondary);
    position: relative;
}

.article-content tr:not(:last-child) td {
    border-bottom: 1px solid var(--surface-mid);
}

.article-content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    padding: 2px 6px;
    background-color: var(--surface-light);
    color: var(--secondary);
}

.article-content pre {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background-color: var(--primary);
    color: var(--surface-light);
    overflow-x: auto;
}

.article-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* TOC - Table of Contents */
.blog-toc {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    max-width: 240px;
    margin-left: auto;
    padding: var(--space-lg);
    background-color: var(--surface-off);
}

.blog-toc-title {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.blog-toc-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.blog-toc-link {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    padding: var(--space-2xs) 0;
    transition: color var(--transition-fast);
}

.blog-toc-link:hover,
.blog-toc-link.active {
    color: var(--secondary);
}

.blog-toc-link.toc-h3 {
    padding-left: var(--space-md);
    font-size: var(--text-xs);
}

/* Share buttons */
.blog-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    position: relative;
}

.blog-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--surface-mid);
}

.blog-share-label {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-muted);
}

.blog-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface-light);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.blog-share-btn:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
}

.blog-tag {
    font-size: var(--text-xs);
    color: var(--text-muted);
    padding: var(--space-xs) var(--space-md);
    background-color: var(--surface-light);
    transition: all var(--transition-fast);
}

.blog-tag:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

/* Related posts */
.blog-related {
    padding: var(--space-4xl) 0;
    background-color: var(--surface-off);
    margin-top: var(--space-5xl);
}

.blog-related-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

@media (max-width: 640px) {
    .blog-detail-title {
        font-size: var(--text-h2);
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .blog-detail-image img {
        aspect-ratio: 16 / 9;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}


/* ----------------------------------------
   27. BREADCRUMB
   ---------------------------------------- */

.breadcrumb {
    padding: var(--space-lg) 0;
    background-color: var(--surface-off);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-separator {
    font-size: var(--text-xs);
    color: var(--primary-20);
}

.breadcrumb-item.current {
    color: var(--text-primary);
}


/* ----------------------------------------
   28. SECTION HEADERS (Reusable)
   ---------------------------------------- */

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header-center {
    text-align: center;
}

.section-header .section-label {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-header-center .section-label {
    justify-content: center;
}

.section-header .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background-color: var(--secondary);
}

.section-header-center .section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background-color: var(--secondary);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    max-width: 560px;
    line-height: var(--leading-relaxed);
}

.section-header-center p {
    margin: 0 auto;
}


/* ----------------------------------------
   29. TESTIMONIALS SECTION
   ---------------------------------------- */

.testimonials-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-off);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    background-color: var(--surface-white);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
    color: var(--accent-gold);
}

.testimonial-stars .material-symbols-outlined {
    font-size: 16px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--surface-light);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

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

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


/* ----------------------------------------
   30. INSTAGRAM FEED
   ---------------------------------------- */

.instagram-section {
    padding: var(--space-4xl) 0 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 26, 26, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-normal);
}

.instagram-item:hover .instagram-item-overlay {
    background-color: rgba(26, 26, 26, 0.4);
}

.instagram-item-overlay .material-symbols-outlined {
    color: var(--text-inverse);
    font-size: 28px;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.instagram-item:hover .instagram-item-overlay .material-symbols-outlined {
    opacity: 1;
    transform: scale(1);
}

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

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


/* ----------------------------------------
   31. FEATURES / USP STRIP
   ---------------------------------------- */

.usp-strip {
    padding: var(--space-2xl) 0;
    background-color: var(--surface-off);
}

.usp-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.usp-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.usp-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--secondary);
}

.usp-item-icon .material-symbols-outlined {
    font-size: 24px;
}

.usp-item-text {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-primary);
}

.usp-item-desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .usp-strip-inner {
        flex-wrap: wrap;
        gap: var(--space-xl);
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .usp-strip-inner {
        flex-direction: column;
        gap: var(--space-lg);
    }
}


/* ----------------------------------------
   32. COOKIE BANNER
   ---------------------------------------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--text-inverse);
    padding: var(--space-lg) var(--container-padding);
    z-index: var(--z-toast);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    max-width: var(--container-max);
    margin: 0 auto;
}

.cookie-banner-text {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.cookie-banner-text a {
    text-decoration: underline;
    color: var(--text-inverse);
}

.cookie-banner-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-btn-accept {
    padding: var(--space-sm) var(--space-xl);
    background-color: var(--surface-white);
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.cookie-btn-accept:hover {
    opacity: 0.9;
}

.cookie-btn-decline {
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--text-sm);
    color: var(--text-inverse);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.cookie-btn-decline:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* ----------------------------------------
   33. LOADING / SKELETON
   ---------------------------------------- */

.skeleton {
    background: linear-gradient(90deg,
        var(--surface-light) 25%,
        var(--surface-mid) 50%,
        var(--surface-light) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

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

.skeleton-text {
    height: 14px;
    margin-bottom: var(--space-xs);
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-title {
    height: 24px;
    width: 70%;
    margin-bottom: var(--space-md);
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 4 / 5;
}


/* ----------------------------------------
   34. LEGAL PAGES (Privacy, Terms)
   ---------------------------------------- */

.legal-page {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.legal-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    margin-bottom: var(--space-md);
}

.legal-header p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-h4);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-content h3 {
    font-size: var(--text-h5);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    line-height: var(--leading-normal);
}


/* ----------------------------------------
   35. ERROR PAGES (404, 500)
   ---------------------------------------- */

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--surface-off);
    text-align: center;
    padding: var(--container-padding);
}

.error-page-content {
    max-width: 560px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: var(--weight-bold);
    color: var(--surface-mid);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.error-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.error-desc {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    margin-bottom: var(--space-2xl);
}


/* ----------------------------------------
   36. BADGES & TAGS (reusable)
   ---------------------------------------- */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
}

.badge-dark {
    background-color: var(--primary);
    color: var(--text-inverse);
}

.badge-secondary {
    background-color: var(--secondary);
    color: var(--text-inverse);
}

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

.badge-outline {
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--primary-20);
    color: var(--text-secondary);
}


/* ----------------------------------------
   37. MARQUEE / SCROLLING TEXT
   ---------------------------------------- */

.marquee-section {
    overflow: hidden;
    padding: var(--space-2xl) 0;
    background-color: var(--surface-off);
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    padding-right: var(--space-2xl);
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    letter-spacing: var(--tracking-tight);
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ----------------------------------------
   38. ANIMATIONS & TRANSITIONS
   ---------------------------------------- */

/* Fade in up */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in left */
[data-animate="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in right */
[data-animate="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in */
[data-animate="fade"] {
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

[data-animate="fade"].animated {
    opacity: 1;
}

/* Scale up */
[data-animate="scale"] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate="scale"].animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

[data-stagger].animated > * {
    opacity: 1;
    transform: translateY(0);
}

[data-stagger].animated > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].animated > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].animated > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].animated > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].animated > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].animated > *:nth-child(6) { transition-delay: 0.5s; }
[data-stagger].animated > *:nth-child(7) { transition-delay: 0.6s; }
[data-stagger].animated > *:nth-child(8) { transition-delay: 0.7s; }

/* Delay utilities */
[data-delay="0.1"] { transition-delay: 0.1s !important; }
[data-delay="0.2"] { transition-delay: 0.2s !important; }
[data-delay="0.3"] { transition-delay: 0.3s !important; }
[data-delay="0.4"] { transition-delay: 0.4s !important; }
[data-delay="0.5"] { transition-delay: 0.5s !important; }
[data-delay="0.6"] { transition-delay: 0.6s !important; }


/* ----------------------------------------
   39. IMAGE REVEAL ANIMATION
   ---------------------------------------- */

.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary);
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.8s var(--ease);
}

.image-reveal.revealed::after {
    transform: scaleX(0);
    transform-origin: left;
}

.image-reveal img {
    transform: scale(1.1);
    transition: transform 0.8s var(--ease);
}

.image-reveal.revealed img {
    transform: scale(1);
}


/* ----------------------------------------
   40. NEW ARRIVALS / COLLECTIONS
   ---------------------------------------- */

.collections-section {
    padding: var(--space-5xl) 0;
    background-color: var(--surface-white);
}

.collections-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.collection-tab {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    padding-bottom: var(--space-xs);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.collection-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.collection-tab:hover {
    color: var(--text-secondary);
}

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

.collection-tab.active::after {
    transform: scaleX(1);
}


/* ----------------------------------------
   41. NEWSLETTER SECTION (standalone)
   ---------------------------------------- */

.newsletter-section {
    padding: var(--space-5xl) 0;
    background-color: var(--primary);
    color: var(--text-inverse);
    text-align: center;
}

.newsletter-section h2 {
    font-family: var(--font-heading);
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto var(--space-2xl);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    font-size: var(--text-sm);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit {
    padding: var(--space-md) var(--space-2xl);
    background-color: var(--secondary);
    color: var(--text-inverse);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-submit:hover {
    background-color: var(--secondary-light);
}

@media (max-width: 640px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-submit {
        padding: var(--space-md);
    }
}


/* ----------------------------------------
   42. BRAND LOGOS STRIP
   ---------------------------------------- */

.brands-section {
    padding: var(--space-3xl) 0;
    background-color: var(--surface-off);
}

.brands-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    gap: var(--space-2xl);
}

.brand-logo {
    flex-shrink: 0;
    opacity: 0.35;
    transition: opacity var(--transition-fast);
    filter: grayscale(1);
}

.brand-logo:hover {
    opacity: 0.7;
    filter: grayscale(0);
}

.brand-logo img {
    height: 36px;
    width: auto;
}

@media (max-width: 1024px) {
    .brands-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ----------------------------------------
   43. STATS / COUNTER SECTION
   ---------------------------------------- */

.stats-section {
    padding: var(--space-4xl) 0;
    background-color: var(--accent-sage);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-display);
    font-weight: var(--weight-regular);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--text-label);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--text-muted);
}

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

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .stat-number {
        font-size: var(--text-h1);
    }
}


/* ----------------------------------------
   44. CTA / BANNER SECTION
   ---------------------------------------- */

.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background-color: var(--secondary);
    color: var(--text-inverse);
    overflow: hidden;
}

.cta-section-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta-content {
    max-width: 560px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    color: var(--text-inverse);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

.cta-image {
    width: 45%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .cta-section-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: none;
    }

    .cta-image {
        width: 100%;
        max-width: 560px;
    }
}


/* ----------------------------------------
   45. TOOLTIP
   ---------------------------------------- */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 12px;
    background-color: var(--primary);
    color: var(--text-inverse);
    font-size: 11px;
    font-weight: var(--weight-medium);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
    pointer-events: none;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* ----------------------------------------
   46. TOAST / NOTIFICATION
   ---------------------------------------- */

.toast {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: var(--space-md) var(--space-xl);
    background-color: var(--primary);
    color: var(--text-inverse);
    font-size: var(--text-sm);
    z-index: var(--z-toast);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-xl);
}

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

.toast-success {
    background-color: var(--success);
}

.toast-error {
    background-color: var(--error);
}


/* ----------------------------------------
   47. MATERIAL SYMBOLS INTEGRATION
   ---------------------------------------- */

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
    vertical-align: middle;
}

.icon-filled .material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}


/* ----------------------------------------
   48. PRINT STYLES
   ---------------------------------------- */

@media print {
    .header,
    .announcement-bar,
    .footer,
    .scroll-top,
    .whatsapp-btn,
    .mobile-menu,
    .cookie-banner,
    .reading-progress {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container,
    .container-narrow {
        max-width: none;
        padding: 0;
    }
}


/* ----------------------------------------
   49. ACCESSIBILITY
   ---------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --surface-light: #f0f0f0;
        --surface-mid: #d0d0d0;
        --text-tertiary: #333;
        --text-muted: #555;
    }
}


/* ----------------------------------------
   50. ALFA DIZAYN BRANDING
   ---------------------------------------- */

.branding-bar {
    background-color: var(--surface-off);
    text-align: center;
    padding: var(--space-sm) 0;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.branding-bar a {
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    transition: color var(--transition-fast);
}

.branding-bar a:hover {
    color: var(--secondary);
}


/* ========================================
   MOBILART V2 — NEW HEADER / FOOTER / PAGES
   ======================================== */

/* ----------------------------------------
   51. SITE HEADER (Modern Navbar)
   ---------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: var(--z-sticky, 100);
    border-bottom: 1px solid var(--outline, #e5e5e5);
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.header-left { flex-shrink: 0; }

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.site-logo .logo-img {
    height: 36px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    letter-spacing: -0.5px;
}

/* Desktop nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav .nav-link {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary, #4a4a4a);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}

.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--secondary, #725b3f);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.header-nav .nav-link:hover { color: var(--text-primary, #1a1a1a); }
.header-nav .nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-nav .nav-link.active { color: var(--text-primary, #1a1a1a); }
.header-nav .nav-link.active::after { transform: scaleX(1); }

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    transition: color 0.2s;
}

.header-phone:hover { color: var(--secondary, #725b3f); }
.header-phone .material-symbols-outlined { font-size: 18px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-primary, #1a1a1a);
    transition: all 0.3s;
}

.hamburger span:nth-child(2) { width: 60%; margin-left: auto; }

@media (max-width: 1024px) {
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .header-phone .phone-text { display: none; }
    .site-header .header-inner { height: 60px; padding: 0 16px; }
}

/* ----------------------------------------
   52. MOBILE MENU
   ---------------------------------------- */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary, #1a1a1a);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.mobile-menu-link {
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #4a4a4a);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--secondary, #725b3f);
    padding-left: 32px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--outline, #e5e5e5);
}

.mobile-menu-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
}

.mobile-menu-contact .material-symbols-outlined { font-size: 18px; color: var(--secondary, #725b3f); }

.mobile-menu-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mobile-menu-social a {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #999);
}

.mobile-menu-social a:hover { color: var(--secondary, #725b3f); }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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


/* ----------------------------------------
   53. WOOD OVERLAY + FOOTER
   ---------------------------------------- */

/* --- Wood overlay (above footer) --- */
.wood-overlay {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wood-overlay-bg {
    position: absolute;
    inset: 0;
    background: #0e0c0a;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wood-overlay-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,12,10,0.35) 0%, rgba(14,12,10,0.65) 100%);
}

.wood-overlay-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wood-overlay-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.wood-text {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: clamp(64px, 10vw, 160px);
    font-weight: 400;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1;
}

.wood-sub {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 20px;
}

/* OLD FOOTER — REPLACED BY ft-* CLASSES ABOVE */
/* Footer — Professional */
.site-footer {
    background-color: #141414;
    color: rgba(255,255,255,0.65);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}

.footer-main {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 80px var(--container-padding, 48px) 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr;
    gap: 56px;
}

.footer-logo { display: inline-block; margin-bottom: 28px; }
.footer-logo-img { height: 28px; width: auto; filter: brightness(10); }
.footer-logo-text {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
}

.footer-contact-info {
    font-size: 13px;
    line-height: 2.2;
    color: rgba(255,255,255,0.45);
}
.footer-contact-info a {
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
}
.footer-contact-info a:hover { color: var(--secondary, #c9a96e); }

.footer-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--secondary, #725b3f);
}

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

.footer-links li { margin-bottom: 14px; }

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    transition: all 0.25s;
    position: relative;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 6px;
}

.footer-newsletter-desc {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 4px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.25s;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter-form button {
    padding: 12px 24px;
    background-color: var(--secondary, #725b3f);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--secondary, #725b3f);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    font-family: inherit;
}

.footer-newsletter-form button:hover {
    background-color: transparent;
    color: var(--secondary, #725b3f);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--secondary, #725b3f);
    border-color: var(--secondary, #725b3f);
    color: #fff;
    transform: translateY(-2px);
}

.social-link .material-symbols-outlined { font-size: 16px; }

/* Footer Bottom — 3 column grid: legal | branding | copyright */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    background-color: rgba(0,0,0,0.15);
}

.footer-bottom-inner {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 18px var(--container-padding, 48px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

.footer-branding {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    text-align: center;
    justify-self: center;
}

.footer-branding p { margin: 0; display: inline; }
.footer-branding a { color: rgba(255,255,255,0.4) !important; font-weight: 500; }
.footer-branding a:hover { color: rgba(255,255,255,0.8) !important; }

.footer-copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-align: right;
    justify-self: end;
    letter-spacing: 0.3px;
}

/* WhatsApp + Scroll Top */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transition: transform 0.2s;
}

.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn .material-symbols-outlined { font-size: 28px; }

.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background-color: var(--primary, #1a1a1a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 90;
    border: none;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background-color: var(--secondary, #725b3f); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .video-overlay-text { font-size: 80px; letter-spacing: 24px; text-indent: 24px; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-main { padding: 48px 20px 40px; }
    .footer-bottom-inner { grid-template-columns: 1fr; gap: 10px; text-align: center; padding: 16px 20px; }
    .footer-legal-links { justify-content: center; }
    .footer-branding { justify-self: center; }
    .footer-copyright { text-align: center; justify-self: center; }
    .video-overlay-text { font-size: 48px; letter-spacing: 16px; text-indent: 16px; }
    .video-overlay-section { height: 280px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-col { text-align: center; }
    .footer-links a:hover { padding-left: 0; }
    .footer-social { justify-content: center; }
    .footer-newsletter-form { flex-direction: column; }
    .footer-newsletter-form input { border-right: 1px solid rgba(255,255,255,0.12); }
    .footer-newsletter-form button { width: 100%; }
}


/* ----------------------------------------
   54. BREADCRUMB BAR
   ---------------------------------------- */

.breadcrumb-bar {
    padding: 16px 0;
    background-color: var(--surface-off, #f9f9f8);
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.breadcrumb-bar a {
    font-size: 11px;
    color: var(--text-muted, #999);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.breadcrumb-bar a:hover {
    color: var(--secondary, #725b3f);
}

.breadcrumb-bar .material-symbols-outlined {
    font-size: 14px;
    color: var(--text-muted, #999);
}

.breadcrumb-bar .current {
    font-size: 11px;
    color: var(--text-primary, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}


/* ----------------------------------------
   52. PRODUCTS PAGE (urunler.php)
   ---------------------------------------- */

.products-header {
    padding: 48px 0 32px;
    text-align: center;
}

.products-header .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.products-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 8px;
}

.products-subtitle {
    font-size: 14px;
    color: var(--text-tertiary, #6b6b6b);
    max-width: 600px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

.products-count {
    font-size: 11px;
    color: var(--text-muted, #999);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-content {
    padding: 0 0 80px;
}

.products-content .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.products-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 100px;
}

.products-sidebar .sidebar-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.products-sidebar .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--secondary, #725b3f);
}

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

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.category-link:hover {
    color: var(--text-primary, #1a1a1a);
    padding-left: 8px;
}

.category-link.active {
    color: var(--secondary, #725b3f);
    font-weight: 600;
}

.cat-count {
    font-size: 11px;
    color: var(--text-muted, #999);
    min-width: 20px;
    text-align: right;
}

/* Sidebar — alt kategori (subcategory) listesi */
.cat-list-item.expanded {
    background: rgba(var(--secondary-rgb, 114, 91, 63), 0.04);
}
.category-sublist {
    list-style: none;
    padding: 4px 0 8px 16px;
    margin: 0;
    border-left: 2px solid var(--secondary, #725b3f);
    margin-left: 8px;
}
.category-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 8px;
    font-size: 12px;
    color: var(--text-tertiary, #6b6b6b);
    transition: all 0.2s;
    text-decoration: none;
}
.category-sublink:hover {
    color: var(--text-primary, #1a1a1a);
    padding-left: 12px;
}
.category-sublink.active {
    color: var(--secondary, #725b3f);
    font-weight: 600;
}

/* Subcategory grid (parent kategori sayfasında) */
.subcategories-row {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}
.subcategories-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 24px;
}
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.subcategory-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--surface-light, #f7f3eb);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.subcategory-card:hover {
    background: #fff;
    border-color: var(--secondary, #725b3f);
    transform: translateY(-2px);
}
.subcategory-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}
.subcategory-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.subcategory-thumb .material-symbols-outlined {
    font-size: 32px;
    color: var(--text-muted, #999);
}
.subcategory-info {
    flex: 1;
    min-width: 0;
}
.subcategory-info h3 {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.subcategory-count {
    font-size: 12px;
    color: var(--text-muted, #999);
}

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

/* Product Grid */
.products-main {
    min-height: 400px;
}

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

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

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    background-color: var(--surface-light, #f7f7f7);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-image .product-img,
.product-image picture,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-image img,
.product-card:hover .product-image picture img {
    transform: scale(1.05);
}

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.product-no-image .material-symbols-outlined {
    font-size: 48px;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    z-index: 1;
}

.badge-featured {
    background-color: var(--secondary, #725b3f);
    color: #fff;
}

.product-info {
    padding: 0;
}

.product-category {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted, #999);
    margin-bottom: 4px;
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
}

.product-price-cta {
    font-size: 11px;
    color: var(--secondary, #725b3f);
    font-weight: 500;
}

/* Empty state */
.empty-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted, #999);
}

.empty-products .material-symbols-outlined {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-products p {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: var(--primary, #1a1a1a);
    transition: background-color 0.2s;
}

.btn-back:hover {
    background-color: var(--secondary, #725b3f);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 48px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #4a4a4a);
    transition: all 0.2s;
}

.page-link:hover {
    background-color: var(--surface-light, #f7f7f7);
}

.page-link.active {
    background-color: var(--primary, #1a1a1a);
    color: #fff;
}

.page-link .material-symbols-outlined {
    font-size: 20px;
}

.page-dots {
    padding: 0 4px;
    color: var(--text-muted, #999);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

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

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

@media (max-width: 640px) {
    .products-header {
        padding: 32px 0 20px;
    }

    .products-title {
        font-size: 28px;
    }

    .products-layout {
        gap: 24px;
    }

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

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

    .product-name {
        font-size: 12px;
    }

    .product-price {
        font-size: 12px;
    }
}


/* ----------------------------------------
   53. PRODUCT DETAIL PAGE (urun.php)
   ---------------------------------------- */

.product-detail {
    padding: 48px 0 64px;
}

.product-detail .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    background-color: var(--surface-light, #f7f7f7);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 12px;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.gallery-main:hover .gallery-main-img {
    transform: scale(1.02);
}

.gallery-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.gallery-empty .material-symbols-outlined {
    font-size: 64px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary, #1a1a1a);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: all 0.2s;
}

.gallery-main:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background-color: var(--primary, #1a1a1a);
    color: #fff;
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary, #1a1a1a);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
}

.gallery-main:hover .gallery-zoom {
    opacity: 1;
}

.gallery-zoom:hover {
    background-color: var(--primary, #1a1a1a);
    color: #fff;
}

/* Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    background-color: var(--surface-light, #f7f7f7);
    cursor: pointer;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.2s;
    border: 2px solid transparent;
    padding: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--primary, #1a1a1a);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-detail {
    padding-top: 8px;
}

.product-detail-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary, #725b3f);
    margin-bottom: 12px;
    padding: 6px 12px;
    background-color: rgba(114, 91, 63, 0.08);
    transition: background-color 0.2s;
}

.product-detail-category:hover {
    background-color: rgba(114, 91, 63, 0.15);
}

.product-detail-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 12px;
}

.product-detail-sku {
    font-size: 11px;
    color: var(--text-muted, #999);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.product-detail-price {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 24px;
}

.product-detail-price-cta {
    font-size: 14px;
    color: var(--secondary, #725b3f);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 12px 0;
    border-top: 1px solid var(--outline, #e5e5e5);
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.product-detail-desc {
    font-size: 14px;
    color: var(--text-tertiary, #6b6b6b);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Specs */
.product-specs {
    margin-bottom: 32px;
}

.specs-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 16px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.spec-label {
    width: 140px;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #4a4a4a);
    vertical-align: top;
}

.spec-value {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
}

/* CTA Buttons */
.product-cta {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

.btn-call {
    background-color: var(--primary, #1a1a1a);
    color: #fff;
}

.btn-call:hover {
    background-color: var(--secondary, #725b3f);
}

.btn-cta .material-symbols-outlined {
    font-size: 18px;
}


/* ----------------------------------------
   54. PRODUCT CONTENT & RELATED
   ---------------------------------------- */

.product-content-section {
    padding: 64px 0;
    border-top: 1px solid var(--outline, #e5e5e5);
}

.product-content-section .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.section-heading {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 32px;
}

.product-content-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-tertiary, #6b6b6b);
    max-width: 1100px;
}

.product-content-body h2,
.product-content-body h3,
.product-content-body h4 {
    color: var(--text-primary, #1a1a1a);
    margin: 24px 0 12px;
}

.product-content-body img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
}

.product-content-body ul,
.product-content-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

/* Related Products */
.related-products {
    padding: 64px 0 80px;
    background-color: var(--surface-off, #f9f9f8);
}

.related-products .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}


/* ----------------------------------------
   55. PRODUCT NAV (Prev/Next)
   ---------------------------------------- */

.product-nav {
    border-top: 1px solid var(--outline, #e5e5e5);
}

.product-nav .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.product-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.product-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary, #4a4a4a);
    transition: color 0.2s;
}

.product-nav-link:hover {
    color: var(--secondary, #725b3f);
}

.product-nav-link .material-symbols-outlined {
    font-size: 18px;
}

.nav-label {
    /* text only */
}

.grid-link {
    color: var(--text-muted, #999);
}


/* ----------------------------------------
   56. LIGHTBOX (Updated for urun.php)
   ---------------------------------------- */

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}


/* ----------------------------------------
   57. RESPONSIVE OVERRIDES (Product pages)
   ---------------------------------------- */

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .product-detail-price {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .breadcrumb-bar .container,
    .products-header .container,
    .products-content .container,
    .product-detail .container,
    .product-content-section .container,
    .related-products .container,
    .product-nav .container {
        padding: 0 16px;
    }

    .products-title {
        font-size: 24px;
    }

    .product-detail-grid {
        gap: 24px;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .product-detail-price {
        font-size: 20px;
    }

    .product-cta {
        flex-direction: column;
    }

    .gallery-thumbs {
        gap: 6px;
    }

    .gallery-thumb {
        width: 60px;
        height: 75px;
    }

    .spec-label {
        width: 110px;
    }

    .product-nav-inner {
        flex-direction: column;
        gap: 16px;
    }
}


/* ----------------------------------------
   60. PAGE HERO
   ---------------------------------------- */

.page-hero {
    padding: 40px 0 32px;
    text-align: center;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.page-hero .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.page-hero-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
}

.page-hero-desc {
    font-size: 14px;
    color: var(--text-muted, #999);
    margin-top: 8px;
}


/* ----------------------------------------
   61. BLOG LIST PAGE
   ---------------------------------------- */

.blog-page {
    padding: 48px 0 80px;
}

.blog-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 64px;
    align-items: start;
}

.blog-main { min-width: 0; width: 100%; }

.blog-card {
    margin-bottom: 48px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
    padding-bottom: 48px;
}

.blog-card:last-child { border-bottom: none; }

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card-image:hover img { transform: scale(1.03); }

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted, #999);
    margin-bottom: 12px;
}

.blog-card-cat { color: var(--secondary, #725b3f); font-weight: 600; }

.blog-card-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-title a { color: var(--text-primary, #1a1a1a); }
.blog-card-title a:hover { color: var(--secondary, #725b3f); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-tertiary, #6b6b6b);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary, #1a1a1a);
    border-bottom: 1px solid var(--text-primary, #1a1a1a);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.blog-read-more:hover { color: var(--secondary, #725b3f); border-color: var(--secondary, #725b3f); }


/* ----------------------------------------
   62. BLOG SIDEBAR
   ---------------------------------------- */

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.sidebar-widget:last-child { border-bottom: none; }

.sidebar-widget-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 20px;
}

.sidebar-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.sidebar-post-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-post-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-post:hover .sidebar-post-title { color: var(--secondary, #725b3f); }

.sidebar-post-date {
    font-size: 11px;
    color: var(--text-muted, #999);
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li { margin-bottom: 8px; }

.sidebar-cat-list a {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
    padding: 6px 0;
    transition: color 0.2s;
}

.sidebar-cat-list a:hover,
.sidebar-cat-list a.active { color: var(--secondary, #725b3f); }

.sidebar-cat-list a span { color: var(--text-muted, #999); font-size: 12px; }

/* TOC */
.sidebar-toc ul { list-style: none; padding: 0; margin: 0; }

.sidebar-toc li { margin-bottom: 6px; }

.sidebar-toc a {
    font-size: 12px;
    color: var(--text-tertiary, #6b6b6b);
    transition: color 0.2s;
}

.sidebar-toc a:hover { color: var(--secondary, #725b3f); }
.sidebar-toc .toc-sub { padding-left: 16px; }


/* ----------------------------------------
   63. BLOG DETAIL PAGE
   ---------------------------------------- */

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: var(--secondary, #725b3f);
    z-index: 9999;
    transition: width 0.1s linear;
}

.blog-detail-hero {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-page {
    padding: 48px 0 80px;
}

.blog-detail-page .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Blog body should fill the same width as title */
.blog-detail-content,
.blog-detail-excerpt,
.blog-detail-title,
.blog-detail-meta,
.blog-share,
.blog-nav {
    max-width: none;
    width: 100%;
}

/* Lead paragraph */
.blog-detail-content .lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-secondary, #4a4a4a);
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 0;
}

/* Blog content paragraphs full width */
.blog-detail-content p {
    margin-bottom: 18px;
    max-width: none;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted, #999);
    margin-bottom: 16px;
}

.blog-detail-meta a { color: var(--secondary, #725b3f); font-weight: 600; text-decoration: none; }
.blog-detail-meta .meta-sep { color: var(--text-muted, #ccc); }

.blog-detail-author {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
}
.blog-detail-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.blog-detail-author:hover span {
    text-decoration: underline;
}

/* Author Bio Box (post sonu) */
.author-bio-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    margin: 48px 0 32px;
    background: var(--surface-light, #f7f3eb);
    border-left: 3px solid var(--secondary, #725b3f);
}
.author-bio-photo {
    flex-shrink: 0;
}
.author-bio-photo img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.author-bio-content {
    flex: 1;
    min-width: 0;
}
.author-bio-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted, #999);
    margin-bottom: 4px;
}
.author-bio-content h3 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 4px;
    color: var(--text-primary, #1a1a1a);
}
.author-bio-content h3 a {
    color: inherit;
    text-decoration: none;
}
.author-bio-content h3 a:hover {
    color: var(--secondary, #725b3f);
}
.author-bio-title {
    font-size: 13px;
    color: var(--text-muted, #999);
    margin: 0 0 12px;
    font-style: italic;
}
.author-bio-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
    margin: 0 0 12px;
}
.author-bio-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary, #725b3f);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.author-bio-link:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .author-bio-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .author-bio-photo {
        margin: 0 auto;
    }
}

/* ----------------------------------------
   76. YAZAR (AUTHOR) SAYFASI
   ---------------------------------------- */

.author-page {
    padding: 48px 0 80px;
}

.author-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.author-hero {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 48px;
    background: var(--surface-light, #f7f3eb);
    margin-bottom: 64px;
}

.author-hero-photo {
    flex-shrink: 0;
}
.author-hero-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.author-hero-content {
    flex: 1;
    min-width: 0;
}
.author-hero-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted, #999);
    margin-bottom: 12px;
}
.author-hero-name {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 8px;
    line-height: 1.1;
}
.author-hero-title {
    font-size: 16px;
    color: var(--secondary, #725b3f);
    font-weight: 600;
    margin: 0 0 20px;
}
.author-hero-bio {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-tertiary, #6b6b6b);
    margin: 0 0 24px;
    max-width: 700px;
}
.author-hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted, #999);
}
.author-hero-stats strong {
    color: var(--text-primary, #1a1a1a);
    font-size: 18px;
    margin-right: 4px;
}
.author-hero-stats a {
    color: var(--secondary, #725b3f);
    text-decoration: none;
}

.author-posts-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 32px;
    color: var(--text-primary, #1a1a1a);
}

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

.author-post-card {
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    transition: transform 0.3s, box-shadow 0.3s;
}
.author-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.author-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.author-post-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-light, #f7f3eb);
}
.author-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.author-post-card:hover .author-post-image img {
    transform: scale(1.05);
}
.author-post-body {
    padding: 24px;
}
.author-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.author-post-cat {
    color: var(--secondary, #725b3f);
    font-weight: 600;
}
.author-post-date {
    color: var(--text-muted, #999);
}
.author-post-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 12px;
    line-height: 1.3;
}
.author-post-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
    margin: 0 0 16px;
}
.author-post-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary, #725b3f);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-empty {
    text-align: center;
    padding: 64px 0;
    color: var(--text-muted, #999);
    font-size: 16px;
}

@media (max-width: 1024px) {
    .author-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .author-hero { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
    .author-hero-bio { margin-left: auto; margin-right: auto; }
    .author-hero-stats { justify-content: center; }
}

@media (max-width: 640px) {
    .author-page .container { padding: 0 16px; }
    .author-hero { padding: 32px 24px; }
    .author-hero-name { font-size: 32px; }
    .author-hero-photo img { width: 140px; height: 140px; }
    .author-posts-grid { grid-template-columns: 1fr; }
}

.blog-detail-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 20px;
}

.blog-detail-excerpt {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary, #4a4a4a);
    line-height: 1.6;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.blog-detail-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-tertiary, #6b6b6b);
    margin-bottom: 40px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--text-primary, #1a1a1a);
    margin: 32px 0 12px;
    font-family: var(--font-heading, 'Noto Serif', serif);
}

.blog-detail-content h2 { font-size: 24px; }
.blog-detail-content h3 { font-size: 20px; }

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.blog-detail-content blockquote {
    border-left: 3px solid var(--secondary, #725b3f);
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-secondary, #4a4a4a);
    background-color: var(--surface-off, #f9f9f8);
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

/* Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--outline, #e5e5e5);
    border-bottom: 1px solid var(--outline, #e5e5e5);
    margin-bottom: 32px;
}

.blog-share-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary, #1a1a1a);
}

.share-btn {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted, #999);
    padding: 6px 12px;
    border: 1px solid var(--outline, #e5e5e5);
    transition: all 0.2s;
}

.share-btn:hover {
    background-color: var(--primary, #1a1a1a);
    color: #fff;
    border-color: var(--primary, #1a1a1a);
}

/* Blog nav */
.blog-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary, #4a4a4a);
    transition: color 0.2s;
}

.blog-nav-link:hover { color: var(--secondary, #725b3f); }
.blog-nav-link .material-symbols-outlined { font-size: 18px; }


/* ----------------------------------------
   64. CONTACT PAGE
   ---------------------------------------- */

.contact-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1f17 100%);
    overflow: hidden;
    padding: 80px 24px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201,169,110,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(114,91,63,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-overlay {
    display: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

.contact-hero-content h1 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 52px;
    font-weight: 400;
    color: #fff !important;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.contact-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8) !important;
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    padding: 64px 0 80px;
}

.contact-section .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .material-symbols-outlined {
    font-size: 22px;
    color: var(--secondary, #725b3f);
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
    line-height: 1.6;
}

.contact-info-item a { color: inherit; }
.contact-info-item a:hover { color: var(--secondary, #725b3f); }

.contact-form-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.contact-form .form-group { margin-bottom: 16px; }

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-primary, #1a1a1a);
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    transition: border-color 0.2s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary, #725b3f);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted, #999);
}

.btn-submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary, #1a1a1a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover { background-color: var(--secondary, #725b3f); }

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 14px;
    margin-bottom: 24px;
}

.alert-success { background-color: #ecfdf5; color: #065f46; }
.alert-error { background-color: #fef2f2; color: #991b1b; }
.alert .material-symbols-outlined { font-size: 20px; }

.contact-map {
    width: 100%;
    height: 400px;
    background-color: var(--surface-off, #f9f9f8);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ----------------------------------------
   65. FAQ PAGE
   ---------------------------------------- */

.faq-section {
    padding: 48px 0 80px;
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    transition: color 0.2s;
}

.faq-question:hover { color: var(--secondary, #725b3f); }

.faq-icon {
    transition: transform 0.3s;
    font-size: 24px;
    color: var(--text-muted, #999);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
}


/* ----------------------------------------
   66. RESPONSIVE (Blog / Contact / FAQ)
   ---------------------------------------- */

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-detail-title { font-size: 28px; }
}

@media (max-width: 640px) {
    .blog-page .container,
    .blog-detail-page .container,
    .contact-section .container {
        padding: 0 16px;
    }

    .page-hero-title { font-size: 28px; }
    .blog-card-title { font-size: 20px; }
    .blog-detail-title { font-size: 24px; }
    .blog-detail-hero { max-height: 300px; }
    .contact-hero { height: 240px; }
    .contact-hero-content h1 { font-size: 28px; }
    .contact-form .form-row-2 { grid-template-columns: 1fr; }
    .blog-share { flex-wrap: wrap; }
}


/* ----------------------------------------
   67. ABOUT PAGE
   ---------------------------------------- */

/* About Hero */
.about-hero {
    padding: 64px 0 32px;
    text-align: center;
    background: var(--surface-white, #fff);
}
.about-hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.about-hero-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 16px;
    line-height: 1.1;
}
.about-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
}

/* About Banner — Full width image */
.about-banner {
    margin: 32px 0 80px;
    padding: 0;
}
.about-banner-img {
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 21/9;
    overflow: hidden;
    background: var(--surface-light, #f5f3f0);
}
.about-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Story — Image + Text 2 columns */
.about-story {
    padding: 0 0 96px;
}
.about-story .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-story-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--surface-light, #f5f3f0);
}
.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-story-text { padding: 0; }
.about-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary, #725b3f);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--secondary, #725b3f);
}
.about-story-text h2 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 24px;
    line-height: 1.2;
}
.about-story-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary, #4a4a4a);
    margin-bottom: 16px;
}

/* About Stats Section */
.about-stats-section {
    padding: 0 0 96px;
}
.about-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: var(--surface-off, #f9f9f8);
    border-top: 2px solid var(--secondary, #725b3f);
    padding: 48px 24px;
}
.stat-item {
    text-align: center;
    padding: 16px 8px;
    border-right: 1px solid var(--outline, #e5e0da);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
    display: block;
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-item span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted, #999);
}

/* About Pillars */
.about-pillars {
    padding: 96px 0;
    background: var(--surface-off, #f9f9f8);
}
.about-pillars .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.about-pillars-header {
    text-align: center;
    margin-bottom: 64px;
}
.about-pillars-header .about-tag { margin-bottom: 16px; }
.about-pillars-header h2 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 16px;
    color: var(--text-primary, #1a1a1a);
}
.about-pillars-header p {
    font-size: 15px;
    color: var(--text-tertiary, #6b6b6b);
    max-width: 600px;
    margin: 0 auto;
}
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pillar-card {
    background: #fff;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--outline, #e5e0da);
    transition: all 0.3s;
}
.pillar-card:hover {
    border-color: var(--secondary, #725b3f);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-off, #f9f9f8);
    color: var(--secondary, #725b3f);
}
.pillar-icon .material-symbols-outlined { font-size: 32px; }
.pillar-card h3 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 16px;
}
.pillar-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
}

/* About Team */
.about-team {
    padding: 96px 0;
    background: #fff;
}
.about-team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.about-team-header {
    text-align: center;
    margin-bottom: 64px;
}
.about-team-header .about-tag { margin-bottom: 16px; }
.about-team-header h2 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 16px;
    color: var(--text-primary, #1a1a1a);
}
.about-team-header p {
    font-size: 15px;
    color: var(--text-tertiary, #6b6b6b);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.about-team-card { text-align: center; }
.about-team-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--surface-light, #f5f3f0);
    margin-bottom: 20px;
}
.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.about-team-card:hover .about-team-photo img { transform: scale(1.04); }
.about-team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light, #ccc);
}
.about-team-photo-placeholder .material-symbols-outlined { font-size: 80px; }
.about-team-info {}
.about-team-role {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary, #725b3f);
    margin-bottom: 6px;
}
.about-team-info h4 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin: 0;
}

/* About CTA */
.about-cta {
    position: relative;
    padding: 120px 32px;
    overflow: hidden;
    text-align: center;
}
.about-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.about-cta-content h2 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px;
}
.about-cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}
.about-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--text-primary, #1a1a1a);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fff;
}
.about-cta-btn:hover {
    background: transparent;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-pillars-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 24px 0; padding: 40px 24px; }
    .stat-item:nth-child(3n) { border-right: none; }
    .stat-item:nth-child(-n+3) { border-bottom: 1px solid var(--outline, #e5e0da); padding-bottom: 32px; margin-bottom: 8px; }
}
@media (max-width: 768px) {
    .about-hero { padding: 48px 0 24px; }
    .about-hero-title { font-size: 36px; }
    .about-banner { margin: 24px 0 56px; }
    .about-story { padding: 0 0 64px; }
    .about-story-text h2 { font-size: 30px; }
    .about-pillars { padding: 64px 0; }
    .about-pillars-header h2 { font-size: 30px; }
    .about-team { padding: 64px 0; }
    .about-team-header h2 { font-size: 30px; }
    .about-team-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--outline, #e5e0da); padding: 20px 12px; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .stat-item strong { font-size: 32px; }
    .about-cta { padding: 80px 24px; }
    .about-cta-content h2 { font-size: 30px; }
    .about-story .container,
    .about-stats-section .container,
    .about-pillars .container,
    .about-team .container { padding: 0 20px; }
}


/* ----------------------------------------
   68. GALLERY PAGE
   ---------------------------------------- */

.gallery-page {
    padding: 48px 0 80px;
}

.gallery-page .container {
    max-width: var(--container-max, 1920px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

.gallery-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-filter-btn {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary, #4a4a4a);
    border: 1px solid var(--outline, #e5e5e5);
    transition: all 0.2s;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary, #1a1a1a);
    color: #fff;
    border-color: var(--primary, #1a1a1a);
}

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

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--surface-light, #f7f7f7);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-grid-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay .material-symbols-outlined { font-size: 32px; }
.gallery-item-overlay p { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.gallery-placeholder .material-symbols-outlined { font-size: 48px; }

@media (max-width: 1024px) { .gallery-grid-page { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid-page { grid-template-columns: repeat(2, 1fr); gap: 8px; } }


/* ----------------------------------------
   70. PROMO CTA ANIMATED UNDERLINE
   ---------------------------------------- */

.promo-cta {
    font-size: var(--text-xs, 11px);
    font-weight: var(--weight-semibold, 600);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest, 0.2em);
    color: var(--text-inverse, #fff);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 4px;
}

.promo-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: currentColor;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover .promo-cta::after {
    width: 100%;
}

.promo-card:hover .promo-cta {
    gap: 12px;
}

/* ALL promo cards inner border on hover */
.promo-card::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255,255,255,0.35);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s, inset 0.4s;
    pointer-events: none;
}

.promo-card:hover::before {
    opacity: 1;
    inset: 12px;
}


/* ----------------------------------------
   71. CATEGORY ITEMS (full set)
   ---------------------------------------- */

.category-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
    padding: 20px 16px;
}

.category-item::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid transparent;
    transition: border-color 0.3s, inset 0.3s;
    pointer-events: none;
}

.category-item:hover::before {
    border-color: var(--secondary, #725b3f);
    inset: 0;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-thumb {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--surface-light, #f7f3eb);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}

.category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s;
}

.category-thumb .material-symbols-outlined {
    font-size: 40px;
    color: var(--text-light, #ccc);
}

.category-item:hover .category-thumb img {
    transform: scale(1.06);
}

.category-info {
    text-align: center;
    width: 100%;
    min-width: 0;
}

.category-name {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
    line-height: 1.4;
}

.category-count {
    font-size: 12px;
    color: var(--text-muted, #999);
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0;
}


/* ----------------------------------------
   72. PRODUCT DETAIL — VERTICAL THUMBS + TABS
   ---------------------------------------- */

.gallery-layout {
    display: flex;
    gap: 12px;
}

.gallery-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 80px;
    max-height: 500px;
    overflow-y: auto;
}

.gallery-thumbs-vertical .gallery-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--surface-light, #f7f7f7);
    cursor: pointer;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.2s;
    border: 2px solid transparent;
    padding: 0;
}

.gallery-thumbs-vertical .gallery-thumb.active,
.gallery-thumbs-vertical .gallery-thumb:hover {
    opacity: 1;
    border-color: var(--primary, #1a1a1a);
}

.gallery-thumbs-vertical .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main {
    flex: 1;
    position: relative;
    background: var(--surface-light, #f7f7f7);
    aspect-ratio: 4/5;
    overflow: hidden;
}

/* Product Tabs */
.product-tabs-section {
    padding: 0 0 64px;
    border-top: 1px solid var(--outline, #e5e5e5);
}

.product-tabs-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

.product-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}

.product-tab {
    padding: 20px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted, #999);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -1px;
}

.product-tab:hover {
    color: var(--text-primary, #1a1a1a);
}

.product-tab.active {
    color: var(--text-primary, #1a1a1a);
    border-bottom-color: var(--secondary, #725b3f);
}

.product-tab-content {
    display: none;
    padding: 32px 0;
}

.product-tab-content.active {
    display: block;
}

/* Specs Table — professional 2 column */
.specs-table-pro {
    width: 100%;
    max-width: 1100px;
    border-collapse: collapse;
    margin: 0;
}
.specs-table-pro tr {
    border-bottom: 1px solid var(--outline, #e5e0da);
}
.specs-table-pro tr:last-child {
    border-bottom: none;
}
.specs-table-pro tr:nth-child(even) {
    background: var(--surface-off, #f9f9f8);
}
.specs-table-pro th {
    text-align: left;
    padding: 16px 24px 16px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    width: 35%;
    vertical-align: top;
}
.specs-table-pro td {
    padding: 16px;
    font-size: 14px;
    color: var(--text-tertiary, #6b6b6b);
    vertical-align: top;
}

.tab-empty {
    color: var(--text-muted, #999);
    font-size: 14px;
    padding: 20px 0;
}

/* Delivery & Returns content */
.delivery-content {
    max-width: 1100px;
}
.delivery-block {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--outline, #e5e0da);
    margin-bottom: 0;
}
.delivery-block:first-child {
    padding-top: 8px;
}
.delivery-block:last-child {
    border-bottom: none;
}
.delivery-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light, #f7f3eb);
    color: var(--secondary, #725b3f);
}
.delivery-icon .material-symbols-outlined {
    font-size: 32px;
}
.delivery-text {
    flex: 1;
    min-width: 0;
}
.delivery-text h3 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 14px;
    line-height: 1.3;
}
.delivery-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-tertiary, #6b6b6b);
    margin: 0 0 12px;
}
.delivery-text p:last-child {
    margin-bottom: 0;
}
.delivery-text strong {
    color: var(--text-primary, #1a1a1a);
}

@media (max-width: 768px) {
    .delivery-block {
        flex-direction: column;
        gap: 16px;
    }
    .delivery-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 1024px) {
    .gallery-layout {
        flex-direction: column-reverse;
    }

    .gallery-thumbs-vertical {
        flex-direction: row;
        width: auto;
        max-height: none;
        overflow-x: auto;
    }

    .gallery-thumbs-vertical .gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .specs-table-pro th {
        width: 45%;
        font-size: 12px;
    }
    .specs-table-pro td {
        font-size: 13px;
    }

    .product-tab {
        padding: 16px 20px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .product-tabs {
        overflow-x: auto;
    }

    .product-tab {
        white-space: nowrap;
        padding: 14px 16px;
    }
}


/* ----------------------------------------
   FOOTER — ft-* classes
   ---------------------------------------- */

.ft {
    background: #111;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

.ft-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.ft-top {
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.ft-logo {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.ft-info {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
    color: rgba(255,255,255,0.4);
}

.ft-info a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ft-info a:hover { color: #c9a96e; }

.ft-col h6 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px;
}

.ft-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-col ul li { margin-bottom: 12px; }

.ft-col ul a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s, padding-left 0.2s;
}

.ft-col ul a:hover {
    color: #fff;
    padding-left: 4px;
}

.ft-newsletter p {
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ft-form {
    display: flex;
}

.ft-form input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
}

.ft-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.25);
}

.ft-form input::placeholder { color: rgba(255,255,255,0.25); }

.ft-form button {
    padding: 11px 22px;
    background: var(--secondary, #725b3f);
    color: #fff;
    border: 1px solid var(--secondary, #725b3f);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    white-space: nowrap;
}

.ft-form button:hover {
    background: transparent;
    color: var(--secondary, #c9a96e);
}

.ft-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.ft-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.35);
    transition: all 0.25s;
}

.ft-social a:hover {
    background: var(--secondary, #725b3f);
    border-color: var(--secondary, #725b3f);
    color: #fff;
}

.ft-social .material-symbols-outlined { font-size: 15px; }

.ft-bottom {
    padding: 16px 0;
}

.ft-bottom-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.ft-legal {
    display: flex;
    gap: 20px;
}

.ft-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    transition: color 0.2s;
}

.ft-legal a:hover { color: rgba(255,255,255,0.6); }

.ft-powered {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}

.ft-powered p { margin: 0; display: inline; }
.ft-powered a { color: rgba(255,255,255,0.35) !important; }
.ft-powered a:hover { color: rgba(255,255,255,0.7) !important; }

.ft-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    text-align: right;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .material-symbols-outlined { font-size: 26px; }

@media (max-width: 1024px) {
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ft-container { padding: 0 32px; }
}

@media (max-width: 768px) {
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ft-container { padding: 0 20px; }
    .ft-top { padding: 48px 0 32px; }
    .ft-bottom-row { grid-template-columns: 1fr; text-align: center; gap: 8px; }
    .ft-legal { justify-content: center; }
    .ft-copy { text-align: center; }
    .wood-overlay { height: 280px; }
}

@media (max-width: 480px) {
    .ft-grid { grid-template-columns: 1fr; gap: 28px; }
    .ft-form { flex-direction: column; }
    .ft-form input { border-right: 1px solid rgba(255,255,255,0.12); }
    .ft-form button { width: 100%; }
    .ft-social { justify-content: center; }
}


/* ----------------------------------------
   CONTACT PAGE — Locations & Social
   ---------------------------------------- */

.contact-locations {
    padding: 64px 0 32px;
}

.contact-locations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

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

.loc-card {
    padding: 40px 32px;
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.loc-card:hover {
    border-color: var(--secondary, #725b3f);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.loc-card-featured {
    background: var(--primary, #1a1a1a);
    color: #fff;
    border-color: var(--primary, #1a1a1a);
}

.loc-card-featured .loc-title { color: #fff; }
.loc-card-featured .loc-address { color: rgba(255,255,255,0.7); }
.loc-card-featured .loc-meta a { color: rgba(255,255,255,0.85); }
.loc-card-featured .loc-meta a:hover { color: var(--secondary, #c9a96e); }
.loc-card-featured .loc-icon { background: rgba(255,255,255,0.1); color: var(--secondary, #c9a96e); }
.loc-card-featured .loc-meta .material-symbols-outlined { color: var(--secondary, #c9a96e); }

.loc-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-off, #f9f9f8);
    color: var(--secondary, #725b3f);
}

.loc-icon .material-symbols-outlined {
    font-size: 32px;
}

.loc-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 16px;
}

.loc-address {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
    margin-bottom: 24px;
    min-height: 72px;
}

.loc-meta {
    border-top: 1px solid var(--outline, #e5e5e5);
    padding-top: 20px;
}

.loc-card-featured .loc-meta {
    border-top-color: rgba(255,255,255,0.15);
}

.loc-meta p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
    margin: 8px 0;
}

.loc-meta .material-symbols-outlined {
    font-size: 16px;
    color: var(--secondary, #725b3f);
}

.loc-meta a {
    color: var(--text-primary, #1a1a1a);
    transition: color 0.2s;
}

.loc-meta a:hover {
    color: var(--secondary, #725b3f);
}

/* Social Cards */
.contact-social-section {
    padding: 32px 0 64px;
}

.contact-social-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding, 48px);
}

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

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--surface-off, #f9f9f8);
    border: 1px solid var(--outline, #e5e5e5);
    transition: all 0.3s;
    text-decoration: none;
}

.social-card:hover {
    background: var(--primary, #1a1a1a);
    border-color: var(--primary, #1a1a1a);
}

.social-card:hover * {
    color: #fff !important;
}

.social-card .material-symbols-outlined {
    font-size: 32px;
    color: var(--secondary, #725b3f);
    transition: color 0.3s;
}

.social-card div { display: flex; flex-direction: column; }

.social-card strong {
    font-size: 15px;
    color: var(--text-primary, #1a1a1a);
    transition: color 0.3s;
}

.social-card span {
    font-size: 13px;
    color: var(--text-muted, #999);
    transition: color 0.3s;
}

/* Form Only (no sidebar info anymore) */
.contact-form-only {
    max-width: 760px;
    margin: 0 auto;
}

.contact-form-desc {
    text-align: center;
    color: var(--text-tertiary, #6b6b6b);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .loc-grid { grid-template-columns: 1fr; gap: 16px; }
    .social-cards { grid-template-columns: 1fr; }
    .loc-address { min-height: auto; }
}


/* ========================================
   77. SHOP FEATURES — Wishlist, Compare, Share, Reviews
   ======================================== */

/* Header Icons (wishlist + compare) */
.header-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-primary, #1a1a1a);
    text-decoration: none;
    transition: color 0.2s;
}
.header-icon:hover { color: var(--secondary, #725b3f); }
.header-icon .material-symbols-outlined { font-size: 22px; }
.header-icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--text-muted, #b0b0b0);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.header-icon-badge.has-items { background: var(--secondary, #725b3f); }

/* Product Detail — Rating */
.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-tertiary, #6b6b6b);
}
.rating-stars { display: inline-flex; gap: 2px; font-size: 18px; line-height: 1; color: #d4d4d4; }
.rating-stars .star.filled { color: #f59e0b; }
.rating-text strong { color: var(--text-primary, #1a1a1a); font-size: 15px; }
.rating-link { color: var(--secondary, #725b3f); text-decoration: none; }
.rating-link:hover { text-decoration: underline; }

/* Product Actions — Wishlist + Compare */
.product-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}
.product-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--outline, #e5e5e5);
    color: var(--text-primary, #1a1a1a);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s;
}
.product-action-btn:hover {
    border-color: var(--secondary, #725b3f);
    color: var(--secondary, #725b3f);
}
.product-action-btn.active {
    background: var(--secondary, #725b3f);
    border-color: var(--secondary, #725b3f);
    color: #fff;
}
.product-action-btn .material-symbols-outlined { font-size: 18px; }
.product-action-btn.active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

/* Product Share Buttons (Simple Icons stili - clean SVG) */
.product-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.share-label {
    font-size: 11px;
    color: var(--text-muted, #999);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-right: 8px;
}
.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    color: var(--text-tertiary, #6b6b6b);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border-radius: 0;
}
.share-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s;
}
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.share-btn:hover svg { transform: scale(1.1); }
.share-facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-x:hover { background: #000; color: #fff; border-color: #000; }
.share-pinterest:hover { background: #E60023; color: #fff; border-color: #E60023; }
.share-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
.share-linkedin:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.share-email:hover { background: var(--secondary, #725b3f); color: #fff; border-color: var(--secondary, #725b3f); }
.share-copy:hover { background: var(--secondary, #725b3f); color: #fff; border-color: var(--secondary, #725b3f); }

/* Reviews Tab Content */
.reviews-content { max-width: 1100px; }
.reviews-summary {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding: 32px;
    background: var(--surface-light, #f7f3eb);
    margin-bottom: 40px;
    align-items: center;
}
.reviews-summary-avg { text-align: center; }
.avg-number {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 64px;
    line-height: 1;
    color: var(--text-primary, #1a1a1a);
}
.avg-stars { display: inline-flex; gap: 2px; font-size: 22px; color: #d4d4d4; margin-top: 8px; }
.avg-stars .star.filled { color: #f59e0b; }
.avg-count { margin-top: 8px; font-size: 13px; color: var(--text-muted, #999); }

.reviews-summary-bars { display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row {
    display: grid;
    grid-template-columns: 40px 1fr 36px;
    gap: 12px;
    align-items: center;
    font-size: 13px;
}
.rb-label { color: var(--text-muted, #999); }
.rb-track { height: 8px; background: #e5e5e5; overflow: hidden; }
.rb-fill { height: 100%; background: #f59e0b; transition: width 0.4s; }
.rb-count { text-align: right; color: var(--text-muted, #999); }

.reviews-list { margin-bottom: 48px; }
.reviews-list-title {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    margin: 0 0 24px;
    color: var(--text-primary, #1a1a1a);
}
.reviews-empty {
    padding: 40px;
    text-align: center;
    color: var(--text-muted, #999);
    background: var(--surface-light, #f7f3eb);
}
.review-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}
.review-item:last-child { border-bottom: none; }
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.review-author { font-weight: 600; color: var(--text-primary, #1a1a1a); }
.review-stars { display: inline-flex; gap: 1px; font-size: 14px; color: #d4d4d4; }
.review-stars .star.filled { color: #f59e0b; }
.review-date { font-size: 12px; color: var(--text-muted, #999); }
.review-title {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0 4px;
    color: var(--text-primary, #1a1a1a);
}
.review-comment {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-tertiary, #6b6b6b);
    margin: 0;
}

/* Review Form */
.review-form-wrapper {
    padding: 32px;
    background: var(--surface-light, #f7f3eb);
    border-left: 3px solid var(--secondary, #725b3f);
}
.review-form-wrapper h3 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 22px;
    margin: 0 0 4px;
    color: var(--text-primary, #1a1a1a);
}
.review-form-note { font-size: 13px; color: var(--text-muted, #999); margin: 0 0 24px; }
.review-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-form .form-group { margin-bottom: 16px; }
.review-form label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted, #999);
    margin-bottom: 6px;
    font-weight: 600;
}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--outline, #e5e5e5);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary, #1a1a1a);
}
.review-form textarea { resize: vertical; min-height: 100px; }
.review-form input:focus,
.review-form textarea:focus { outline: none; border-color: var(--secondary, #725b3f); }

/* Rating star picker */
.rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 32px;
}
.rating-input input { display: none; }
.rating-input label {
    color: #d4d4d4;
    cursor: pointer;
    margin: 0 2px;
    transition: color 0.15s;
    text-transform: none;
    letter-spacing: 0;
    font-size: 32px;
    line-height: 1;
}
.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label { color: #f59e0b; }

.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.btn-submit-review {
    padding: 12px 32px;
    background: var(--text-primary, #1a1a1a);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit-review:hover:not(:disabled) { background: var(--secondary, #725b3f); }
.btn-submit-review:disabled { opacity: 0.6; cursor: not-allowed; }
.review-form-status { font-size: 13px; }
.review-form-status.success { color: #059669; }
.review-form-status.error { color: #dc2626; }

/* === WISHLIST PAGE === */
.wishlist-page { padding: 48px 0 80px; }
.wishlist-page .container { max-width: 1320px; padding: 0 48px; }
.wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}
.wishlist-header h1 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 36px;
    margin: 0 0 4px;
    color: var(--text-primary, #1a1a1a);
}
.wishlist-subtitle { color: var(--text-muted, #999); font-size: 14px; margin: 0; }
.btn-clear-wishlist, .btn-clear-compare {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--outline, #e5e5e5);
    color: var(--text-tertiary, #6b6b6b);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-clear-wishlist:hover, .btn-clear-compare:hover { color: #dc2626; border-color: #dc2626; }
.wishlist-empty, .compare-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}
.wishlist-empty .material-symbols-outlined,
.compare-empty .material-symbols-outlined { font-size: 72px; color: #d4d4d4; margin-bottom: 16px; }
.wishlist-empty h2, .compare-empty h2 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 24px;
    margin: 0 0 8px;
    color: var(--text-primary, #1a1a1a);
}
.wishlist-empty p, .compare-empty p { color: var(--text-muted, #999); margin-bottom: 24px; }
.wishlist-loading, .compare-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    color: var(--text-muted, #999);
}
.spin { animation: spin 1s linear infinite; font-size: 32px; }
@keyframes spin { to { transform: rotate(360deg); } }

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.wp-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.wp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.wp-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--outline, #e5e5e5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.wp-remove:hover { background: #dc2626; color: #fff; border-color: #dc2626; }
.wp-remove .material-symbols-outlined { font-size: 18px; }
.wp-link { display: block; text-decoration: none; color: inherit; }
.wp-image { aspect-ratio: 4/5; overflow: hidden; background: var(--surface-light, #f7f3eb); }
.wp-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.wp-card:hover .wp-image img { transform: scale(1.05); }
.wp-no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.wp-no-image .material-symbols-outlined { font-size: 64px; color: #d4d4d4; }
.wp-info { padding: 16px; }
.wp-category { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary, #725b3f); }
.wp-title { font-family: var(--font-heading, 'Noto Serif', serif); font-size: 17px; font-weight: 500; margin: 6px 0 8px; line-height: 1.3; color: var(--text-primary, #1a1a1a); }
.wp-price { font-size: 16px; font-weight: 600; color: var(--text-primary, #1a1a1a); margin: 0; }
.wp-price-cta { font-size: 13px; color: var(--secondary, #725b3f); margin: 0; }
.wp-actions { display: flex; gap: 0; border-top: 1px solid var(--outline, #e5e5e5); }
.wp-cta {
    flex: 1;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    color: var(--text-primary, #1a1a1a);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.wp-cta:hover { background: var(--surface-light, #f7f3eb); }
.wp-compare {
    width: 44px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--outline, #e5e5e5);
    cursor: pointer;
    color: var(--text-tertiary, #6b6b6b);
    transition: all 0.2s;
}
.wp-compare:hover { background: var(--secondary, #725b3f); color: #fff; }
.wp-compare.active { background: var(--secondary, #725b3f); color: #fff; }

/* === COMPARE PAGE === */
.compare-page { padding: 48px 0 100px; }
.compare-page .container { max-width: 1440px; padding: 0 48px; }
.compare-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}
.compare-header h1 {
    font-family: var(--font-heading, 'Noto Serif', serif);
    font-size: 36px;
    margin: 0 0 4px;
    color: var(--text-primary, #1a1a1a);
}
.compare-subtitle { color: var(--text-muted, #999); font-size: 14px; margin: 0; }

.compare-table-wrapper { overflow-x: auto; }
.cmp-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
    max-width: 100%;
    /* Her kolon max 280px (4 ürün × 280 + 60 gap = 1180px) */
    justify-content: start;
}
.cmp-col {
    position: relative;
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    padding: 20px;
    text-align: center;
    max-width: 280px;
    min-width: 0;
}
.cmp-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--outline, #e5e5e5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cmp-remove:hover { background: #dc2626; color: #fff; border-color: #dc2626; }
.cmp-remove .material-symbols-outlined { font-size: 16px; }
.cmp-image {
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 280px;
    overflow: hidden;
    background: var(--surface-light, #f7f3eb);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cmp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cmp-no-image { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.cmp-no-image .material-symbols-outlined { font-size: 56px; color: #d4d4d4; }
.cmp-title { font-family: var(--font-heading, 'Noto Serif', serif); font-size: 17px; font-weight: 500; margin: 0 0 6px; }
.cmp-title a { color: var(--text-primary, #1a1a1a); text-decoration: none; }
.cmp-title a:hover { color: var(--secondary, #725b3f); }
.cmp-category { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary, #725b3f); margin: 0 0 8px; }
.cmp-price { font-size: 16px; font-weight: 600; color: var(--text-primary, #1a1a1a); margin: 0 0 16px; }
.cmp-cta {
    display: inline-block;
    padding: 8px 20px;
    background: var(--text-primary, #1a1a1a);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.cmp-cta:hover { background: var(--secondary, #725b3f); }

.cmp-rows { border-top: 1px solid var(--outline, #e5e5e5); }
.cmp-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--outline, #e5e5e5);
}
.cmp-row:nth-child(even) { background: var(--surface-off, #f9f9f8); }
.cmp-row-label {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary, #1a1a1a);
    border-right: 1px solid var(--outline, #e5e5e5);
}
.cmp-row-cells { display: grid; gap: 0; }
.cmp-cell {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-tertiary, #6b6b6b);
    border-left: 1px solid var(--outline, #e5e5e5);
}
.cmp-cell:first-child { border-left: none; }
.cmp-na { color: #d4d4d4; }

/* === COMPARE BAR (sticky bottom) === */
.compare-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100px;
    background: var(--text-primary, #1a1a1a);
    color: #fff;
    padding: 16px 0;
    z-index: 50;
    transition: bottom 0.4s;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.compare-bar.active { bottom: 0; }
.compare-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.compare-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.compare-bar-info .material-symbols-outlined { color: #f59e0b; }
.compare-bar-text strong { font-size: 18px; color: #fff; margin-right: 4px; }
.compare-bar-actions { display: flex; align-items: center; gap: 12px; }
.compare-bar-clear {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}
.compare-bar-clear:hover { background: rgba(255,255,255,0.1); }
.compare-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f59e0b;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}
.compare-bar-cta:hover { background: #d97706; color: #fff; }

/* === TOAST === */
.forma-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.forma-toast {
    padding: 12px 20px;
    background: var(--text-primary, #1a1a1a);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s;
    min-width: 240px;
}
.forma-toast.show { transform: translateX(0); }
.forma-toast-success { background: #059669; }
.forma-toast-warning { background: #f59e0b; }
.forma-toast-error { background: #dc2626; }

/* Responsive */
@media (max-width: 1024px) {
    .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-summary { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .reviews-summary-bars { max-width: 400px; margin: 0 auto; }
    .review-form .form-row { grid-template-columns: 1fr; }
    .cmp-row { grid-template-columns: 140px 1fr; }
    .product-share { gap: 6px; }
}
@media (max-width: 768px) {
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
    .wishlist-page .container,
    .compare-page .container { padding: 0 16px; }
    .product-actions { flex-direction: column; gap: 8px; }
    .cmp-row { grid-template-columns: 1fr; }
    .cmp-row-label { border-right: none; border-bottom: 1px solid var(--outline, #e5e5e5); }
    .compare-bar-inner { padding: 0 16px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .wishlist-grid { grid-template-columns: 1fr; }
    .header-icon { width: 36px; height: 36px; }
    .phone-text { display: none; }
}


/* ========================================
   END OF MOBILART STYLE.CSS
   ======================================== */
