:root {
    --black: #000000;
    --gold: #d4af37;
    --dark: #1a1a1a;
    --text: #f5f5f5;
    --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;
    --header-h: 56px;
    --marquee-h: 48px;
    --admin-top-h: 60px;
}

body.site-without-marquee {
    --marquee-h: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.container-wide {
    width: min(1280px, 94%);
    margin: 0 auto;
}

/* ——— Public header + marquee (tek blokta sabit / sticky) ——— */
.site-top-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.site-header {
    position: relative;
    overflow: visible;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    min-height: var(--header-h);
    overflow: visible;
}

.logo {
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.logo span,
.site-nav a,
.cta-btn {
    color: var(--gold);
}

.site-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 4px;
    cursor: pointer;
}

.site-nav-toggle-bar {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-nav a {
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
}

.site-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-nav a.site-cat-card:hover,
.site-nav a.site-cat-card:focus-visible {
    text-decoration: none;
}

@media (max-width: 768px) {
    .site-nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0 16px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .site-nav.is-open {
        display: flex;
        background: rgba(0, 0, 0, 0.92);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .site-nav.is-open > a,
    .site-nav.is-open .site-nav__mega-hit {
        width: 100%;
        display: block;
        padding: 10px 0;
        color: rgba(245, 245, 245, 0.95);
    }
}

/* ——— Hero & sections ——— */
.hero {
    position: relative;
    min-height: min(72vh, 720px);
}

.hero video {
    width: 100%;
    height: min(72vh, 720px);
    min-height: 280px;
    object-fit: cover;
    display: block;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 12px;
    padding: clamp(16px, 4vw, 32px);
}

.hero-overlay h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin: 0;
}

.hero-overlay p {
    margin: 0;
    max-width: 36ch;
    margin-inline: auto;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.cta-btn {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 10px 18px;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    text-align: center;
}

.cta-btn:hover {
    background: rgba(212, 175, 55, 0.12);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(12px, 3vw, 20px);
    padding: clamp(28px, 5vw, 48px) 0;
}

.product-card,
.admin-card {
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: clamp(16px, 3vw, 22px);
}

.product-card h3 {
    margin-top: 0;
}

.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: clamp(16px, 3vw, 24px) 0;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-footer p {
    margin: 0;
}

.whatsapp-btn {
    white-space: nowrap;
}

@media (max-width: 520px) {
    .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        border: 1px solid var(--gold);
    }
}

.coming-soon-page {
    min-height: 100vh;
    display: grid;
    place-content: center;
    padding: 20px;
}

.coming-soon-box {
    text-align: center;
    border: 1px solid var(--gold);
    padding: clamp(24px, 5vw, 40px);
    max-width: 420px;
}

.coming-soon-box h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

/* ——— Forms (shared) ——— */
input,
select,
textarea {
    width: 100%;
    margin: 6px 0 12px;
    padding: 10px 12px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
}

label {
    display: block;
    font-weight: 500;
    margin-top: 8px;
}

.admin-switch-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 8px 0 18px;
}

.admin-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding: 8px 10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.06);
    cursor: pointer;
}

.admin-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
}

.admin-switch-track {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: #1d1d1d;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-switch-track::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #5f5f5f;
    transition: transform 0.2s ease, background 0.2s ease;
}

.admin-switch input:checked + .admin-switch-track {
    background: rgba(212, 175, 55, 0.35);
    border-color: var(--gold);
}

.admin-switch input:checked + .admin-switch-track::after {
    transform: translateX(18px);
    background: var(--gold);
}

.admin-switch-label {
    font-size: 0.95rem;
    color: #f2e8d1;
}

.admin-switch input:focus-visible + .admin-switch-track {
    outline: 2px solid rgba(212, 175, 55, 0.7);
    outline-offset: 2px;
}

button.cta-btn {
    margin-top: 8px;
    margin-right: 8px;
}

.error-text {
    color: #ff8a8a;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ——— Admin: layout ——— */
.admin-body {
    min-height: 100vh;
    background: linear-gradient(165deg, #0a0a0a 0%, #121212 45%, #0d0d0d 100%);
    color: var(--text);
}

.admin-body--guest {
    display: block;
}

.admin-topnav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.admin-topnav-inner {
    width: min(1280px, 94%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--admin-top-h);
    padding: 8px 0;
}

.admin-brand {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

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

.admin-brand small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.55);
    margin-top: 2px;
}

.admin-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 4px;
    cursor: pointer;
}

.admin-nav-toggle-bar {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.admin-nav-drawer {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 24px;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.admin-nav-drop {
    position: relative;
}

.admin-nav-drop summary {
    list-style: none;
}

.admin-nav-drop summary::-webkit-details-marker {
    display: none;
}

.admin-nav-drop > summary::after {
    content: "▾";
    margin-left: 6px;
    font-size: 0.72rem;
    opacity: 0.8;
}

.admin-nav-drop[open] > summary::after {
    transform: rotate(180deg);
}

.admin-nav-drop__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    padding: 8px;
    display: none;
    z-index: 220;
}

.admin-nav-drop[open] .admin-nav-drop__menu {
    display: grid;
    gap: 4px;
}

.admin-nav-drop.is-active > summary {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.14) 100%);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.35);
}

.admin-nav a,
.admin-nav__link {
    text-decoration: none;
    color: rgba(245, 245, 245, 0.85);
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.admin-nav a:hover,
.admin-nav__link:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.22);
    transform: translateY(-1px);
}

.admin-nav a.is-active,
.admin-nav__link.is-active {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.14) 100%);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.35);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    margin-left: 7px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0a0a0a;
    background: var(--gold);
    padding: 0 5px;
    vertical-align: middle;
}

.admin-topnav-user {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding-left: 12px;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
}

.admin-site-btn {
    text-decoration: none;
    color: rgba(245, 245, 245, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.86rem;
}

.admin-site-btn:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.5);
}

.admin-user-name {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.75);
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-logout-btn {
    text-decoration: none;
    color: var(--black);
    background: var(--gold);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.admin-logout-btn:hover {
    filter: brightness(1.08);
}

@media (max-width: 900px) {
    .admin-nav-toggle {
        display: flex;
    }

    .admin-nav-drawer {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0 8px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .admin-nav-drawer.is-open {
        display: flex;
    }

    .admin-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-nav-drop {
        width: 100%;
    }

    .admin-nav-drop__menu {
        position: static;
        display: grid;
        margin-top: 6px;
        box-shadow: none;
        min-width: 0;
        border-color: rgba(212, 175, 55, 0.18);
    }

    .admin-nav a,
    .admin-nav summary {
        width: 100%;
    }

    .admin-topnav-user {
        flex-direction: column;
        align-items: stretch;
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding: 12px 0 0;
        margin-top: 8px;
    }

    .admin-user-name {
        max-width: none;
    }

    .admin-logout-btn {
        text-align: center;
    }
}

.admin-main {
    padding: clamp(20px, 4vw, 36px) 0 clamp(40px, 6vw, 64px);
}

.admin-page {
    width: min(1280px, 94%);
    margin: 0 auto;
}

.admin-page-title {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.admin-section-title {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-section-title:first-of-type {
    margin-top: 0;
}

.admin-muted {
    color: rgba(245, 245, 245, 0.65);
    margin: 0 0 20px;
    max-width: 60ch;
}

.admin-page-settings-form {
    max-width: 520px;
}

.admin-range-block {
    margin-bottom: 28px;
    padding: 18px 16px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
}

.admin-range-block__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-range-block__head label {
    margin: 0;
    font-weight: 600;
    color: var(--text);
}

.admin-range-block__value {
    font-variant-numeric: tabular-nums;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 4.5rem;
    text-align: right;
}

.admin-range-input {
    display: block;
    width: 100%;
    height: 10px;
    margin: 0 0 8px;
    border-radius: 999px;
    accent-color: var(--gold);
    cursor: pointer;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.45));
}

.admin-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    cursor: grab;
}

.admin-range-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    cursor: grab;
}

.admin-range-block__hint {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(245, 245, 245, 0.5);
}

/* ——— Admin toast (sağ alt) ——— */
.admin-toast-stack {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    z-index: 200000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    max-width: min(420px, calc(100vw - 32px));
    pointer-events: none;
}

.admin-toast {
    pointer-events: auto;
    margin: 0;
    padding: 14px 18px 14px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 500;
    color: var(--text);
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: linear-gradient(155deg, rgba(30, 26, 18, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
    transform: translateX(120%);
    opacity: 0;
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease;
}

.admin-toast--visible {
    transform: translateX(0);
    opacity: 1;
}

.admin-toast--out {
    transform: translateX(115%);
    opacity: 0;
    transition:
        transform 0.3s ease-in,
        opacity 0.28s ease;
}

.admin-toast--success {
    border-color: rgba(212, 175, 55, 0.55);
}

.admin-toast--error {
    border-color: rgba(220, 80, 80, 0.65);
    background: linear-gradient(155deg, rgba(40, 18, 18, 0.98) 0%, rgba(14, 10, 10, 0.98) 100%);
}

.admin-dashboard-head {
    margin-bottom: 24px;
}

.admin-page-lead {
    margin: 0;
    color: rgba(245, 245, 245, 0.75);
    font-size: 1.05rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: clamp(14px, 2.5vw, 20px);
    margin-bottom: 28px;
}

.admin-stat-card {
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.admin-stat-card--accent {
    border-color: rgba(212, 175, 55, 0.45);
    background: linear-gradient(145deg, #1f1a12 0%, #1a1a1a 100%);
}

.admin-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(245, 245, 245, 0.55);
}

.admin-stat-value {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--gold);
    line-height: 1.1;
}

.admin-stat-value--sm {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.admin-stat-meta {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.65);
}

.admin-stat-meta--muted {
    font-style: italic;
}

.admin-stat-link {
    margin-top: auto;
    padding-top: 10px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.admin-stat-link:hover {
    text-decoration: underline;
}

.admin-dashboard-actions {
    border-radius: 10px;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 12px;
}

.admin-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.admin-action-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.admin-action-btn--outline {
    background: transparent;
}

.admin-entity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 16px;
    margin-top: 8px;
}

.admin-entity-card {
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 8px;
    padding: 16px;
}

.admin-entity-card--new {
    border-color: rgba(212, 175, 55, 0.62);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.admin-entity-card h3 {
    margin-top: 0;
}

.admin-gallery-item {
    position: relative;
}

.admin-gallery-item.is-dragging {
    opacity: 0.55;
    transform: scale(0.985);
    border-color: rgba(212, 175, 55, 0.65);
}

.admin-gallery-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    border: 1px dashed rgba(212, 175, 55, 0.5);
    border-radius: 6px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: move;
    user-select: none;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .admin-entity-card .cta-btn {
        width: 100%;
        margin-right: 0;
    }
}

/* ——— Admin: firma listesi tablosu ——— */
.admin-table-wrap--companies {
    overflow-x: auto;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(10, 10, 10, 0.45);
    -webkit-overflow-scrolling: touch;
}

.admin-table--companies {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.98rem;
}

.admin-table--companies thead th {
    padding: 16px 22px;
    text-align: left;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.55);
    background: rgba(212, 175, 55, 0.07);
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    white-space: nowrap;
}

.admin-table--companies thead th.admin-table--companies__col-actions {
    text-align: right;
}

.admin-table--companies tbody td {
    padding: 20px 22px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(248, 246, 240, 0.92);
    line-height: 1.45;
}

.admin-table--companies tbody tr:last-child td {
    border-bottom: none;
}

.admin-table--companies tbody tr:hover td {
    background: rgba(212, 175, 55, 0.045);
}

.admin-table--companies__row--passive td {
    opacity: 0.82;
}

.admin-table--companies__row--passive .admin-company-name {
    color: rgba(245, 245, 245, 0.75);
}

.admin-table--companies__cell-muted {
    min-width: 140px;
    max-width: 220px;
    color: rgba(245, 245, 245, 0.78);
}

.admin-table--companies__cell-tel {
    min-width: 128px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    color: rgba(245, 245, 245, 0.85);
}

.admin-table--companies__cell-actions {
    width: 1%;
    text-align: right;
    padding-left: 28px;
}

.admin-company-cell__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.admin-company-flag {
    flex-shrink: 0;
    width: 56px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 4px 14px rgba(0, 0, 0, 0.35);
}

.admin-company-flag__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.admin-company-flag__fallback {
    font-size: 1.35rem;
    line-height: 1;
    opacity: 0.88;
}

.admin-company-text {
    min-width: 0;
    flex: 1;
}

.admin-company-country {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
    margin-bottom: 6px;
}

.admin-company-name {
    font-size: 1.06rem;
    font-weight: 600;
    font-family: var(--font-serif, "Playfair Display", Georgia, serif);
    color: var(--text);
    line-height: 1.3;
}

.admin-company-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 999px;
    border: 1px solid rgba(245, 245, 245, 0.25);
    color: rgba(245, 245, 245, 0.65);
    font-family: var(--font-sans, "Source Sans 3", system-ui, sans-serif);
}

.admin-company-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.admin-company-actions__btn {
    margin: 0;
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
}

.admin-company-actions__btn--secondary {
    background: transparent;
    opacity: 0.95;
}

.admin-company-actions__btn--secondary:hover {
    background: rgba(212, 175, 55, 0.12);
    opacity: 1;
}

@media (max-width: 640px) {
    .admin-table--companies thead th,
    .admin-table--companies tbody td {
        padding: 14px 16px;
    }

    .admin-company-flag {
        width: 50px;
        height: 36px;
    }

    .admin-company-flag__fallback {
        font-size: 1.2rem;
    }

    .admin-company-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-company-actions__btn {
        text-align: center;
    }
}

/* ——— Admin / firma: sipariş tabloları ——— */
.admin-table-wrap--orders {
    overflow-x: auto;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(10, 10, 10, 0.45);
    -webkit-overflow-scrolling: touch;
}

.admin-table--orders {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.admin-table--orders thead th {
    padding: 14px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.55);
    background: rgba(212, 175, 55, 0.07);
    border-bottom: 1px solid rgba(212, 175, 55, 0.28);
    vertical-align: bottom;
}

.admin-table--orders tbody td {
    padding: 14px 14px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(248, 246, 240, 0.92);
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.admin-table--orders tbody tr:last-child td {
    border-bottom: none;
}

.admin-table--orders tbody tr:hover td {
    background: rgba(212, 175, 55, 0.045);
}

.admin-table--orders__col-no {
    width: 6.5rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
}

.admin-order-no {
    display: inline-block;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.admin-orders-filter {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.admin-orders-filter__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 12px 16px;
    align-items: end;
}

.admin-orders-filter__field label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.55);
}

.admin-orders-filter__field select,
.admin-orders-filter__field input[type="date"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    font-size: 0.92rem;
}

.admin-orders-filter__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.admin-orders-filter__clear {
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.95);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.admin-orders-filter__clear:hover {
    color: #f5e6b8;
}

.admin-order-product-sep {
    opacity: 0.45;
    font-weight: 400;
    padding: 0 0.15em;
}

.admin-table--orders__col-qty {
    width: 3.25rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-variant-numeric: tabular-nums;
}

.admin-table--orders__col-product {
    min-width: 8rem;
    max-width: min(36vw, 22rem);
}

.admin-table--orders__col-note {
    min-width: 6rem;
    max-width: min(32vw, 18rem);
    color: rgba(245, 245, 245, 0.88);
}

.admin-table--orders__col-status {
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 500;
}

.admin-table--orders__col-order-date {
    width: 8.75rem;
    max-width: 10rem;
    white-space: nowrap;
    font-size: 0.88rem;
    color: rgba(245, 245, 245, 0.78);
    vertical-align: middle;
}

.admin-table--orders__col-due {
    width: 7.5rem;
    max-width: 9rem;
    white-space: nowrap;
    font-size: 0.88rem;
    color: rgba(245, 245, 245, 0.78);
    vertical-align: middle;
}

.admin-table--orders--admin {
    min-width: 920px;
}

.admin-table--orders--admin .admin-table--orders__col-firma {
    min-width: 7rem;
    max-width: min(28vw, 14rem);
}

.admin-table--orders--admin .admin-table--orders__col-actions {
    width: 13.5rem;
    min-width: 12rem;
    vertical-align: middle;
    overflow-wrap: normal;
}

.admin-order-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.admin-order-actions select {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.admin-order-actions__label {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.55);
    align-self: flex-start;
}

.admin-order-actions input[type="date"] {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    font-size: 0.86rem;
}

.admin-order-actions .cta-btn {
    margin: 0;
    padding: 8px 12px;
    font-size: 0.86rem;
    width: 100%;
    box-sizing: border-box;
}

.admin-table-wrap--orders > .admin-table--orders:not(.admin-table--orders--admin) {
    min-width: min(100%, 560px);
}

@media (max-width: 720px) {
    .admin-table--orders thead th,
    .admin-table--orders tbody td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .admin-table--orders__col-product,
    .admin-table--orders__col-note {
        max-width: none;
    }

    .admin-table--orders--admin .admin-table--orders__col-firma {
        max-width: none;
    }
}

.admin-callout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 28px;
    padding: clamp(18px, 3vw, 24px);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.95) 55%);
}

.admin-callout--notice {
    border-left: 4px solid var(--gold);
}

.admin-callout-body {
    flex: 1;
    min-width: min(100%, 280px);
}

.admin-callout-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: var(--text);
}

.admin-callout-text {
    margin: 0;
    color: rgba(245, 245, 245, 0.78);
    font-size: 0.98rem;
    max-width: 52ch;
    line-height: 1.55;
}

.admin-callout-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.admin-callout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--black);
    background: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.6);
    transition: filter 0.2s, transform 0.15s;
    white-space: nowrap;
}

.admin-callout-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    .admin-callout-actions {
        width: 100%;
    }

    .admin-callout-btn {
        width: 100%;
    }
}

/* Empty state — tek marka gold (#D4AF37 / var(--gold)) ile bütünleşik */
.admin-empty-state {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: clamp(20px, 4vw, 32px);
    margin: 8px 0 32px;
    padding: clamp(22px, 4vw, 32px);
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-left: 4px solid var(--gold);
    background:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(212, 175, 55, 0.14), transparent 55%),
        linear-gradient(165deg, #161616 0%, #111 100%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.admin-empty-state__visual {
    flex: 0 0 auto;
    display: grid;
    place-content: center;
    width: clamp(72px, 18vw, 96px);
    aspect-ratio: 1;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.38);
}

.admin-empty-state__step {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.admin-empty-state__main {
    flex: 1;
    min-width: min(100%, 260px);
}

.admin-empty-state__eyebrow {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.admin-empty-state__title {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 600;
    color: #f0e6d2;
}

.admin-empty-state__text {
    margin: 0 0 22px;
    color: rgba(245, 245, 245, 0.76);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 48rem;
}

.admin-empty-state__form {
    margin: 0;
}

.admin-empty-state__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.28);
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.admin-empty-state__cta:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

.admin-empty-state__cta:active {
    transform: translateY(0);
    filter: brightness(1.02);
}

@media (max-width: 520px) {
    .admin-empty-state__cta {
        width: 100%;
    }
}

.admin-login-main {
    min-height: 100vh;
    display: grid;
    place-content: center;
    padding: 24px;
}

.admin-login-inner {
    width: min(420px, 100%);
}

.admin-login-card {
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Legacy narrow admin wrap (unused in app layout) */
.admin-wrap {
    width: min(540px, 92%);
    margin: 64px auto;
}

.admin-logo-preview {
    margin: 12px 0 16px;
    padding: 16px;
    background: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    max-width: 280px;
}

.admin-logo-preview img {
    display: block;
    max-width: 100%;
    height: auto;
}

input[type="file"] {
    padding: 10px 0;
    border: none;
    background: transparent;
    color: var(--text);
}

/* ——— Front page: Freya-style home (self-hosted video hero + editorial) ——— */
.site-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.site-logo-img {
    display: block;
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-logo-img {
        max-height: 36px;
    }
}

body.site-front {
    /* Logo 2×: ~44px → ~88px; üst satır yüksekliği buna göre */
    --header-h: 120px;
    padding-top: 0;
}

body.site-front .site-logo-img {
    max-height: 88px;
}

@media (max-width: 768px) {
    body.site-front .site-logo-img {
        max-height: 72px;
    }

    body.site-front {
        --header-h: 104px;
    }
}

body.site-front .logo {
    font-size: clamp(2rem, 5vw, 2.3rem);
}

body.site-front .site-loader__logo {
    max-width: min(560px, 85vw);
}

body.site-front .site-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
}

body.site-front .site-header {
    background: rgba(0, 0, 0, 0.38);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.site-front .site-header.site-header--scrolled {
    background: rgba(0, 0, 0, 0.94);
    border-bottom-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

body.site-front .site-nav a {
    color: rgba(245, 245, 245, 0.92);
}

body.site-front .site-nav a:hover {
    color: var(--gold);
}

body.site-front .site-nav__mega-hit {
    color: rgba(245, 245, 245, 0.92);
}

body.site-front .site-nav__item--mega:hover .site-nav__mega-hit,
body.site-front .site-nav__item--mega:focus-within .site-nav__mega-hit {
    color: var(--gold);
}

.freya-home {
    overflow-x: hidden;
}

.freya-hero {
    position: relative;
    min-height: 150vh;
    min-height: 150dvh;
    display: grid;
    align-items: center;
    justify-items: center;
}

.freya-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.freya-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.freya-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 42%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.75) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
}

.freya-hero__content {
    position: relative;
    z-index: 1;
    width: min(900px, 92%);
    text-align: center;
    padding: calc(var(--header-h) + var(--marquee-h) + clamp(48px, 12vh, 100px)) 0 clamp(80px, 15vh, 120px);
}

.freya-hero__eyebrow {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.freya-hero__title {
    margin: 0 0 20px;
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 7vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--text);
    text-wrap: balance;
}

.freya-hero__lead {
    margin: 0 auto 28px;
    max-width: 40rem;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: rgba(245, 245, 245, 0.78);
    line-height: 1.65;
}

.freya-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.freya-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.freya-btn--primary {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.freya-btn--primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.freya-btn--ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.65);
}

.freya-btn--ghost:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--text);
}

.freya-hero__scroll {
    position: absolute;
    bottom: clamp(24px, 5vh, 48px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 36px;
    height: 56px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    display: grid;
    place-content: center;
    text-decoration: none;
    color: var(--gold);
    transition: border-color 0.25s, background 0.25s;
}

.freya-hero__scroll span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: freya-scroll-nudge 1.8s ease-in-out infinite;
}

@keyframes freya-scroll-nudge {
    0%,
    100% {
        transform: translateY(-4px);
        opacity: 1;
    }
    50% {
        transform: translateY(6px);
        opacity: 0.5;
    }
}

.freya-hero__scroll:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.freya-intro {
    padding: clamp(64px, 12vw, 120px) 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.freya-intro__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.freya-intro__label {
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.freya-intro__title {
    margin: 0 0 20px;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #f0e6d2;
}

.freya-intro__text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 245, 245, 0.72);
}

.freya-ecatalog {
    padding: clamp(48px, 8vw, 88px) 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.freya-ecatalog__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.freya-ecatalog__title {
    margin: 0 0 16px;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.freya-ecatalog__lead {
    margin: 0 0 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.76);
}

.freya-ecatalog__actions {
    margin: 0;
}

.freya-pillars {
    padding: clamp(56px, 10vw, 100px) 0;
    background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
}

.freya-pillars--categories .container {
    width: min(1200px, 92%);
}

.freya-pillars--categories .site-cat-grid--page {
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    justify-content: center;
    gap: clamp(16px, 2.5vw, 28px);
}

.freya-pillars--categories .site-cat-card {
    max-width: 320px;
    margin: 0 auto;
    min-height: 100%;
}

.freya-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 36px);
}

@media (max-width: 900px) {
    .freya-pillars--categories .site-cat-grid--page {
        grid-template-columns: minmax(0, 1fr);
        max-width: 520px;
        margin: 0 auto;
        gap: 14px;
    }

    .freya-pillars__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

.freya-pillar {
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(26, 26, 26, 0.5);
    border-radius: 4px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.freya-pillar:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.freya-pillar__title {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
}

.freya-pillar__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(245, 245, 245, 0.75);
}

.freya-showcase {
    padding: clamp(48px, 8vw, 88px) 0 clamp(72px, 12vw, 120px);
    background: #000;
}

.freya-showcase__head {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.freya-showcase__heading {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    color: var(--text);
}

.freya-showcase__sub {
    margin: 0;
    max-width: 48ch;
    color: rgba(245, 245, 245, 0.65);
    line-height: 1.6;
}

.freya-showcase__row {
    padding: clamp(40px, 6vw, 72px) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.freya-showcase__row-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

@media (max-width: 768px) {
    .freya-showcase__row-inner {
        grid-template-columns: 1fr;
    }

    .freya-showcase__row--flip .freya-showcase__row-inner {
        display: flex;
        flex-direction: column-reverse;
    }
}

.freya-showcase__row--flip .freya-showcase__row-inner {
    direction: rtl;
}

.freya-showcase__row--flip .freya-showcase__meta,
.freya-showcase__row--flip .freya-showcase__visual {
    direction: ltr;
}

.freya-showcase__name {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text);
}

.freya-showcase__loc {
    margin: 0 0 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.freya-showcase__excerpt {
    margin: 0 0 16px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.72);
    max-width: 36rem;
}

.freya-showcase__slug {
    font-size: 0.8rem;
    color: rgba(212, 175, 55, 0.55);
    letter-spacing: 0.04em;
}

.freya-showcase__visual {
    min-height: clamp(200px, 28vw, 340px);
}

.freya-showcase__frame {
    height: 100%;
    min-height: inherit;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background:
        linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(210deg, #141414 0%, #0a0a0a 100%);
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4), 0 24px 60px rgba(0, 0, 0, 0.4);
}

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

/* ——— Site loader + stars ——— */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 30%, #1a1510 0%, #000 65%);
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* JS yoksa hafif statik parilti (yedek) */
.site-loader__stars:not(.site-loader__stars--js)::before,
.site-loader__stars:not(.site-loader__stars--js)::after {
    content: "";
    position: absolute;
    inset: -65% 0 0 0;
    will-change: transform;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.75), transparent),
        radial-gradient(1.5px 1.5px at 60% 50%, rgba(212, 175, 55, 0.65), transparent),
        radial-gradient(1px 1px at 85% 20%, rgba(255, 255, 255, 0.6), transparent);
    background-size: 100% 120%;
    animation: site-loader-stars-fallback 22s linear infinite;
    opacity: 0.55;
}

.site-loader__stars:not(.site-loader__stars--js)::after {
    animation-duration: 30s;
    animation-direction: reverse;
    opacity: 0.4;
}

@keyframes site-loader-stars-fallback {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(38%);
    }
}

.site-loader__stars--js::before,
.site-loader__stars--js::after {
    content: none;
    display: none;
}

.site-loader__star {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
    animation-name: site-loader-star-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
    pointer-events: none;
}

.site-loader__star--gold {
    background: rgba(212, 175, 55, 0.92);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}

@keyframes site-loader-star-fall {
    0% {
        transform: translate3d(0, -12vh, 0);
        opacity: 0;
    }
    6% {
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 115vh, 0);
        opacity: 0.5;
    }
}

.site-loader__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: site-loader-pulse 2.85s ease-in-out infinite;
}

@keyframes site-loader-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.88;
        transform: scale(1.03);
    }
}

.site-loader__logo {
    max-width: min(280px, 70vw);
    height: auto;
    filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.35));
}

.site-loader__brand {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
}

.site-loader__brand span {
    color: var(--gold);
}

/* ——— Marquee (sağdan sola, üst menü ile sabit, tam viewport genişliği) ——— */
.site-marquee {
    height: var(--marquee-h);
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(0, 0, 0, 0.96) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.site-front .site-marquee {
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.78) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top-color: rgba(212, 175, 55, 0.14);
}

.site-marquee__inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.site-marquee__track {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 2.75rem;
    white-space: nowrap;
    will-change: transform;
    animation: site-marquee-scroll-rtl 26s linear infinite;
}

.site-marquee__text {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.28);
}

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

/* ——— Lang nav ——— */
.site-nav__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    z-index: 2;
}

.site-nav__lang-link {
    display: inline-grid;
    place-items: center;
    justify-items: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(245, 245, 245, 0.65);
}

.site-nav__lang-label,
.site-nav__lang-flag {
    grid-area: 1 / 1;
    transition: opacity 0.18s ease;
}

.site-nav__lang-label {
    justify-self: center;
    opacity: 1;
}

.site-nav__lang-flag {
    align-self: center;
    justify-self: center;
    width: 24px;
    height: 16px;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 3px;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.0);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.site-nav__lang-flag--tr {
    background-image: url("/armluxury/public/assets/images/flags/tr.svg");
}

.site-nav__lang-flag--en {
    background-image: url("/armluxury/public/assets/images/flags/gb.svg");
}

.site-nav__lang-flag--gb {
    background-image: url("/armluxury/public/assets/images/flags/gb.svg");
}

.site-nav__lang-flag--fr {
    background-image: url("/armluxury/public/assets/images/flags/fr.svg");
}

.site-nav__lang-flag--ru {
    background-image: url("/armluxury/public/assets/images/flags/ru.svg");
}

.site-nav__lang-flag--sa {
    background-image: url("/armluxury/public/assets/images/flags/sa.svg");
}

.site-nav__lang-link:hover .site-nav__lang-label,
.site-nav__lang-link:focus-visible .site-nav__lang-label {
    opacity: 0;
}

.site-nav__lang-link:hover .site-nav__lang-flag,
.site-nav__lang-link:focus-visible .site-nav__lang-flag {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.6);
}

.site-nav__lang-link:hover,
.site-nav__lang-link:focus-visible,
.site-nav__lang-link.is-active {
    color: var(--gold);
}

.site-nav__lang-sep {
    color: rgba(212, 175, 55, 0.35);
    font-size: 0.85rem;
}

.site-nav__admin-link {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 245, 245, 0.9);
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.38);
    background: radial-gradient(circle at 30% 25%, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.07) 62%, rgba(212, 175, 55, 0.02) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 0 0 rgba(212, 175, 55, 0);
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-nav__admin-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.site-nav__admin-link:hover,
.site-nav__admin-link:focus-visible {
    color: var(--gold);
    transform: translateY(-1px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.72);
    background: radial-gradient(circle at 30% 25%, rgba(212, 175, 55, 0.32), rgba(212, 175, 55, 0.12) 62%, rgba(212, 175, 55, 0.04) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 0 2px rgba(212, 175, 55, 0.18);
}

/* ——— Ürünler mega menü + kategori kartları ——— */
.site-nav__item--mega {
    display: inline-flex;
    align-items: center;
    position: relative;
    vertical-align: middle;
}

.site-nav__mega-hit {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
    cursor: default;
    user-select: none;
    color: inherit;
}

.site-nav__mega {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--header-h) + var(--marquee-h) - 4px);
    z-index: 160;
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.97) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.site-nav__item--mega:hover .site-nav__mega,
.site-nav__item--mega:focus-within .site-nav__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-nav__mega-inner {
    width: min(1280px, 94vw);
    margin: 0 auto;
    padding: 16px 0 22px;
}

.site-cat-grid {
    display: grid;
    gap: clamp(12px, 2vw, 20px);
    align-items: stretch;
}

.site-cat-grid--mega {
    grid-template-columns: repeat(var(--mega-cols, 3), minmax(0, 1fr));
}

.site-cat-grid--page {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.site-cat-grid__empty {
    margin: 0;
    color: rgba(245, 245, 245, 0.65);
    font-size: 0.95rem;
}

.site-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: clamp(16px, 2vw, 22px) clamp(10px, 1.5vw, 14px);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 6px;
    background: rgba(18, 18, 18, 0.92);
    color: rgba(245, 245, 245, 0.88);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    min-height: 100%;
}

.site-cat-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

.site-cat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--cat-icon-size, 52px);
    height: var(--cat-icon-size, 52px);
    margin-bottom: 12px;
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.site-cat-card__icon-img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    display: block;
}

.site-cat-card__name {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.25;
}

.site-cat-card__desc {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(245, 245, 245, 0.68);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-cat-card__desc--muted {
    color: rgba(212, 175, 55, 0.45);
    font-style: italic;
}

.products-page__head {
    margin-bottom: clamp(28px, 4vw, 40px);
    text-align: center;
}

.products-page__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 12px;
    color: var(--text);
}

.products-page__intro {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1.05rem;
    color: rgba(245, 245, 245, 0.72);
    line-height: 1.6;
}

.category-page__head {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.category-page__crumb {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.85);
}

.category-page__crumb a {
    color: rgba(245, 245, 245, 0.75);
    text-decoration: none;
}

.category-page__crumb a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.category-page__crumb-sep {
    margin: 0 0.35em;
    opacity: 0.5;
}

.category-page__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 12px;
    color: var(--text);
}

.category-page__lead {
    margin: 0;
    max-width: 48rem;
    font-size: 1.05rem;
    color: rgba(245, 245, 245, 0.72);
    line-height: 1.65;
}

.category-page__empty {
    color: rgba(245, 245, 245, 0.65);
    font-size: 1rem;
}

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(14, 14, 14, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.category-product-card:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.category-product-card__visual {
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
}

.category-product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-product-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.category-product-card__name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin: 0;
    padding: 14px 14px 6px;
    color: var(--text);
    line-height: 1.3;
}

.category-product-card__excerpt {
    margin: 0;
    padding: 0 14px 14px;
    font-size: 0.82rem;
    color: rgba(245, 245, 245, 0.62);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .site-nav__mega {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        z-index: auto;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        padding: 0 !important;
        margin: 0;
        border: none;
        box-shadow: none;
        pointer-events: none;
        background: transparent;
        transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open .site-nav__item--mega.is-expanded .site-nav__mega {
        max-height: 2400px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 10px 0 12px !important;
        margin-top: 4px;
        border-top: 1px solid rgba(212, 175, 55, 0.18);
        background: rgba(0, 0, 0, 0.35);
    }

    .site-nav.is-open .site-nav__mega-inner {
        width: 100%;
        padding: 8px 0;
    }

    .site-nav.is-open .site-cat-grid--mega {
        grid-template-columns: 1fr;
    }

    .category-product-grid {
        grid-template-columns: 1fr;
    }
}

/* ——— Footer + map ——— */
.site-footer__grid {
    display: grid;
    gap: 32px;
    padding: 48px 0 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: start;
    }
}

.site-footer__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0 0 16px;
    color: var(--gold);
}

.site-footer__block p {
    margin: 0 0 10px;
    color: rgba(245, 245, 245, 0.78);
}

.site-footer__block a {
    color: var(--gold);
}

.site-footer__map-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.site-footer__map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer__bottom {
    padding: 24px 0 26px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.88rem;
    color: rgba(245, 245, 245, 0.55);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__menu-title {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.85);
}

.site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.site-footer__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: color 0.18s ease;
}

.site-footer__menu-link::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.site-footer__menu-link:hover,
.site-footer__menu-link:focus-visible {
    color: var(--gold);
}

.site-footer__divider {
    height: 1px;
    width: 100%;
    background: rgba(212, 175, 55, 0.24);
    margin-top: 2px;
}

.site-footer__social-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
    color: rgba(245, 245, 245, 0.9);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.site-footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.16);
}

.site-footer__copyright {
    margin: 2px 0 0;
    text-align: left;
}

@media (max-width: 768px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.cookie-notice {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.cookie-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-notice__inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
    padding: clamp(10px, 1.8vw, 14px);
}

.cookie-notice__title {
    margin: 0 0 4px;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
}

.cookie-notice__text {
    margin: 0;
    color: rgba(245, 245, 245, 0.82);
    line-height: 1.45;
    font-size: 0.92rem;
}

.cookie-notice__actions {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-notice__accept {
    padding: 8px 14px;
}

.cookie-notice__more {
    display: inline-block;
    color: rgba(245, 245, 245, 0.88);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 6px;
    padding: 8px 13px;
    font-size: 0.92rem;
}

.cookie-notice__more:hover,
.cookie-notice__more:focus-visible {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.58);
}

.kvkk-page {
    padding-top: calc(var(--header-h) + var(--marquee-h) + 34px);
    padding-bottom: 60px;
}

.kvkk-card {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(165deg, rgba(28, 28, 28, 0.95) 0%, rgba(10, 10, 10, 0.96) 100%);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.kvkk-card__head {
    padding: clamp(24px, 4vw, 38px) clamp(18px, 4vw, 38px) clamp(18px, 2.8vw, 26px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: radial-gradient(120% 120% at 0% 0%, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 64%);
}

.kvkk-card__eyebrow {
    margin: 0 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    color: rgba(212, 175, 55, 0.85);
    text-transform: uppercase;
}

.kvkk-card__title {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.4vw, 2rem);
    color: #f9f3e2;
}

.kvkk-card__lead {
    margin: 0;
    color: rgba(245, 245, 245, 0.74);
    line-height: 1.65;
    max-width: 70ch;
}

.kvkk-card__body {
    padding: clamp(18px, 3vw, 30px) clamp(18px, 4vw, 38px);
    color: rgba(245, 245, 245, 0.86);
    line-height: 1.82;
    font-size: 0.98rem;
}

.kvkk-card__body p {
    margin: 0 0 16px;
}

.ecatalog-preview {
    margin-top: 14px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
}

.ecatalog-preview__frame {
    width: 100%;
    height: min(72vh, 860px);
    min-height: 420px;
    border: 0;
    display: block;
    background: #121212;
}

.kvkk-contact {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: clamp(18px, 3vw, 30px) clamp(18px, 4vw, 38px) clamp(22px, 4vw, 34px);
    background: rgba(212, 175, 55, 0.04);
}

.kvkk-contact__title {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.25rem;
}

.kvkk-contact__lead {
    margin: 0 0 14px;
    color: rgba(245, 245, 245, 0.72);
}

.kvkk-contact__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kvkk-contact__item {
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    padding: 12px 14px;
}

.kvkk-contact__item--full {
    grid-column: 1 / -1;
}

.kvkk-contact__k {
    display: block;
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.kvkk-contact__item a {
    color: #f3e6bf;
    text-decoration: none;
}

.kvkk-contact__item a:hover {
    text-decoration: underline;
}

.kvkk-contact__item p {
    margin: 0;
    color: rgba(245, 245, 245, 0.86);
    line-height: 1.7;
}

@media (max-width: 760px) {
    .kvkk-contact__grid {
        grid-template-columns: 1fr;
    }
}

.contact-page {
    padding-top: calc(var(--header-h) + var(--marquee-h) + 34px);
    padding-bottom: 64px;
}

.contact-card {
    max-width: 1040px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(165deg, rgba(27, 27, 27, 0.96) 0%, rgba(9, 9, 9, 0.96) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.48);
}

.contact-card__head {
    padding: clamp(24px, 4vw, 36px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: radial-gradient(110% 120% at 0% 0%, rgba(212, 175, 55, 0.09) 0%, rgba(0, 0, 0, 0) 66%);
}

.contact-card__eyebrow {
    margin: 0 0 8px;
    color: rgba(212, 175, 55, 0.88);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.contact-card__title {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    color: #f8f2df;
}

.contact-card__lead {
    margin: 0;
    color: rgba(245, 245, 245, 0.75);
    line-height: 1.65;
    max-width: 70ch;
}

.contact-card__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
}

.contact-card__info,
.contact-card__form,
.contact-card__map {
    padding: clamp(18px, 3.2vw, 30px);
}

.contact-card__form {
    border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-card__subtitle {
    margin: 0 0 14px;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.contact-card__rows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-card__row {
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.32);
    padding: 12px 14px;
}

.contact-card__row--full {
    grid-column: 1 / -1;
}

.contact-card__k {
    display: block;
    margin-bottom: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.88);
}

.contact-card__row a {
    color: rgba(245, 245, 245, 0.9);
    text-decoration: none;
}

.contact-card__row a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-card__row p {
    margin: 0;
    color: rgba(245, 245, 245, 0.88);
    line-height: 1.7;
}

.contact-card__form-lead {
    margin: 0 0 12px;
    color: rgba(245, 245, 245, 0.72);
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-size: 0.82rem;
    color: rgba(212, 175, 55, 0.9);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.38);
    color: var(--text);
    padding: 10px 12px;
    font: inherit;
}

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

.contact-form .cta-btn {
    width: fit-content;
}

.contact-form__success {
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.14);
    color: #f7e9be;
    font-weight: 600;
}

.contact-card__map-frame {
    position: relative;
    width: 100%;
    height: clamp(240px, 34vh, 360px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: #0f0f0f;
}

.contact-card__map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-card__map--inside {
    margin-top: 16px;
    border: none;
    padding: 0;
}

@media (max-width: 980px) {
    .contact-card__grid {
        grid-template-columns: 1fr;
    }

    .contact-card__form {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.18);
    }
}

@media (max-width: 760px) {
    .contact-card__rows {
        grid-template-columns: 1fr;
    }
}

/* ——— Arka plan müziği: hoparlör + çemberde ses (0–100) ——— */
.site-music-widget {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 9998;
    touch-action: none;
}

.site-music-knob {
    --music-vol: 0.65;
    position: relative;
    width: 118px;
    height: 118px;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}

.site-music-knob__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.site-music-knob__ring-bg {
    stroke: rgba(212, 175, 55, 0.22);
    stroke-linecap: round;
}

.site-music-knob__ring-fill {
    stroke: var(--gold);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.08s ease-out;
}

.site-music-knob__hit {
    pointer-events: stroke;
    cursor: grab;
}

.site-music-knob__hit:active {
    cursor: grabbing;
}

.site-music-knob__core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 56px;
    pointer-events: none;
}

.site-music-knob__value {
    font-size: 0.68rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
    pointer-events: none;
    user-select: none;
}

.site-music-knob .site-music-btn.site-music-knob__speaker {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    pointer-events: auto;
}

.site-music-knob .site-music-btn.site-music-knob__speaker:hover {
    transform: scale(1.06);
    border-color: var(--gold);
}

.site-music-btn__icon {
    width: 20px;
    height: 20px;
    background: currentColor;
    color: var(--gold);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 10v4h4l5 5V5L7 10H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 10v4h4l5 5V5L7 10H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-music-knob__speaker.is-playing .site-music-btn__icon {
    opacity: 1;
}

.site-music-knob__speaker:not(.is-playing) .site-music-btn__icon {
    opacity: 0.45;
}

/* ——— Product page (lüks: slider + rail + akordeon) ——— */
.product-page,
.products-page,
.category-page {
    padding-top: calc(var(--header-h) + var(--marquee-h) + 32px);
    padding-bottom: 72px;
}

.product-page--lux {
    max-width: 1320px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.55fr);
    gap: clamp(24px, 3.5vw, 48px);
    align-items: start;
}

.product-layout__visual {
    position: relative;
}

.product-layout__rail {
    position: sticky;
    top: calc(var(--header-h) + var(--marquee-h) + 20px);
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.product-slider {
    position: relative;
}

.product-slider__stage {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 6px;
    overflow: hidden;
    background: radial-gradient(ellipse 90% 80% at 50% 20%, rgba(212, 175, 55, 0.06), #080808 55%);
}

.product-slider__figure {
    margin: 0;
}

.product-slider__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: min(78vh, 820px);
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.product-slider__chrome {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-slider__btn {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    color: var(--gold);
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-slider__btn:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
}

.product-slider__btn--prev {
    left: 12px;
}

.product-slider__btn--prev::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    translate: 2px 0;
}

.product-slider__btn--next {
    right: 12px;
}

.product-slider__btn--next::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    translate: -2px 0;
}

.product-slider__dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    translate: -50% 0;
    display: flex;
    gap: 8px;
    pointer-events: auto;
}

.product-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-slider__dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.25);
}

.product-slider__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.product-slider__thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-slider__thumb:hover,
.product-slider__thumb.is-active {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.65);
}

.product-slider__thumb img {
    display: block;
    width: 76px;
    height: 58px;
    object-fit: cover;
}

.product-slider--empty .product-slider__placeholder {
    aspect-ratio: 4 / 3;
    min-height: 280px;
    border-radius: 6px;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    background: linear-gradient(145deg, #0f0f0f, #050505);
}

.product-layout__video {
    margin-top: 8px;
}

.product-layout__video-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin: 0 0 10px;
    color: var(--gold);
}

.product-video {
    display: block;
    width: 100%;
    background: #000;
}

.product-video--rail {
    max-height: 280px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.28);
}

.product-rail__head {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.product-rail__cat {
    margin: 0 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.88);
}

.product-rail__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    margin: 0 0 12px;
    line-height: 1.12;
    color: var(--text);
}

.product-rail__lead {
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.72);
}

.product-price--rail {
    margin: 0;
}

.product-price-gabba--rail {
    max-width: none;
    margin: 0;
}

.product-dims {
    padding: 16px 18px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 6px;
    background: rgba(10, 10, 10, 0.85);
}

.product-dims__title {
    margin: 0 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.product-dims__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-dims__cell {
    text-align: center;
    padding: 10px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-dims__k {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(212, 175, 55, 0.75);
    margin-bottom: 4px;
}

.product-dims__v {
    font-size: 0.95rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: rgba(245, 245, 245, 0.92);
}

.product-dims-table-wrap {
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-dims-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.product-dims-table__th {
    background: linear-gradient(180deg, #5c4336 0%, #453228 100%);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 11px 10px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.28);
}

.product-dims-table__th--part {
    width: 40%;
    text-align: left;
    padding-left: 14px;
}

.product-dims-table__part {
    text-align: left;
    font-weight: 600;
    color: #141414;
    padding: 11px 14px;
    background: #f2ebe2;
    border: 1px solid rgba(0, 0, 0, 0.12);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.product-dims-table__num {
    text-align: center;
    padding: 11px 10px;
    color: #141414;
    background: #f7f1e9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.product-dims-table tbody tr:nth-child(even) .product-dims-table__part {
    background: #ebe2d4;
}

.product-dims-table tbody tr:nth-child(even) .product-dims-table__num {
    background: #efe6da;
}

.product-dims-table__note {
    margin: 10px 0 0;
    font-size: 0.72rem;
    color: rgba(245, 245, 245, 0.58);
    line-height: 1.45;
}

.product-accordions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-acc {
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 6px;
    background: rgba(12, 12, 12, 0.92);
    overflow: hidden;
}

.product-acc[open] {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.product-acc__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px 14px 42px;
    font-family: var(--font-serif);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    user-select: none;
}

.product-acc__summary::-webkit-details-marker {
    display: none;
}

.product-acc__summary::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.22s ease;
}

.product-acc[open] .product-acc__summary::before {
    transform: translateY(-20%) rotate(225deg);
}

.product-acc__summary:hover {
    color: var(--gold);
}

.product-acc__body {
    padding: 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(245, 245, 245, 0.78);
    font-size: 0.9rem;
    line-height: 1.65;
}

.product-acc__body--dims {
    padding-top: 12px;
}

.product-acc__body--dims .product-dims__list {
    margin-top: 0;
}

.product-acc__dl {
    margin: 12px 0 0;
}

.product-acc__row {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 10px 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-acc__row:last-child {
    border-bottom: 0;
}

.product-acc__row dt {
    margin: 0;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
}

.product-acc__row dd {
    margin: 0;
}

.product-acc__long {
    margin-top: 12px;
}

.product-acc__long p {
    margin: 0 0 10px;
}

.product-acc__empty {
    margin: 10px 0 0;
    color: rgba(245, 245, 245, 0.55);
    font-size: 0.88rem;
}

.product-acc__body--prose p {
    margin: 0 0 12px;
}

.product-price--visible {
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.product-price__label {
    color: var(--gold);
    margin-right: 6px;
}

.product-price-gabba {
    margin: 20px 0 28px;
    padding: 28px 24px;
    max-width: 32rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0.4) 55%);
    border-radius: 4px;
}

.product-price-gabba__eyebrow {
    margin: 0 0 6px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.product-price-gabba__title {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.product-price-gabba__text {
    margin: 0 0 18px;
    color: rgba(245, 245, 245, 0.75);
    line-height: 1.65;
}

.product-price-gabba--cta-only {
    padding: 22px 24px;
}

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

    .product-layout__rail {
        position: static;
    }

    .product-slider__img {
        max-height: 62vh;
    }
}

/* ——— Admin product quick toggles ——— */
.admin-product-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.admin-pill-toggle {
    margin: 0;
}

.admin-pill-toggle button {
    margin: 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: #111;
    color: rgba(245, 245, 245, 0.75);
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.admin-pill-toggle button:hover {
    border-color: rgba(212, 175, 55, 0.6);
    color: var(--text);
}

.admin-pill-toggle button.is-on {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border-color: var(--gold);
}
