/* QR Menu - Ana Stil Dosyası */
:root {
    --primary: #d4a373;
    --primary-dark: #b8864e;
    --secondary: #1a1a2e;
    --bg: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --text: #f0f0f0;
    --text-muted: #8a8a9a;
    --border: #2a2a3e;
    --success: #4caf50;
    --danger: #ef5350;
    --warning: #ff9800;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ══════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Spinning ring */
.loader__ring {
    width: 52px;
    height: 52px;
    position: relative;
}
.loader__ring-arc {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid transparent;
}
.loader__ring-arc:nth-child(1) {
    border-top-color: var(--primary);
    animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader__ring-arc:nth-child(2) {
    border-right-color: var(--primary);
    opacity: 0.4;
    animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite -0.3s;
}
.loader__ring-arc:nth-child(3) {
    border-bottom-color: var(--primary);
    opacity: 0.15;
    animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite -0.6s;
}
@keyframes loader-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bouncing dots */
.loader__dots {
    display: flex;
    gap: 6px;
}
.loader__dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    animation: loader-bounce 1.4s ease-in-out infinite;
}
.loader__dots span:nth-child(2) { animation-delay: 0.16s; }
.loader__dots span:nth-child(3) { animation-delay: 0.32s; }
@keyframes loader-bounce {
    0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.2); }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--secondary);
    z-index: 1000;
    transition: left 0.3s ease;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.sidebar.open { left: 0; }
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sidebar-overlay.show { opacity: 1; visibility: visible; }
.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: center;
}
.sidebar-header a { display: block; }
.sidebar-logo { max-height: 160px; }
.sidebar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.sidebar-categories { padding: 4px 0; }
.sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 4px 0;
    scrollbar-width: none;
}
.sidebar-scroll::-webkit-scrollbar { display: none; }
.sidebar-footer {
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    padding: 4px 0;
}
.sidebar-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 20px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.sidebar-cat-item:hover, .sidebar-cat-item.active {
    background: var(--bg-card-hover);
    border-left-color: var(--primary);
}
.sidebar-cat-item.sub-item { padding-left: 44px; font-size: 0.9rem; }
.sidebar-cat-img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
}
.sidebar-cat-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(212,163,115,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.sidebar-cat-icon--home {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}
.sidebar-cat-icon--survey {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
    box-shadow: 0 2px 8px rgba(79,172,254,0.3);
}
.sidebar-cat-icon--feedback {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245,87,108,0.3);
}
.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 20px;
}
.badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: auto;
}

/* Top Bar */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.menu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
}
.top-logo { display: flex; align-items: center; }
.top-logo__circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2.5px solid rgba(212,163,115,0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    box-shadow: 
        0 0 0 4px var(--secondary),
        0 0 0 6px rgba(212,163,115,0.2),
        0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s;
    color: var(--primary);
    position: relative;
    z-index: 101;
    margin-bottom: -58px;
}
.top-logo:hover .top-logo__circle {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,163,115,0.15), 0 2px 12px rgba(212,163,115,0.2);
}
.top-logo__circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.top-logo__circle svg {
    width: 34px;
    height: 34px;
}
.top-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.top-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch img { border-radius: 3px; vertical-align: middle; }

/* ══════════════════════════════════════════════
   PREMIUM SLIDER
   ══════════════════════════════════════════════ */
.sl {
    position: relative;
    user-select: none;
    --sl-h: 260px;
    --sl-accent: var(--primary);
}

/* Stage – overflow wrapper */
.sl-stage {
    position: relative;
    height: var(--sl-h);
    overflow: hidden;
}

/* ── Card (each slide) ── */
.sl-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    pointer-events: none;
}
.sl-card.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
    pointer-events: auto;
}

/* BG image layer */
.sl-card__bg {
    position: absolute;
    inset: -20px;
    overflow: hidden;
}
.sl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: brightness(0.55) saturate(1.1);
    transition: transform 7s cubic-bezier(0.25,0.46,0.45,0.94),
                filter 1s ease;
}
.sl-card.is-current .sl-card__img {
    transform: scale(1.15);
    filter: brightness(0.45) saturate(1.2);
}
.sl-card__film {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,15,26,0.3) 0%, rgba(15,15,26,0.1) 30%, rgba(15,15,26,0.85) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(212,163,115,0.15) 0%, transparent 60%);
}

/* Floating particles */
.sl-card__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s 0.3s;
}
.sl-card.is-current .sl-card__particles { opacity: 1; }
.sl-card__particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--sl-accent);
    border-radius: 50%;
    opacity: 0;
    animation: sl-float 4s ease-in-out infinite;
}
.sl-card__particles span:nth-child(1) { left: 10%; bottom: 20%; animation-delay: 0s; }
.sl-card__particles span:nth-child(2) { left: 30%; bottom: 10%; animation-delay: 0.8s; width: 2px; height: 2px; }
.sl-card__particles span:nth-child(3) { left: 55%; bottom: 25%; animation-delay: 1.6s; }
.sl-card__particles span:nth-child(4) { left: 75%; bottom: 15%; animation-delay: 2.4s; width: 2px; height: 2px; }
.sl-card__particles span:nth-child(5) { left: 90%; bottom: 30%; animation-delay: 3.2s; }
@keyframes sl-float {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    30%  { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* Side accent bar */
.sl-card__accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--sl-accent), transparent);
    z-index: 4;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.sl-card.is-current .sl-card__accent {
    opacity: 1;
    transform: scaleY(1);
}

/* Content body */
.sl-card__body {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 22px;
}
.sl-card__inner {
    max-width: 90%;
}

/* Title */
.sl-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.sl-card.is-current .sl-card__title {
    opacity: 1;
    transform: translateY(0);
}

/* Description */
.sl-card__desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1) 0.25s;
}
.sl-card.is-current .sl-card__desc {
    opacity: 1;
    transform: translateY(0);
}

/* ── Transition classes ── */
.sl-card.is-enter {
    opacity: 1;
    visibility: visible;
    z-index: 4;
    animation: sl-enter 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.sl-card.is-leave {
    z-index: 2;
    animation: sl-leave 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes sl-enter {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes sl-leave {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* ── Bottom bar ── */
.sl-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--bg);
}

/* Timeline dots with SVG ring */
.sl-timeline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sl-pip {
    position: relative;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sl-pip__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.sl-pip__track {
    fill: none;
    stroke: var(--border);
    stroke-width: 2;
}
.sl-pip__fill {
    fill: none;
    stroke: var(--sl-accent);
    stroke-width: 2.5;
    stroke-dasharray: 100.53;
    stroke-dashoffset: 100.53;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.4s ease;
}
.sl-pip.is-active .sl-pip__fill {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 5.5s linear;
}
.sl-pip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.sl-pip.is-active .sl-pip__dot {
    background: var(--sl-accent);
    box-shadow: 0 0 8px rgba(212,163,115,0.5);
    transform: scale(1.2);
}
.sl-pip:hover:not(.is-active) .sl-pip__dot {
    background: var(--text);
    transform: scale(1.1);
}

/* ══════════════════════════════════════
   SEARCH STRIP
   ══════════════════════════════════════ */
.search-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.search-strip__icon {
    flex-shrink: 0;
    color: var(--text-muted);
    display: flex;
    transition: color 0.3s;
}
.search-strip:focus-within .search-strip__icon {
    color: var(--primary);
}
.search-strip input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
    position: relative;
    z-index: 2;
}

/* Typewriter */
.search-strip__tw {
    position: absolute;
    left: 46px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.92rem;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid var(--primary);
    animation: tw-blink 0.8s step-end infinite;
    padding-right: 2px;
    transition: opacity 0.2s;
}
@keyframes tw-blink {
    50% { border-color: transparent; }
}

/* Search results dropdown */
.search-results {
    display: none;
    padding: 0 16px 12px;
    background: var(--secondary);
}
.search-results.show { display: block; }
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s;
    margin-bottom: 2px;
}
.search-result-item:hover { background: var(--bg-card-hover); }
.search-result-item img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border);
}

/* Hero */
.hero-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════ */
.ft {
    padding: 20px 0 8px;
}
.ft-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 16px 20px;
    position: relative;
}
.ft-head__ornament {
    color: var(--primary);
    opacity: 0.45;
    line-height: 0;
}
.ft-head__ornament--flip {
    transform: rotate(180deg);
}
.ft-head__label {
    font-size: 0.6rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 8px 0 2px;
}
.ft-head__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    background: linear-gradient(180deg, #fff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ft-head__sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Horizontal scroll */
.ft-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 6px;
    scroll-snap-type: x mandatory;
}
.ft-scroll::-webkit-scrollbar { display: none; }

/* Card */
.ft-card {
    flex-shrink: 0;
    width: 180px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.ft-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,163,115,0.15);
}

/* Visual / image area */
.ft-card__visual {
    position: relative;
    height: 130px;
    overflow: hidden;
}
.ft-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ft-card:hover .ft-card__img {
    transform: scale(1.08);
}
.ft-card__img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-hover);
    color: var(--text-muted);
    font-size: 1.5rem;
}
.ft-card__film {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,15,26,0.6) 100%);
    pointer-events: none;
}

/* Discount badge */
.ft-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(239,83,80,0.4);
    z-index: 2;
}

/* Body */
.ft-card__body {
    padding: 12px 14px 14px;
}
.ft-card__cat {
    font-size: 0.6rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.ft-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.2em;
}
.ft-card__bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ft-card__price {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.ft-card__price-old {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.ft-card__price-now {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}
.ft-card__price-now--sale {
    color: var(--danger);
}
.ft-card__meta {
    display: flex;
    gap: 6px;
    white-space: nowrap;
}
.ft-card__meta span {
    font-size: 0.55rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 2px;
}
.ft-card__meta i {
    font-size: 0.5rem;
    color: var(--primary);
}

/* ══════════════════════════════════════
   CATEGORY CARDS
   ══════════════════════════════════════ */
.cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
}
.cat-card {
    display: block;
    position: relative;
    height: 210px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    -webkit-tap-highlight-color: transparent;
}

/* Full-bleed image */
.cat-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.cat-card:active .cat-card__img,
.cat-card:hover .cat-card__img {
    transform: scale(1.08);
}

/* Dark overlay */
.cat-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15,15,26,0.05) 0%,
            rgba(15,15,26,0.15) 40%,
            rgba(15,15,26,0.75) 100%
        );
    transition: background 0.4s;
    z-index: 1;
}
.cat-card:active .cat-card__overlay,
.cat-card:hover .cat-card__overlay {
    background:
        linear-gradient(180deg,
            rgba(15,15,26,0.1) 0%,
            rgba(15,15,26,0.2) 40%,
            rgba(15,15,26,0.85) 100%
        );
}

/* Badge ribbon */
.cat-card__badge {
    position: absolute;
    top: 0;
    right: 18px;
    background: var(--danger);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 6px 11px 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), 50% 100%, 0 calc(100% - 6px));
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 14px rgba(239,83,80,0.4);
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 4px 14px rgba(239,83,80,0.4); }
    50%      { opacity: 0.65; box-shadow: 0 4px 22px rgba(239,83,80,0.7); }
}

/* Bottom glass bar */
.cat-card__bottom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
}
.cat-card__glass {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.cat-card:active .cat-card__glass,
.cat-card:hover .cat-card__glass {
    background: rgba(0,0,0,0.25);
    border-color: rgba(212,163,115,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* Name */
.cat-card__name {
    flex: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    line-height: 1.3;
    min-width: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

/* Arrow circle */
.cat-card__go {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    transition: all 0.3s;
}
.cat-card:active .cat-card__go,
.cat-card:hover .cat-card__go {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(212,163,115,0.4);
}
.cat-card:active .cat-card__go svg,
.cat-card:hover .cat-card__go svg {
    transform: translateX(2px);
    transition: transform 0.3s;
}

/* ══════════════════════════════════════
   CATEGORY BANNER (slider alanında)
   ══════════════════════════════════════ */
.cat-banner {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--secondary);
}
.cat-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.65) saturate(1.15);
    transform: scale(1.02);
    animation: cb-drift 12s ease-in-out infinite alternate;
}
@keyframes cb-drift {
    0%   { transform: scale(1.02) translateY(0); }
    100% { transform: scale(1.06) translateY(-8px); }
}

/* Main gradient overlay */
.cat-banner__film {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(15,15,26,0.25) 0%,
            rgba(15,15,26,0.05) 40%,
            rgba(15,15,26,0.7) 100%
        );
    pointer-events: none;
}

/* Vignette */
.cat-banner__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(15,15,26,0.5) 100%);
    pointer-events: none;
}

/* Bottom glow */
.cat-banner__bottom-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(212,163,115,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Bottom accent line */
.cat-banner__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.4;
}

/* Back button */
.cat-banner__back {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px 8px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.25s;
    -webkit-tap-highlight-color: transparent;
}
.cat-banner__back:active,
.cat-banner__back:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(212,163,115,0.3);
}
.cat-banner__back svg {
    transition: transform 0.25s;
}
.cat-banner__back:hover svg {
    transform: translateX(-3px);
}

/* ══════════════════════════════════════
   CATEGORY HERO
   ══════════════════════════════════════ */
.cat-hero {
    position: relative;
    padding: 14px 20px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
}

/* Floating particles */
.cat-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.cat-hero__particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: cat-p 6s ease-in-out infinite;
}
.cat-hero__particles span:nth-child(1) { left: 8%; top: 70%; animation-delay: 0s; }
.cat-hero__particles span:nth-child(2) { left: 22%; top: 80%; animation-delay: 1s; width: 3px; height: 3px; }
.cat-hero__particles span:nth-child(3) { left: 45%; top: 75%; animation-delay: 2s; }
.cat-hero__particles span:nth-child(4) { left: 65%; top: 85%; animation-delay: 3s; width: 3px; height: 3px; }
.cat-hero__particles span:nth-child(5) { left: 80%; top: 70%; animation-delay: 4s; }
.cat-hero__particles span:nth-child(6) { left: 92%; top: 80%; animation-delay: 5s; }
@keyframes cat-p {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    25%  { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-60px) scale(0); }
}

/* Bottom glow */
.cat-hero__glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(212,163,115,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Content */
.cat-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cat-hero__ornament {
    color: var(--primary);
    opacity: 0.45;
    line-height: 0;
    margin-bottom: 8px;
}
.cat-hero__ornament--flip {
    transform: rotate(180deg);
    margin-bottom: 0;
    margin-top: 8px;
}
.cat-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(180deg, #fff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.cat-hero__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.cat-hero__count {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.6rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    padding: 5px 16px;
    border: 1px solid rgba(212,163,115,0.2);
    border-radius: 20px;
    background: rgba(212,163,115,0.05);
}

/* Page Header (fallback) */
.page-header {
    padding: 20px 16px 10px;
}
.page-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}
.page-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Subcategory Tabs */
.subcategory-tabs {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.subcategory-tabs::-webkit-scrollbar { display: none; }
.sub-tab {
    white-space: nowrap;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.sub-tab.active, .sub-tab:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ══════════════════════════════════════
   PRODUCT ROWS
   ══════════════════════════════════════ */
.prod-list {
    background: var(--secondary);
}
.prod-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    cursor: pointer;
}
.prod-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212,163,115,0.08), transparent);
    transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.prod-row:active::before,
.prod-row:hover::before {
    width: 100%;
}
.prod-row:last-child { border-bottom: none; }

/* Image */
.prod-row__img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}
.prod-row:hover .prod-row__img {
    transform: scale(1.05);
}

/* Info */
.prod-row__info {
    flex: 1;
    min-width: 0;
}
.prod-row__name {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 3px;
    transition: color 0.2s;
}
.prod-row:hover .prod-row__name {
    color: var(--primary);
}
.prod-row__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* Tags */
.prod-row__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.prod-row__tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
}
.prod-row__tag i {
    font-size: 0.5rem;
    color: var(--primary);
}
.prod-row__tag--kcal i {
    color: var(--warning);
}
.prod-row__tag--disc {
    background: rgba(239,83,80,0.12);
    color: var(--danger);
    font-weight: 700;
}

/* Right side - price + chevron */
.prod-row__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}
.prod-row__old {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    color: var(--text-muted);
    text-decoration: line-through;
    line-height: 1;
}
.prod-row__now {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.prod-row__now--sale {
    color: var(--danger);
}
.prod-row__chevron {
    color: var(--text-muted);
    opacity: 0.3;
    margin-top: 4px;
    transition: all 0.3s;
}
.prod-row:hover .prod-row__chevron {
    opacity: 0.7;
    color: var(--primary);
    transform: translateX(2px);
}

/* ══════════════════════════════════════
   PRODUCT DETAIL
   ══════════════════════════════════════ */
.pd { background: var(--bg); }

/* Hero image */
.pd__hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.pd__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd__hero-film {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,26,0.2) 0%, transparent 40%, rgba(15,15,26,0.6) 100%);
    pointer-events: none;
}
.pd__back {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: all 0.25s;
}
.pd__back:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.pd__disc {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--danger);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(239,83,80,0.4);
}

/* Body */
.pd__body {
    padding: 22px 20px 10px;
    margin-top: -24px;
    position: relative;
    z-index: 1;
    background: var(--bg);
    border-radius: 24px 24px 0 0;
}
.pd__cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.pd__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 12px;
}

/* Price */
.pd__price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.pd__price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.pd__price--sale { color: var(--danger); }
.pd__price-old {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Meta chips */
.pd__chips {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.pd__chip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--secondary);
    border-radius: 14px;
    border: 1px solid var(--border);
}
.pd__chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212,163,115,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.pd__chip-icon--kcal {
    background: rgba(255,152,0,0.1);
    color: var(--warning);
}
.pd__chip-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}
.pd__chip-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    line-height: 1;
}

/* Description */
.pd__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Allergens */
.pd__allergens {
    background: var(--secondary);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}
.pd__allergens-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 12px;
}
.pd__allergens-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pd__allergen {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* ── Similar products ── */
.pd__similar {
    padding: 24px 0 10px;
}
.pd__similar-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px 16px;
}
.pd__similar-head span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}
.pd__similar-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.pd__similar-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 20px 8px;
    scroll-snap-type: x mandatory;
}
.pd__similar-scroll::-webkit-scrollbar { display: none; }
.pd__sim-card {
    flex-shrink: 0;
    width: 130px;
    background: var(--secondary);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: all 0.3s;
}
.pd__sim-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.pd__sim-card img {
    width: 130px;
    height: 95px;
    object-fit: cover;
}
.pd__sim-info {
    padding: 8px 10px 10px;
}
.pd__sim-info h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pd__sim-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.empty-state i { font-size: 2rem; margin-bottom: 12px; display: block; }

/* ══════════════════════════════════════
   PRODUCT MODAL
   ══════════════════════════════════════ */
.pm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.pm-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.pm {
    width: 92%;
    max-width: 420px;
    max-height: 85vh;
    background: var(--bg);
    border-radius: 20px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    scrollbar-width: none;
}
.pm::-webkit-scrollbar { display: none; }
.pm-overlay.is-open .pm {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close */
.pm__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}
.pm__close:hover { background: var(--danger); border-color: var(--danger); }

/* Loading */
.pm__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.pm__spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: pm-spin 0.7s linear infinite;
}
@keyframes pm-spin { to { transform: rotate(360deg); } }

/* Image */
.pm__img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.pm__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pm__img-film {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
    pointer-events: none;
}
.pm__disc {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--danger);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(239,83,80,0.4);
}

/* Content */
.pm__content {
    padding: 4px 16px 6px;
}
.pm__cat {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.pm__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 8px;
}
.pm__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.pm__price {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.pm__price--sale { color: var(--danger); }
.pm__price-old {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Chips */
.pm__chips {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.pm__chip {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--secondary);
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pm__chip i { color: var(--primary); font-size: 0.65rem; }
.pm__chip--kcal i { color: var(--warning); }

/* Description */
.pm__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Allergens */
.pm__allergens {
    background: var(--secondary);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border);
}
.pm__allergens-head {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pm__allergens-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pm__allergens-list span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* Bottom close button */
.pm__bottom-close {
    display: block;
    width: calc(100% - 40px);
    margin: 16px 20px 20px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--secondary);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}
.pm__bottom-close:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(239,83,80,0.06);
}

/* ══════════════════════════════════════
   SURVEY MODAL
   ══════════════════════════════════════ */
.sv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sv-overlay.is-open { opacity: 1; visibility: visible; }
.sv-modal {
    width: 92%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg);
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    scrollbar-width: none;
}
.sv-modal::-webkit-scrollbar { display: none; }
.sv-overlay.is-open .sv-modal { transform: scale(1) translateY(0); opacity: 1; }

.sv-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.sv-modal__close:hover { color: var(--danger); border-color: var(--danger); }

.sv-modal__head {
    text-align: center;
    margin-bottom: 20px;
}
.sv-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea, #5a6fd6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 18px rgba(102,126,234,0.3);
}
.sv-modal__head h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 4px;
}
.sv-modal__head p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sv-modal__loading {
    display: flex;
    justify-content: center;
    padding: 30px;
}

/* Question */
.sv-question {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Options */
.sv-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.25s;
    -webkit-tap-highlight-color: transparent;
}
.sv-option:hover, .sv-option:active {
    border-color: #667eea;
    background: rgba(102,126,234,0.06);
}
.sv-option__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.sv-option:hover .sv-option__radio { border-color: #667eea; }
.sv-option__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    flex: 1;
}

/* Results */
.sv-results {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sv-result__head {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
}
.sv-result__text { color: var(--text); }
.sv-result__pct { color: #667eea; font-weight: 600; }
.sv-result__bar {
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    overflow: hidden;
}
.sv-result__fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #667eea, #5a6fd6);
    transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}

/* Voted state */
.sv-modal__voted, .sv-modal__already {
    text-align: center;
}
.sv-voted__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(76,175,80,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: var(--success);
}
.sv-modal__voted h4, .sv-modal__already h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 4px;
}
.sv-modal__voted p, .sv-modal__already p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ══════════════════════════════════════
   FEEDBACK MODAL
   ══════════════════════════════════════ */
.fb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.fb-overlay.is-open { opacity: 1; visibility: visible; }
.fb-modal {
    width: 92%;
    max-width: 400px;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--bg);
    border-radius: 20px;
    padding: 20px 18px;
    position: relative;
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    scrollbar-width: none;
}
.fb-modal::-webkit-scrollbar { display: none; }
.fb-overlay.is-open .fb-modal { transform: scale(1) translateY(0); opacity: 1; }

.fb-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.fb-modal__close:hover { color: var(--danger); border-color: var(--danger); }

/* Head */
.fb-modal__head {
    text-align: center;
    margin-bottom: 14px;
}
.fb-modal__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 18px rgba(212,163,115,0.3);
}
.fb-modal__head h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 4px;
}
.fb-modal__head p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Type selector */
.fb-types {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.fb-type {
    flex: 1;
    cursor: pointer;
}
.fb-type input { display: none; }
.fb-type span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 6px;
    border-radius: 10px;
    background: var(--secondary);
    border: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
    text-align: center;
}
.fb-type span i { font-size: 0.65rem; }
.fb-type input:checked + span {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212,163,115,0.08);
}

/* Ratings */
.fb-ratings {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.fb-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--secondary);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.fb-rating__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
}
.fb-stars {
    display: flex;
    gap: 4px;
}
.fb-stars i {
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--border);
    transition: color 0.15s, transform 0.15s;
}
.fb-stars i::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.fb-stars i.active {
    color: #f5b301;
}
.fb-stars i:hover {
    transform: scale(1.2);
}

/* Inputs */
.fb-input {
    width: 100%;
    padding: 9px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    outline: none;
    margin-bottom: 8px;
    transition: border-color 0.2s;
    resize: none;
}
.fb-input:focus { border-color: var(--primary); }
.fb-input::placeholder { color: var(--text-muted); }
.fb-row {
    display: flex;
    gap: 8px;
}
.fb-row .fb-input { flex: 1; min-width: 0; }

/* Submit */
.fb-submit {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(212,163,115,0.25);
}
.fb-submit:hover {
    box-shadow: 0 6px 24px rgba(212,163,115,0.4);
    transform: translateY(-1px);
}
.fb-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success */
.fb-modal__success {
    text-align: center;
    padding: 20px 0;
}
.fb-success__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(76,175,80,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    color: var(--success);
}
.fb-modal__success h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 6px;
}
.fb-modal__success p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.ftr {
    position: relative;
    margin-top: 30px;
    padding: 0 20px 20px;
    background: var(--secondary);
    overflow: hidden;
}

/* Top ornament line */
.ftr__top-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0 18px;
    color: var(--primary);
    opacity: 0.4;
}
.ftr__top-fade {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Brand */
.ftr__brand {
    text-align: center;
    margin-bottom: 24px;
}
.ftr__slogan {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    letter-spacing: 0.3px;
    line-height: 1.5;
    background: linear-gradient(180deg, #fff 30%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Info grid */
.ftr__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.ftr__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
}
a.ftr__card:active,
a.ftr__card:hover {
    border-color: var(--primary);
    background: rgba(212,163,115,0.04);
    transform: translateX(4px);
}
.ftr__card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212,163,115,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary);
    flex-shrink: 0;
}
.ftr__card-icon--phone {
    background: rgba(76,175,80,0.08);
    color: var(--success);
}
.ftr__card-icon--clock {
    background: rgba(255,152,0,0.08);
    color: var(--warning);
}
.ftr__card-body {
    min-width: 0;
}
.ftr__card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.58rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}
.ftr__card-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    display: block;
    line-height: 1.3;
}

/* Social */
.ftr__social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.ftr__soc {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
}
.ftr__soc:active,
.ftr__soc:hover {
    transform: translateY(-4px) scale(1.05);
}
.ftr__soc--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.ftr__soc--fb { background: #1877f2; }
.ftr__soc--tw { background: #000; border: 1px solid var(--border); }
.ftr__soc--wa { background: #25d366; }
.ftr__soc--fb-form {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    cursor: pointer;
}

.ftr__soc--ig:hover { box-shadow: 0 6px 24px rgba(225,48,108,0.4); }
.ftr__soc--fb:hover { box-shadow: 0 6px 24px rgba(24,119,242,0.4); }
.ftr__soc--tw:hover { box-shadow: 0 6px 24px rgba(255,255,255,0.1); }
.ftr__soc--wa:hover { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.ftr__soc--fb-form:hover { box-shadow: 0 6px 24px rgba(212,163,115,0.4); }

/* Bottom */
.ftr__bottom {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.5;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.ftr__dot { font-size: 0.45rem; }

/* Security badge */
.ftr__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(76,175,80,0.04);
    border: 1px solid rgba(76,175,80,0.12);
}
.ftr__secure-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(76,175,80,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}
.ftr__secure-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.ftr__secure-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--success);
    letter-spacing: 0.3px;
}
.ftr__secure-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

/* ══════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--secondary);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    -webkit-tap-highlight-color: transparent;
}
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover, .scroll-top:active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(212,163,115,0.3);
}

/* Responsive */
@media (min-width: 768px) {
    .main-content { max-width: 600px; margin: 0 auto; }
}
@media (min-width: 1024px) {
    .sidebar { left: 0; }
    .sidebar-overlay { display: none; }
    .main-content { margin-left: 280px; max-width: 700px; }
    .menu-toggle { display: none; }
}
