﻿:root {
    --ring: rgba(0,0,0,.1);
    --brand: oklch(63% 0.11 255);
}

.pd-page {
    position: relative;
}

.pd-crumbs {
    font-size: .9rem;
    opacity: .9;
}

    .pd-crumbs a:hover {
        text-decoration: underline;
    }

.pd-wrap {
    display: grid;
    gap: 16px;
}

@media (min-width:1024px) {
    .pd-wrap {
        grid-template-columns: 1.05fr .95fr;
        gap: 18px;
    }
}

.pd-gallery {
    background: var(--fallback-b1,#fff);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 10px;
}

.pd-main {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--fallback-b2,#f3f4f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    touch-action: pan-y;
}
    .pd-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transform-origin: 50% 50%;
        transition: transform .12s linear;
    }
        .pd-main img.fit-contain {
            object-fit: contain !important;
        }

    .pd-main.is-zoom img {
        transform: scale(1.6);
    }

@media (min-width:1024px) {
    .pd-main {
        aspect-ratio: 2/1;
        height: auto;
    }
}

.pd-thumbs {
    position: relative;
    margin-top: 10px;
    height: 76px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border-radius: 10px;
}

.pd-thumbs-track {
    display: flex;
    gap: 10px;
    will-change: transform;
    transition: transform .25s ease;
}

.pd-thumb {
    width: 70px;
    aspect-ratio: 1 / 1; 
    height: auto;
    flex: 0 0 auto;
    border: 1px solid var(--ring);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: transform .12s;
}

    .pd-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain; 
        object-position: center;
        background: var(--fallback-b2,#f3f4f6); 
        border-radius: .6rem;
        display: block;
    }

    .pd-thumb:hover {
        transform: translateY(-1px);
    }

    .pd-thumb.is-active {
        outline: 2px solid var(--brand);
    }

.pd-thumbs.has-arrows {
    padding: 0 38px;
}

.pd-thumbs-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: rgba(0,0,0,.08);
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
}

    .pd-thumbs-ctrl:hover {
        background: rgba(0,0,0,.14);
    }

    .pd-thumbs-ctrl:disabled {
        opacity: .4;
        cursor: not-allowed;
    }

    .pd-thumbs-ctrl.prev {
        left: 2px;
    }

    .pd-thumbs-ctrl.next {
        right: 2px;
    }

.pd-dots {
    display: none;
    margin-top: 8px;
    justify-content: center;
    gap: 8px;
}

.pd-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #cbd5e1;
    border: 0;
    padding: 0;
    cursor: pointer;
}

    .pd-dot[aria-current="true"] {
        background: #475569;
    }

@media (max-width:640px) {
    .pd-main {
        height: clamp(200px,52vw,260px);
        aspect-ratio: auto;
        cursor: default;
    }

    html, body {
        overflow-x: hidden;
    }

    .pd-thumbs {
        display: none;
    }

    .pd-dots {
        display: flex;
    }

    .site-header .search.modern {
        max-width: 100%;
        width: 100%;
    }

    .site-header .header-grid {
        grid-template-columns: 1fr auto;
        overflow-x: clip;
    }
}

.pd-summary {
    position: sticky;
    top: 96px;
    align-self: start;
    background: var(--fallback-b1,#fff);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.pd-title {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .005em;
}


.pd-brand {
    font-size: .9rem;
    opacity: .9;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

    .pd-brand .sep {
        opacity: .6;
    }

.pd-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .95rem;
    margin-top: 6px;
}

.pd-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 8px;
}

    .pd-price .now {
        font-size: 1.5rem;
        font-weight: 700;
    }


    .pd-price .old {
        text-decoration: line-through;
        opacity: .6;
        font-weight: 600;
    }

.pd-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

    .pd-variants .vopt {
        border: 1px solid var(--ring);
        border-radius: 999px;
        padding: 6px 10px;
        background: #fff;
        cursor: pointer;
        font-weight: 600;
        font-size: .92rem;
    }

        .pd-variants .vopt[disabled] {
            opacity: .5;
            cursor: not-allowed;
        }

        .pd-variants .vopt.is-active {
            outline: 2px solid var(--brand);
        }

.pd-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    margin-top: 12px;
    --cta1-a: #0a2a7a;
    --cta1-b: #1e40af;
    --cta1-c: #06b6d4;
    --cta2-a: #0b1e6b;
    --cta2-b: #7c3aed;
    --cta2-c: #06b6d4;
}

    .pd-actions .btn {
        width: 100%;
        flex: none;
    }

    .pd-actions .js-add-to-cart {
        position: relative;
        overflow: hidden;
        border: 0 !important;
        color: #fff !important;
        font-weight: 700;
        letter-spacing: .005em;
        border-radius: 12px;
        padding: .62rem 1rem;
        min-height: 40px;
        background-image: linear-gradient(90deg, var(--cta1-a) 0%, var(--cta1-b) 50%, var(--cta1-c) 100%) !important;
        background-size: 200% 100%;
        background-position: 0% 50%;
        box-shadow: 0 10px 24px rgba(3,30,79,.18);
        transition: transform .18s ease, box-shadow .18s ease, background-position .35s ease, filter .18s ease;
    }

        .pd-actions .js-add-to-cart:hover:not([disabled]) {
            background-position: 100% 50%;
            animation: btn-float 1.1s ease-in-out infinite;
            box-shadow: 0 14px 30px rgba(3,30,79,.22);
        }

        .pd-actions .js-add-to-cart:active:not([disabled]) {
            transform: translateY(0);
            animation: none;
        }

        .pd-actions .js-add-to-cart:focus-visible {
            outline: 3px solid #93c5fd;
            outline-offset: 2px;
        }

        .pd-actions .js-add-to-cart::after {
            content: "";
            position: absolute;
            inset: 0;
            width: 60%;
            left: -120%;
            background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 50%, transparent 100%);
            transform: skewX(-20deg);
            opacity: 0;
        }

        .pd-actions .js-add-to-cart:hover::after {
            animation: btn-shine .9s ease-out forwards;
            opacity: 1;
        }

        .pd-actions .js-add-to-cart[disabled] {
            filter: grayscale(.3) brightness(.85);
            box-shadow: none;
            cursor: not-allowed;
        }

    .pd-actions .btn.btn-ghost {
        position: relative;
        overflow: hidden;
        color: var(--cta2-a) !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 12px;
        padding: .5rem .9rem;
        min-height: 36px;
        font-weight: 600;
        transition: transform .16s ease, color .16s ease, box-shadow .18s ease, background .18s ease;
    }

        .pd-actions .btn.btn-ghost::before {
            content: "";
            position: absolute;
            inset: 0;
            padding: 1px;
            border-radius: 12px;
            background: linear-gradient(90deg, var(--cta2-b), var(--cta2-c));
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .pd-actions .btn.btn-ghost:hover {
            color: #0f172a !important;
            background-color: rgba(15,23,42,.03) !important;
            background-image: linear-gradient(90deg, color-mix(in oklch, var(--cta2-b) 8%, white), color-mix(in oklch, var(--cta2-c) 10%, white)) !important;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(2,6,23,.08);
        }

            .pd-actions .btn.btn-ghost:hover::after {
                content: "";
                position: absolute;
                inset: 0;
                width: 55%;
                left: -120%;
                background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
                transform: skewX(-18deg);
                animation: btn-shine .95s ease-out forwards;
                pointer-events: none;
            }

        .pd-actions .btn.btn-ghost:active {
            transform: translateY(-1px);
        }

        .pd-actions .btn.btn-ghost:focus-visible {
            outline: 3px solid #c4b5fd;
            outline-offset: 2px;
        }

@media (prefers-reduced-motion: reduce) {
    .pd-actions .js-add-to-cart,
    .pd-actions .js-add-to-cart:hover,
    .pd-actions .btn.btn-ghost,
    .pd-actions .btn.btn-ghost:hover {
        animation: none !important;
        transition: none !important;
        background-position: 0% 50% !important;
    }
}

.pd-tabs {
    margin-top: 18px;
}

.pd-tabs {
    display: block;
}

@media (min-width:1024px) {
    .pd-tabs.pd-tabs--2col {
        display: grid;
        grid-template-columns: 1.05fr .95fr; 
        gap: 18px;
        align-items: start;
    }

    .pd-tabs.pd-tabs--1col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .pd-tabs.pd-tabs--2col > .pd-section {
        grid-column: auto;
    }

    .pd-tabs.pd-tabs--1col > .pd-section {
        grid-column: 1 / -1;
    }
}

.pd-section {
    background: var(--fallback-b1,#fff);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 16px;
    min-width: 0; 
}

.pd-specs {
    columns: 1;
    column-gap: 22px;
}

@media (min-width:768px) {
    .pd-specs {
        columns: 2;
    }
}

.pd-spec {
    break-inside: avoid;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,.08);
}

    .pd-spec b {
        display: block;
        font-size: .92rem;
        margin-bottom: 2px;
    }

    .pd-spec span {
        opacity: .9;
    }

.lb[aria-hidden="true"] {
    display: none;
}

.lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.8);
    display: grid;
    place-items: center;
}

.lb-dialog {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.lb img {
    max-width: 94vw;
    max-height: 92vh;
    object-fit: contain;
}

.lb-close, .lb-nav {
    position: absolute;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.92);
    cursor: pointer;
}

.lb-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.lb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 26px;
}

.lb-prev {
    left: 12px;
}

.lb-next {
    right: 12px;
}

/* Animasyonlar */
@keyframes btn-float {
    0%,100% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes btn-shine {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}


.pd-section .prose {
}

.u-mark {
    background: #fff3b0;
    padding: 0 .2em;
    border-radius: .25rem;
}

.u-mark-green {
    background: #dcfce7;
    padding: 0 .2em;
    border-radius: .25rem;
}

.u-mark-blue {
    background: #dbeafe;
    padding: 0 .2em;
    border-radius: .25rem;
}

.u-mark-red {
    background: #fee2e2;
    padding: 0 .2em;
    border-radius: .25rem;
}

.u-muted {
    color: #6b7280;
}

.text-bold {
    font-weight: 700;
    color: #000;
}

.inline-code {
    background: #f3f4f6;
    color: #dc2626;
    padding: .15em .4em;
    border-radius: .25rem;
    font-size: .9em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.u-underline {
    text-decoration: underline;
    text-decoration-color: #3b82f6;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.u-strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.callout {
    border: 1px solid #e5e7eb;
    border-left-width: 4px;
    border-radius: .5rem;
    padding: .9rem 1rem;
    margin: 1rem 0;
}

.callout-info {
    background: #f0f7ff;
    border-left-color: #60a5fa;
}

.callout-warning {
    background: #fff7ed;
    border-left-color: #f59e0b;
}

.callout-success {
    background: #f1fdf3;
    border-left-color: #22c55e;
}

.callout-note {
    background: #f8fafc;
    border-left-color: #94a3b8;
}

.callout-danger {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.callout-tip {
    background: #f0fdfa;
    border-left-color: #14b8a6;
}

.callout-important {
    background: #fdf4ff;
    border-left-color: #a855f7;
}

.callout-question {
    background: #fffbeb;
    border-left-color: #eab308;
}

/* Renkli Etiketler */
.badge {
    display: inline-block;
    padding: .25em .6em;
    font-size: .875em;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .375rem;
}

.badge-red {
    background: #fee;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.badge-green {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
}

.badge-blue {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #93c5fd;
}

.badge-yellow {
    background: #fefce8;
    color: #ca8a04;
    border: 1px solid #fde047;
}

.badge-gray {
    background: #f9fafb;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.badge-purple {
    background: #faf5ff;
    color: #9333ea;
    border: 1px solid #d8b4fe;
}

.badge-orange {
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #fdba74;
}

.badge-pink {
    background: #fdf2f8;
    color: #db2777;
    border: 1px solid #f9a8d4;
}

/* Outline Etiketler */
.badge-outline-red {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.badge-outline-green {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.badge-outline-blue {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.heading-colored {
    margin: 1.5rem 0 1rem;
    padding-bottom: .5rem;
}

    .heading-colored.heading-blue {
        color: #2563eb;
        border-bottom: 3px solid #2563eb;
    }

    .heading-colored.heading-green {
        color: #16a34a;
        border-bottom: 3px solid #16a34a;
    }

.heading-bordered {
    border-left: 5px solid #3b82f6;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.heading-background {
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
    color: #fff;
    padding: .5rem 1rem;
    margin: 1.5rem 0;
    border-radius: .375rem;
}

/* Liste Stilleri */
.list-check {
    list-style: none;
    padding-left: 0;
}

    .list-check li:before {
        content: "✓ ";
        color: #22c55e;
        font-weight: bold;
        margin-right: .5rem;
    }

.list-cross {
    list-style: none;
    padding-left: 0;
}

    .list-cross li:before {
        content: "✗ ";
        color: #ef4444;
        font-weight: bold;
        margin-right: .5rem;
    }

.list-star {
    list-style: none;
    padding-left: 0;
}

    .list-star li:before {
        content: "⭐ ";
        margin-right: .5rem;
    }

.list-arrow {
    list-style: none;
    padding-left: 0;
}

    .list-arrow li:before {
        content: "→ ";
        color: #3b82f6;
        font-weight: bold;
        margin-right: .5rem;
    }

.list-numbered-colored {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

    .list-numbered-colored li {
        counter-increment: item;
        margin-bottom: .5rem;
        padding-left: 2rem;
        position: relative;
    }

        .list-numbered-colored li:before {
            content: counter(item);
            position: absolute;
            left: 0;
            top: 0;
            background: #3b82f6;
            color: #fff;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            text-align: center;
            line-height: 1.5rem;
            font-weight: bold;
            font-size: .875em;
        }

.p-indent {
    text-indent: 2rem;
    margin: 1rem 0;
}

.p-border-left {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1rem 0;
}

.p-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    padding: 1rem;
    border-radius: .5rem;
    margin: 1rem 0;
}

.p-background {
    background: #f9fafb;
    padding: 1rem;
    border-radius: .5rem;
    margin: 1rem 0;
}

/* Özel Bloklar */
.quote-box {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #4b5563;
}

.quote-highlight {
    background: #f0f7ff;
    border-left: 4px solid #3b82f6;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
}

.tip-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: .5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.detail-box {
    background: #fafafa;
    border: 2px solid #e5e7eb;
    border-radius: .5rem;
    padding: 1rem;
    margin: 1rem 0;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: .5rem 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: .375rem;
    transition: all .2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

    .btn-primary:hover {
        background: #2563eb;
    }

.btn-secondary {
    background: #6b7280;
    color: #fff;
    border-color: #6b7280;
}

    .btn-secondary:hover {
        background: #4b5563;
    }

.btn-success {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}

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

.btn-danger {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

    .btn-danger:hover {
        background: #dc2626;
    }

.btn-warning {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

    .btn-warning:hover {
        background: #d97706;
    }

.btn-info {
    background: #06b6d4;
    color: #fff;
    border-color: #06b6d4;
}

    .btn-info:hover {
        background: #0891b2;
    }

.btn-outline-primary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

    .btn-outline-primary:hover {
        background: #3b82f6;
        color: #fff;
    }

.btn-outline-success {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

    .btn-outline-success:hover {
        background: #22c55e;
        color: #fff;
    }

.btn-outline-danger {
    background: transparent;
    color: #ef4444;
    border: 2px solid #ef4444;
}

    .btn-outline-danger:hover {
        background: #ef4444;
        color: #fff;
    }

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
}

.btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1.125rem;
}

.row-2col {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.col-left,
.col-right {
    flex: 1;
}

.row-3col {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

    .row-3col .col {
        flex: 1;
    }

/* Özellik Listesi */
.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        padding: .5rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

        .feature-list li:last-child {
            border-bottom: none;
        }

/* Artı/Eksi */
.pros-cons {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.pros,
.cons {
    flex: 1;
    padding: 1rem;
    border-radius: .5rem;
}

.pros {
    background: #f0fdf4;
    border: 1px solid #86efac;
}

    .pros h4 {
        color: #16a34a;
        margin-top: 0;
    }

.cons {
    background: #fef2f2;
    border: 1px solid #fca5a5;
}

    .cons h4 {
        color: #dc2626;
        margin-top: 0;
    }

/* SSS */
.faq-item {
    background: #f9fafb;
    border-radius: .5rem;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #e5e7eb;
}

    .faq-item strong {
        color: #1f2937;
    }

/* Adım Kılavuzu */
.step-guide {
    margin: 1.5rem 0;
}

.step {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

    .step h4 {
        margin-top: 0;
        color: #3b82f6;
    }

    .step:before {
        content: "";
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.5rem;
        height: 1.5rem;
        background: #3b82f6;
        border-radius: 50%;
    }

.price-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

    .price-card h3 {
        margin: 0 0 1rem;
        color: #1f2937;
    }

    .price-card .price {
        font-size: 2.5rem;
        font-weight: bold;
        color: #3b82f6;
        margin: 1rem 0;
    }

        .price-card .price .period {
            font-size: 1rem;
            color: #6b7280;
        }

    .price-card .features {
        list-style: none;
        padding: 0;
        text-align: left;
        margin: 1.5rem 0;
    }

        .price-card .features li {
            padding: .5rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

    .price-card .btn {
        margin-top: 1rem;
        width: 100%;
    }

.review-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

    .review-card h4 {
        margin-top: 0;
        color: #1f2937;
    }

    .review-card .rating {
        color: #f59e0b;
        font-size: 1.25rem;
        margin: .5rem 0;
    }

    .review-card .review-text {
        font-style: italic;
        color: #4b5563;
        margin: 1rem 0;
    }

    .review-card .reviewer {
        color: #6b7280;
        font-size: .875rem;
        text-align: right;
    }

.info-panel {
    display: flex;
    gap: 1rem;
    background: #f0f7ff;
    border: 1px solid #bae6fd;
    border-radius: .5rem;
    padding: 1rem;
    margin: 1rem 0;
}

    .info-panel .panel-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .info-panel .panel-content h4 {
        margin-top: 0;
        color: #1e40af;
    }

/* Tablo Stilleri */
.table-striped tbody tr:nth-child(odd) {
    background: #f9fafb;
}

.table-bordered {
    border: 2px solid #d1d5db;
}

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #e5e7eb;
    }

.table-sm th,
.table-sm td {
    padding: .25rem;
}

.table-hover tbody tr:hover {
    background: #f3f4f6;
    cursor: pointer;
}

.pd-summary .pd-meta {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

/*  Stock Pill */
.stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid rgba(30,58,138,.25);
    font-weight: 400;
    line-height: 1;
    font-size: .875rem;
}

    .stock-pill .sp-icon {
        display: grid;
        place-items: center;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: rgba(30,58,138,.10);
        font-size: .8em;
        font-weight: 400;
    }

    .stock-pill .sp-text {
        font-weight: 400;
    }

.stockout-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9; 
    color: #0f172a; 
    border: 1px solid rgba(15,23,42,.15);
    font-weight: 400; 
    line-height: 1;
    font-size: .875rem;
}

    .stockout-pill .so-icon {
        display: grid;
        place-items: center;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: rgba(15,23,42,.08);
        font-size: .8em;
        font-weight: 400;
    }

    .stockout-pill .so-text {
        font-weight: 400;
    }

.discount-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff; 
    color: #1e40af; 
    border: 1px solid rgba(30,58,138,.25);
    font-weight: 400;
    line-height: 1;
    font-size: .875rem;
}

    .discount-pill .dp-icon {
        display: grid;
        place-items: center;
        width: 18px;
        height: 18px;
        border-radius: 999px;
        background: rgba(30,58,138,.10);
        font-size: .8em;
        font-weight: 400; 
    }

    .discount-pill .dp-text {
        font-weight: 400;
    }

    .discount-pill .dp-rate {
        font-weight: 400; 
        padding: 2px 8px;
        background: rgba(30,58,138,.10);
        border: 1px solid rgba(30,58,138,.25);
        border-radius: 999px;
        line-height: 1.15;
    }
