/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page {
    padding-bottom: 80px;
    background: #fff;
}

.pd-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.pd-back-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 18px;
    padding: 7px 12px;
    min-width: 0;
}

.pd-search-bar input {
    border: none;
    background: none;
    outline: none;
    font-size: 11px;
    width: 100%;
    font-family: inherit;
    color: #333;
}

.pd-search-bar input::placeholder {
    color: #999;
}

.pd-header-icons {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.pd-header-icons .icon-btn {
    width: 30px;
    height: 30px;
}

/* Gallery */
.pd-gallery {
    position: relative;
    background: #fff;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.pd-gallery-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    user-select: none;
}

.pd-gallery-viewport.is-dragging {
    cursor: grabbing;
    transition: none;
}

.pd-gallery-track {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    transition: transform 0.32s ease;
    will-change: transform;
}

.pd-gallery-slide {
    flex: 0 0 auto;
    width: 100%;
    min-width: 100%;
    height: 100%;
}

.pd-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    display: block;
}

.pd-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 4;
}

.pd-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pd-gallery-dot.active {
    background: #F27A1A;
    transform: scale(1.15);
}

.pd-gallery-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    z-index: 4;
}

.pd-badge-kargo {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(45, 45, 45, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.pd-gallery-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pd-gallery .product-sticker,
.pd-similar-image .product-sticker {
    position: absolute;
    z-index: 3;
    object-fit: contain;
    pointer-events: none;
    height: auto;
}

/* Product Info */
.pd-info {
    background: #fff;
    padding: 12px 14px 14px;
}

.pd-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 8px;
}

.pd-category-left {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #888;
    min-width: 0;
}

.pd-medal {
    font-size: 13px;
}

.pd-rank-badge {
    background: #fff3e8;
    color: #e86a00;
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.pd-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 8px;
}

.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.pd-rating-num {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.pd-stars {
    display: flex;
    gap: 1px;
}

.pd-review-count {
    font-size: 11px;
    color: #999;
}

.pd-favorite-info {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #666;
    line-height: 1.35;
}

.pd-favorite-info p {
    margin: 0;
}

.pd-favorite-info strong {
    color: #F27A1A;
    font-weight: 700;
}

.pd-attr-box {
    background: #fff6ee;
    border-radius: 4px;
    padding: 8px 10px;
    display: inline-block;
}

.pd-attr-label {
    display: block;
    font-size: 9px;
    color: #e86a00;
    font-weight: 600;
    margin-bottom: 1px;
}

.pd-attr-value {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Sections */
.pd-section {
    background: #fff;
    padding: 12px 14px;
    border-top: 1px solid #ebebeb;
}

.pd-color-section {
    padding-top: 14px;
    padding-bottom: 14px;
}

.pd-color-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
}

.pd-color-btn {
    background: #fff;
    border: 1.5px solid #F27A1A;
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 600;
    color: #F27A1A;
    cursor: pointer;
}

.pd-color-btn.active {
    background: #fff;
}

.pd-shipping-section {
    padding-top: 12px;
    padding-bottom: 14px;
}

.pd-shipping-estimate {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #555;
    margin-bottom: 10px;
}

.pd-shipping-estimate strong {
    font-weight: 600;
    color: #333;
}

.pd-location-box {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px;
}

.pd-location-top {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
}

.pd-location-top > span {
    flex: 1;
    font-size: 11px;
    color: #444;
    line-height: 1.35;
    padding-top: 1px;
}

.pd-location-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #fff;
    border: 1px solid #F27A1A;
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #F27A1A;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.pd-location-note {
    font-size: 9px;
    color: #aaa;
    margin: 0;
    line-height: 1.35;
    padding-left: 24px;
}

/* Campaigns */
.pd-campaigns-section {
    border-top: 1px solid #ebebeb;
    padding-bottom: 14px;
}

.pd-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.pd-campaigns-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-campaign-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    min-height: 48px;
}

.pd-campaign-card.has-badge {
    padding-top: 22px;
    min-height: 56px;
}

.pd-campaign-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-campaign-icon.orange {
    background: #fff3e8;
}

.pd-campaign-icon.grey {
    background: #f0f0f0;
}

.pd-campaign-card > span:not(.pd-campaign-badge) {
    flex: 1;
    line-height: 1.35;
    padding-right: 4px;
}

.pd-campaign-badge {
    position: absolute;
    top: 6px;
    right: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 8px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.pd-campaign-arrow {
    flex-shrink: 0;
    color: #F27A1A;
}

/* Link Rows */
.pd-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    background: #fff;
    border-top: 1px solid #ebebeb;
    text-decoration: none;
    color: #1a1a1a;
}

.pd-link-row strong {
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.pd-link-row-right {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: #999;
    text-align: right;
    min-width: 0;
}

.pd-link-row-underline {
    font-size: 11px;
    color: #666;
    text-decoration: underline;
}

/* Highlights */
.pd-highlights-section {
    border-top: 1px solid #ebebeb;
    padding-bottom: 14px;
}

.pd-highlight-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f3f3f3;
    border-radius: 6px;
    padding: 10px 12px;
    text-decoration: none;
    color: #1a1a1a;
    min-width: 160px;
}

.pd-highlight-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-highlight-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

/* Seller Card */
.pd-seller-card-section {
    border-top: 1px solid #ebebeb;
    padding-bottom: 20px;
    background: #fff;
}

.pd-seller-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.pd-seller-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background: #e8f4fc;
}

.pd-seller-header-info {
    min-width: 0;
    flex: 1;
}

.pd-seller-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.pd-seller-name {
    font-size: 11px;
    font-weight: 800;
    color: #1a73b8;
    text-decoration: none;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.pd-seller-score {
    background: #049B24;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    line-height: 1.4;
}

.pd-seller-followers {
    font-size: 9px;
    color: #888;
}

.pd-seller-store-btn {
    background: #fff;
    border: 1px solid #F27A1A;
    border-radius: 3px;
    padding: 5px 8px;
    font-size: 9px;
    font-weight: 600;
    color: #F27A1A;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.pd-seller-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid #ebebeb;
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 500;
}

.pd-seller-item-icon {
    width: 26px;
    height: 26px;
    background: #f3f3f3;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-seller-item-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: #bbb;
}

/* Benzer Ürünler */
.pd-similar {
    margin-top: 8px;
    padding: 16px 0 20px;
    background: #fff;
    border-top: 8px solid #f5f5f5;
}

.pd-similar-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    padding: 0 12px 12px;
    margin: 0;
}

.pd-similar-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 12px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pd-similar-scroll::-webkit-scrollbar {
    display: none;
}

.pd-similar-card {
    position: relative;
    flex: 0 0 148px;
    width: 148px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
}

.pd-similar-wishlist {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-similar-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #fafafa;
    overflow: hidden;
}

.pd-similar-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.pd-similar-badges {
    display: flex;
    flex-direction: column;
}

.pd-similar-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.pd-similar-badge--urgent {
    background: #e53935;
}

.pd-similar-badge--cargo {
    background: #757575;
}

.pd-similar-info {
    padding: 8px 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-similar-name {
    font-size: 10.5px;
    color: #333;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pd-similar-name strong {
    font-weight: 700;
    color: #1a1a1a;
}

.pd-similar-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pd-similar-rating-num {
    font-size: 10px;
    font-weight: 700;
    color: #333;
}

.pd-similar-stars {
    display: flex;
    gap: 1px;
}

.pd-similar-price {
    font-size: 14px;
    font-weight: 800;
    color: #F27A1A;
    margin-top: 2px;
}

/* Ürün Değerlendirmeleri */
.pd-reviews {
    background: #fff;
    padding: 16px 0 20px;
    border-top: 8px solid #f5f5f5;
}

.pd-reviews-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 14px 12px;
}

.pd-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 14px 14px;
    padding: 12px 14px;
    background: #FFF8E7;
    border-radius: 8px;
}

.pd-reviews-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-reviews-stars {
    display: flex;
    gap: 2px;
}

.pd-reviews-score {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.pd-reviews-summary-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 11px;
    color: #888;
    line-height: 1.3;
}

.pd-photo-reviews {
    margin: 0 0 12px;
    padding: 0 14px;
}

.pd-photo-reviews-title {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin: 0 0 8px;
}

.pd-photo-reviews-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}

.pd-photo-reviews-scroll::-webkit-scrollbar {
    display: none;
}

.pd-photo-review-thumb {
    cursor: zoom-in;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.pd-photo-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.pd-reviews-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 14px 4px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.pd-reviews-scroll::-webkit-scrollbar {
    display: none;
}

.pd-review-card {
    flex: 0 0 82%;
    max-width: 320px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-review-stars {
    display: flex;
    gap: 2px;
}

.pd-review-meta {
    font-size: 10px;
    color: #aaa;
    margin: 0;
}

.pd-review-text {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pd-review-photos {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pd-review-photos::-webkit-scrollbar {
    display: none;
}

.pd-review-photo {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    flex-shrink: 0;
    cursor: zoom-in;
}

.pd-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.pd-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

.pd-review-seller {
    font-size: 10px;
    font-weight: 700;
    color: #1a73e8;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.pd-review-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.pd-review-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.pd-reviews-empty {
    margin: 0 14px;
    padding: 28px 16px;
    text-align: center;
    color: #888;
    font-size: 13px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px dashed #e0e0e0;
}

.pd-reviews-empty p {
    margin: 0;
}

.pd-reviews-more {
    margin: 16px 14px 0;
}

.pd-reviews-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
}

.pd-reviews-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e8e8e8;
    transform: translateY(-50%);
}

.pd-reviews-show-all {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    background: #f3f3f3;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #2c3e6b;
    letter-spacing: 0.2px;
    cursor: pointer;
    white-space: nowrap;
}

.pd-review-text--full {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.pd-review-card--full {
    flex: none;
    max-width: none;
    width: 100%;
}

.pd-reviews-summary--modal {
    margin: 0 0 14px;
}

.pd-photo-reviews--modal {
    margin: 0 0 14px;
    padding: 0;
}

/* Reviews Modal */
.reviews-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: #fff;
    display: none;
    overflow: hidden;
}

.reviews-modal.open {
    display: flex;
    justify-content: center;
}

.reviews-modal-inner {
    width: 100%;
    max-width: 430px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reviews-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 48px;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
}

.reviews-modal-close {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.reviews-modal-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.reviews-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    -webkit-overflow-scrolling: touch;
}

.reviews-modal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.reviews-modal-open {
    overflow: hidden;
}

/* Yorum fotoğrafı lightbox */
.review-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 48px 12px 36px;
}

.review-photo-lightbox.open {
    display: flex;
}

.review-photo-lightbox-stage {
    width: 100%;
    max-width: 430px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-photo-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
    -webkit-user-drag: none;
}

.review-photo-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.review-photo-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.review-photo-lightbox-nav.is-visible {
    display: flex;
}

.review-photo-lightbox-prev {
    left: 10px;
}

.review-photo-lightbox-next {
    right: 10px;
}

.review-photo-lightbox-count {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 12px;
    border-radius: 999px;
}

body.review-photo-lightbox-open {
    overflow: hidden;
}

/* Sticky Footer */
.pd-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.pd-footer-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.pd-price {
    font-size: 17px;
    font-weight: 600;
    color: #F27A1A;
    line-height: 1.1;
}

.pd-kargo-free {
    font-size: 10px;
    font-weight: 600;
    color: #00a651;
}

.pd-add-cart-btn {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff8f2a 0%, #F27A1A 50%, #e86f0f 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    min-width: 236px;
    max-width: 296px;
    min-height: 44px;
    cursor: pointer;
    animation: pd-btn-gradient 3s ease infinite, pd-btn-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(242, 122, 26, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pd-btn-line1,
.pd-btn-line2 {
    position: relative;
    z-index: 1;
    display: block;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.1px;
}

.pd-btn-line1 {
    font-size: 11px;
}

.pd-btn-line2 {
    font-size: 10px;
    opacity: 0.95;
}

.pd-add-cart-btn--clicked .pd-btn-line1,
.pd-add-cart-btn--clicked .pd-btn-line2 {
    font-size: 10px;
}

.pd-add-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: pd-btn-shine 2.8s ease-in-out infinite;
    pointer-events: none;
}

.pd-add-cart-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: pd-btn-ring 2.2s ease-out infinite;
    pointer-events: none;
}

.pd-add-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 18px rgba(242, 122, 26, 0.55);
}

.pd-add-cart-btn:active {
    transform: scale(0.97);
    animation: none;
}

.pd-add-cart-btn--clicked {
    animation: pd-btn-success 0.5s ease forwards !important;
    background: #4caf50 !important;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.5) !important;
}

.pd-add-cart-btn--clicked::before,
.pd-add-cart-btn--clicked::after {
    animation: none;
    opacity: 0;
}

@keyframes pd-btn-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pd-btn-pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(242, 122, 26, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(242, 122, 26, 0.65); }
}

@keyframes pd-btn-shine {
    0% { left: -120%; }
    45%, 100% { left: 150%; }
}

@keyframes pd-btn-ring {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.08); }
}

@keyframes pd-btn-success {
    0% { transform: scale(1); }
    30% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.wishlist-detail-btn.active svg {
    fill: #F27A1A;
    stroke: #F27A1A;
}

.info-icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* ===== SPEC MODAL ===== */
.spec-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #fff;
    display: none;
    overflow: hidden;
}

.spec-modal.open {
    display: flex;
    justify-content: center;
}

.spec-modal-inner {
    position: relative;
    width: 100%;
    max-width: 430px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.spec-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.spec-tabs {
    display: flex;
    border-bottom: 1px solid #ebebeb;
    padding: 0 14px;
    padding-top: 44px;
    flex-shrink: 0;
}

.spec-tab {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
}

.spec-tab.active {
    color: #F27A1A;
    border-bottom-color: #F27A1A;
}

.spec-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    -webkit-overflow-scrolling: touch;
}

.spec-product-summary {
    display: flex;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 14px;
}

.spec-product-summary img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    flex-shrink: 0;
    background: #fafafa;
}

.spec-product-info {
    min-width: 0;
    flex: 1;
}

.spec-brand {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.spec-product-title {
    display: block;
    font-size: 10px;
    color: #888;
    line-height: 1.35;
    margin-bottom: 4px;
}

.spec-product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #888;
}

.spec-product-rating > span:first-child {
    font-weight: 700;
    color: #333;
}

.spec-rating-text {
    color: #999;
}

.spec-rating-dot {
    color: #ccc;
}

.spec-tab-panel {
    display: none;
}

.spec-tab-panel.active {
    display: block;
}

.spec-block-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.spec-block-title-spaced {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #ebebeb;
}

.spec-ek-bilgi {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.spec-ek-bilgi li {
    position: relative;
    padding-left: 14px;
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}

.spec-ek-bilgi li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: #F27A1A;
    border-radius: 50%;
}

.spec-ek-bilgi.collapsed li:nth-child(n+2) {
    display: none;
}

.spec-show-more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f3f3f3;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.spec-show-more.expanded svg {
    transform: rotate(180deg);
}

.spec-features-list {
    border-top: 1px solid #ebebeb;
}

.spec-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #ebebeb;
    font-size: 11px;
}

.spec-feature-label {
    color: #999;
    flex-shrink: 0;
}

.spec-feature-value {
    color: #333;
    font-weight: 500;
    text-align: right;
}

.spec-security-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #666;
    padding: 4px 0;
}

.spec-security-row a {
    color: #555;
    text-decoration: underline;
    white-space: nowrap;
}

.spec-description {
    font-size: 12px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

body.spec-modal-open {
    overflow: hidden;
}
