/*
 * Nil Eşarp — Luxury E-Commerce
 * Modern Redesign: Cormorant Garamond + Inter
 * Colors: Deep Black, Warm Gold, Cream
 */

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

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #A3852B;
    --black: #0A0A0A;
    --dark: #111111;
    --dark-2: #1C1C1C;
    --gray: #6B6B6B;
    --gray-light: #B8B8B8;
    --cream: #FAF8F4;
    --cream-2: #F3F0EA;
    --white: #FFFFFF;
    --border: #E8E4DC;
    --border-dark: #2A2A2A;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .10);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .15);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, .25);

    --transition: all .35s cubic-bezier(.25, .46, .45, .94);
    --transition-fast: all .2s ease;

    --radius: 4px;
    --radius-lg: 12px;
    --max-width: 1280px;
    --header-h: 72px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ─── Safe Area (iPhone notch/home bar) ─────────────────── */
.site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.mobile-nav {
    padding-left: max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
}

.sticky-social {
    right: max(24px, env(safe-area-inset-right));
    bottom: max(32px, env(safe-area-inset-bottom));
}

/* ─── Touch / Tap iyileştirmeleri ───────────────────────── */
a,
button {
    -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select {
    -webkit-appearance: none;
    border-radius: 0;
    font-size: 16px;
}

/* 16px altı font-size iOS'ta zoom trigger eder — input'larda 16px zorunlu */

/* ─── Dokunmatik kaydırma ────────────────────────────────── */
.gallery-thumbs,
.mobile-nav {
    -webkit-overflow-scrolling: touch;
}

/* ─── Image drag engelle ─────────────────────────────────── */
img {
    -webkit-user-drag: none;
    user-select: none;
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, .5);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
    }
}

@keyframes spinY {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* AOS-like scroll animations */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

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

[data-aos="fade-left"] {
    transform: translateX(40px);
}

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

[data-aos="zoom-in"] {
    transform: scale(.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    font-weight: 600;
}

.section-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-top: 16px;
}

.section-title.center::after {
    margin: 16px auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    color: var(--gray);
    margin-top: 12px;
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

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

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

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--cream);
    color: var(--dark);
}

.btn-icon {
    padding: 13px 16px;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── Top Bar ────────────────────────────────────────────── */
.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.top-bar-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.top-bar-track span {
    flex-shrink: 0;
}

.top-bar-track span i {
    color: var(--gold);
    margin-right: 6px;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(250, 248, 244, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, .12);
    transition: var(--transition);
    height: var(--header-h);
}

.site-header.scrolled {
    background: rgba(250, 248, 244, .99);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
    height: 64px;
}

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

/* ── Logo ── */
.header-logo {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-logo a {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: color .25s;
    white-space: nowrap;
}

.header-logo a span {
    color: var(--gold);
}

.header-logo a:hover {
    color: var(--gold);
}

/* ── Desktop Nav (left) ── */
.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a {
    display: flex; align-items: center; gap: 6px; padding: 12px 12px;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--dark); transition: .3s;
}
.nav-item:hover > a { color: var(--gold); }
.nav-item:hover > a i { transform: rotate(180deg); }

/* ── Multi-Level Dropdown ── */
.nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    list-style: none; padding: 10px 0; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); z-index: 999;
    border-top: 2px solid var(--gold); border-radius: 0 0 8px 8px;
}
.nav-item:hover > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown li { position: relative; }
.nav-dropdown a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 24px; color: var(--dark); font-size: 14px;
    font-weight: 500; transition: .2s; border-bottom: 1px solid #f9f9f9;
}
.nav-dropdown li:last-child > a { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: #faf8f4; padding-left: 28px; }

/* Sub-Dropdown (Flyout) */
.nav-sub-dropdown {
    position: absolute; top: 0; left: 100%; min-width: 220px;
    background: #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    list-style: none; padding: 10px 0; margin: 0;
    opacity: 0; visibility: hidden; transform: translateX(10px);
    transition: all 0.3s ease; border-left: 2px solid var(--gold);
    border-radius: 0 8px 8px 8px;
}
.nav-dropdown li.has-sub:hover > .nav-sub-dropdown {
    opacity: 1; visibility: visible; transform: translateX(0);
}
.nav-sub-dropdown a { font-size: 13.5px; }

/* ── Mobile Nav (Accordion) ── */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background: #fff; z-index: 2000; transition: .5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 100px 32px 50px; overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { display: flex; flex-direction: column; gap: 5px; }
.mob-link { 
    display: block; padding: 18px 0; border-bottom: 1px solid #eee;
    font-size: 18px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 2px;
}
.mob-item { border-bottom: 1px solid #eee; }
.mob-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.mob-header a { font-size: 18px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 2px; }
.mob-toggle {
    background: none; border: 1px solid #ddd; width: 32px; height: 32px;
    border-radius: 50%; color: var(--gold); cursor: pointer; transition: .3s;
    display: flex; align-items: center; justify-content: center;
}
.mob-body { display: none; padding-left: 20px; padding-bottom: 15px; }
.mob-sub-item { margin-top: 10px; border-left: 2px solid #f0f0f0; padding-left: 20px; }
.mob-sub-item .mob-header a { font-size: 16px; color: var(--gold); letter-spacing: 1px; }
.mob-deep-link {
    display: block; padding: 10px 0; font-size: 15px; color: #666;
    border-bottom: 1px dashed #eee; font-weight: 500;
}
.mob-deep-link:last-child { border: none; }
.mob-social { display: flex; gap: 25px; margin-top: 50px; justify-content: center; padding-top: 30px; border-top: 1px solid #eee; }
.mob-social a { font-size: 26px; color: var(--dark); transition: .3s; }
.mob-social a:hover { color: var(--gold); }

/* ── Hamburger ── */
.menu-toggle {
    display: none;
    background: none; border: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 4px; padding: 0; cursor: pointer;
}
.menu-toggle span {
    display: block; width: 20px; height: 2px; border-radius: 2px;
    background: var(--dark); transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
    .header-nav { display: none; }
    .mega-menu { display: none; }
    .menu-toggle { display: flex; order: -1; margin-right: auto; }
    .header-actions { width: 100%; justify-content: flex-end; }
}

/* ── Search Overlay ── */
.search-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(250, 248, 244, 0.98); backdrop-filter: blur(15px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-inner {
    width: 100%; max-width: 800px; padding: 0 40px; position: relative;
    transform: translateY(30px); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-overlay.open .search-inner { transform: translateY(0); }
.search-form { display: flex; align-items: center; border-bottom: 2px solid var(--dark); padding-bottom: 15px; }
.search-form input {
    flex: 1; background: none; border: none;
    font-family: var(--font-heading); font-size: clamp(24px, 5vw, 42px);
    color: var(--dark); font-weight: 500; outline: none; padding: 0;
}
.search-close {
    position: absolute; top: -60px; right: 40px;
    background: none; border: none; font-size: 30px; color: var(--dark);
    cursor: pointer; transition: transform .3s;
}
.search-close:hover { transform: rotate(90deg); color: var(--gold); }

/* ── Header Actions (right) ── */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.header-actions .action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: var(--dark);
    font-size: 17px;
    transition: color .2s, background .2s;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.header-actions .action-btn:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--gold);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    letter-spacing: 0;
}



/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    height: calc(100vh - var(--header-h));
    min-height: 560px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .2) 0%,
            rgba(0, 0, 0, .5) 60%,
            rgba(0, 0, 0, .7) 100%);
}

.page-header {
    background-color: var(--dark) !important;
    padding: 40px 0 !important;
    min-height: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: var(--white) !important;
    margin-bottom: 40px !important;
}

.page-header h1 {
    margin: 0 !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 24px;
    animation: fadeInUp .9s ease both;
}

.hero-content .section-label {
    color: rgba(201, 168, 76, .9);
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    margin-bottom: 16px;
}

.hero-content p {
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: .5px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Hero Slider Dots ───────────────────────────────────── */
.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 2s ease 1s both;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .4);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ─── Marquee / Features Bar ─────────────────────────────── */
.features-bar {
    background: var(--dark);
    padding: 16px 0;
    overflow: hidden;
}

.features-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.features-track span {
    flex-shrink: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-track span i {
    color: var(--gold);
}

/* ─── Categories Section ─────────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

/* 5-item layout: large item spans 2 rows, 4 small items fill 2x2 on right */
.categories-grid .category-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.categories-grid .category-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.categories-grid .category-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.categories-grid .category-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.categories-grid .category-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.category-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--dark);
    border-radius: var(--radius);
}

/* ─── No-image Placeholder ───────────────────────────────── */
.product-no-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cream);
    color: var(--gray);
    font-size: 2rem;
}

.product-thumb .product-no-image {
    position: absolute;
    inset: 0;
    min-height: 0;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.25, .46, .45, .94);
    filter: brightness(.85);
}

.category-item:hover img {
    transform: scale(1.08);
    filter: brightness(.7);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px 24px;
    color: var(--white);
    transition: var(--transition);
}

.category-item:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .1) 60%);
}

.category-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.category-overlay span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.category-item:hover .category-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.category-overlay span i {
    font-size: 12px;
}

/* ─── Products Grid ──────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

.product-card {
    background: var(--white);
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1 !important;
    background: var(--cream-2);
}

.product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

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

.product-thumb .img-secondary {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--dark);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}

.product-badge.new {
    background: var(--gold);
}

.product-badge.sale {
    background: #C0392B;
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    display: flex;
    gap: 8px;
    transform: translateY(100%);
    transition: transform .35s ease;
    z-index: 2;
}

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

.product-actions button {
    flex: 1;
    background: var(--white);
    color: var(--dark);
    border: none;
    padding: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.product-actions button:hover {
    background: var(--gold);
    color: var(--white);
}

.product-actions .btn-wishlist {
    flex: 0;
    width: 40px;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.product-actions .btn-wishlist:hover {
    background: var(--gold);
    color: var(--white);
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-info .brand {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 6px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
}

.product-price .old-price {
    font-size: 13px;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-right: 8px;
}

.product-price .sale-price {
    color: #C0392B;
}

/* ─── Product Detail Page ─────────────────────────────────── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.gallery-main {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--cream-2);
    margin-bottom: 12px;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
    border: 1.5px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

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

.product-info-detail .breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 16px;
}

.product-info-detail .breadcrumb a:hover {
    color: var(--gold);
}

.product-info-detail .breadcrumb i {
    font-size: 8px;
}

.product-info-detail h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 8px;
    font-weight: 700;
}

.product-info-detail .brand-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.product-info-detail .price-area {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-info-detail .price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
}

.product-info-detail .description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}

.product-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    width: fit-content;
    margin-bottom: 20px;
}

.product-quantity button {
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 18px;
    color: var(--dark);
    transition: background .2s;
}

.product-quantity button:hover {
    background: var(--cream-2);
}

.product-quantity input {
    width: 56px;
    height: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    background: transparent;
}

.product-add-btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 13px;
    margin-bottom: 12px;
}

.product-whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 13px;
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.product-whatsapp-btn:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-1px);
}

.product-cart-nav-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 12px;
    background: var(--dark);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 12px;
}

.product-cart-nav-btn:hover {
    background: var(--black);
    transform: translateY(-1px);
}

.product-meta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-meta strong {
    color: var(--dark);
}

.product-share {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
}

.product-share a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    transition: var(--transition-fast);
}

.product-share a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Category / Shop Page ───────────────────────────────── */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.shop-filters {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    background: var(--white);
    padding: 24px;
    border: 1px solid var(--border);
}

.filter-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
    padding: 4px 0;
    transition: color .2s;
}

.filter-group label:hover {
    color: var(--dark);
}

.filter-group input[type="checkbox"] {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.shop-count {
    font-size: 13px;
    color: var(--gray);
}

.shop-count strong {
    color: var(--dark);
}

.shop-sort select {
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 12px;
    background: var(--white);
    cursor: pointer;
    outline: none;
    font-family: var(--font-body);
}

/* ─── Cart Page ──────────────────────────────────────────── */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* JS display:'' ile inline style kaldırılınca CSS'deki display devreye girer */
#cartContainer {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

#cartContainer.hidden {
    display: none;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    padding: 12px 16px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-table td:first-child {
    min-width: 320px;
}

.cart-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

.cart-item-info .item-brand {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
}

.cart-qty button {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: var(--dark);
    transition: background .2s;
}

.cart-qty button:hover {
    background: var(--cream-2);
}

.cart-qty span {
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 16px;
    transition: color .2s;
}

.cart-remove:hover {
    color: #C0392B;
}

.cart-empty {
    text-align: center;
    padding: 80px 24px;
}

.cart-empty i {
    font-size: 48px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cart-empty p {
    color: var(--gray);
    margin-bottom: 28px;
}

.cart-summary {
    background: var(--white);
    padding: 28px;
    border: 1px solid var(--border);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.cart-summary h3 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row.total {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    padding-top: 16px;
    border-top: 2px solid var(--border);
}

.cart-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    line-height: 1.6;
}

.btn-whatsapp-order {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #25D366;
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    margin-top: 20px;
}

.btn-whatsapp-order:hover {
    background: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ─── Instagram Feed ─────────────────────────────────────── */
.instagram-section {
    background: var(--white);
}

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

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .3s ease;
}

.insta-item:hover img {
    transform: scale(1.08);
    filter: brightness(.65);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 28px;
    color: var(--white);
}

/* ─── Trust Badges ───────────────────────────────────────── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--white);
}

.trust-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.trust-item i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.trust-item h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-item p {
    font-size: 13px;
    color: var(--gray);
}

/* ─── Newsletter ─────────────────────────────────────────── */
.newsletter-section {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: 12px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .2);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 13px;
    outline: none;
}

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

.newsletter-form button {
    padding: 14px 28px;
    background: var(--gold);
    border: none;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    font-family: var(--font-body);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

/* ─── Sticky Buttons ─────────────────────────────────────── */
.sticky-social {
    position: fixed;
    bottom: 40px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 990;
}

.sticky-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sticky-social-btn:hover {
    transform: scale(1.1) translateY(-2px);
    color: var(--white);
}

.sticky-social-btn.whatsapp {
    background: #25D366;
    animation: pulse-gold 2.5s infinite;
}

.sticky-social-btn.whatsapp {
    animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.sticky-social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .65);
}

.footer-top {
    padding: 72px 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col .contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .5);
}

.footer-col .contact-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--gray);
}

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

.breadcrumb i {
    font-size: 8px;
}

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,168,76,0.1)" stroke-width="1"/></svg>') center/80px repeat;
    opacity: .3;
}

.page-hero h1 {
    font-size: clamp(28px, 5vw, 56px);
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, .6);
    margin-top: 12px;
    position: relative;
}

/* ─── Utility Classes ────────────────────────────────────── */
.text-gold {
    color: var(--gold);
}

.text-gray {
    color: var(--gray);
}

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

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

/* ─── AOS (Animate on Scroll) ────────────────────────────── */
[data-aos] {
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-in"] {
    transform: none;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="600"] {
    transition-delay: 0.6s;
}

[data-aos-delay="800"] {
    transition-delay: 0.8s;
}

/* ─── Alert Messages ─────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ─── Toast Notification ─────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9999;
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    font-size: 13px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateX(200%);
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
    max-width: 300px;
    cursor: pointer;
}

.toast:hover {
    background: var(--dark-2);
    transform: scale(1.02);
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: var(--gold);
    margin-right: 8px;
}

/* ─── Loading Skeleton ───────────────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--cream-2) 25%, var(--border) 50%, var(--cream-2) 75%);
    background-size: 1000px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
   Breakpoints: 1200 · 991 · 768 · 480 · 360
   ═══════════════════════════════════════════════════════════ */

/* ─── Touch cihazlarda hover-only içerikler görünsün ─────── */
@media (hover: none) {

    /* Ürün kartı butonları her zaman görünür */
    .product-actions {
        transform: translateY(0) !important;
        background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
    }

    /* Add-to-cart butonu her zaman görünür */
    .add-to-cart-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Dropdown hover yerine JS ile açılacak */
    .nav-dropdown {
        display: none;
    }
}

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

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .categories-grid .category-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 300px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

/* ─── 991px (Tablet) ─────────────────────────────────────── */
@media (max-width: 991px) {
    :root {
        --header-h: 64px;
    }


    /* Grid düzeltmeleri */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
        display: none;
    }

    .shop-filters.open {
        display: block;
    }

    .cart-layout,
    #cartContainer {
        grid-template-columns: 1fr !important;
    }

    .cart-summary {
        position: static;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Section padding */
    .section {
        padding: 56px 0;
    }

    .section-sm {
        padding: 32px 0;
    }

    /* Kategori kartları */
    .categories-grid .category-item:nth-child(1) {
        height: 320px;
    }

    /* Ürün detay */
    .product-share {
        flex-wrap: wrap;
    }
}

/* ─── 768px (Büyük Mobil) ────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --header-h: 58px;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Header logo küçüt */
    .header-logo a {
        font-size: 20px;
        letter-spacing: 3px;
    }

    /* Hero */
    .hero {
        height: 80vh;
        min-height: 420px;
        max-height: none;
    }

    .hero-content h1 {
        font-size: clamp(32px, 9vw, 52px);
    }

    .hero-content p {
        font-size: 14px;
        padding: 0 8px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Kategoriler */
    .categories-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .categories-grid .category-item {
        display: block !important;
        width: 100% !important;
        height: 320px !important;
        margin-bottom: 16px !important;
        position: relative;
    }

    .category-overlay h3 {
        font-size: 26px !important;
    }

    /* Ürünler */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-info {
        padding: 10px 12px 14px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .product-price {
        font-size: 15px;
    }

    /* Shop / Kategori sayfası */
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #filterToggle {
        display: inline-flex !important;
    }

    .shop-filters {
        display: none;
    }

    .shop-filters.open {
        display: block;
    }

    /* Sepet tablosu → kart görünümü */
    .cart-table {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: block;
    }

    .cart-table tr {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
        align-items: center;
        position: relative;
    }

    .cart-table td {
        padding: 0;
        border: none;
        display: block;
    }

    /* Görsel & Başlık */
    .cart-table td:nth-child(1) {
        grid-column: 1 / 3;
    }

    /* Fiyat - Mobilde gizleyip sadece toplamı gösterebiliriz */
    .cart-table td:nth-child(2) {
        display: none !important;
    }

    /* Adet */
    .cart-table td:nth-child(3) {
        grid-column: 1;
        justify-self: start;
    }

    /* Toplam Tutar */
    .cart-table td:nth-child(4) {
        grid-column: 2;
        justify-self: end;
        font-size: 16px;
        color: var(--dark);
    }

    /* Sil Butonu Mükemmel Konum */
    .cart-table td:nth-child(5) {
        position: absolute;
        top: 20px;
        right: 0;
    }

    .cart-table td:nth-child(6) {
        display: none !important;
    }

    .cart-item-img {
        width: 72px !important;
        height: 72px !important;
    }

    .cart-item-info {
        display: flex;
        gap: 14px;
        align-items: center;
        max-width: 85%;
    }

    .cart-item-info h4 {
        font-size: 14px;
        line-height: 1.4;
        padding-right: 10px;
    }

    /* Sepet özet */
    .cart-summary {
        padding: 20px 16px;
    }

    /* Ürün detay */
    .product-info-detail .price {
        font-size: 28px;
    }

    .product-quantity button {
        width: 40px;
        height: 40px;
    }

    .product-add-btn {
        padding: 15px;
    }

    .product-whatsapp-btn {
        padding: 15px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trust-item {
        padding: 20px 14px;
    }

    .trust-item i {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .trust-item h4 {
        font-size: 12px;
    }

    .trust-item p {
        font-size: 11px;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .insta-item:nth-child(5) {
        display: none !important;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 48px 0;
    }

    .newsletter-section h2 {
        font-size: clamp(20px, 5vw, 32px);
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input {
        padding: 14px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px;
    }

    /* Footer */
    .footer-top {
        display: block !important;
        padding: 48px 0 !important;
        text-align: center !important;
    }

    .footer-brand {
        margin-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-brand p {
        max-width: 100% !important;
        margin: 12px auto 24px !important;
        text-align: center !important;
    }

    .footer-social {
        justify-content: center !important;
        margin-bottom: 0 !important;
    }

    .footer-col {
        margin-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-col:last-child {
        margin-bottom: 0 !important;
    }

    .footer-col h4 {
        margin-bottom: 16px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-col ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .footer-col ul li {
        margin-bottom: 10px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .footer-col .contact-item {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        padding: 32px 0 !important;
    }

    /* Features bar hız */
    .features-track {
        animation-duration: 20s;
    }

    /* Sticky social — Mobilde çok daha belirgin ve yukarıda (Safari/Chrome barı dahil) */
    .sticky-social {
        bottom: 80px !important;
        right: 24px !important;
        gap: 15px !important;
    }

    .sticky-social-btn {
        width: 54px !important;
        height: 54px !important;
        font-size: 24px !important;
    }

    /* Toast */
    /* Toast - Üstte çıksın ki butonlarla çakışmasın */
    .toast {
        right: 12px;
        left: 12px;
        max-width: none;
        bottom: auto;
        top: 10px;
    }

    /* Search mobile */
    .search-close {
        top: -60px;
        right: 0;
    }

    .search-inner {
        padding: 0 20px;
    }

    /* Section başlıklar */
    .section-header {
        margin-bottom: 32px;
    }

    .section {
        padding: 48px 0;
    }

    /* Page hero */
    .page-hero {
        padding: 40px 0;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* ─── 480px (Küçük Mobil) ────────────────────────────────── */
@media (max-width: 480px) {
    :root {
        --header-h: 54px;
    }

    /* Header */
    .header-logo a {
        font-size: 18px;
        letter-spacing: 2.5px;
    }

    .header-actions {
        gap: 2px;
    }

    .header-actions .action-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* Hero */
    .hero {
        height: 85vh;
        min-height: 380px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 10vw, 42px);
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
    }

    /* Ürünler — 2 kolon küçük */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-thumb {
        aspect-ratio: 1/1 !important;
    }

    /* Kategori */
    .category-item {
        height: 200px !important;
    }

    .category-overlay h3 {
        font-size: 18px;
    }

    /* Trust — tek kolon */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 16px 10px;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Mobile nav */
    .mobile-nav>a,
    .mobile-nav .mobile-cat-toggle {
        font-size: 26px;
        letter-spacing: 1px;
    }

    /* Sepet */
    .cart-table tr {
        grid-template-columns: 64px 1fr;
    }

    .cart-table td:nth-child(4) {
        grid-column: 2;
        grid-row: auto;
    }

    .cart-item-img {
        width: 64px !important;
        height: 64px !important;
    }

    /* Ürün detay */
    .product-detail {
        gap: 24px;
    }

    .gallery-thumb {
        width: 64px;
        height: 64px;
    }

    /* Section */
    .section {
        padding: 36px 0;
    }

    .section-sm {
        padding: 24px 0;
    }

    .container {
        padding: 0 14px;
    }

    /* Sticky butonlar sepet butonuyla çakışmasın (Mini mobil) */
    .sticky-social {
        bottom: 90px !important;
        right: 20px !important;
    }
}

/* ─── 360px (Çok Küçük) ──────────────────────────────────── */
@media (max-width: 360px) {
    .header-logo a {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

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

    .product-info {
        padding: 8px 10px 12px;
    }

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

    .container {
        padding: 0 12px;
    }
}