.product-detail-page {
    width: 100%;
    padding: 0;
    color: #0f172a;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 16px;
    color: #475569;
    font-size: 14px;
}

.breadcrumb .crumb {
    color: inherit;
    text-decoration: none;
}

.breadcrumb .crumb:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: #0f172a;
    font-weight: 600;
}

.breadcrumb .sep {
    color: #94a3b8;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-title {
}

.product-title h1 {
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 17px;
    line-height: 31px;
}

.share-inline {
    position: absolute;
    right: 0;
    margin-top: 77px;
}

@media (min-width: 940px) {
    .detail-grid {
        grid-template-columns:minmax(0,560px) minmax(0,1fr);
        align-items: start;
    }
}

.detail-left {
    width: 100%;
}

.detail-right {
    width: 100%;
}

.detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.detail-grid > .tab-icerik {
    grid-column: 1 / -1;
}

.product-gallery {
    position: relative;
    display: block;
    width: 100%;
    color: #111;
}

.product-gallery img {
    display: block;
    max-width: 100%;
}

.gallery-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(0deg,rgba(255,255,255,0.85),rgba(255,255,255,0.85));
    z-index: 5;
    transition: opacity 180ms ease;
}

.gallery-loader[aria-hidden="true"] {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 14px;
    color: #374151;
}

.gallery-main {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    cursor: zoom-in;
    border: 1px solid #eee;
}

.gallery-main:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.gallery-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 120ms ease;
    user-select: none;
    pointer-events: none;
}

.gallery-main.is-zoomed .gallery-main-img {
    transform: scale(2.2);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    padding-top: 12px;
    max-width: 100%;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 999px;
}

.thumb {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    padding: 0;
    border: 2px solid transparent;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.thumb:focus {
    outline: none;
    border-color: #93c5fd;
}

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

.thumb[aria-current="true"] {
    border-color: #2563eb;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
}

.gallery-modal[data-hidden="true"] {
    display: none;
}

.gallery-modal-img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.gallery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #111;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.gallery-modal-close:hover {
    background: #fff;
}

.price-card {
    border-top: 1px dashed #ddd;
    padding-top: 25px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 24px;
}

.share-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.share-modal[data-hidden="false"] {
    display: flex;
}

.share-modal-content {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: grid;
    gap: 12px;
    padding: 14px;
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.share-modal-title {
    font-weight: 800;
    color: #0f172a;
}

.share-modal-close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.share-modal-body {
    display: grid;
    gap: 8px;
}

.cap-question {
    font-weight: 700;
    color: #334155;
}

.share-modal-actions {
    display: inline-flex;
    gap: 8px;
}

.share-block {
    margin-top: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
}

.share-btn:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

.share-icon {
    color: #1d4ed8;
}

.share-panel {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.share-label {
    font-weight: 700;
    font-size: 13px;
    color: #334155;
    display: block;
    margin: 6px 0 4px;
}

.share-input {
    width: 100%;
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 10px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

.share-captcha {
    display: grid;
    gap: 6px;
    margin-top: 8px;
}

.captcha-word {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cap-label {
    color: #475569;
    font-weight: 700;
    font-size: 13px;
}

.cap-code {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 8px;
    color: #0f172a;
}

.share-actions {
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
}

.share-send-btn,.share-cancel-btn {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
}

.share-send-btn {
    background: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
}

.share-send-btn:hover {
    background: #1d4ed8;
}

.share-feedback {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.share-feedback.success {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.share-feedback.error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.product-info {
    display: grid;
    gap: 6px;
    width: 100%;
    margin-bottom: 0;
    color: #0f172a;
    position: relative;
}

.product-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.product-attrs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #334155;
    font-size: 14px;
    margin-bottom: 11px;
}

.product-attrs strong {
    color: #0f172a;
}

.product-category {
    color: #475569;
    font-size: 13px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 22px;
}

.cat-path {
    margin-left: 4px;
}

.cat-path a {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 5px;
    border: 1px solid #92afe357;
    background: #f8fafc;
    color: #5194fb;
    font-weight: 500;
    width: 58%;
    cursor: pointer;
    justify-content: center;
    font-size: 13px;
    display: f;
}

.cat-path a:last-child {
    display: none;
}

.cat-path i {
    color: #fff;
}

.cat-path .fa:last-child {
}

.cat-sep {
    margin: 0 6px;
    color: #94a3b8;
}

.ecom-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    width: 73%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 16px;
    background: linear-gradient(to top,#282828,#0808089c);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    border: none;
    text-shadow: none;
    position: relative;
    padding-left: 38px;
    padding-right: 18px;
}

.badge-icon {
    color: #6cff00;
    position: absolute;
    left: 8px;
    top: 7px;
}

.badge-icon svg {
    width: 25px;
    height: 16px;
    fill: #FFEB3B;
}

.badge.ukg {
    background: linear-gradient(to top,#1835d3,#298aed);
}

.badge.ukg svg {
    fill: #00f8ff;
}

.badge.kug {
    background: linear-gradient(to top,#00a507,#28c700);
}

.badge.kug svg {
    fill: #a2ff00;
}

.badge.yrl {
    background: linear-gradient(to top,#e30917,#e30917);
    overflow: hidden;
}

.badge.yrl svg {
    fill: #00f8ff;
    height: 55px;
    width: 42px;
    margin-left: -9px;
    margin-top: -20px;
}

.badge-text {
    position: relative;
}

.badge.kft {
    background: linear-gradient(to top,#FF5722,#FF9800);
}

.badge.kft svg {
    fill: #fffe00;
}

.badge.agk {
    background: linear-gradient(to top,#1835d3,#298aed);
}

.badge.agk svg {
    fill: #00f8ff;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: flex-start;
    flex-direction: column;
}

.price-row .label {
    color: #475569;
    font-size: 14px;
    white-space: nowrap;
}

.price-row .price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 34px;
    color: #009688!important;
}

.price-row .amount {
    font-variant-numeric: tabular-nums;
}

.price-row .currency {
    font-size: 15px;
}

.market-price .price .amount {
    font-size: 16px;
    color: #ff1100;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #E91E63;
}

.market-price .currency {
    color: #E91E63;
}

.sale-price.emphasized .label {
    font-size: 17px;
    color: #334155;
    padding: 0px;
    margin-top: 15px;
}

.sale-price.emphasized .amount {
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.sale-price.emphasized .currency {
    color: #1f2937;
    font-weight: 900;
    font-size: 34px;
}

.small .label {
    font-size: 13px;
    color: #64748b;
}

.small .amount {
    font-size: 16px;
    font-weight: 800;
}

.small .currency {
    font-size: 16px;
    font-weight: 800;
}

.sub-prices {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px;
    margin-top: 15px;
}

.sub-prices .price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px dashed #ddd;
    width: 83%;
}

.discount-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 40px;
    border-radius: 999px;
    background: #1f9978;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
    position: relative;
    width: 170px;
}

.discount-badge .kazanciniz {
    position: absolute;
    margin-top: 75px;
    background: #ff982b;
    margin-left: 0;
    width: 170px;
    left: 0;
    padding: 8px 5px;
    font-size: 12px;
    border-radius: 25px;
    text-align: center;
}

.discount-badge .kazanciniz svg {
}

.discount-badge .discount-value {
    font-variant-numeric: tabular-nums;
}

.discount-badge .badge-text {
    font-weight: 600;
}

@media (max-width: 640px) {
    .sub-prices {
        grid-template-columns:1fr;
    }
}

.stock-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    border-radius: 999px;
    border: 1px solid #e91e1e;
    background: #d32a7e;
    color: #ffffff;
    font-weight: 800;
    margin: 8px 0 6px;
    max-width: 310px;
    width: 100%;
}

.stock-badge .badge-icon {
    color: inherit;
}

.purchase-block {
    display: grid;
    grid-template-columns: 25% 21% 50%;
    gap: 12px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    width: 100%;
    align-items: center;
}

.purchase-block .adt {
    font-weight: 600;
    color: #4e4e4e;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 6px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #708a9600;
    background: #f1f1f1;
    color: #2a0a0a;
    font-size: 20px;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
}

.qty-btn:hover {
    background: #f3f4f6;
}

.qty-input {
    width: 72px;
    text-align: center;
    height: 36px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

.add-to-cart-btn {
    align-self: stretch;
    border-radius: 10px;
    border: none;
    background: #ff0000;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    font-size: 19px;
    font-family: 'isans';
    opacity: 3!important;
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: calc(100% - 45px) 45px;
    width: 100%;
}

.add-to-cart-btn svg {
    height: 29px;
    margin: 0px;
    float: right;
    fill: #ff6c6c;
}

.add-to-cart-btn:hover {
    background: #1d4ed8;
}

.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cart-feedback {
    margin-top: 8px;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    display: none;
}

.cart-feedback[data-show="true"] {
    display: block;
}

@media (max-width: 640px) {
    .purchase-block {
        grid-template-columns:1fr;
    }

    .add-to-cart-btn {
        width: 100%;
        min-width: 0;
    }
}

.whatsapp-block {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #33a38324;
}

.whatsapp-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #065f46;
    font-weight: 600;
}

.whatsapp-text span {
    font-size: 14px;
}

.whatsapp-icon {
    color: #22c55e;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    background: #1f9978;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.whatsapp-btn:hover {
    background: #16a34a;
}

.whatsapp-btn .wa-logo {
    font-size: 14px;
}

@media (max-width: 640px) {
    .whatsapp-block {
        grid-template-columns:1fr;
    }

    .whatsapp-btn {
        justify-content: center;
    }
}

.shipping-block {
    display: flex;
    grid-template-columns: auto 1fr;
    gap: 33px;
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    align-items: center;
}

.shipping-badge {
    display: flex;
    place-items: center;
    border-radius: 10px;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    padding-left: 17px;
    padding-right: 13px;
}

.shipping-badge svg {
    width: 63px;
    fill: #ffb700cf;
}

.shipping-body {
    display: grid;
    gap: 8px;
}

.shipping-title {
    font-weight: 800;
    font-size: 16px;
    color: #111827;
    letter-spacing: -0.01em;
    display: none;
}

.shipping-note {
    margin: 0;
    color: #334155;
    font-size: 17px;
    padding-top: 5px;
    font-weight: 500;
}

.shipping-partners {
    display: grid;
    gap: 8px;
}

.partners-title {
    color: #b3b3b3;
    font-weight: 700;
    font-size: 10px;
    padding-top: 8px;
}

.partners-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    display: block;
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: saturate(1.05);
    border: 1px solid #dddddd94;
    border-radius: 5px;
}

@media (max-width: 640px) {
    .shipping-block {
        grid-template-columns:1fr;
    }

    .shipping-badge {
        justify-self: start;
    }
}

.varyasyon-block {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 0;
    padding-top: 15px;
}

.var-group {
    display: grid;
    gap: 6px;
}

.var-label {
    font-weight: 700;
    color: #334155;
    font-size: 14px;
}

.var-select {
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 10px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
}

.var-select:disabled {
    opacity: 0.6;
}

.var-info {
    font-size: 13px;
    color: #475569;
}

.ekhizmet-block {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 0;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 27px;
}

.ek-title {
    font-weight: 800;
    color: #111827;
}

.ek-list {
    display: grid;
    gap: 8px;
}

.ek-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #92afe357;
    background: #f8fafc;
    color: #414f72;
    font-weight: 500;
    width: 58%;
    cursor: pointer;
    justify-content: center;
    font-size: 14px;
}

.ek-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #32a283;
    border-radius: 15px;
    display: block;
}

.ek-label {
    color: #0f172a;
    font-size: 14px;
}

.ek-diff {
    color: #32a283;
    font-weight: 700;
}

.tab-icerik {
    width: 100%;
    max-width: 1200px;
    margin: 16px auto 0;
}

.tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 8px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.tab-btn[aria-selected="true"],.tab-btn.is-active {
    background: #ffffff;
    border-color: #93c5fd;
    color: #1e3a8a;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.tab-btn:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.tab-icon {
    color: inherit;
    display: inline-flex;
}

.tab-panels {
    padding-top: 12px;
    border: 1px solid #ddd;
    padding: 21px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.tab-panel {
    display: block;
    font-size: 14px;
    font-family: isans!important;
    line-height: 20px;
}

.tab-panel.is-hidden {
    display: none;
}

.tab-placeholder {
    padding: 14px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
}

.comment-form {
    display: grid;
    gap: 10px;
    border-radius: 10px;
    padding: 12px;
    background: #ffffff;
}

.cf-row {
    display: grid;
    gap: 6px;
}

.cf-label {
    font-weight: 700;
    font-size: 13px;
    color: #334155;
}

.cf-input,.cf-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

.cf-textarea {
    resize: vertical;
    min-height: 80px;
}

.cf-stars {
    display: inline-flex;
    gap: 6px;
}

.cf-star {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #9ca3af;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
}

.cf-star.is-active {
    color: #f59e0b;
    border-color: #f59e0b;
}

.cf-captcha {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cf-cap-label {
    color: #475569;
    font-weight: 700;
    font-size: 13px;
}

.cf-cap-word {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 8px;
    color: #0f172a;
}

.cf-actions {
    display: inline-flex;
    gap: 8px;
}

.cf-send-btn {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #1d4ed8;
    background: #2563eb;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.cf-feedback {
    margin-top: 4px;
    font-weight: 700;
}

.cf-feedback.error {
    color: #991b1b;
}

.cf-feedback.success {
    color: #065f46;
}

.comment-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.c-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px;
}

.c-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.c-name {
    font-weight: 800;
    color: #111827;
}

.c-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.c-city {
    color: #475569;
    font-size: 12px;
}

.c-date {
    color: #9ca3af;
    font-size: 12px;
}

.c-body {
    margin-top: 6px;
    color: #0f172a;
}

.bargain-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.bargain-modal[data-hidden="false"] {
    display: flex;
}

.bargain-modal-content {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: grid;
    gap: 12px;
    padding: 14px;
}

.bargain-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bargain-modal-title {
    font-weight: 800;
    color: #0f172a;
}

.bargain-modal-close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.bargain-modal-body {
    display: grid;
    gap: 8px;
}

.bargain-modal-actions {
    display: inline-flex;
    gap: 8px;
}

.bargain-inline {
    display: grid;
    grid-template-columns: 143px calc(100% - 143px);
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #fbb44130;
    font-weight: 500;
    color: #e39e32;
}

.bargain-inline span {
    text-align: center;
}

.bargain-btn {
    display: grid;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: none;
    background: #fead2f;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    box-shadow: none;
    grid-template-columns: 40px calc(100% - 40px);
    width: 156px;
    justify-content: start;
    text-align: left;
    padding: 11px 7px;
}

.bargain-btn svg {
    width: 30px;
    fill: #fff;
    margin-left: 9px;
}

.notify-modal { 
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.notify-modal[data-hidden="false"] {
    display: flex;
}

.notify-modal-content {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: grid;
    gap: 12px;
    padding: 14px;
}

.notify-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notify-modal-title {
    font-weight: 800;
    color: #0f172a;
}

.notify-modal-close {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.notify-modal-body {
    display: grid;
    gap: 8px;
}

.notify-modal-actions {
    display: inline-flex;
    gap: 8px;
}

.taksit-tables {
    display: grid;
    gap: 12px;
}

.taksit-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.taksit-nav .nav-title {
    font-weight: 800;
    color: #111827;
}

.taksit-nav .nav-actions {
    display: inline-flex;
    gap: 8px;
}

.tbtn {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.tbtn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

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

@media (max-width: 940px) {
    .taksit-grid {
        grid-template-columns:1fr;
    }
}

.taksit-block {
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.taksit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #2a2a2a;
    font-weight: 800;
    color: #ffffff;
    font-size: 13px;
}

.taksit-header img {
    height: 26px;
    width: auto;
    display: block;
}

.taksit-rows {
    display: grid;
}

.taksit-row {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 0ppx;
    border-top: 1px solid #f1f5f9;
    font-weight: 600;
    color: #0f172a;
    font-size: 13px;
    align-items: center;
}

.taksit-row.header {
    background: #48037a;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

.taksit-row.header div {
    color: #fff
}

.taksit-row.header div:first-child {
    padding-left: 15px;
    width: 149px;
    color: #fff;
}

.taksit-ay {
    white-space: nowrap;
    width: 152px;
    padding-left: 12px;
}

.taksit-toplam {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    width: 93px;
    font-weight: 900;
    color: #4e36c5;
}

.taksit-tutar {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    width: 100px;
    font-size: 11px;
    color: #b57c3f;
    padding: 6px;
    border-left: 1px dashed #dddddd87;
    font-weight: 900;
    border-right: 1px dashed #dddddd87;
}

.taksit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #3730a3;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-left: 8px;
}

.taksit-row.pesin {
    background: #eaffb9;
}

.taksit-shortcut {
    margin: 23px 0 10px;
    display: flex;
    gap: 11px;
    margin-top: 11px;
    margin-bottom: 4px;
    justify-content: flex-end;
}

.taksit-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #92afe357;
    background: #f8fafc;
    color: #414f72;
    font-weight: 500;
    width: 49%;
    cursor: pointer;
    justify-content: center;
    font-size: 14px;
}

.taksit-link:hover {
    background: #fff;
    border-color: #cbd5e1;
}

.taksit-link .taksit-icon {
    color: #ff7800;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #92afe357;
    background: #f8fafc;
    color: #414f72;
    font-weight: 500;
    width: 49%;
    cursor: pointer;
    justify-content: center;
    font-size: 14px;
}

.video-link:hover {
    background: #e0e7ff;
    border-color: #93c5fd;
}

.video-icon {
    color: inherit;
}

.video-icon svg {
    width: 25px;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
