:root {
    --pdp-accent: #f97316;
    --pdp-accent-dark: #ea580c;
    --pdp-accent-soft: #fff1e8;
    --pdp-border: #e9ecef;
    --pdp-border-soft: #edf0f2;
    --pdp-text: #111827;
    --pdp-muted: #6b7280;
    --pdp-success: #198754;
    --pdp-success-soft: #ecfdf3;
}

#govde { padding: 0 !important; }
#localMap { scroll-margin-top: 110px; }
#harita { height: 400px; min-height: 400px; border-radius: 12px; }
#paytr_taksit_tablosu { min-width: 100% !important; }
#pdpTabs { scroll-margin-top: 100px; }

.pdp-hero {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.pdp-card,
.pdp-purchase-card {
    background: #fff;
    border: 1px solid var(--pdp-border);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .045);
}

.pdp-media-card { padding: 16px; }
.pdp-purchase-card { padding: 20px; scroll-margin-top: 90px; }
.pdp-tabs-card { overflow: hidden; }
.pdp-tabs-card .nav { border-bottom: 1px solid #f1f3f5; }
.pdp-tabs-card .nav-link { font-weight: 700; }
.pdp-tabs-card .nav-link.active { color: var(--pdp-accent-dark); }

.pdp-stage {
    position: relative;
    min-height: 380px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #edf1f4;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, .05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.pdp-stage-topline {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
}

.pdp-stage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1;
}

.pdp-badge.is-success {
    background: var(--pdp-success-soft);
    color: #067647;
    border-color: #d1fadf;
}

.pdp-badge.is-accent {
    background: var(--pdp-accent-soft);
    color: var(--pdp-accent-dark);
    border-color: #ffd5bd;
}

.pdp-badge.is-muted {
    background: #f3f4f6;
    color: #6b7280;
}

.pdp-main-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    aspect-ratio: 1 / 1;
    text-decoration: none;
}

.pdp-main-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    transition: transform .25s ease;
}

.pdp-main-link:hover .pdp-main-image {
    transform: scale(1.02);
}

.pdp-thumb-rail {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow: auto;
    padding-bottom: 4px;
}

.pdp-thumb {
    width: 72px;
    min-width: 72px;
    height: 72px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--pdp-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .03);
    transition: all .2s ease;
    aspect-ratio: 1 / 1;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pdp-thumb:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.pdp-thumb.is-active {
    border-color: var(--pdp-accent);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .12);
}

.pdp-no-image {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pdp-muted);
}

.pdp-sku-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pdp-text);
    font-size: .92rem;
    font-weight: 800;
    flex-wrap:wrap;
    justify-content:space-between;
}

.pdp-sku-inline .lbl {
    color: var(--pdp-muted);
    /*font-size: .78rem;*/
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.pdp-sku-inline .sep { color: #9ca3af; }
.pdp-sku-inline .val { font-size: 1.02rem; }

.pdp-title {
    margin: 0 0 12px;
    color: var(--pdp-text);
    font-size: 1.72rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.pdp-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 14px;
}

.pdp-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4b5563;
    font-size: .95rem;
    font-weight: 600;
}

.pdp-proof-item.is-stock {
    color: var(--pdp-success);
    font-weight: 800;
}

.pdp-proof-item.is-accent {
    color: var(--pdp-accent-dark);
    font-weight: 800;
}

.pdp-rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
    color: var(--pdp-accent);
}

.pdp-rating-stars i { font-size: 1.02rem; }

.pdp-rating-text {
    margin-left: 8px;
    color: var(--pdp-muted);
    font-size: .9rem;
    font-weight: 800;
}

.pdp-short-desc {
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    background: #fbfcfd;
    color: #344054;
    font-size: .95rem;
}

.pdp-price-box,
.pdp-option-box,
.pdp-action-box {
    margin-bottom: 12px;
    border: 1px solid var(--pdp-border-soft);
    border-radius: 16px;
    background: #fff;
}

.pdp-price-box { padding: 14px; border-color: #e7ebef; }
.pdp-option-box { padding: 14px; }
.pdp-action-box { padding: 12px; background: #fcfcfd; }

.pdp-price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.pdp-price-kicker {
    color: var(--pdp-muted);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pdp-stock-mini {
    color: var(--pdp-success);
    font-size: .84rem;
    font-weight: 800;
}

.pdp-price-html {
    width: 100%;
    color: var(--pdp-text);
}

.pdp-price-html > *:first-child { margin-top: 0; }
.pdp-price-html > *:last-child { margin-bottom: 0; }

.pdp-installment-note{
    margin-top:10px;
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:.86rem;
    line-height:1.35;
    color:var(--pdp-muted);
}

.pdp-installment-note i{
    flex:0 0 auto;
    font-size:1rem;
    margin-top:1px;
}

.pdp-box-title {
    margin-bottom: 10px;
    color: var(--pdp-text);
    font-size: .94rem;
    font-weight: 900;
}

.pdp-buy-row {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 10px;
    align-items: stretch;
}

.pdp-buy-row--no-cart {
    grid-template-columns: 1fr 56px;
}

.pdp-cart-form,
.pdp-cart-fieldset {
    margin: 0;
    min-width: 0;
}

.pdp-cart-fieldset {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 12px;
    padding: 0;
    border: 0;
    align-items: stretch;
}

.pdp-qty-group {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
}

.pdp-qty-group .btn,
.pdp-qty-group .form-control,
.pdp-add-cart-btn {
    min-height: 52px;
    border-radius: 14px;
}

.pdp-qty-group .btn,
.pdp-qty-group .form-control {
    border-color: #cfd6dd;
}

.pdp-qty-group .btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pdp-qty-group .form-control {
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    font-weight: 800;
}

.pdp-qty-group .btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pdp-add-cart-btn {
    background: linear-gradient(90deg, #171f2b 0%, #111827 100%);
    border-color: #111827;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .12);
    font-size: 1rem;
    font-weight: 900;
}

.pdp-add-cart-btn:hover {
    background: linear-gradient(90deg, #111827 0%, #0b1220 100%);
    border-color: #0b1220;
}

.pdp-contact-row { margin-top: 10px; }

.pdp-contact-btn {
    min-height: 48px;
    border-color: #d8dee5;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    font-weight: 800;
}

.pdp-contact-btn:hover {
    border-color: #bcc6d1;
    background: #f8fafc;
    color: #111827;
}

.pdp-contact-btn--full { width: 100%; }

.pdp-fav-icon-btn {
    width: 56px;
    min-height: 52px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent !important;
    border-radius: 16px;
    background: var(--pdp-accent) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(249, 115, 22, .18);
}

.pdp-fav-icon-btn i {
    color: #fff;
    font-size: 1.28rem;
    line-height: 1;
}

.pdp-fav-icon-btn:hover,
.pdp-fav-icon-btn:focus,
.pdp-fav-icon-btn:active {
    background: var(--pdp-accent-dark) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(249, 115, 22, .22);
}

.pdp-fav-icon-btn:hover i,
.pdp-fav-icon-btn:focus i,
.pdp-fav-icon-btn:active i {
    color: #fff;
}

.pdp-fav-icon-btn.is-active {
    background: var(--pdp-accent) !important;
    border-color: transparent !important;
    color: var(--pdp-text) !important;
}

.pdp-fav-icon-btn.is-active i {
    color: var(--pdp-text) !important;
}

.pdp-fav-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    /*border: 1px solid #ffd5bd;*/
    border-radius: 12px;
    /*background: var(--pdp-accent-soft);*/
    color: var(--pdp-accent-dark);
    font-size: .9rem;
    font-weight: 800;
}

.pdp-fav-social i {
    color: currentColor;
    font-size: 1rem;
}

.pdp-share-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
}

.pdp-share-label {
    margin-right: 4px;
    color: #7b8494;
    font-size: .82rem;
    font-weight: 800;
}

.pdp-share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 11px;
    background: #fff;
    color: #374151;
    text-decoration: none;
    transition: all .2s ease;
}

.pdp-share-btn:hover {
    transform: translateY(-1px);
    border-color: #ffd2bd;
    background: #fff8f3;
    color: var(--pdp-accent-dark);
}

.pdp-info-card {
    padding: 0;
    overflow: hidden;
}

.pdp-card-head {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f3f5;
    background: #fff;
    color: var(--pdp-text);
    font-weight: 900;
}

.pdp-card-body { padding: 14px; }

.pdp-mini-link {
    color: var(--pdp-accent-dark);
    font-weight: 900;
    text-decoration: none;
}

.pdp-mini-link:hover { text-decoration: underline; }

.pdp-recent-wrap {
    position: relative;
    /*max-height: 240px;*/
    overflow: hidden;
}

.pdp-recent-wrap.is-loaded::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
    pointer-events: none;
}

.pdp-loading,
.pdp-empty {
    color: var(--pdp-muted);
    font-weight: 700;
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    font-size: 2rem;
}

.star-rating input { display: none; }

.star-rating label {
    cursor: pointer;
    color: #ddd;
    transition: color .2s;
}

.star-rating:not(:hover) input:checked ~ label,
.star-rating:hover label:hover,
.star-rating:hover label:hover ~ label {
    color: #ffc107;
}


#pdpRecentReviews {
    min-height: 220px;
}

.pdp-loading--reviews {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}




.ufiyat {
    width: 100%;
    color: var(--pdp-text);
}

.ufiyat--single {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ufiyat--compare {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) 1px minmax(0, .92fr);
    align-items: center;
    gap: 18px;
}

.ufiyat-col {
    min-width: 0;
}

.ufiyat-col--main {
    text-align: left;
}

.ufiyat-col--bank {
    text-align: right;
}

.ufiyat-col__label {
    display: block;
    margin-bottom: 6px;
    color: var(--pdp-muted);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.1;
}

.ufiyat-col__labelrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.ufiyat-col__top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.ufiyat-col__price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.ufiyat-col__price--bank {
    justify-content: flex-end;
}

.ufiyat-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(
        180deg,
        rgba(228, 231, 236, 0) 0%,
        rgba(228, 231, 236, 1) 12%,
        rgba(228, 231, 236, 1) 88%,
        rgba(228, 231, 236, 0) 100%
    );
}

.ufiyat__old {
    color: #6b7280;
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: line-through;
}

.ufiyat__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1;
}

.ufiyat__value {
    color: var(--pdp-text);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.ufiyat-bank__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e8f5ee;
    border: 1px solid #d7eee1;
    color: #198754;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.ufiyat-bank__note {
    color: #6b7280;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
}

.ufiyat-bank__value {
    color: #198754;
    font-size: 1.38rem;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.025em;
}

.ufiyat-tax-note {
    margin-top: 10px;
    color: var(--pdp-muted);
    font-size: .83rem;
    font-weight: 700;
    line-height: 1.25;
}



@media (min-width: 992px) {
    .pdp-thumb-rail {
        flex-direction: column;
        max-height: 380px;
        overflow: auto;
        padding-right: 4px;
        padding-bottom: 0;
    }

    .pdp-thumb {
        width: 100%;
        min-width: 100%;
        height: 72px;
    }
}

@media (min-width: 1200px) {
    .ufiyat-bank__price {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 1199.98px) {
    .pdp-purchase-card {
        position: relative;
        top: auto;
    }

    #pdpTabsMobileAnchor + #pdpTabs {
        margin-top: 16px !important;
    }
}

@media (max-width: 767.98px) {
    .pdp-price-html .ufiyat--compare {
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
        gap: 12px;
    }

    .pdp-price-html .ufiyat-col--main,
    .pdp-price-html .ufiyat-col--bank {
        text-align: center;
    }

    .pdp-price-html .ufiyat-col__label {
        margin-bottom: 4px;
        font-size: .67rem;
    }

    .pdp-price-html .ufiyat-col__labelrow,
    .pdp-price-html .ufiyat-col__top,
    .pdp-price-html .ufiyat-col__price,
    .pdp-price-html .ufiyat-col__price--bank {
        justify-content: center;
    }

    .pdp-price-html .ufiyat-col__top {
        gap: 6px;
        margin-bottom: 6px;
    }

    .pdp-price-html .ufiyat__old {
        font-size: .80rem;
    }

    .pdp-price-html .ufiyat__discount {
        min-height: 24px;
        padding: 0 8px;
        font-size: .73rem;
    }

    .pdp-price-html .ufiyat__value {
        font-size: 1.52rem;
    }

    .pdp-price-html .ufiyat-bank__badge {
        min-height: 24px;
        padding: 0 8px;
        font-size: .71rem;
    }

    .pdp-price-html .ufiyat-bank__note {
        display: block;
        width: 100%;
        white-space: normal;
        font-size: .76rem;
    }

    .pdp-price-html .ufiyat-bank__value {
        font-size: 1.24rem;
    }

    .pdp-price-html .ufiyat-tax-note {
        text-align: center;
        font-size: .79rem;
    }
}


.pdp-shipping-note{
    margin-top:10px;
    display:flex;
    align-items:flex-start;
    gap:8px;
    padding:10px 12px;
    border:1px solid #d1fadf;
    border-radius:14px;
    background:#ecfdf3;
    color:#067647;
    font-size:.90rem;
    font-weight:800;
    line-height:1.35;
}

.pdp-shipping-note i{
    flex:0 0 auto;
    font-size:1.05rem;
    margin-top:1px;
}