/* Toprak Ambalaj — mağaza teması (referans: e-ticaret vitrin düzeni) */
:root {
    --shop-bg: #ffffff;
    --shop-surface: #f6f7f9;
    --shop-text: #1a1a1a;
    --shop-muted: #5c5f66;
    --shop-border: #e8eaee;
    --shop-accent: #111827;
    --shop-accent-hover: #000000;
    --shop-highlight: #c41e3a;
    --shop-radius: 10px;
    --shop-radius-lg: 14px;
    --shop-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shop-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.1);
    --shop-font: 'DM Sans', system-ui, sans-serif;
    --shop-max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body.shop-body {
    font-family: var(--shop-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--shop-text);
    background: var(--shop-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s, opacity 0.2s; }
ul { list-style: none; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    z-index: 10000;
    border-radius: 6px;
}

.container {
    max-width: var(--shop-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo bar */
.shop-promo {
    background: var(--shop-accent);
    color: #fff;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 16px;
}
.shop-promo p { margin: 0; }

/* Header */
.shop-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--shop-bg);
    box-shadow: var(--shop-shadow);
}

.shop-topbar {
    border-bottom: 1px solid var(--shop-border);
    font-size: 0.8125rem;
    color: var(--shop-muted);
}
.shop-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    gap: 16px;
    flex-wrap: wrap;
}
.shop-topbar-left, .shop-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.shop-topbar a:hover { color: var(--shop-text); }
.shop-topbar-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--shop-surface);
    color: var(--shop-text);
}
.shop-topbar-right a:hover { background: var(--shop-border); }

.shop-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.shop-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
    line-height: 1.15;
    text-decoration: none;
    box-sizing: border-box;
    color: var(--shop-text);
    max-width: min(420px, calc(100vw - 160px));
}
.shop-logo:hover {
    text-decoration: none;
    opacity: 0.92;
}
.shop-logo-graphic {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0 1px var(--shop-border);
}
.shop-logo-img--mark {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: 50% 18%;
}
.shop-logo-text {
    font-family: var(--shop-font);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.shop-logo--footer {
    max-width: 100%;
}
.shop-logo--footer .shop-logo-graphic {
    width: 44px;
    height: 44px;
    border-radius: 8px;
}
.shop-logo--footer .shop-logo-text {
    color: #fff;
    font-size: 1.05rem;
}

.shop-cat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--shop-border);
    background: var(--shop-surface);
    color: var(--shop-text);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.shop-cat-toggle:hover {
    background: #fff;
    border-color: var(--shop-text);
}
.shop-cat-toggle i { font-size: 1rem; opacity: 0.85; }

.shop-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.shop-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--shop-text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.shop-nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.shop-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.shop-nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.shop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}

.shop-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.shop-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--shop-text);
    border-radius: 8px;
}
.shop-nav-list > li > a:hover,
.shop-nav-list > li > a.is-active {
    background: var(--shop-surface);
    color: var(--shop-accent);
}
.shop-nav-list .has-dropdown { position: relative; }
.shop-nav-list .has-dropdown > a i { font-size: 0.65rem; opacity: 0.7; }

.shop-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 320px;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    pointer-events: none;
}
.has-dropdown:hover .shop-dropdown,
.has-dropdown:focus-within .shop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.shop-dropdown-inner {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow-hover);
    padding: 16px;
    max-height: 70vh;
    overflow-y: auto;
}
.shop-dropdown-all {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: var(--shop-surface);
}
.shop-dropdown-all:hover { background: var(--shop-border); }
.shop-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.shop-dropdown-grid a {
    font-size: 0.875rem;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--shop-muted);
}
.shop-dropdown-grid a:hover {
    background: var(--shop-surface);
    color: var(--shop-text);
}

.shop-nav-actions { flex-shrink: 0; }
.shop-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--shop-border);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--shop-text);
    background: #fff;
}
.shop-btn-ghost:hover {
    border-color: #25d366;
    color: #128c7e;
    background: rgba(37, 211, 102, 0.06);
}

/* Hero home */
.shop-hero {
    background: var(--shop-surface);
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--shop-border);
}
.shop-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.shop-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.shop-hero-lead {
    color: var(--shop-muted);
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 560px;
}
.shop-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.shop-hero .shop-btn-primary,
.shop-hero .shop-btn-secondary {
    padding: 16px 28px;
    font-size: 1rem;
}
.shop-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--shop-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
}
.shop-btn-primary:hover { background: var(--shop-accent-hover); color: #fff; }
.shop-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid var(--shop-border);
    font-weight: 600;
    font-size: 0.9375rem;
    background: #fff;
    color: var(--shop-text);
}
.shop-btn-secondary:hover { border-color: var(--shop-text); }

.shop-hero-visual {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    max-height: min(520px, 58vh);
    background: #e5e7eb;
    box-shadow: var(--shop-shadow-hover);
}
.shop-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category pills strip */
.shop-cat-strip {
    padding: 28px 0;
    border-bottom: 1px solid var(--shop-border);
}
.shop-cat-strip h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--shop-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.shop-cat-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}
.shop-cat-pill {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--shop-border);
    background: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}
.shop-cat-pill:hover {
    border-color: var(--shop-text);
    background: var(--shop-surface);
}
.shop-cat-pill img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

/* Section */
.shop-section {
    padding: 48px 0;
}
.shop-section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.shop-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.shop-section-header p {
    color: var(--shop-muted);
    font-size: 0.95rem;
    max-width: 560px;
}
.shop-link-all {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--shop-highlight);
}
.shop-link-all:hover { text-decoration: underline; }

/* Product grid */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-card {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.shop-card:hover {
    box-shadow: var(--shop-shadow-hover);
    transform: translateY(-4px);
}
.shop-card-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--shop-surface);
    overflow: hidden;
}
.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.shop-card:hover .shop-card-image img { transform: scale(1.05); }
.shop-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    white-space: nowrap;
}
.shop-badge--out { background: #6b7280; }
.shop-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.shop-card-cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--shop-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    line-height: 1.3;
}
.shop-card-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--shop-text);
    flex: 1;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.shop-card-title a:hover { color: var(--shop-highlight); }
.shop-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.shop-card-actions .shop-btn-sm {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid var(--shop-border);
    background: #fff;
}
.shop-card-actions .shop-btn-sm--primary {
    background: var(--shop-accent);
    color: #fff;
    border-color: var(--shop-accent);
}
.shop-card-actions .shop-btn-sm--primary:hover { opacity: 0.92; color: #fff; }
.shop-card-actions .shop-btn-sm--disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* Categories large */
.shop-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.shop-cat-card {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    border: 1px solid var(--shop-border);
    background: #fff;
    transition: box-shadow 0.25s;
}
.shop-cat-card:hover { box-shadow: var(--shop-shadow-hover); }
.shop-cat-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--shop-surface);
}
.shop-cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.shop-cat-card:hover .shop-cat-card-img img { transform: scale(1.06); }
.shop-cat-card-body {
    padding: 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Page header inner pages */
.shop-page-hero {
    background: var(--shop-surface);
    padding: 36px 0;
    border-bottom: 1px solid var(--shop-border);
}
.shop-page-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.shop-breadcrumb {
    font-size: 0.875rem;
    color: var(--shop-muted);
    margin-bottom: 12px;
}
.shop-breadcrumb a { color: var(--shop-highlight); }
.shop-breadcrumb a:hover { text-decoration: underline; }

/* Soldan açılan kategori paneli (tüm sayfalar) */
.shop-cat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.28s ease, visibility 0.28s ease, z-index 0s 0.29s;
}

body.shop-cat-open .shop-cat-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1040;
    transition: opacity 0.28s ease, visibility 0.28s ease, z-index 0s 0s;
}

.shop-cat-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 92vw);
    max-width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(-105%);
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.33s, z-index 0s 0.33s;
}

body.shop-cat-open .shop-cat-panel {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    z-index: 1050;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s, z-index 0s 0s;
}

body:not(.shop-cat-open) .shop-cat-panel * {
    pointer-events: none;
}

.shop-cat-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid var(--shop-border);
    flex-shrink: 0;
    background: var(--shop-surface);
}

.shop-cat-panel-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--shop-text);
    letter-spacing: -0.02em;
}

.shop-cat-panel-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: var(--shop-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
    flex-shrink: 0;
}
.shop-cat-panel-close:hover { background: var(--shop-border); }

.shop-cat-panel-body {
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
}

.shop-section--catalog {
    padding-top: 24px;
    padding-bottom: 48px;
}

.shop-cat-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0 12px;
}

.shop-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--shop-text);
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.shop-sidebar-link:hover {
    background: var(--shop-surface);
    color: var(--shop-accent);
}

.shop-sidebar-link.is-active {
    background: rgba(17, 24, 39, 0.06);
    border-left-color: var(--shop-accent);
    font-weight: 600;
}

.shop-sidebar-thumb {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--shop-surface);
    border: 1px solid var(--shop-border);
}

.shop-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-sidebar-label {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.shop-sidebar-link > .fa-th-large {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--shop-surface);
    color: var(--shop-muted);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.shop-sidebar-link.is-active > .fa-th-large {
    background: rgba(17, 24, 39, 0.08);
    color: var(--shop-accent);
}

/* Product detail */
.shop-detail {
    padding: 40px 0 56px;
}
.shop-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.shop-detail-image {
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    border: 1px solid var(--shop-border);
    background: var(--shop-surface);
    aspect-ratio: 1;
}
.shop-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-detail-meta { margin-bottom: 12px; font-size: 0.875rem; color: var(--shop-muted); }
.shop-detail h1 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
}
.shop-detail-text {
    color: var(--shop-muted);
    margin-bottom: 24px;
    line-height: 1.75;
}
.shop-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Static pages (hakkımızda, iletişim) */
.shop-prose {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0 56px;
}
.shop-prose h2 {
    font-size: 1.35rem;
    margin: 28px 0 12px;
    font-weight: 700;
}
.shop-prose p { margin-bottom: 16px; color: var(--shop-muted); line-height: 1.75; }

.shop-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0 56px;
    align-items: start;
}
.shop-contact-card {
    background: var(--shop-surface);
    border-radius: var(--shop-radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.shop-contact-card i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-accent);
    flex-shrink: 0;
    border: 1px solid var(--shop-border);
}
.shop-form {
    background: var(--shop-surface);
    border-radius: var(--shop-radius-lg);
    padding: 32px;
    border: 1px solid var(--shop-border);
}
.shop-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.shop-form input,
.shop-form select,
.shop-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    margin-bottom: 16px;
    background: #fff;
}
.shop-form input:focus,
.shop-form select:focus,
.shop-form textarea:focus {
    outline: none;
    border-color: var(--shop-text);
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.shop-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-response-shop {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
}
.form-response-shop.is-success {
    display: block;
    background: rgba(37, 99, 235, 0.08);
    color: #1e40af;
}
.form-response-shop.is-error {
    display: block;
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
}

/* Footer */
.shop-footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.72);
    padding: 56px 0 0;
    margin-top: 0;
}
.shop-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.shop-footer-brand .shop-logo {
    margin-bottom: 8px;
    max-width: min(100%, 340px);
}
.shop-footer-brand .shop-logo:hover {
    opacity: 1;
}
.shop-footer-brand p { margin: 12px 0 20px; font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.shop-footer-social {
    display: flex;
    gap: 10px;
}
.shop-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.shop-footer-social a:hover { background: rgba(255, 255, 255, 0.15); }
.shop-footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.shop-footer-links li { margin-bottom: 10px; }
.shop-footer-links a { font-size: 0.9rem; }
.shop-footer-links a:hover { color: #fff; }
.shop-footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.shop-footer-contact i { margin-top: 4px; color: #9ca3af; }
.shop-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}
.shop-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8125rem;
}
.shop-footer-note { color: rgba(255, 255, 255, 0.45); }

.shop-wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 800;
    transition: transform 0.2s;
}
.shop-wa-float:hover { transform: scale(1.06); color: #fff; }

.shop-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: none;
    background: var(--shop-accent);
    color: #fff;
    cursor: pointer;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.shop-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.shop-scroll-top:hover { background: #000; }

/* Filters */
.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}
.shop-toolbar label { font-size: 0.875rem; font-weight: 600; color: var(--shop-muted); }
.shop-toolbar select {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--shop-border);
    font-family: inherit;
    font-size: 0.9rem;
    background: #fff;
}

/* Empty */
.shop-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--shop-muted);
}

@media (max-width: 1100px) {
    .shop-product-grid { grid-template-columns: repeat(3, 1fr); }
    .shop-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .shop-hero-inner { grid-template-columns: 1fr; }
    .shop-hero { padding: 40px 0 36px; }
    .shop-hero-visual {
        min-height: 0;
        max-height: 400px;
        aspect-ratio: 16/10;
    }
    .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-footer-grid { grid-template-columns: 1fr 1fr; }
    .shop-detail-grid { grid-template-columns: 1fr; }
    .shop-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .shop-nav-toggle { display: flex; }
    .shop-nav {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 72px 20px 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        /* iOS Safari'de position:fixed + inset:0 öğeler pointer-events:none ile bile
           dokunuşları kesebilir. z-index:-1 ile kapalıyken tüm içeriğin arkasına gönder. */
        z-index: -1;
        transition: opacity 0.25s, visibility 0.25s, z-index 0s 0.26s;
    }
    .shop-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 950;
        transition: opacity 0.25s, visibility 0.25s, z-index 0s 0s;
    }
    .shop-nav-list {
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-radius: var(--shop-radius-lg);
        padding: 12px;
        box-shadow: var(--shop-shadow-hover);
    }
    .shop-nav-list > li > a { padding: 14px 16px; }

    /* Dropdown: mobilde varsayılan kapalı, akordeon olarak açılır */
    .has-dropdown > a {
        justify-content: space-between;
    }
    .has-dropdown > a i.fa-chevron-down {
        transition: transform 0.25s;
        margin-left: auto;
    }
    .has-dropdown.is-expanded > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    .has-dropdown .shop-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: none;
        padding-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.25s, visibility 0.25s, max-height 0.3s ease;
    }
    .has-dropdown.is-expanded .shop-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 1200px;
    }
    .shop-dropdown-inner {
        box-shadow: none;
        border: none;
        padding: 8px 0 0;
        max-height: none;
    }
    .shop-dropdown-grid { grid-template-columns: 1fr; }
    .shop-nav-actions { padding: 0 12px 12px; background: #fff; border-radius: 0 0 var(--shop-radius-lg) var(--shop-radius-lg); margin: -8px 0 0; }
    .shop-nav-actions .shop-btn-ghost { width: 100%; justify-content: center; }

    .shop-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .shop-product-grid { grid-template-columns: 1fr; }
    .shop-form-row { grid-template-columns: 1fr; }
    .shop-topbar-left { flex-direction: column; align-items: flex-start; gap: 8px; }
    .shop-cat-toggle-text { display: none; }
    .shop-cat-toggle { padding: 8px 12px; border-radius: 10px; }
    .shop-logo {
        max-width: calc(100vw - 120px);
        gap: 8px;
    }
    .shop-logo-graphic {
        width: 44px;
        height: 44px;
    }
    .shop-logo-text {
        font-size: 1.05rem;
    }
}
