/* =========================================================
   Trendyol Ürün Sayfası - Ana Stil
   ========================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange:    #ff6000;
    --orange-lt: #ff8533;
    --green:     #26c281;
    --blue:      #0099e5;
    --gray-bg:   #f5f5f5;
    --gray-text: #888;
    --border:    #e8e8e8;
    --text:      #1d1d1d;
    --star:      #ffc200;
    --badge-bg:  #fff8ee;
    --badge-br:  #f5a623;
    --font:      'Helvetica Neue', Arial, sans-serif;
}

html { font-size: 15px; }
body {
    font-family: var(--font);
    background: var(--gray-bg);
    color: var(--text);
    min-height: 100vh;
}

/* ── Sarmalayıcı ── */
.page-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: linear-gradient(135deg, #f27a1a 0%, #e53935 100%);
    padding: 0 14px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.logo-img {
    height: 66px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-icon {
    color: #fff;
    cursor: pointer;
    position: relative;
    line-height: 0;
}
.header-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -7px;
    background: #fff;
    color: var(--orange);
    font-size: .6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: 10px 14px;
    font-size: .75rem;
    color: var(--gray-text);
    background: #fff;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumb a {
    color: var(--gray-text);
    text-decoration: none;
}
.breadcrumb span.sep {
    margin: 0 6px;
    color: #ccc;
}
.breadcrumb span.current {
    color: var(--text);
    font-weight: 600;
}

/* ============================================================
   IMAGE SLIDER
   ============================================================ */
.slider-wrap {
    position: relative;
    background: #fafafa;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform .35s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #aaa;
    font-size: .85rem;
}
.slide-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: #ccc;
    fill: none;
    stroke-width: 1.2;
}

/* Hızlı Teslimat badge */
.badge-hizli {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 2px 8px rgba(38,194,129,.4);
}
.badge-hizli svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    z-index: 5;
    transition: background .2s;
}
.slider-arrow:hover { background: #fff; }
.slider-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.arrow-prev { left: 8px; }
.arrow-next { right: 8px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: 1px solid rgba(0,0,0,.1);
}
.dot.active {
    background: var(--orange);
    transform: scale(1.25);
    border-color: var(--orange);
}

/* ============================================================
   ÜRÜN BİLGİLERİ
   ============================================================ */
.product-info {
    padding: 14px 14px 0;
    background: #fff;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: .01em;
}

/* Rating row */
.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.stars {
    display: flex;
    gap: 2px;
}
.stars svg {
    width: 15px;
    height: 15px;
}
.star-filled { fill: var(--star); }
.star-empty  { fill: #ddd; }
.rating-score {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
}
.rating-count {
    font-size: .8rem;
    color: var(--blue);
    cursor: pointer;
}
.rating-count::after {
    content: ' ›';
}

/* Garanti badge */
.garanti-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-br);
    border-radius: 6px;
    padding: 5px 10px;
    margin-top: 10px;
    font-size: .75rem;
    color: #b07000;
    font-weight: 500;
}
.garanti-badge svg {
    width: 14px;
    height: 14px;
    fill: #e6a817;
    flex-shrink: 0;
}

/* Divider */
.divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

/* ============================================================
   SATICI & TESLİMAT
   ============================================================ */
.info-section {
    padding: 0 14px;
    background: #fff;
}

.satici-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--gray-text);
    padding: 4px 0;
}
.satici-row .satici-name {
    color: var(--blue);
    font-weight: 600;
    cursor: pointer;
}
.verified-icon {
    width: 16px;
    height: 16px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.verified-icon svg {
    width: 9px;
    height: 9px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.satici-score {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #a5d6a7;
}
.info-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-text);
    line-height: 0;
    padding: 0;
}
.info-icon-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #aaa;
    stroke-width: 2;
}

/* Teslimat satırı */
.teslimat-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
    font-size: .8rem;
    line-height: 1.4;
    color: var(--text);
    border-top: 1px solid var(--border);
}
.teslimat-row .icon-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.teslimat-row .icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: var(--green);
}
.teslimat-highlight {
    color: var(--green);
    font-weight: 700;
}

/* Kurumsal fatura */
.fatura-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: .8rem;
    color: var(--text);
    border-top: 1px solid var(--border);
}
.fatura-row .icon-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e3f0fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fatura-row .icon-wrap svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
}
.fatura-row .fatura-text {
    flex: 1;
    font-weight: 600;
    font-size: .82rem;
}
.btn-incele {
    background: #fff;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.btn-incele:hover {
    background: var(--blue);
    color: #fff;
}

/* ============================================================
   ÜRÜN ÖZELLİKLERİ
   ============================================================ */
.ozellikler-section {
    background: #fff;
    padding: 0 14px 14px;
}

.section-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    padding: 12px 0 10px;
    border-top: 1px solid var(--border);
    letter-spacing: .02em;
}

.ozellik-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.ozellik-row {
    display: contents;
}

.ozellik-cell {
    padding: 10px 12px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    line-height: 1.35;
}

.ozellik-cell:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.ozellik-cell:last-child,
.ozellik-cell:nth-last-child(2) {
    border-bottom: none;
}

.ozellik-cell:empty {
    background: #f5f5f5;
}

/* Tek hücreli (tam genişlik) özellik */
.ozellik-cell.full {
    grid-column: 1 / -1;
    border-right: none;
}

/* ============================================================
   FİYAT + SEPET FOOTER
   ============================================================ */
.product-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 -3px 12px rgba(0,0,0,.07);
    z-index: 50;
}

.price-block { line-height: 1.2; }

.price-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -.02em;
}

.price-currency {
    font-size: .95rem;
    font-weight: 700;
    color: var(--orange);
    margin-left: 2px;
}

.kargo-bedava {
    font-size: .72rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 2px;
}

.btn-sepet {
    flex: 1;
    max-width: 220px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 10px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: 0 3px 10px rgba(255,96,0,.35);
}

/* Parlama şeridi */
.btn-sepet::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0)    0%,
        rgba(255,255,255,.55) 50%,
        rgba(255,255,255,0)  100%
    );
    transform: skewX(-20deg);
    animation: shimmer 2.2s ease-in-out infinite;
}

@keyframes shimmer {
    0%   { left: -75%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}

.btn-sepet:hover {
    background: #e55500;
    box-shadow: 0 5px 18px rgba(255,96,0,.55);
}
.btn-sepet:active { transform: scale(.97); }

/* ============================================================
   ADRES FORMU MODAL
   ============================================================ */

.adres-sheet {
    max-height: 96vh;
}

/* Adres sheet: handle gizle, köşeleri header kaplasın */
.adres-sheet > .modal-handle { display: none; }

/* Gradient üst başlık */
.adres-header {
    background: linear-gradient(135deg, #f27a1a 0%, #e53935 100%);
    padding: 16px 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-radius: 18px 18px 0 0;
}
.adres-header .sepet-geri svg { stroke: #fff; }
.adres-header-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-style: italic;
    letter-spacing: -.5px;
}

/* "Adres Formu" tab etiketi */
.adres-tab-wrap {
    display: flex;
    justify-content: center;
    margin-top: -16px;
    flex-shrink: 0;
    padding-bottom: 4px;
}
.adres-tab {
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 8px;
    color: var(--orange);
    font-size: .82rem;
    font-weight: 700;
    padding: 6px 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Form gövdesi */
.adres-body {
    padding: 14px 16px 20px;
}

/* Form grupları */
.form-group {
    margin-bottom: 14px;
}
.form-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}
.zorunlu { color: var(--orange); }

.form-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 13px;
    font-size: .85rem;
    font-family: var(--font);
    color: var(--text);
    background: #fafafa;
    outline: none;
    transition: border-color .2s, background .2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-input::placeholder { color: #b0b0b0; }
.form-input:focus {
    border-color: var(--orange);
    background: #fff;
}
.form-input.hatali { border-color: #e53935; }

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
    color: var(--text);
}
.form-select:disabled {
    color: #b0b0b0;
    cursor: not-allowed;
    opacity: .7;
}
.form-select option { color: var(--text); }

.form-textarea {
    resize: vertical;
    min-height: 72px;
}

/* Hata mesajı */
.form-hata {
    display: block;
    font-size: .7rem;
    color: #e53935;
    margin-top: 4px;
    min-height: 14px;
}

/* Sipariş tamamla butonu */
.btn-siparis-tamamla {
    display: block;
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .06em;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s, transform .1s;
    box-shadow: 0 3px 12px rgba(255,96,0,.3);
    position: relative;
    overflow: hidden;
}
.btn-siparis-tamamla::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.45) 50%,rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 2.4s ease-in-out infinite;
}
.btn-siparis-tamamla:hover  { background: #e55500; }
.btn-siparis-tamamla:active { transform: scale(.98); }

/* Başarı overlay */
.siparis-basari {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    gap: 14px;
}
.siparis-basari.goster { display: flex; }
.basari-daire {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn .4s cubic-bezier(.32,1.6,.32,1) both;
}
.basari-daire svg {
    width: 36px;
    height: 36px;
    stroke: #2e7d32;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@keyframes popIn {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.basari-baslik {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}
.basari-alt {
    font-size: .82rem;
    color: var(--gray-text);
    line-height: 1.5;
}

/* Dekont dosya seçici */
.dekont-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.dekont-btn {
    background: #fff;
    border: 1.5px solid #bbb;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.dekont-label:hover .dekont-btn {
    border-color: var(--orange);
    background: #fff8f4;
}
.dekont-dosya-adi {
    font-size: .78rem;
    color: var(--gray-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* IBAN input */
.iban-input {
    font-family: 'Courier New', monospace;
    letter-spacing: .04em;
    font-size: .82rem;
}

/* ============================================================
   SEPETİM MODAL
   ============================================================ */

.sepet-geri {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: background .2s;
}
.sepet-geri:hover { background: #f0f0f0; }
.sepet-geri svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Ürün listesi */
.sepet-urun-listesi {
    margin-bottom: 4px;
}
.sepet-urun-kart {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

/* Resim kutusu */
.sepet-urun-resim {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: #f5f5f5;
}
.sepet-urun-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sepet-resim-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sepet-resim-ph svg {
    width: 32px;
    height: 32px;
    stroke: #ccc;
    fill: none;
    stroke-width: 1.2;
}

/* Ürün bilgisi */
.sepet-urun-bilgi {
    flex: 1;
    min-width: 0;
}
.sepet-urun-ad {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 5px;
}
.sepet-urun-fiyat {
    font-size: .95rem;
    font-weight: 800;
    color: var(--orange);
}

/* Birim fiyat */
.sepet-urun-birim-fiyat {
    font-size: .72rem;
    color: var(--gray-text);
    margin-bottom: 7px;
}
.sepet-urun-birim-fiyat strong { color: var(--text); }

/* Adet seçici */
.adet-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}
.adet-btn {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    flex-shrink: 0;
}
.adet-btn:hover  { background: #e8e8e8; }
.adet-btn:active { background: #ddd; }
.adet-btn:disabled { color: #ccc; cursor: not-allowed; }
.adet-input {
    width: 40px;
    height: 32px;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    background: #fff;
    outline: none;
    -moz-appearance: textfield;
}
.adet-input::-webkit-inner-spin-button,
.adet-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Sil butonu */
.sepet-sil-btn {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, transform .1s;
}
.sepet-sil-btn:hover  { background: #c62828; }
.sepet-sil-btn:active { transform: scale(.95); }

/* Boş sepet */
.sepet-bos {
    text-align: center;
    padding: 32px 0 16px;
    color: var(--gray-text);
}
.sepet-bos svg {
    width: 48px;
    height: 48px;
    stroke: #ccc;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 10px;
}
.sepet-bos p {
    font-size: .88rem;
}

/* Tutar satırı */
.sepet-tutar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 14px 0 6px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}
.sepet-tutar-etiket {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
}
.sepet-tutar-fiyat {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
}

/* Tamamla butonu */
.btn-tamamla {
    display: block;
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 14px;
    transition: background .2s, transform .1s;
    box-shadow: 0 3px 12px rgba(255,96,0,.3);
    position: relative;
    overflow: hidden;
}
.btn-tamamla::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.45) 50%,rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 2.4s ease-in-out infinite;
}
.btn-tamamla:hover  { background: #e55500; }
.btn-tamamla:active { transform: scale(.98); }

/* ============================================================
   YORUMLAR MODAL
   ============================================================ */

/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Bottom-sheet */
.modal-sheet {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 18px 18px 0 0;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.32,1,.32,1);
    overflow: hidden;
}
.modal-overlay.open .modal-sheet {
    transform: translateY(0);
}

/* Handle */
.modal-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
}

/* Header */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 10px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.modal-close {
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.modal-close:hover { background: #e0e0e0; }
.modal-close svg {
    width: 15px;
    height: 15px;
    stroke: #555;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* Kaydırılabilir gövde */
.modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
}

/* ── Yorum yok ── */
.yorum-bos-ozet {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.yorum-bos-ozet svg {
    margin-bottom: 12px;
    opacity: .35;
}
.yorum-bos-baslik {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
}
.yorum-bos-metin {
    font-size: .82rem;
    color: var(--gray-text);
    margin: 0;
}
.rating-count--bos {
    background: none;
    border: none;
    padding: 0;
    font-size: .82rem;
    color: var(--gray-text);
    cursor: pointer;
    text-decoration: underline;
}

/* ── Puan Özeti ── */
.puan-ozet {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.puan-buyuk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 72px;
}
.puan-rakam {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.puan-yildizlar {
    display: flex;
    gap: 1px;
}
.puan-yildizlar svg {
    width: 13px;
    height: 13px;
}
.puan-toplam {
    font-size: .68rem;
    color: var(--gray-text);
    text-align: center;
    white-space: nowrap;
}

/* Bar'lar */
.puan-barlar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.puan-bar-row {
    display: flex;
    align-items: center;
    gap: 5px;
}
.puan-bar-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text);
    width: 10px;
    text-align: right;
    flex-shrink: 0;
}
.puan-bar-star {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}
.puan-bar-track {
    flex: 1;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}
.puan-bar-fill {
    height: 100%;
    background: var(--star);
    border-radius: 3px;
    transition: width .6s ease;
}
.puan-bar-yuzde {
    font-size: .67rem;
    color: var(--gray-text);
    width: 30px;
    text-align: right;
    flex-shrink: 0;
}

/* ── Yorum Kartları ── */
.yorum-liste {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yorum-kart {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.yorum-kart:last-child { border-bottom: none; }

.yorum-ust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.yorum-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #ffb347);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}
.yorum-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.yorum-ad {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
}
.yorum-tarih {
    font-size: .7rem;
    color: var(--gray-text);
}
.yorum-puan-badge {
    display: flex;
    gap: 1px;
}
.yorum-puan-badge svg {
    width: 12px;
    height: 12px;
}

.yorum-baslik {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.yorum-metin {
    font-size: .8rem;
    color: #444;
    line-height: 1.55;
    margin-bottom: 10px;
}

/* Beğeni butonları */
.yorum-alt {
    display: flex;
    gap: 10px;
}
.yorum-oy {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f5f5f5;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .72rem;
    color: var(--gray-text);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.yorum-oy svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.yorum-oy-evet:hover, .yorum-oy-evet.aktif {
    background: #e8f5e9;
    border-color: #a5d6a7;
    color: #2e7d32;
}
.yorum-oy-hayir:hover, .yorum-oy-hayir.aktif {
    background: #fdecea;
    border-color: #f5a7a7;
    color: #c62828;
}

/* rating-count buton sıfırlama */
.rating-count {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 360px) {
    .logo-text { font-size: 1.25rem; }
    .price-amount { font-size: 1.15rem; }
    .btn-sepet { font-size: .8rem; padding: 12px 8px; }
}

@media (min-width: 481px) {
    .page-wrap { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
}
