*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-text);
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* ── Kayan yazı banner ── */
.ticker-banner {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #ffd700 0%, #ff8c00 35%, #ff4500 70%, #dc143c 100%);
    color: #1a0500;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.25);
    position: sticky;
    top: 0;
    z-index: 110;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    padding: 0.65rem 0;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 1.5rem;
}

.ticker-separator {
    color: rgba(26, 5, 0, 0.45);
    font-size: 0.75rem;
    user-select: none;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover'da duraklatma (masaüstü) */
@media (hover: hover) {
    .ticker-banner:hover .ticker-track {
        animation-play-state: paused;
    }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        white-space: normal;
        text-align: center;
        gap: 0.25rem 0;
        padding: 0.5rem 1rem;
    }

    .ticker-separator {
        display: none;
    }

    .ticker-item {
        padding: 0.15rem 0.75rem;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .ticker-banner {
        font-size: 0.8rem;
    }

    .ticker-track {
        padding: 0.55rem 0;
        animation-duration: 20s;
    }

    .ticker-item {
        padding: 0 1rem;
    }
}

/* Tablet ve üstü */
@media (min-width: 768px) {
    .ticker-banner {
        font-size: 1rem;
    }

    .ticker-track {
        padding: 0.75rem 0;
    }
}

/* ── Renk ve tipografi ── */
:root {
    --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --color-gold: #ffd700;
    --color-orange: #ff8c00;
    --color-red: #dc143c;
    --color-red-dark: #b01030;
    --color-warm-bg: #fff8f0;
    --color-text: #1a1210;
    --color-text-muted: #5c4a42;
    --header-height: 180px;
    --header-height-mobile: auto;
    --menu-top-offset: 0px;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--color-warm-bg);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
    box-shadow: 0 2px 12px rgba(220, 20, 60, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    min-height: var(--header-height-mobile);
    gap: 0.5rem;
}

/* Mobil: menü | logo | sepet */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.12));
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 0 0 1.5px rgba(255, 140, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    justify-self: start;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(220, 20, 60, 0.18));
    box-shadow: 0 0 0 2px var(--color-orange);
    outline: none;
}

.menu-toggle:active {
    transform: scale(0.96);
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
}

.menu-toggle-bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--color-red-dark), var(--color-orange));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, width 0.3s;
    transform-origin: center;
}

.site-header.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.site-header.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.header-nav--desktop {
    display: none;
    justify-self: start;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    position: relative;
    transition: color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--color-orange);
    transition: color 0.25s, transform 0.25s;
}

.nav-link-icon svg {
    width: 100%;
    height: 100%;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--color-red-dark);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 140, 0, 0.12));
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.nav-link:hover .nav-link-icon,
.nav-link:focus-visible .nav-link-icon {
    color: var(--color-red);
    transform: scale(1.1);
}

.header-logo {
    justify-self: center;
    display: flex;
    align-items: center;
    line-height: 0;
}

.header-logo img {
    height: 180px;
    width: auto;
    max-width: 675px;
    object-fit: contain;
}

/* Mobil: header dikey kısaltma */
@media (max-width: 767.98px) {
    .header-inner {
        min-height: auto;
        padding: 0.3rem 1rem;
    }

    .header-logo img {
        height: 140px;
        max-width: 520px;
    }
}

.header-cart {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    color: var(--color-red-dark);
    text-decoration: none;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(220, 20, 60, 0.08));
    box-shadow: 0 0 0 1.5px rgba(255, 140, 0, 0.25);
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.header-cart:hover,
.header-cart:focus-visible {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(220, 20, 60, 0.15));
    color: var(--color-red);
    box-shadow: 0 0 0 2px var(--color-orange);
    transform: scale(1.04);
    outline: none;
}

.cart-icon {
    width: 26px;
    height: 26px;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(176, 16, 48, 0.4);
    transition: transform 0.2s;
}

.cart-badge--hidden {
    display: none;
}

.header-cart:hover .cart-badge,
.header-cart:focus-visible .cart-badge {
    transform: scale(1.1);
}

/* Mobil menü — ticker + header altından başlar */
.mobile-nav-overlay {
    position: fixed;
    top: var(--menu-top-offset);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 5, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 80;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

body.menu-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: var(--menu-top-offset);
    left: 0;
    width: min(320px, 88vw);
    height: calc(100dvh - var(--menu-top-offset));
    display: flex;
    flex-direction: column;
    background: var(--color-warm-bg);
    box-shadow: 8px 0 40px rgba(176, 16, 48, 0.18);
    z-index: 85;
    overflow: hidden;
    transform: translateX(-105%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

body.menu-open .mobile-nav {
    transform: translateX(0);
}

@media (max-width: 767.98px) {
    .site-header {
        z-index: 105;
    }

    body.menu-open .site-header {
        z-index: 105;
    }
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 45%, var(--color-red) 100%);
    color: #1a0500;
    flex-shrink: 0;
}

.mobile-nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mobile-nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.mobile-nav-brand-tag {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    color: #1a0500;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
    outline: none;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 1rem 0.5rem;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    transition-delay: var(--item-delay, 0s);
}

body.menu-open .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(220, 20, 60, 0.06);
    border: 1px solid rgba(255, 140, 0, 0.15);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.mobile-nav-link:active {
    transform: scale(0.98);
}

.mobile-nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 140, 0, 0.2));
    color: var(--color-red-dark);
}

.mobile-nav-link-icon svg {
    width: 22px;
    height: 22px;
}

.mobile-nav-link-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    gap: 0.5rem;
}

.mobile-nav-link-label {
    line-height: 1.3;
}

.mobile-nav-link-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    opacity: 0.6;
    transition: opacity 0.25s, transform 0.25s;
}

.mobile-nav-link-arrow svg {
    width: 100%;
    height: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 248, 240, 1) 100%);
    border-color: var(--color-orange);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
    outline: none;
    transform: translateX(4px);
}

.mobile-nav-link:hover .mobile-nav-link-arrow,
.mobile-nav-link:focus-visible .mobile-nav-link-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--color-red);
}

.mobile-nav-footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px dashed rgba(255, 140, 0, 0.35);
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.08));
}

.mobile-nav-promo {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
}

body.nav-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav,
    .mobile-nav-overlay,
    .mobile-nav-list li,
    .menu-toggle-bar {
        transition: none;
    }

    .mobile-nav-list li {
        opacity: 1;
        transform: none;
    }
}

/* Masaüstü: sol menü | logo | sepet — hamburger gizli */
@media (min-width: 768px) {
    .header-inner {
        min-height: var(--header-height);
        padding: 0.85rem 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .header-nav--desktop {
        display: block;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.55rem 1rem;
    }

    .nav-list {
        gap: 0.35rem 0.75rem;
    }

    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }

    .header-logo img {
        height: 150px;
        max-width: 540px;
    }

    .header-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .header-logo {
        grid-column: 2;
    }

    .header-nav--desktop {
        grid-column: 1;
    }

    .header-cart {
        grid-column: 3;
    }
}

.site-main {
    min-height: 50vh;
}

/* ── Ürün görsel / video kutusu ── */
.product-media {
    padding: 1.25rem 1rem 2rem;
    background: linear-gradient(180deg, #fff8f0 0%, #f5f5f5 100%);
}

.product-media-box {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(220, 20, 60, 0.08),
        0 0 0 1px rgba(255, 140, 0, 0.15);
}

.product-media-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red));
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.product-media-viewer {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #1a1a1a;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.product-media-viewer.is-dragging {
    cursor: grabbing;
}

.media-track-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
}

.media-panel {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-panel-img,
.media-panel-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #111;
    pointer-events: auto;
    user-select: none;
}

.media-panel-video {
    object-fit: contain;
    cursor: default;
}

.media-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-red-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.media-nav svg {
    width: 22px;
    height: 22px;
}

.media-nav:hover,
.media-nav:focus-visible {
    background: #fff;
    color: var(--color-red);
    transform: translateY(-50%) scale(1.08);
    outline: none;
}

.media-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.media-nav--prev {
    left: 0.65rem;
}

.media-nav--next {
    right: 0.65rem;
}

.media-pagination {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: rgba(26, 5, 0, 0.55);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.product-media-thumbs {
    display: flex;
    gap: 0.6rem;
    padding: 0.85rem 1rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-orange) transparent;
}

.product-media-thumbs::-webkit-scrollbar {
    height: 6px;
}

.product-media-thumbs::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 3px;
}

.media-thumb {
    position: relative;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #f0ebe3;
    scroll-snap-align: start;
    transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-thumb:hover,
.media-thumb:focus-visible {
    border-color: var(--color-orange);
    transform: translateY(-2px);
    outline: none;
}

.media-thumb.is-active {
    border-color: var(--color-red);
    box-shadow: 0 4px 14px rgba(220, 20, 60, 0.25);
}

.media-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    pointer-events: none;
}

.media-thumb-play svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.media-thumb-badge {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(90deg, var(--color-orange), var(--color-red));
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    line-height: 1.3;
    white-space: nowrap;
}

/* Ürün değerlendirme */
.product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 0.85rem;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.product-rating-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.product-rating-stars .star {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--color-gold);
    filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.35));
}

.product-rating-stars .star--full {
    flex-shrink: 0;
}

.product-rating-stars .star--half {
    position: relative;
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}

.product-rating-stars .star--half .star--empty {
    color: #e8dfd0;
}

.product-rating-stars .star--half .star--filled {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    color: var(--color-gold);
}

.product-rating-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.product-rating-score {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.product-rating-sep {
    color: rgba(92, 64, 48, 0.45);
    font-weight: 700;
}

.product-rating-count {
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Ürün başlık ve fiyat */
.product-info {
    padding: 0 1.25rem 1.35rem;
    text-align: center;
}

.product-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.04em;
}

.product-prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}

.product-price-current {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.product-price-old {
    font-size: 1.1rem;
    font-weight: 500;
    color: #9a8f88;
    font-variant-numeric: tabular-nums;
    text-decoration: line-through;
    text-decoration-color: var(--color-red);
    text-decoration-thickness: 2px;
}

.product-price-badge {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.25);
}

.product-features {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.06));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-feature:hover {
    border-color: rgba(255, 140, 0, 0.45);
    box-shadow: 0 2px 12px rgba(255, 140, 0, 0.12);
}

.product-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
    color: #1a0500;
    font-size: 1rem;
}

.product-feature-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-align: left;
}

/* Adet seçici */
.product-quantity {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.product-quantity-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(255, 140, 0, 0.35);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(220, 20, 60, 0.06);
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: linear-gradient(180deg, #fffaf5 0%, #fff3e6 100%);
    color: var(--color-red-dark);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.qty-btn:hover:not(:disabled),
.qty-btn:focus-visible {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 140, 0, 0.2));
    color: var(--color-red);
    outline: none;
}

.qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.qty-input {
    width: 3.5rem;
    height: 48px;
    padding: 0;
    border: none;
    border-left: 1px solid rgba(255, 140, 0, 0.2);
    border-right: 1px solid rgba(255, 140, 0, 0.2);
    background: #fff;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
    background: #fffdf9;
}

/* Satın Al butonu */
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-buy i {
    font-size: 1.15rem;
}

.btn-buy:hover,
.btn-buy:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(220, 20, 60, 0.45);
    filter: brightness(1.05);
    outline: none;
    color: #fff;
}

.btn-buy:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(220, 20, 60, 0.3);
}

.btn-buy.is-added {
    animation: btn-added-pulse 0.6s ease;
}

@keyframes btn-added-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.btn-buy-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.4);
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-buy-secondary:hover,
.btn-buy-secondary:focus-visible {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--color-orange);
    color: var(--color-red-dark);
    outline: none;
}

.btn-buy.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
    transform: none !important;
}

.btn-buy--solo {
    max-width: 280px;
    margin: 0 auto;
}

/* Sepet toast */
.cart-toast {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem 0.85rem 0.85rem;
    max-width: calc(100vw - 2rem);
    background: #1a1210;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 140, 0, 0.35);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s;
    pointer-events: none;
}

.cart-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cart-toast-icon {
    color: #25d366;
    font-size: 1.25rem;
}

.cart-toast-text {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.cart-toast-link {
    margin-left: 0.25rem;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
}

/* Sepet sayfası */
.cart-page {
    padding: 1.25rem 1rem 2.5rem;
    background: linear-gradient(180deg, #fff8f0 0%, #f5f5f5 100%);
    min-height: 50vh;
}

.cart-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cart-page-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cart-page-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.cart-page-title i {
    color: var(--color-orange);
}

.cart-page-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.cart-page-continue:hover,
.cart-page-continue:focus-visible {
    color: var(--color-red);
    outline: none;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.cart-empty-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    color: var(--color-orange);
    font-size: 2rem;
}

.cart-empty h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text);
}

.cart-empty p {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

.cart-items-section {
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.cart-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

#cart-count-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
}

.cart-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.cart-clear-btn:hover,
.cart-clear-btn:focus-visible {
    color: var(--color-red);
    background: rgba(220, 20, 60, 0.08);
    outline: none;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 0.85rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
}

.cart-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.cart-item-image {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #f0ebe3;
    line-height: 0;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.cart-item-body {
    min-width: 0;
}

.cart-item-title {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cart-item-title:hover {
    color: var(--color-red);
}

.cart-item-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.cart-item-price {
    font-weight: 800;
    color: var(--color-red);
    font-size: 0.95rem;
}

.cart-item-price-old {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-control--sm .qty-btn {
    width: 36px;
    height: 36px;
}

.quantity-control--sm .qty-input {
    width: 2.75rem;
    height: 36px;
    font-size: 0.95rem;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(220, 20, 60, 0.08);
    color: var(--color-red);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cart-item-remove:hover,
.cart-item-remove:focus-visible {
    background: rgba(220, 20, 60, 0.18);
    transform: scale(1.05);
    outline: none;
}

.cart-item-line-total {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text);
    white-space: nowrap;
    padding-top: 0.25rem;
}

.cart-summary {
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.2);
    position: sticky;
    top: calc(var(--menu-top-offset, 120px) + 1rem);
}

.cart-summary-title {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange)) 1;
}

.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.cart-summary-row--savings span:last-child {
    color: #2e7d32;
    font-weight: 700;
}

.cart-free-shipping {
    color: #2e7d32;
    font-weight: 700;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 2px dashed rgba(255, 140, 0, 0.25);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
}

.cart-summary-total span:last-child {
    font-size: 1.35rem;
    color: var(--color-red);
}

.cart-summary .btn-buy {
    margin-top: 0;
}

.cart-summary-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 1rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
}

.cart-summary-note i {
    color: var(--color-orange);
}

/* Stok azalıyor + geri sayım */
.stock-urgency {
    margin-top: 1.25rem;
    padding: 1rem 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(255, 140, 0, 0.12) 100%);
    border: 2px solid rgba(220, 20, 60, 0.25);
    text-align: center;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.1);
}

.stock-urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.stock-urgency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: #fff;
    font-size: 0.95rem;
    animation: urgency-pulse 1.5s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.stock-urgency-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-red-dark);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.stock-urgency-sub {
    margin: 0 0 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.stock-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 4rem;
    padding: 0.5rem 0.4rem 0.4rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    margin-top: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1;
    padding-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .stock-urgency-icon {
        animation: none;
    }
}

/* Ürün açıklama metni */
.product-description {
    margin-top: 1.25rem;
    padding: 1.15rem 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    text-align: left;
}

.product-description p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-text-muted);
    letter-spacing: -0.01em;
}

.product-description p + p {
    margin-top: 1rem;
}

.product-description strong {
    font-weight: 700;
    color: var(--color-text);
}

.product-description p:first-child::first-letter {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--color-red-dark);
}

/* Öne çıkan özellikler */
.product-highlights {
    margin-top: 1.25rem;
    padding: 1.15rem 1rem 1.2rem;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    text-align: left;
}

.product-highlights-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.product-highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.product-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.product-highlight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.15rem;
    color: var(--color-orange);
    font-size: 1.1rem;
}

.product-highlight-content {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-text-muted);
    letter-spacing: -0.01em;
}

.product-highlight-content strong {
    font-weight: 700;
    color: var(--color-text);
}

/* Kullanım alanları & teknik özellikler */
.product-spec-block {
    margin-top: 1rem;
    padding: 1.15rem 1rem 1.2rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    text-align: left;
}

.product-spec-block-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.product-spec-block-title i {
    color: var(--color-orange);
    font-size: 1rem;
}

.product-usage-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.product-usage-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.product-usage-list li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--color-orange);
    font-size: 0.75rem;
}

.product-tech-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-tech-row {
    display: grid;
    grid-template-columns: minmax(7.5rem, 42%) 1fr;
    gap: 0.5rem 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
    align-items: start;
}

.product-tech-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-tech-row:first-child {
    padding-top: 0;
}

.product-tech-list dt {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.product-tech-list dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--color-text-muted);
    text-align: left;
}

/* Güven rozetleri */
.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.15rem;
    padding: 0;
    list-style: none;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: 5.5rem;
    max-width: 100%;
    padding: 0.85rem 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.08));
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 14px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.trust-badge:hover {
    transform: translateY(-2px);
    border-color: var(--color-orange);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.15);
}

.trust-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange));
    color: #1a0500;
    font-size: 1.1rem;
}

.trust-badge-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* SSS */
.product-faq {
    margin-top: 1.15rem;
    padding: 1.15rem 1rem 1.2rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    text-align: left;
}

.product-faq-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.product-faq-title > i {
    color: var(--color-orange);
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
    border-color: rgba(255, 140, 0, 0.45);
    box-shadow: 0 2px 12px rgba(255, 140, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.35;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: none;
}

.faq-question-icon {
    flex-shrink: 0;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-orange);
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0 1rem 0.95rem;
    margin: 0;
    border-top: 1px dashed rgba(255, 140, 0, 0.2);
    padding-top: 0.85rem;
    margin-top: -0.15rem;
    margin-left: 0;
    margin-right: 0;
}

.faq-answer-icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--color-orange);
    font-size: 1.05rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* Müşteri yorumları */
.product-reviews {
    margin-top: 1.15rem;
    padding: 1.15rem 1rem 1.2rem;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    text-align: left;
}

.product-reviews-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.product-reviews-title > i {
    color: var(--color-orange);
    font-size: 1rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-card {
    padding: 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.18);
    box-shadow: 0 2px 12px rgba(220, 20, 60, 0.05);
}

.review-stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.3));
}

.review-stars .fa-star {
    color: #f5b800;
}

.review-subtitle {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.review-text {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-style: italic;
}

.review-text::before {
    content: "\201C";
    color: var(--color-orange);
    font-weight: 700;
    margin-right: 0.1rem;
}

.review-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    font-size: 0.85rem;
}

.review-author-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
}

.review-author-sep {
    color: rgba(92, 74, 66, 0.4);
}

.review-author-city {
    font-weight: 600;
    color: var(--color-orange);
}

@media (min-width: 768px) {
    .product-info {
        padding: 0 1.5rem 1.5rem;
        text-align: left;
    }

    .product-quantity {
        align-items: flex-start;
        margin-top: 1.35rem;
    }

    .btn-buy,
    .btn-buy-secondary {
        max-width: 360px;
    }

    .btn-buy {
        font-size: 1.15rem;
        padding: 1.05rem 1.75rem;
    }

    .product-description {
        margin-top: 1.35rem;
        padding: 1.25rem 1.2rem;
    }

    .product-description p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .product-highlights {
        margin-top: 1.35rem;
        padding: 1.25rem 1.2rem 1.3rem;
    }

    .product-highlights-title {
        font-size: 1.2rem;
        margin-bottom: 1.1rem;
    }

    .product-highlight-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .product-spec-block {
        margin-top: 1.1rem;
        padding: 1.25rem 1.2rem 1.3rem;
    }

    .product-spec-block-title {
        font-size: 1.2rem;
    }

    .product-usage-list li {
        font-size: 0.95rem;
    }

    .product-tech-list dt {
        font-size: 0.9rem;
    }

    .product-tech-list dd {
        font-size: 0.92rem;
        text-align: left;
    }

    .product-tech-row {
        grid-template-columns: 11rem 1fr;
        gap: 1rem;
        padding: 0.7rem 0;
    }

    .product-trust-badges {
        margin-top: 1.25rem;
        gap: 0.75rem;
        justify-content: stretch;
    }

    .trust-badge {
        flex: 1 1 0;
        min-width: 0;
        padding: 1rem 0.65rem;
    }

    .trust-badge-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .trust-badge-label {
        font-size: 0.82rem;
    }

    .product-faq {
        margin-top: 1.25rem;
        padding: 1.25rem 1.2rem 1.3rem;
    }

    .product-faq-title {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.1rem;
    }

    .faq-answer p {
        font-size: 0.92rem;
    }

    .product-reviews {
        margin-top: 1.25rem;
        padding: 1.25rem 1.2rem 1.3rem;
    }

    .product-reviews-title {
        font-size: 1.2rem;
    }

    .reviews-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.85rem;
    }

    .review-card {
        padding: 1.1rem;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .review-text {
        flex: 1;
        font-size: 0.9rem;
    }

    .review-subtitle {
        font-size: 1rem;
    }

    .stock-urgency {
        margin-top: 1.35rem;
        padding: 1.15rem 1.25rem 1.2rem;
        text-align: left;
    }

    .stock-urgency-header {
        justify-content: flex-start;
    }

    .stock-countdown {
        justify-content: flex-start;
    }

    .stock-urgency-title {
        font-size: 1.05rem;
    }

    .countdown-unit {
        min-width: 4.5rem;
        padding: 0.6rem 0.5rem 0.45rem;
    }

    .countdown-value {
        font-size: 1.65rem;
    }

    .product-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .product-prices {
        justify-content: flex-start;
        gap: 0.65rem 1rem;
    }

    .product-price-current {
        font-size: 2.15rem;
    }

    .product-price-old {
        font-size: 1.2rem;
    }

    .product-price-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }

    .product-features {
        margin-top: 1.25rem;
        gap: 0.6rem;
    }

    .product-feature {
        padding: 0.75rem 1rem;
    }

    .product-feature-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }

    .product-feature-text {
        font-size: 1rem;
    }

    .qty-btn {
        width: 52px;
        height: 52px;
    }

    .qty-input {
        width: 4rem;
        height: 52px;
        font-size: 1.25rem;
    }

    .product-rating {
        gap: 0.85rem 1rem;
        padding: 1.1rem 1.5rem 1.35rem;
    }

    .product-rating-stars .star,
    .product-rating-stars .star--half {
        width: 1.5rem;
        height: 1.5rem;
    }

    .product-rating-text {
        font-size: 1rem;
    }

    .product-rating-score {
        font-size: 1.1rem;
    }

    .product-media {
        padding: 2rem 1.5rem 3rem;
    }

    .product-media-box {
        border-radius: 24px;
    }

    .product-media-viewer {
        aspect-ratio: 16 / 10;
    }

    .product-media-thumbs {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0.75rem;
        padding: 1rem 1.25rem 1.25rem;
        overflow-x: visible;
    }

    .media-nav {
        width: 48px;
        height: 48px;
    }

    .media-nav--prev {
        left: 1rem;
    }

    .media-nav--next {
        right: 1rem;
    }

    .media-thumb {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}

/* ── Footer ── */
.site-footer {
    margin-top: 2rem;
    background: linear-gradient(180deg, #1a1210 0%, #2a1814 100%);
    color: #f5ebe3;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem 1.5rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: inline-block;
    line-height: 0;
}

.footer-logo-link img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.05);
}

.footer-tagline {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(245, 235, 227, 0.65);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-nav-list a {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(245, 235, 227, 0.75);
    text-decoration: none;
    padding: 0.2rem 0;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
    color: var(--color-gold);
    padding-left: 0.35rem;
    outline: none;
}

.footer-block-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
    background: rgba(37, 211, 102, 0.28);
    border-color: #25d366;
    transform: translateY(-2px);
    outline: none;
}

.footer-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.35rem;
}

.footer-whatsapp-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-hours-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.35rem 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours-list li:last-child {
    border-bottom: none;
}

.footer-hours-day {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(245, 235, 227, 0.9);
}

.footer-hours-time {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-gold);
}

.footer-hours-closed .footer-hours-time {
    color: rgba(245, 235, 227, 0.45);
    font-weight: 600;
}

.footer-bottom {
    padding: 1rem 1.25rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(245, 235, 227, 0.5);
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 2.5rem 2rem 2rem;
    }

    .footer-brand {
        text-align: left;
        margin-bottom: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-logo-link img {
        height: 56px;
    }
}

/* Statik / kurumsal sayfalar (placeholder) */
.static-page {
    padding: 2rem 1rem 3rem;
}

.static-page-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
    text-align: center;
}

.static-page-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.static-page-notice {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Hakkımızda sayfası */
.about-page {
    padding: 1.5rem 1rem 2.5rem;
    background: linear-gradient(180deg, #fff8f0 0%, #f5f5f5 100%);
}

.about-page-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.about-hero {
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.12) 50%, rgba(220, 20, 60, 0.08) 100%);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.about-hero-title {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-hero-subtitle {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: -0.01em;
}

.about-section {
    padding: 1.35rem 1.25rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
}

.about-section:last-child {
    border-bottom: none;
}

.about-section-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-red-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.about-section p {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
}

.about-list strong {
    color: var(--color-text);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.65rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.06));
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.about-stat--wide {
    grid-column: 1 / -1;
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-stat-label {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.about-contact {
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.about-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(37, 211, 102, 0.12);
    border: 2px solid rgba(37, 211, 102, 0.35);
    border-radius: 14px;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.about-whatsapp:hover,
.about-whatsapp:focus-visible {
    background: rgba(37, 211, 102, 0.22);
    border-color: #25d366;
    transform: translateY(-2px);
    outline: none;
}

.about-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.35rem;
}

.about-whatsapp-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-page {
        padding: 2rem 1.5rem 3rem;
    }

    .about-hero {
        padding: 2.25rem 2rem 1.75rem;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-subtitle {
        font-size: 1.05rem;
    }

    .about-section {
        padding: 1.5rem 2rem;
    }

    .about-section-title {
        font-size: 1.25rem;
    }

    .about-section p,
    .about-list li {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-stat--wide {
        grid-column: span 3;
    }

    .about-stat-value {
        font-size: 1.75rem;
    }
}

/* Yasal / politika sayfaları */
.legal-page {
    padding: 1.5rem 1rem 2.5rem;
    background: linear-gradient(180deg, #fff8f0 0%, #f5f5f5 100%);
}

.legal-page-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.legal-hero {
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.08) 100%);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-gold), var(--color-orange), var(--color-red)) 1;
}

.legal-hero-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.legal-hero-updated {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-orange);
}

.legal-section {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-red-dark);
    letter-spacing: -0.02em;
}

.legal-section p {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--color-red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover,
.legal-section a:focus-visible {
    color: var(--color-orange);
    outline: none;
}

.legal-list {
    margin: 0;
    padding: 0 0 0 1.15rem;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: -0.85rem;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-orange);
}

.legal-section--contact {
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.legal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: rgba(37, 211, 102, 0.12);
    border: 2px solid rgba(37, 211, 102, 0.35);
    border-radius: 14px;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.legal-whatsapp:hover,
.legal-whatsapp:focus-visible {
    background: rgba(37, 211, 102, 0.22);
    border-color: #25d366;
    transform: translateY(-2px);
    outline: none;
}

.legal-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.35rem;
}

.legal-whatsapp-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .legal-page {
        padding: 2rem 1.5rem 3rem;
    }

    .legal-hero {
        padding: 2rem 2rem 1.5rem;
    }

    .legal-hero-title {
        font-size: 2rem;
    }

    .legal-section {
        padding: 1.35rem 2rem;
    }

    .legal-section-title {
        font-size: 1.15rem;
    }

    .legal-section p,
    .legal-list li {
        font-size: 1rem;
    }

    .cart-page {
        padding: 2rem 1.5rem 3rem;
    }

    .cart-page-title {
        font-size: 1.85rem;
    }

    .cart-layout {
        grid-template-columns: 1fr 360px;
        gap: 1.5rem;
    }

    .cart-item {
        grid-template-columns: 100px 1fr auto;
    }

    .cart-item-image img {
        width: 100px;
        height: 100px;
    }

    .checkout-layout {
        grid-template-columns: 1fr 360px;
        gap: 1.5rem;
    }
}

/* Ödeme / Teslimat sayfası */
.checkout-page {
    padding: 1.25rem 1rem 2.5rem;
    background: linear-gradient(180deg, #fff8f0 0%, #f5f5f5 100%);
    min-height: 50vh;
}

.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.checkout-title i {
    color: var(--color-orange);
}

.checkout-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.checkout-back:hover,
.checkout-back:focus-visible {
    color: var(--color-red);
    outline: none;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

.checkout-form-section {
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.checkout-form-heading {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text);
}

.checkout-form-desc {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-row--2 {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}

.form-group .required {
    color: var(--color-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 2px solid rgba(255, 140, 0, 0.25);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    background: #fffdf9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 88px;
}

.field-hint {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.form-group input.input-error,
.form-group textarea.input-error {
    border-color: var(--color-red);
    background: rgba(220, 20, 60, 0.04);
}

.field-error {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-red);
    line-height: 1.3;
}

.form-errors {
    padding: 0.85rem 1rem;
    background: rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.25);
    border-radius: 12px;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-red-dark);
    line-height: 1.5;
}

.btn-buy--submit {
    margin-top: 0.5rem;
}

.checkout-summary {
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.2);
    position: sticky;
    top: calc(var(--menu-top-offset, 120px) + 1rem);
}

.checkout-summary-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
    max-height: 220px;
    overflow-y: auto;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.checkout-summary-item-name {
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.35;
}

.checkout-summary-item-price {
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 2px dashed rgba(255, 140, 0, 0.25);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
}

.checkout-summary-total span:last-child {
    color: var(--color-red);
    font-size: 1.25rem;
}

.checkout-summary-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.85rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2e7d32;
}

@media (max-width: 560px) {
    .form-row--2 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .checkout-page {
        padding: 2rem 1.5rem 3rem;
    }

    .checkout-title {
        font-size: 1.85rem;
    }
}

/* Ödeme sayfası */
.payment-page {
    padding: 1.25rem 1rem 2.5rem;
    background: linear-gradient(180deg, #fff8f0 0%, #f5f5f5 100%);
    min-height: 50vh;
}

.payment-container {
    max-width: 1100px;
    margin: 0 auto;
}

.payment-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.payment-title i {
    color: var(--color-orange);
}

.payment-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.payment-back:hover,
.payment-back:focus-visible {
    color: var(--color-red);
    outline: none;
}

.payment-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

.bank-info-card,
.receipt-upload-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.receipt-upload-card {
    margin-top: 1rem;
}

.bank-info-title,
.receipt-upload-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text);
}

.bank-info-desc,
.receipt-upload-desc {
    margin: 0 0 1.15rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.bank-info-rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bank-info-row {
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 14px;
}

.bank-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.bank-info-value-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.bank-info-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.01em;
    word-break: break-all;
}

#bank-iban {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 8px;
    background: #fff;
    color: var(--color-red-dark);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover,
.copy-btn:focus-visible {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--color-orange);
    outline: none;
}

.copy-btn.is-copied {
    background: rgba(46, 125, 50, 0.12);
    border-color: #2e7d32;
    color: #2e7d32;
}

.receipt-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 2rem 1.25rem;
    border: 2px dashed rgba(255, 140, 0, 0.45);
    border-radius: 16px;
    background: #fffdf9;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.receipt-dropzone:hover,
.receipt-dropzone.is-dragover {
    border-color: var(--color-orange);
    background: rgba(255, 215, 0, 0.1);
}

.receipt-dropzone.has-file {
    opacity: 0.55;
    pointer-events: none;
}

.receipt-dropzone-icon {
    font-size: 2rem;
    color: var(--color-orange);
}

.receipt-dropzone-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
}

.receipt-dropzone-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.receipt-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.25);
    border-radius: 12px;
}

.receipt-preview-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.receipt-preview-info i {
    color: #2e7d32;
    font-size: 1.25rem;
    flex-shrink: 0;
}

#receipt-file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.receipt-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--color-red);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.receipt-remove:hover {
    background: rgba(220, 20, 60, 0.2);
}

.btn-buy--notify {
    margin-top: 1.15rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-buy--notify:hover:not(:disabled),
.btn-buy--notify:focus-visible:not(:disabled) {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.btn-buy--notify:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.payment-notify-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.75rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
}

.payment-notify-hint i {
    color: var(--color-orange);
}

.payment-customer-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 140, 0, 0.25);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.payment-customer-info h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-text);
}

.payment-customer-info p {
    margin: 0 0 0.25rem;
}

.payment-summary {
    position: sticky;
    top: calc(var(--menu-top-offset, 120px) + 1rem);
}

@media (min-width: 768px) {
    .payment-page {
        padding: 2rem 1.5rem 3rem;
    }

    .payment-title {
        font-size: 1.85rem;
    }

    .payment-layout {
        grid-template-columns: 1fr 360px;
        gap: 1.5rem;
    }

    #bank-iban {
        font-size: 1.05rem;
    }
}

/* Sabit WhatsApp butonu */
.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 108;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem 0.65rem 0.65rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
    outline: none;
    color: #fff;
}

.whatsapp-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #25d366;
    opacity: 0.45;
    animation: whatsapp-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.45;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.whatsapp-float-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.45rem;
    line-height: 1;
}

.whatsapp-float-label {
    position: relative;
    z-index: 1;
    padding-right: 0.15rem;
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 0.85rem;
        bottom: max(0.85rem, env(safe-area-inset-bottom));
        padding: 0;
        width: 3.35rem;
        height: 3.35rem;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float-icon {
        width: auto;
        height: auto;
        font-size: 1.65rem;
    }
}
