.product-detail-page .container {
    max-width: 1400px;
    /* User set to 1400px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Cards */
.product-gallery-card,
.product-info-card,
.product-tabs-card {
    background: #ffffff;
    border-radius: 0;
    /* Square borders for modern look */
    box-shadow: none;
    /* Removed heavy shadow */
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.product-gallery-card:hover,
.product-info-card:hover {
    transform: none;
    /* Remove lift */
    border-color: var(--brand-color);
}

#productTab li.nav-item::after {
    content: none;
}

/* Gallery */
.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 15px;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.main-image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: none;
    cursor: default;
}

.thumb-images .owl-item .item {
    border: 2px solid #eee;
    /* Increased width to prevent jump on active */
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
    opacity: 0.6;
    margin: 0 5px;
}

.thumb-images .item.current {
    /* Fixed selector: was .owl-item.current */
    border-color: var(--brand-color);
    opacity: 1;
    transform: none;
}

.thumb-images img {
    width: 100%;
    border-radius: 0;
}

/* Info */
.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.product-content .product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price .currency {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brand-color);
}

.product-price .old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Meta List */
.product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.meta-item .label {
    min-width: 100px;
    font-weight: 600;
    color: #666;
}

.meta-item .value {
    color: var(--brand-color);
    font-weight: 500;
}

/* Actions */
.product-actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.btn-add-cart-detail {
    background: var(--brand-color);
    color: #fff;
    padding: 16px 25px;
    border-radius: 0;
    /* Square */
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid var(--brand-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-cart-detail:hover {
    background: #fff;
    color: var(--brand-color);
    transform: none;
    box-shadow: none;
}

.btn-add-cart-detail:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.btn-whatsapp-detail {
    background: #fff;
    color: #25D366;
    padding: 16px 25px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp-detail:hover {
    background: #25D366;
    color: #fff;
    transform: none;
    box-shadow: none;
}

.btn-favorite-detail {
    background: #fff;
    color: var(--brand-color);
    width: 56px;
    height: 56px;
    border-radius: 0;
    font-size: 1.5rem;
    transition: all 0.3s;
    border: 1px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.btn-favorite-detail:hover {
    border-color: var(--brand-color);
    color: #dc3545;
}

.btn-favorite-detail i.bxs-heart {
    color: #dc3545;
}

/* Quantity */
.qty-container {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0;
    padding: 0;
    border: 1px solid #e5e5e5;
    height: 56px;
    /* Match button height approx */
}

.qty-btn {
    width: 45px;
    height: 100%;
    border: none;
    background: #f8f8f8;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--brand-color);
}

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

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--brand-color);
    height: 100%;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    background: transparent;
    padding: 10px 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--brand-dark);
    border: none;
    border-bottom: 1px solid #eee;
}

.feature-item i {
    color: var(--brand-color);
    font-size: 1.2rem;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #e5e5e5;
}

.nav-tabs .nav-link {
    color: #666;
    font-weight: 600;
    padding: 15px 25px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-tabs .nav-link:hover {
    color: var(--brand-color);
    background: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--brand-color);
    background: transparent;
    border-bottom: 2px solid var(--brand-color);
}

.tab-content {
    padding: 30px 0;
    color: var(--brand-dark);
    line-height: 1.8;
}

.spec-table th {
    background: #f8f9fa;
    color: var(--brand-color);
}

/* Related */
.related-products-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-products-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-color);
    border-radius: 0;
}

/* Comments */
.comment-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.comment-author {
    font-weight: 700;
    font-size: 1rem;
    color: #212529;
}

.rating-display i {
    font-size: 1rem;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s;
}

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

/* Mobile Responsive */
@media (max-width: 991px) {
    .product-detail-page {
        padding: 0;
    }

    .product-gallery-card,
    .product-info-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .main-image-container {
        min-height: 300px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .product-detail-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Stack gallery and info */
    .product-gallery-card {
        margin-bottom: 20px;
    }

    .main-image-container {
        min-height: 250px;
        margin-bottom: 15px;
    }

    .main-image-container img {
        max-height: 300px;
    }

    /* Thumbnails */
    .thumb-images {
        margin-bottom: 10px;
    }

    /* Info */
    .product-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .product-price {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .product-actions-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .qty-container {
        justify-content: center;
        width: 100%;
        margin-bottom: 5px;
    }

    .qty-btn {
        width: 50px;
        /* Larger touch target */
        height: 50px;
    }

    .qty-input {
        width: 60px;
        font-size: 1.2rem;
    }

    .btn-add-cart-detail,
    .btn-whatsapp-detail {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    /* Tabs */
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Modern Styling Enhancements */
.current-price-modern {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-color);
    letter-spacing: -1px;
}

.old-price-modern {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge-modern {
    background: var(--brand-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-meta-modern {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.meta-row:last-child {
    margin-bottom: 0;
}

.meta-row .label {
    color: #666;
    font-weight: 500;
}

.meta-row .value {
    color: var(--brand-color);
    font-weight: 700;
    text-align: right;
}

.category-link {
    text-decoration: none;
    color: var(--brand-color);
    border-bottom: 1px solid var(--brand-color);
    transition: all 0.2s;
}

.category-link:hover {
    opacity: 0.7;
}

/* Modern Controls */
.qty-container-modern {
    display: flex;
    border: 2px solid var(--brand-color);
    height: 54px;
    background: #fff;
}

.qty-btn-modern {
    width: 45px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn-modern:hover {
    background: #f8f8f8;
}

.qty-input-modern {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-add-cart-modern {
    height: 54px;
    background: var(--brand-color) !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-add-cart-modern:hover {
    background: var(--brand-dark) !important;
}

.btn-add-cart-modern:disabled {
    background: #ccc !important;
    cursor: not-allowed;
}

.btn-whatsapp-modern {
    height: 54px;
    border: 2px solid #25D366;
    color: #25D366 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-whatsapp-modern:hover {
    background: #25D366 !important;
    color: #fff !important;
}

@media (max-width: 576px) {
    .product-actions-wrapper .d-flex {
        flex-direction: column !important;
    }

    .boutique-detail .pd-actions .qty-container-modern,
    .boutique-detail .pd-actions .btn-add-cart-modern,
    .boutique-detail .pd-actions .btn-whatsapp-modern {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ══════════════════════════════════════
   Boutique Product Detail
   ══════════════════════════════════════ */
.boutique-detail {
    padding-bottom: 60px;
}

/* Fancybox: ticker üstte kalmasın, görsel görünür kalsın */
.fancybox__container {
    z-index: 100000 !important;
}

.fancybox__carousel,
.fancybox__slide,
.fancybox__content,
.fancybox__image {
    opacity: 1 !important;
    visibility: visible !important;
}

html.with-fancybox .promo-ticker,
html.pd-fancybox-open .promo-ticker {
    display: none !important;
}

/* Sağ panel scroll'da yapışkan kalsın */
@media (min-width: 992px) {
    .boutique-detail .pd-main-row {
        align-items: flex-start;
    }

    .boutique-detail .pd-info-col {
        align-self: flex-start;
    }

    .boutique-detail .pd-info-sticky {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-rose) transparent;
    }

    .boutique-detail .pd-info-sticky::-webkit-scrollbar {
        width: 5px;
    }

    .boutique-detail .pd-info-sticky::-webkit-scrollbar-thumb {
        background: var(--accent-rose);
        border-radius: 10px;
    }
}

.boutique-detail .pd-breadcrumb {
    margin: 10px 0 10px;
}

.boutique-detail .breadcrumb-item a {
    color: var(--gray-text);
    text-decoration: none;
}

.boutique-detail .breadcrumb-item a:hover {
    color: var(--brand-color);
}

.boutique-detail .breadcrumb-item.active {
    color: var(--dark-text);
}

/* Gallery */
.pd-gallery-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: var(--glow-pink);
    position: relative;
    overflow: hidden;
}

.pd-gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.boutique-detail .main-image-container {
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, var(--accent-lighter) 100%);
    min-height: 420px;
    margin-bottom: 16px;
}

.pd-main-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: zoom-in;
    text-decoration: none;
}

.boutique-detail .main-image-container img {
    max-height: 480px;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.25s ease;
}

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

.pd-zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(212, 137, 159, 0.2);
    pointer-events: none;
    transition: all 0.2s;
}

.pd-main-image-link:hover .pd-zoom-hint {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
}

.boutique-detail .thumb-images .owl-item .item {
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.boutique-detail .thumb-images .item.current {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 2px rgba(212, 137, 159, 0.2);
}

/* Info Card */
.pd-info-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 28px;
    box-shadow: var(--glow-pink);
    height: 100%;
}

.pd-brand-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: var(--accent-soft);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 14px;
}

.pd-brand-tag:hover {
    background: var(--accent-rose);
    color: var(--dark-text);
}

.pd-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.pd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.15;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.btn-favorite-detail {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--brand-color);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-favorite-detail:hover:not(.is-favorite) {
    color: #e2557a;
    border-color: #f5b8c8;
    background: var(--accent-lighter);
}

.btn-favorite-detail.is-favorite {
    border-color: #f0b8c8;
    background: #fff5f8;
}

.btn-favorite-detail.is-favorite,
.btn-favorite-detail.is-favorite i {
    color: #dc3545;
}

.btn-compare-detail {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--brand-color);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-compare-detail:hover:not(.is-on) {
    color: #1b81fc;
    border-color: #93c5fd;
    background: #eff6ff;
}

.btn-compare-detail.is-on,
.btn-compare-detail.is-on i {
    color: #fff;
    background: #1b81fc;
    border-color: #1b81fc;
}

.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.pd-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pd-price-note {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.pd-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 22px;
    font-size: 0.82rem;
    color: var(--gray-text);
}

.pd-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pd-trust-strip i {
    color: var(--brand-color);
    font-size: 1rem;
}

/* Variants */
.pd-variant-box {
    background: var(--accent-lighter);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 22px;
}

.pd-variant-group+.pd-variant-group {
    margin-top: 16px;
}

.pd-variant-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pd-variant-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark-text);
}

.pd-variant-hint {
    font-size: 0.82rem;
    color: var(--brand-dark);
    font-weight: 600;
}

.pd-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-color-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--border-color);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.2s;
    padding: 0;
}

.pd-color-btn:hover {
    transform: scale(1.08);
}

.pd-color-btn.active {
    box-shadow: 0 0 0 2px var(--brand-color);
    transform: scale(1.1);
}

.pd-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-size-btn {
    min-width: 48px;
    height: 42px;
    padding: 0 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.pd-size-btn:hover:not(:disabled) {
    border-color: var(--brand-color);
    color: var(--brand-dark);
}

.pd-size-btn.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
}

.pd-size-btn.disabled,
.pd-size-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.pd-size-placeholder {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-style: italic;
}

.pd-variant-summary {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-color);
}

.pd-variant-chip {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--brand-color);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.pd-variant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.82rem;
    color: var(--gray-text);
}

.pd-variant-barcode {
    font-family: monospace;
    letter-spacing: 0.03em;
}

.pd-variant-note {
    font-size: 0.82rem;
    color: var(--gray-text);
    margin-top: 14px;
    margin-bottom: 0;
}

/* Meta */
.pd-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.pd-meta-item {
    background: var(--accent-lighter);
    border-radius: 12px;
    padding: 12px 14px;
}

.pd-meta-item span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-text);
    margin-bottom: 4px;
}

.pd-meta-item strong,
.pd-meta-item a {
    font-size: 0.9rem;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
}

.pd-meta-item a:hover {
    color: var(--brand-color);
}

.pd-meta-item .in-stock {
    color: #2d9f6f;
}

.pd-meta-item .out-stock {
    color: #d9534f;
}

/* Actions */
.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.boutique-detail .qty-container-modern {
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    overflow: hidden;
}

.boutique-detail .btn-add-cart-modern {
    flex: 1;
    min-width: 180px;
    border-radius: 12px;
    background: var(--gradient-brand) !important;
    letter-spacing: 0.06em;
}

.boutique-detail .btn-add-cart-modern:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.boutique-detail .btn-whatsapp-modern {
    border-radius: 12px;
    width: 54px;
    padding: 0;
}

/* Tabs */
.pd-tabs-card {
    border-radius: 20px !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--glow-pink);
    overflow: hidden;
}

/* Detay bölümleri (sekme yerine) */
.pd-modern .pd-detail-sections {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

/* Ürün Bilgileri — Trendyol tarzı */
.pd-modern .pd-product-info__title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.02em;
}

.pd-modern .pd-product-info__card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.pd-modern .pd-product-info__top {
    display: grid;
    grid-template-columns: 180px minmax(0, 1.4fr) minmax(220px, 0.9fr);
    gap: 0;
}

.pd-modern .pd-product-info__photo {
    padding: 20px;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #fff;
}

.pd-modern .pd-product-info__photo img {
    width: 100%;
    max-width: 140px;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.pd-modern .pd-product-info__desc,
.pd-modern .pd-product-info__extra {
    padding: 20px 22px 12px;
}

.pd-modern .pd-product-info__desc {
    border-right: 1px solid var(--border-color);
}

.pd-modern .pd-product-info__subtitle {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
}

.pd-modern .pd-product-info__desc-content {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-text);
}

.pd-modern .pd-product-info__desc-content.is-collapsible.is-collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.pd-modern .pd-product-info__desc-content.is-collapsible.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

.pd-modern .pd-product-info__extra-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-modern .pd-product-info__extra-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
}

.pd-modern .pd-product-info__extra-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-color);
    transform: translateY(-50%);
}

.pd-modern .pd-product-info__divider {
    height: 1px;
    background: var(--border-color);
}

.pd-modern .pd-product-info__specs {
    padding: 20px 22px 16px;
}

.pd-modern .pd-product-info__specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.pd-modern .pd-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: #f7f8fa;
    border-radius: 4px;
    min-height: 48px;
}

.pd-modern .pd-spec-row--more {
    display: none;
}

.pd-modern .pd-product-info__specs-grid.is-expanded .pd-spec-row--more {
    display: flex;
}

.pd-modern .pd-spec-row__label {
    font-size: 13px;
    color: var(--gray-text);
    flex-shrink: 0;
}

.pd-modern .pd-spec-row__value {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
    text-align: right;
}

.pd-modern .pd-show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin: 14px 0 4px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--gray-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.pd-modern .pd-show-more:hover {
    color: var(--brand-color);
}

.pd-modern .pd-show-more i {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.pd-modern .pd-show-more.is-expanded i {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .pd-modern .pd-product-info__top {
        grid-template-columns: 1fr;
    }

    .pd-modern .pd-product-info__photo {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 16px;
    }

    .pd-modern .pd-product-info__photo img {
        max-width: 120px;
    }

    .pd-modern .pd-product-info__desc {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .pd-modern .pd-product-info__specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .pd-modern .pd-product-info__top {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .pd-modern .pd-product-info__extra {
        grid-column: 1 / -1;
        border-top: 1px solid var(--border-color);
    }

    .pd-modern .pd-product-info__desc {
        border-right: none;
    }
}

.pd-modern .pd-detail-section {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(36, 180, 200, 0.06);
}

.pd-modern .pd-detail-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(36, 180, 200, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 1px solid var(--border-color);
}

.pd-modern .pd-detail-section__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(36, 180, 200, 0.25);
}

.pd-modern .pd-detail-section__titles {
    flex: 1;
    min-width: 0;
}

.pd-modern .pd-detail-section__titles h2 {
    margin: 0 0 2px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
}

.pd-modern .pd-detail-section__titles p {
    margin: 0;
    font-size: 13px;
    color: var(--gray-text);
}

.pd-modern .pd-detail-section__badge {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-dark);
    background: var(--accent-soft);
    padding: 6px 12px;
    border-radius: 999px;
}

.pd-modern .pd-detail-section__body {
    padding: 22px 24px;
}

.pd-modern .pd-detail-section__body--table {
    padding: 16px 24px 22px;
}

.pd-modern .pd-detail-section__body--reviews {
    padding: 20px 22px 22px;
}

.pd-description {
    line-height: 1.85;
    color: var(--gray-text);
    font-size: 15px;
}

.pd-modern .pd-description p {
    margin-bottom: 12px;
}

.pd-modern .pd-description p:last-child {
    margin-bottom: 0;
}

.pd-modern .pd-description ul,
.pd-modern .pd-description ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-modern .pd-description ul li,
.pd-modern .pd-description ol li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.7;
}

.pd-modern .pd-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pd-modern .pd-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: var(--accent-lighter);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.pd-modern .pd-spec-item__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pd-modern .pd-spec-item__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

@media (max-width: 767px) {
    .pd-modern .pd-detail-section__head {
        flex-wrap: wrap;
        padding: 16px 18px;
    }

    .pd-modern .pd-detail-section__body {
        padding: 18px;
    }

    .pd-modern .pd-spec-grid {
        grid-template-columns: 1fr;
    }
}

.pd-spec-table th {
    width: 35%;
    background: var(--accent-lighter);
    color: var(--dark-text);
    font-weight: 600;
}

.pd-comment-form-card {
    background: var(--accent-lighter);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.pd-comment-form-card h4 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 18px;
}

.pd-submit-comment {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 700;
}

.pd-empty-comments {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-text);
    background: var(--accent-lighter);
    border-radius: 12px;
}

/* Related / Benzer Ürünler — Trendyol tarzı yatay kaydırma */
.pd-related {
    margin-top: 48px;
    padding-top: 8px;
}

.pd-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pd-related-title {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    text-align: left;
}

.pd-related-title::after {
    display: none;
}

.pd-related-rail-wrap {
    position: relative;
}

.pd-related-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pd-related-rail::-webkit-scrollbar {
    display: none;
}

.pd-related-rail .cat-card {
    flex: 0 0 188px;
    min-width: 188px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 8px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.pd-related-rail .cat-card:hover {
    border-color: #d4eef3;
    box-shadow: 0 8px 24px rgba(36, 180, 200, 0.12);
}

.pd-related-rail .cat-card__media {
    border-radius: 6px;
    aspect-ratio: 3 / 3.85;
}

.pd-related-rail .cat-card__ship-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
    padding: 6px 8px;
    border-radius: 4px;
    background: #e8f8ef;
    color: #0d7a3e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pd-related-rail .cat-card__ship-bar i {
    font-size: 14px;
}

.pd-related-rail .cat-card__body {
    padding: 10px 2px 4px;
}

.pd-related-rail .cat-card__title {
    font-size: 12px;
    min-height: 34px;
    line-height: 1.4;
}

.pd-related-rail .cat-card__meta {
    margin-top: 4px;
}

.pd-related-rail .cat-card__rating {
    font-size: 11px;
}

.pd-related-rail .cat-card__rating i {
    color: #f59e0b;
}

.pd-related-rail .cat-card__price-row {
    margin-top: 6px;
}

.pd-related-rail .cat-card__price {
    font-size: 15px;
    font-weight: 800;
    color: #ea580c;
}

.pd-related-rail .cat-card__price-old {
    font-size: 11px;
    color: #9ca3af;
}

.pd-related-rail-nav {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pd-related-rail-nav:hover {
    background: var(--brand-color, #24b4c8);
    border-color: var(--brand-color, #24b4c8);
    color: #fff;
}

.pd-related-rail-nav--prev {
    left: -6px;
}

.pd-related-rail-nav--next {
    right: -6px;
}

@media (min-width: 992px) {
    .pd-related-rail .cat-card {
        flex: 0 0 210px;
        min-width: 210px;
    }

    .pd-related-rail-nav {
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .pd-related-rail .cat-card {
        flex: 0 0 44vw;
        min-width: 44vw;
    }
}

@media (max-width: 991px) {
    .pd-info-card {
        margin-top: 8px;
    }

    .boutique-detail .main-image-container {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .pd-actions {
        flex-direction: column;
    }

    .boutique-detail .qty-container-modern,
    .boutique-detail .btn-add-cart-modern,
    .boutique-detail .btn-whatsapp-modern {
        width: 100%;
    }

    .boutique-detail .btn-whatsapp-modern {
        width: 100%;
    }

    .pd-trust-strip {
        flex-direction: column;
        gap: 8px;
    }
}

/* Sticky alt bar — mobil ürün detay */
.pd-sticky-bar {
    display: none;
}

@media (max-width: 991px) {
    body.pd-has-sticky-bar {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    body.pd-has-sticky-bar .site-wa-fixed {
        bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    }

    .pd-sticky-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1045;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .pd-sticky-bar-inner {
        display: grid;
        grid-template-columns: minmax(72px, auto) auto 1fr;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
    }

    .pd-sticky-price-block {
        min-width: 0;
    }

    .pd-sticky-price {
        display: block;
        font-size: 0.9rem;
        font-weight: 700;
        color: #4a3040;
        white-space: nowrap;
        line-height: 1.2;
    }

    .pd-sticky-qty {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: auto !important;
        height: 36px;
        border-radius: 8px;
        border: 1px solid #e8e8e8;
        background: #fafafa;
        overflow: hidden;
    }

    .pd-sticky-qty-btn {
        width: 32px;
        height: 36px;
        padding: 0;
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #555;
        cursor: pointer;
    }

    .pd-sticky-qty-btn:active {
        background: #eee;
    }

    .pd-sticky-qty-value {
        min-width: 24px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }

    .pd-sticky-add-btn {
        width: auto !important;
        min-width: 0;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        border: none;
        border-radius: 8px;
        background: linear-gradient(135deg, #e8a0b8, #d4899f);
        color: #fff !important;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    .pd-sticky-add-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    .pd-sticky-add-btn:not(:disabled):active {
        opacity: 0.85;
    }

    .boutique-detail .pd-actions .qty-container-modern,
    .boutique-detail .pd-actions .btn-add-cart-modern {
        display: none;
    }

    .boutique-detail .pd-actions {
        flex-direction: row;
    }

    .boutique-detail .btn-whatsapp-modern {
        flex: 1;
        width: auto;
        height: 48px;
    }
}

/* =========================================================
   KotAvm — Klasik / sade ürün detay (pd-classic)
   ========================================================= */
.pd-classic {
    --pd-ink: #111827;
    --pd-muted: #6b7280;
    --pd-line: #e5e7eb;
    --pd-soft: #f9fafb;
    --pd-accent: #111827;
    padding-bottom: 48px;
}

.pd-classic .pd-breadcrumb {
    margin: 12px 0 20px;
    font-size: 13px;
}

.pd-classic .breadcrumb-item a {
    color: var(--pd-muted);
}

.pd-classic .breadcrumb-item a:hover {
    color: var(--pd-ink);
}

.pd-classic .pd-gallery-card,
.pd-classic .pd-info-card,
.pd-classic .pd-tabs-card {
    background: #fff;
    border: 1px solid var(--pd-line);
    border-radius: 12px;
    box-shadow: none;
    padding: 20px;
}

.pd-classic .main-image-container {
    border: none;
    border-radius: 8px;
    background: var(--pd-soft);
    min-height: 380px;
    margin-bottom: 14px;
}

.pd-classic .main-image-container img {
    max-height: 520px;
    padding: 16px;
}

.pd-classic .pd-zoom-hint {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--pd-line);
    color: var(--pd-ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pd-classic .pd-main-image-link:hover .pd-zoom-hint {
    background: var(--pd-ink);
    color: #fff;
    border-color: var(--pd-ink);
}

.pd-classic .thumb-images .owl-item .item {
    border-radius: 8px;
    border: 1px solid var(--pd-line);
    opacity: 0.75;
}

.pd-classic .thumb-images .item.current {
    border-color: var(--pd-ink);
    box-shadow: none;
    opacity: 1;
}

.pd-classic .pd-info-sticky {
    scrollbar-color: #d1d5db transparent;
}

.pd-classic .pd-info-sticky::-webkit-scrollbar-thumb {
    background: #d1d5db;
}

.pd-classic .pd-brand-tag {
    background: var(--pd-soft);
    color: var(--pd-muted);
    border: 1px solid var(--pd-line);
    border-radius: 6px;
    letter-spacing: 0.08em;
    font-size: 11px;
    padding: 5px 10px;
}

.pd-classic .pd-brand-tag:hover {
    background: var(--pd-soft);
    color: var(--pd-ink);
}

.pd-classic .pd-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--pd-ink);
    letter-spacing: -0.02em;
}

.pd-classic .btn-favorite-detail,
.pd-classic .btn-compare-detail {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    color: var(--pd-muted);
}

.pd-classic .btn-favorite-detail:hover:not(.is-favorite),
.pd-classic .btn-compare-detail:hover:not(.is-on) {
    background: var(--pd-soft);
    border-color: var(--pd-line);
    color: var(--pd-ink);
}

.pd-classic .pd-price {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pd-ink);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.pd-classic .pd-trust-strip {
    border-color: var(--pd-line);
    color: var(--pd-muted);
    font-size: 12px;
    gap: 8px 16px;
}

.pd-classic .pd-trust-strip i {
    color: var(--pd-ink);
    font-size: 15px;
}

.pd-classic .pd-variant-box {
    background: #fff;
    border: 1px solid var(--pd-line);
    border-radius: 12px;
    padding: 18px 18px 16px;
}

.pd-classic .pd-variant-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--pd-ink);
}

.pd-classic .pd-variant-hint {
    color: var(--pd-muted);
    font-weight: 500;
    font-size: 13px;
}

.pd-classic .pd-color-list {
    gap: 8px;
}

.pd-classic .pd-color-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 6px 14px 6px 6px;
    border: 1px solid var(--pd-line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.pd-classic .pd-color-pill:hover {
    border-color: #cbd5e1;
}

.pd-classic .pd-color-pill.active {
    border-color: var(--pd-ink);
    box-shadow: 0 0 0 1px var(--pd-ink);
    background: var(--pd-soft);
}

.pd-classic .pd-color-pill__swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.pd-classic .pd-color-pill__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--pd-ink);
    white-space: nowrap;
}

.pd-classic .pd-size-list {
    gap: 8px;
}

.pd-classic .pd-size-btn {
    min-width: 52px;
    height: 40px;
    border: 1px solid var(--pd-line);
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}

.pd-classic .pd-size-btn:hover:not(:disabled) {
    border-color: var(--pd-ink);
    color: var(--pd-ink);
}

.pd-classic .pd-size-btn.active {
    background: var(--pd-ink);
    border-color: var(--pd-ink);
    color: #fff;
}

.pd-classic .pd-variant-summary {
    border-top: 1px solid var(--pd-line);
    margin-top: 14px;
    padding-top: 12px;
}

.pd-classic .pd-variant-summary__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pd-muted);
    margin-bottom: 6px;
}

.pd-classic .pd-variant-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pd-line);
    border-radius: 8px;
    background: var(--pd-soft);
    color: var(--pd-ink);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    margin: 0;
}

.pd-classic .pd-meta-grid {
    gap: 10px;
}

.pd-classic .pd-meta-item {
    background: var(--pd-soft);
    border: 1px solid var(--pd-line);
    border-radius: 8px;
}

.pd-classic .pd-meta-item a:hover {
    color: var(--pd-ink);
}

.pd-classic .qty-container-modern {
    border: 1px solid var(--pd-line) !important;
    border-radius: 8px !important;
    background: #fff;
}

.pd-classic .btn-add-cart-modern {
    background: var(--pd-ink) !important;
    border-radius: 8px !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pd-classic .btn-add-cart-modern:hover {
    background: #000 !important;
    opacity: 1;
}

.pd-classic .btn-whatsapp-modern {
    border: 1px solid var(--pd-line);
    border-radius: 8px;
    background: #fff;
    color: #25d366;
}

.pd-classic .pd-variant-note {
    color: var(--pd-muted);
}

.pd-classic .nav-tabs {
    background: var(--pd-soft);
    border-bottom: 1px solid var(--pd-line);
}

.pd-classic .nav-tabs .nav-link.active {
    color: var(--pd-ink);
    border-bottom: 2px solid var(--pd-ink);
}

.pd-classic .pd-spec-table th {
    background: var(--pd-soft);
}

.pd-classic .pd-comment-form-card,
.pd-classic .pd-empty-comments {
    background: var(--pd-soft);
    border-color: var(--pd-line);
}

.pd-classic .pd-submit-comment {
    background: var(--pd-ink);
    border-radius: 8px;
}

.pd-classic .pd-related-title {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: left;
}

.pd-classic .pd-related-title::after {
    display: none;
}

@media (max-width: 991px) {
    .pd-classic .pd-sticky-add-btn {
        background: var(--pd-ink) !important;
    }

    .pd-classic .pd-sticky-price {
        color: var(--pd-ink);
    }
}

/* =========================================================
   Modern ürün detay — Trendyol düzeni + marka renkleri + lens zoom
   ========================================================= */
.pd-modern .container {
    max-width: 1280px;
}

.pd-modern .pd-main-row {
    align-items: flex-start;
}

/* --- Zoom galeri --- */
.pd-modern .pd-media-col {
    overflow: visible;
}

.pd-modern .pd-media-wrap {
    position: relative;
    overflow: visible;
    max-width: 420px;
}

.pd-modern .pd-zoom-stage {
    position: relative;
    display: block;
}

.pd-modern .pd-zoom-viewport {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: crosshair;
    aspect-ratio: 3 / 4;
    max-height: min(520px, calc(100vh - 220px));
}

.pd-modern .pd-zoom-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fff 0%, var(--accent-lighter) 100%);
}

.pd-modern .pd-zoom-image-wrap img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(520px, calc(100vh - 220px));
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.pd-modern .pd-zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(36, 180, 200, 0.55);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: opacity 0.15s ease;
    will-change: transform, width, height;
}

.pd-modern .pd-zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 12px);
    width: 400px;
    max-width: min(400px, 32vw);
    height: 100%;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-repeat: no-repeat;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    z-index: 20;
    box-shadow: 0 8px 32px rgba(36, 180, 200, 0.12);
    pointer-events: none;
}

.pd-modern .pd-zoom-result.is-visible {
    opacity: 1;
    visibility: visible;
}

.pd-modern .pd-zoom-expand {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pd-modern .pd-zoom-expand:hover {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
}

.pd-modern .pd-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(36, 180, 200, 0.12);
    color: var(--brand-dark);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.pd-modern .pd-gallery-nav:hover {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
}

.pd-modern .pd-gallery-nav--prev {
    left: 8px;
}

.pd-modern .pd-gallery-nav--next {
    right: 8px;
}

.pd-modern .pd-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pd-modern .pd-gallery-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 72px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: #fff;
    padding: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.pd-modern .pd-gallery-thumb.is-active {
    border-color: var(--brand-color);
}

.pd-modern .pd-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* --- Orta panel --- */
.pd-modern .pd-info-panel {
    padding: 0 4px;
}

.pd-modern .pd-brand-name {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
}

.pd-modern .pd-brand-name:hover {
    color: var(--brand-color);
}

.pd-modern .pd-title {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.5;
    margin: 4px 0 0;
}

.pd-modern .pd-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin: 12px 0 16px;
    font-size: 13px;
}

.pd-modern .pd-rating-score {
    font-weight: 700;
    color: var(--brand-dark);
}

.pd-modern .pd-rating-stars {
    color: var(--brand-color);
    font-size: 14px;
}

.pd-modern .pd-rating-link {
    color: var(--gray-text);
    text-decoration: none;
    border-left: 1px solid var(--border-color);
    padding-left: 8px;
}

.pd-modern .pd-rating-link:hover {
    color: var(--brand-color);
}

.pd-modern .pd-rating-empty {
    color: var(--gray-text);
    font-size: 13px;
}

.pd-modern .pd-social-ticker {
    margin: -4px 0 14px;
}

.pd-modern .pd-social-ticker__viewport {
    height: 28px;
    overflow: hidden;
}

.pd-modern .pd-social-ticker__track {
    will-change: transform;
}

.pd-modern .pd-social-ticker__item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 28px;
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.3;
}

.pd-modern .pd-social-ticker__icon {
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1;
}

.pd-modern .pd-social-ticker__text strong {
    color: var(--brand-dark);
    font-weight: 700;
}

.pd-modern .pd-price-box {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 14px;
    background: transparent;
}

.pd-modern .pd-price-box__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.pd-modern .pd-price-box__row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-modern .pd-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.pd-modern .pd-price {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
    line-height: 1.2;
}

.pd-modern .pd-variant-box {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 16px;
}

.pd-modern .pd-variant-label {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.pd-modern .pd-color-btn {
    width: 48px;
    height: 64px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    background-size: cover;
    background-position: center;
}

.pd-modern .pd-color-btn.active {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 1px var(--brand-color);
}

.pd-modern .pd-size-btn {
    min-width: 48px;
    height: 36px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.pd-modern .pd-size-btn.active {
    background: #fff;
    border: 2px solid var(--brand-color);
    color: var(--brand-dark);
    font-weight: 700;
}

.pd-modern .pd-buy-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.pd-modern .pd-btn-cart {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    background: var(--gradient-brand) !important;
}

.pd-modern .pd-btn-cart:hover:not(:disabled) {
    opacity: 0.92;
}

.pd-modern .pd-btn-fav,
.pd-modern .pd-btn-compare {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

@media (max-width: 575.98px) {
    .pd-modern .pd-buy-row {
        flex-wrap: nowrap;
        gap: 8px;
        align-items: stretch;
    }

    .pd-modern .pd-btn-cart {
        flex: 1 1 auto;
        min-width: 0;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }

    .pd-modern .pd-btn-fav,
    .pd-modern .pd-btn-compare,
    .pd-buy-row .btn-favorite-detail,
    .pd-buy-row .btn-compare-detail {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex: 0 0 44px;
        width: 44px;
        min-width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

.pd-modern .pd-shipping-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-text);
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.pd-modern .pd-shipping-row i {
    color: var(--brand-color);
    font-size: 18px;
}

.pd-modern .pd-stock-badge {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.pd-modern .pd-stock-badge.in-stock {
    background: var(--accent-soft);
    color: var(--brand-dark);
}

.pd-modern .pd-stock-badge.out-stock {
    background: #fee2e2;
    color: #b91c1c;
}

/* --- Sağ sidebar --- */
.pd-modern .pd-sidebar-col {
    position: sticky;
    top: 100px;
}

.pd-modern .pd-side-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    background: #fff;
}

.pd-modern .pd-side-card--promo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--accent-lighter);
}

.pd-modern .pd-side-card--promo i {
    font-size: 22px;
    color: var(--brand-color);
}

.pd-modern .pd-side-card--promo strong {
    display: block;
    font-size: 13px;
    color: var(--dark-text);
}

.pd-modern .pd-side-card--promo span {
    font-size: 12px;
    color: var(--gray-text);
}

.pd-modern .pd-side-store-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.pd-modern .pd-side-store-brand {
    min-width: 0;
    flex: 1;
}

.pd-modern .pd-side-store-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    line-height: 1.3;
}

a.pd-side-store-name:hover {
    color: var(--brand-color);
}

.pd-modern .pd-side-code {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--gray-text);
}

.pd-modern .pd-side-code strong {
    color: var(--dark-text);
    font-weight: 600;
}

.pd-modern .pd-side-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    text-align: right;
}

.pd-modern .pd-side-rating__score {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1;
}

.pd-modern .pd-side-rating__label {
    font-size: 11px;
    color: var(--gray-text);
    margin-top: 2px;
}

.pd-modern .pd-side-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
    font-size: 12px;
    color: var(--gray-text);
}

.pd-modern .pd-side-info-grid span,
.pd-modern .pd-side-info-grid a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}

.pd-modern .pd-side-info-grid a {
    color: var(--gray-text);
    text-decoration: none;
}

.pd-modern .pd-side-info-grid a:hover {
    color: var(--brand-color);
}

.pd-modern .pd-side-info-grid i {
    color: var(--brand-color);
    font-size: 15px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .pd-modern .pd-info-sticky {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .pd-modern .pd-media-col {
        flex: 0 0 auto;
        width: 38%;
        max-width: 460px;
    }

    .pd-modern .pd-info-col {
        flex: 1 1 0;
        min-width: 0;
    }

    .pd-modern .pd-sidebar-col {
        flex: 0 0 26%;
        max-width: 300px;
    }
}

@media (min-width: 1400px) {
    .pd-modern .container {
        max-width: 1240px;
    }

    .pd-modern .pd-media-wrap {
        max-width: 400px;
    }

    .pd-modern .pd-zoom-viewport {
        max-height: min(500px, calc(100vh - 240px));
    }

    .pd-modern .pd-zoom-image-wrap img {
        max-height: min(500px, calc(100vh - 240px));
    }
}

@media (max-width: 991px) {
    .pd-modern .pd-media-wrap {
        max-width: none;
    }

    .pd-modern .pd-zoom-viewport {
        max-height: 520px;
        max-width: 390px;
        margin: 0 auto;
        aspect-ratio: 3 / 4;
        cursor: default;
    }

    .pd-modern .pd-zoom-image-wrap img {
        width: 100%;
        height: 100%;
        max-height: 520px;
        object-fit: contain;
    }

    .pd-modern .pd-zoom-result {
        display: none !important;
    }

    .pd-modern .pd-zoom-lens {
        display: none;
    }

    .pd-modern .pd-sidebar-col {
        position: static;
    }

    .pd-modern .pd-sticky-add-btn {
        background: var(--gradient-brand) !important;
    }
}

/* --- Değerlendirmeler Trendyol (pd-modern) --- */
.pd-modern .pd-reviews-trendyol {
    margin-top: 8px;
}

.pd-modern .pd-reviews-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pd-modern .pd-reviews-block__head .pd-product-info__title {
    margin-bottom: 0;
    font-size: 22px;
}

.pd-modern .pd-reviews-head-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-modern .pd-reviews-head-stats__score {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.pd-modern .pd-reviews-head-stats__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #666;
}

.pd-modern .pd-reviews-head-stats__stars {
    display: flex;
    gap: 2px;
    color: #f27a1a;
    font-size: 15px;
}

.pd-modern .pd-reviews-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pd-modern .pd-reviews-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.pd-modern .pd-reviews-mini-product {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
}

.pd-modern .pd-reviews-mini-product img {
    width: 56px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.pd-modern .pd-reviews-mini-product__body {
    min-width: 0;
}

.pd-modern .pd-reviews-mini-product__body strong {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: #111;
    margin-bottom: 6px;
}

.pd-modern .pd-reviews-mini-product__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #111;
}

.pd-modern .pd-reviews-mini-product__rating i {
    color: #f27a1a;
}

.pd-modern .pd-reviews-mini-product__rating em {
    font-style: normal;
    color: #888;
}

.pd-modern .pd-reviews-mini-product__empty {
    font-size: 12px;
    color: #888;
}

.pd-modern .pd-reviews-filter {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 14px;
}

.pd-modern .pd-reviews-filter__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.pd-modern .pd-reviews-filter__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
}

.pd-modern .pd-reviews-filter__btn span {
    color: #888;
}

.pd-modern .pd-reviews-filter__btn:hover,
.pd-modern .pd-reviews-filter__btn.is-active {
    background: #f5f5f5;
}

.pd-modern .pd-reviews-main {
    min-width: 0;
}

.pd-modern .pd-reviews-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pd-modern .pd-reviews-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 0 14px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.pd-modern .pd-reviews-search i {
    color: #999;
    font-size: 18px;
}

.pd-modern .pd-reviews-search input {
    width: 100%;
    border: 0;
    outline: none;
    font-size: 14px;
    color: #111;
    background: transparent;
}

.pd-modern .pd-reviews-sort {
    min-width: 180px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 13px;
    color: #333;
    background: #fff;
}

.pd-modern .pd-reviews-photo-strip {
    margin-bottom: 18px;
}

.pd-modern .pd-reviews-photo-strip__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.pd-modern .pd-reviews-photo-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.pd-modern .pd-reviews-photo-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ebebeb;
}

.pd-modern .pd-reviews-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-modern .pd-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-modern .pd-review-empty {
    text-align: center;
    padding: 40px 20px;
    border: 1px dashed #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
}

.pd-modern .pd-review-empty--filtered {
    margin-top: 12px;
}

.pd-modern .pd-review-empty__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 22px;
}

.pd-modern .pd-review-empty h5 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

.pd-modern .pd-review-empty p {
    margin: 0;
    color: var(--gray-text);
    font-size: 13px;
}

.pd-modern .pd-review-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 16px 18px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.pd-modern .pd-review-card.is-highlight {
    border-color: #f27a1a;
    box-shadow: 0 0 0 2px rgba(242, 122, 26, 0.12);
}

.pd-modern .pd-review-card--own {
    border-color: #d4d4d4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pd-modern .pd-review-card__stars {
    display: flex;
    gap: 2px;
    color: #f27a1a;
    font-size: 14px;
    margin-bottom: 8px;
}

.pd-modern .pd-review-card__stars .bx-star {
    color: #e5e5e5;
}

.pd-modern .pd-review-card__head {
    margin-bottom: 8px;
}

.pd-modern .pd-review-card__topline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.pd-modern .pd-review-card__topline strong {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.pd-modern .pd-review-card__date {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
    margin-left: auto;
}

.pd-modern .pd-review-card__attrs {
    margin-top: 4px;
    font-size: 12px;
    color: #666;
}

.pd-modern .pd-review-card__text-wrap {
    margin-bottom: 4px;
}

.pd-modern .pd-review-card__text {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 1.65;
}

.pd-modern .pd-review-card__text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pd-modern .pd-review-card__more {
    border: 0;
    background: none;
    padding: 0;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #f27a1a;
    cursor: pointer;
}

.pd-modern .pd-review-card__photos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pd-modern .pd-review-card__photos a {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ebebeb;
}

.pd-modern .pd-review-card__photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-modern .pd-review-gate {
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 22px 18px;
    text-align: center;
}

.pd-modern .pd-review-gate__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    font-size: 20px;
}

.pd-modern .pd-review-gate h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.pd-modern .pd-review-gate p {
    margin: 0 0 14px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.pd-modern .pd-review-gate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.pd-modern .pd-review-form-wrap {
    position: static;
}

.pd-modern .pd-review-edit-entry {
    display: flex;
    justify-content: flex-end;
    padding: 4px 0;
}

.pd-modern .pd-review-own {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 14px;
}

.pd-modern .pd-review-own__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.pd-modern .pd-review-own__label {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.pd-modern .pd-review-own__stars {
    display: flex;
    gap: 2px;
    color: #f27a1a;
    font-size: 14px;
    margin-bottom: 8px;
}

.pd-modern .pd-review-own__stars .bx-star {
    color: #e5e5e5;
}

.pd-modern .pd-review-own__name {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.pd-modern .pd-review-own__name-note {
    margin-left: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #999;
}

.pd-modern .pd-review-own__text {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.55;
    color: #444;
    word-break: break-word;
}

.pd-modern .pd-review-own__photos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-modern .pd-review-own__photos img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.pd-modern .pd-review-edit-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--pd-ui-border);
    border-radius: 10px;
    background: #fff;
    color: var(--pd-ui-mid);
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pd-modern .pd-review-edit-toggle:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
    background: rgba(36, 180, 200, 0.06);
}

.pd-modern .pd-review-hide-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.pd-modern .pd-review-hide-name input {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-color);
    cursor: pointer;
}

.pd-modern .pd-review-field-help {
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #888;
}

.pd-modern .pd-review-field--inline {
    margin-bottom: 14px;
}

.pd-modern .pd-review-card__edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--pd-ui-mid);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 8px;
}

.pd-modern .pd-review-card__edit:hover {
    color: var(--brand-color);
    background: rgba(36, 180, 200, 0.08);
}

.pd-modern .pd-review-form-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 18px;
}

.pd-modern .pd-review-form-card__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.pd-modern .pd-review-form-card__lead {
    margin: 0 0 16px;
    font-size: 12px;
    color: #777;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.pd-modern .pd-review-field {
    margin-bottom: 14px;
}

.pd-modern .pd-review-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.pd-modern .pd-review-label__hint {
    font-weight: 400;
    color: #999;
}

.pd-modern .pd-star-input label {
    font-size: 24px;
    color: #e5e5e5;
}

.pd-modern .pd-star-input input:checked~label,
.pd-modern .pd-star-input label:hover,
.pd-modern .pd-star-input label:hover~label {
    color: #f27a1a;
}

.pd-modern .pd-review-textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 14px;
    color: #111;
    background: #fff;
    resize: vertical;
    min-height: 96px;
    transition: border-color 0.2s;
}

.pd-modern .pd-review-textarea:focus {
    outline: none;
    border-color: #bbb;
}

.pd-modern .pd-review-photo-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.pd-modern .pd-review-photo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-modern .pd-review-photo-item {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ebebeb;
}

.pd-modern .pd-review-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-modern .pd-review-photo-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.pd-modern .pd-review-photo-add {
    width: 64px;
    height: 64px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background: #fafafa;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 11px;
    cursor: pointer;
}

.pd-modern .pd-review-photo-add i {
    font-size: 18px;
}

.pd-modern .pd-review-form-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-modern .pd-review-submit {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 12px 16px;
    background: var(--brand-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, opacity 0.2s;
}

.pd-modern .pd-review-submit:hover:not(:disabled) {
    background: #1fa3b5;
}

.pd-modern .pd-review-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.pd-modern .pd-review-delete {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 11px 16px;
    background: #fff;
    color: #666;
    font-weight: 600;
    font-size: 13px;
}

.pd-modern .pd-review-delete:hover:not(:disabled) {
    border-color: #fca5a5;
    color: #dc2626;
}

.pd-modern .pd-review-delete:disabled {
    opacity: 0.6;
    cursor: wait;
}

@media (max-width: 991px) {
    .pd-modern .pd-reviews-layout {
        grid-template-columns: 1fr;
    }

    .pd-modern .pd-reviews-aside {
        position: static;
    }

    .pd-modern .pd-reviews-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .pd-modern .pd-reviews-sort {
        width: 100%;
    }
}

/* Ürün detay — marka mavisi yumuşatılmış palet */
.pd-modern {
    --pd-ui-dark: #1f2937;
    --pd-ui-mid: #6b7280;
    --pd-ui-border: #e5e7eb;
    --pd-ui-soft: #f9fafb;
}

.pd-modern .pd-price-box {
    border: none;
    background: transparent;
    padding: 0;
    margin-bottom: 14px;
}

.pd-modern .pd-price-box__label {
    font-size: 11px;
    margin-bottom: 2px;
}

.pd-modern .pd-price-box__label,
.pd-modern .pd-price {
    color: var(--pd-ui-dark);
}

.pd-modern .pd-rating-score,
.pd-modern .pd-social-ticker__text strong,
.pd-modern .pd-side-rating__score {
    color: var(--pd-ui-dark);
}

.pd-modern .pd-rating-stars {
    color: #f59e0b;
}

.pd-modern .pd-rating-link:hover,
.pd-modern .pd-brand-name:hover,
.pd-modern a.pd-side-store-name:hover,
.pd-modern .pd-side-info-grid a:hover,
.pd-modern .pd-show-more:hover {
    color: var(--pd-ui-dark);
}

.pd-modern .pd-color-btn.active {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 1px var(--brand-color);
}

.pd-modern .pd-size-btn.active {
    background: #fff;
    border-color: var(--pd-ui-dark);
    color: var(--pd-ui-dark);
}

.pd-modern .pd-btn-cart {
    background: var(--pd-ui-dark) !important;
}

.pd-modern .pd-btn-cart:hover:not(:disabled) {
    background: #111827 !important;
    opacity: 1;
}

.pd-modern .pd-shipping-row i,
.pd-modern .pd-side-card--promo i,
.pd-modern .pd-side-info-grid i {
    color: var(--pd-ui-mid);
}

.pd-modern .pd-stock-badge.in-stock {
    background: #ecfdf5;
    color: #047857;
}

.pd-modern .pd-side-card--promo {
    background: var(--pd-ui-soft);
}

.pd-modern .pd-zoom-image-wrap {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.pd-modern .pd-zoom-lens {
    border-color: rgba(55, 65, 81, 0.35);
}

.pd-modern .pd-zoom-result {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.pd-modern .pd-gallery-nav {
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    color: var(--pd-ui-dark);
}

.pd-modern .pd-gallery-nav:hover,
.pd-modern .pd-zoom-expand:hover {
    background: var(--pd-ui-dark);
    color: #fff;
    border-color: transparent;
}

.pd-modern .pd-gallery-thumb.is-active {
    border-color: var(--pd-ui-dark);
}

.pd-modern .pd-product-info__extra-list li::before,
.pd-modern .pd-description ul li::before {
    background: #9ca3af;
}

.pd-modern .pd-detail-section {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pd-modern .pd-detail-section__head {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
}

.pd-modern .pd-detail-section__icon {
    background: var(--pd-ui-dark);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.pd-modern .pd-detail-section__badge {
    color: var(--pd-ui-dark);
    background: var(--pd-ui-soft);
}

.pd-modern .pd-spec-item {
    background: var(--pd-ui-soft);
}

@media (max-width: 991px) {
    .pd-modern .pd-sticky-add-btn {
        background: var(--pd-ui-dark) !important;
    }
}