/* FollowTurk — Product page styles
   2026-06-26 PageSpeed: extracted from product.php inline <style> (was ~42KB
   bloating every product HTML doc). Now external + cacheable. Static CSS,
   no PHP interpolation (verified). Load order preserved (after style.css). */
    .product-detail {
        padding: 195px 0 80px;
    }
    
    .product-gallery {
        position: sticky;
        top: 100px;
    }
    
    .product-main-image {
        width: 100%;
        aspect-ratio: 1;
        background: linear-gradient(135deg, rgba(210, 24, 24, 0.05) 0%, rgba(255, 68, 68, 0.02) 100%);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-bottom: 20px;
        position: relative;
        /* Subtle neon glow effect */
        box-shadow: 
            0 0 15px rgba(210, 24, 24, 0.15),
            0 0 30px rgba(210, 24, 24, 0.08);
        border: 1px solid rgba(210, 24, 24, 0.25);
        animation: neonPulse 4s ease-in-out infinite;
    }
    
    @keyframes neonPulse {
        0%, 100% {
            box-shadow: 
                0 0 15px rgba(210, 24, 24, 0.15),
                0 0 30px rgba(210, 24, 24, 0.08);
            border-color: rgba(210, 24, 24, 0.25);
        }
        50% {
            box-shadow: 
                0 0 20px rgba(210, 24, 24, 0.25),
                0 0 40px rgba(210, 24, 24, 0.12);
            border-color: rgba(210, 24, 24, 0.35);
        }
    }
    
    .product-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-gallery-desc {
        font-size: 15px;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-top: 20px;
        padding: 20px;
        background: var(--card-bg);
        border-radius: var(--radius-md);
        border-left: 3px solid var(--accent-primary);
    }
    
    .product-thumbnails {
        display: flex;
        gap: 12px;
    }
    
    .product-thumb {
        width: 80px;
        height: 80px;
        background: var(--card-bg);
        border-radius: var(--radius-sm);
        cursor: pointer;
        border: 2px solid transparent;
        transition: var(--transition-normal);
        overflow: hidden;
    }
    
    .product-thumb.active,
    .product-thumb:hover {
        border-color: var(--accent-primary);
    }
    
    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-info {
        padding-left: 40px;
    }
    
    .product-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px 10px;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: var(--text-muted);
    }

    .product-breadcrumb a {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-breadcrumb i {
        flex-shrink: 0;
        opacity: 0.7;
    }

    .product-breadcrumb span {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        text-wrap: balance;
        -webkit-text-wrap: balance;
        min-width: 0;
        flex: 1 1 auto;
    }

    .product-breadcrumb a:hover {
        color: var(--accent-primary);
    }

    /* Hide product name in breadcrumb (already shown in <h1> title below).
       Keeps HTML for SEO/structured data, hides last span + the chevron before it. */
    .product-breadcrumb > span:last-child,
    .product-breadcrumb > *:nth-last-child(2) {
        display: none;
    }
    
    .product-badges {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .product-detail-badge {
        padding: 6px 14px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 50px;
        background: rgba(210, 24, 24, 0.1);
        color: var(--accent-primary);
        border: 1px solid rgba(210, 24, 24, 0.3);
    }
    
    /* Badges Row */
    .product-badges-row {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 18px;
    }

    /* Purchase Counter Badge - Premium Styling */
    .purchase-counter-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 22px;
        height: 48px;
        background: linear-gradient(135deg, rgba(210, 24, 24, 0.15) 0%, rgba(255, 68, 68, 0.12) 100%);
        border: 1px solid rgba(210, 24, 24, 0.35);
        border-radius: 50px;
        margin-bottom: 0;
        box-sizing: border-box;
        box-shadow:
            0 4px 15px rgba(210, 24, 24, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    /* Email Changeable Badge */
    .email-change-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 22px;
        height: 48px;
        background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(250, 204, 21, 0.12) 100%);
        border: 1px solid rgba(234, 179, 8, 0.35);
        border-radius: 50px;
        margin-bottom: 0;
        box-sizing: border-box;
        box-shadow:
            0 4px 15px rgba(234, 179, 8, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    /* Custom Product Badges (admin-selected) — uses --badge-color CSS var per badge */
    .product-custom-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 22px;
        height: 48px;
        background: linear-gradient(135deg,
            color-mix(in srgb, var(--badge-color) 15%, transparent) 0%,
            color-mix(in srgb, var(--badge-color) 10%, transparent) 100%);
        border: 1px solid color-mix(in srgb, var(--badge-color) 35%, transparent);
        border-radius: 50px;
        margin-bottom: 0;
        box-sizing: border-box;
        box-shadow:
            0 4px 15px color-mix(in srgb, var(--badge-color) 20%, transparent),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    .product-custom-badge:hover {
        transform: translateY(-2px);
        box-shadow:
            0 6px 20px color-mix(in srgb, var(--badge-color) 30%, transparent),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    .product-custom-badge i {
        font-size: 18px;
        color: var(--badge-color);
    }
    .custom-badge-label {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 700;
        color: var(--badge-color);
        letter-spacing: 0.3px;
        line-height: 20px;
        text-transform: uppercase;
    }
    .email-change-badge:hover {
        transform: translateY(-2px);
        box-shadow:
            0 6px 20px rgba(234, 179, 8, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    .email-change-badge i {
        font-size: 18px;
        color: #eab308;
    }
    .email-change-label {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 700;
        color: #eab308;
        letter-spacing: 0.3px;
        line-height: 20px;
    }
    
    .purchase-counter-badge:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 6px 20px rgba(210, 24, 24, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    
    .purchase-counter-badge i {
        font-size: 18px;
        color: var(--accent-primary);
        animation: fireFlicker 1.5s ease-in-out infinite;
    }
    
    @keyframes fireFlicker {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.1); }
    }
    
    .purchase-count {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 800;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .purchase-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Image Overlays Container — holds badges over product image */
    .image-overlays {
        position: absolute;
        bottom: 12px;
        left: 12px;
        right: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        z-index: 5;
        pointer-events: none;
    }
    .image-overlays > * {
        pointer-events: auto;
    }

    /* Live Visitors Overlay */
    .live-visitors-overlay {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        background: rgba(10, 10, 15, 0.75);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
        transition: all 0.3s ease;
    }

    /* Purchases Overlay — same glassmorphism style as live visitors, pushed to right edge */
    .purchases-overlay {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        background: rgba(10, 10, 15, 0.75);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(210, 24, 24, 0.3);
        border-radius: 50px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
        transition: all 0.3s ease;
        margin-left: auto;
    }
    .purchases-overlay:hover {
        background: rgba(10, 10, 15, 0.85);
        border-color: rgba(210, 24, 24, 0.5);
        transform: translateY(-1px);
    }
    .purchases-overlay i {
        font-size: 13px;
        color: var(--accent-primary, #d21818);
        animation: fireFlicker 1.5s ease-in-out infinite;
    }
    .purchases-overlay-count {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 800;
        color: #ffffff;
    }
    .purchases-overlay-label {
        font-size: 11px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.75);
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }
    .live-visitors-overlay:hover {
        background: rgba(10, 10, 15, 0.85);
        border-color: rgba(255, 255, 255, 0.20);
        transform: translateY(-1px);
    }
    .live-visitors-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10b981;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        animation: liveDotPulse 2s ease-in-out infinite;
        flex-shrink: 0;
    }
    @keyframes liveDotPulse {
        0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
        70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
        100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }
    .live-visitors-overlay i {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
    }
    .live-visitors-count {
        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 800;
        color: #ffffff;
        transition: opacity 0.3s ease;
    }
    .live-visitors-count.updating {
        opacity: 0.4;
    }
    .live-visitors-label {
        font-size: 11px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.75);
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }
    @media (max-width: 768px) {
        .image-overlays {
            bottom: 10px;
            left: 10px;
            right: 10px;
            gap: 6px;
        }
        .live-visitors-overlay,
        .purchases-overlay {
            padding: 6px 12px;
            gap: 6px;
        }
        .live-visitors-count,
        .purchases-overlay-count {
            font-size: 14px;
        }
        .live-visitors-overlay i,
        .purchases-overlay i {
            font-size: 12px;
        }
        .live-visitors-label,
        .purchases-overlay-label {
            font-size: 10px;
        }
    }

    /* Stock Urgency Inline — 3 color tiers based on stock count */
    .stock-urgency-inline {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
    }
    .stock-urgency-inline i {
        font-size: 14px;
    }
    .stock-urgency-inline strong {
        font-weight: 800;
        font-size: 14px;
    }

    /* Critical: 1-10 stock — RED + fast blink */
    .stock-urgency-inline.stock-critical { color: #ef4444; }
    .stock-urgency-inline.stock-critical i,
    .stock-urgency-inline.stock-critical strong { color: #ef4444; }
    .stock-urgency-inline.stock-critical i { animation: blinkCritical 0.7s ease-in-out infinite; }
    @keyframes blinkCritical {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.25; transform: scale(1.2); }
    }

    /* Warning: 11-30 stock — ORANGE + slow blink */
    .stock-urgency-inline.stock-warning { color: #f97316; }
    .stock-urgency-inline.stock-warning i,
    .stock-urgency-inline.stock-warning strong { color: #f97316; }
    .stock-urgency-inline.stock-warning i { animation: blinkWarning 1.3s ease-in-out infinite; }
    @keyframes blinkWarning {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.55; transform: scale(1.1); }
    }

    /* OK: 31+ stock — GREEN, static */
    .stock-urgency-inline.stock-ok { color: #10b981; }
    .stock-urgency-inline.stock-ok i,
    .stock-urgency-inline.stock-ok strong { color: #10b981; }

    @media (max-width: 768px) {
        .product-badges-row {
            flex-direction: column;
            gap: 8px;
        }
        .email-change-badge,
        .product-custom-badge {
            padding: 10px 18px;
            justify-content: center;
            width: 100%;
        }
        .custom-badge-label {
            font-size: 14px;
        }
        .stock-urgency-inline {
            justify-content: center;
            font-size: 12px;
        }
    }
    
    /* Hide Featured Products badge - causing layout issues */
    .product-detail-badge,
    .product-badges {
        display: none !important;
    }
    
    .product-detail-title {
        font-size: 34px;
        margin-bottom: 15px;
        /* Balance text evenly across wrapped lines (no awkward "tiny last line").
           Chrome 114+, Firefox 121+, Safari 17.5+ — older browsers gracefully ignore. */
        text-wrap: balance;
        -webkit-text-wrap: balance;
    }

    /* Hide bottom total price - we now update top price dynamically */
    .total-price {
        display: none !important;
    }
    
    .product-detail-rating {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .rating-stars {
        display: flex;
        gap: 3px;
        color: #FFD700;
    }
    
    .rating-count {
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .product-detail-price {
        display: flex;
        align-items: baseline;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .price-current {
        font-family: var(--font-heading);
        font-size: 42px;
        font-weight: 700;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .price-old {
        font-size: 24px;
        color: var(--text-muted);
        text-decoration: line-through;
    }
    
    .price-per-unit {
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .product-detail-desc {
        font-size: 16px;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-bottom: 30px;
    }
    
    .product-meta-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 25px;
        background: var(--card-bg);
        border-radius: var(--radius-md);
        margin-bottom: 30px;
    }
    
    /* Hide right side trust badges - we now show them on left side */
    .product-info .product-meta-list {
        display: none !important;
    }
    
    .product-meta-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .product-meta-icon {
        width: 40px;
        height: 40px;
        background: rgba(210, 24, 24, 0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-primary);
    }
    
    .product-meta-label {
        font-size: 13px;
        color: var(--text-muted);
    }
    
    .product-meta-value {
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .quantity-label {
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .quantity-input-group {
        display: flex;
        align-items: center;
        background: var(--card-bg);
        border-radius: var(--radius-sm);
        overflow: hidden;
    }
    
    .quantity-btn {
        width: 45px;
        height: 45px;
        background: transparent;
        color: var(--text-primary);
        font-size: 18px;
        transition: var(--transition-fast);
        border: none;
        cursor: pointer;
    }
    
    .quantity-btn:hover {
        background: var(--accent-gradient);
    }
    
    .quantity-input {
        width: 100px;
        height: 45px;
        background: transparent;
        border: none;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .total-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: linear-gradient(135deg, rgba(210, 24, 24, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
        border-radius: var(--radius-md);
        margin-bottom: 25px;
    }
    
    .total-label {
        font-size: 16px;
        color: var(--text-secondary);
    }
    
    .total-value {
        font-family: var(--font-heading);
        font-size: 28px;
        font-weight: 700;
        color: var(--text-primary);
    }
    
    /* 2026-06-25: grid 1fr 1fr ile birebir 50/50 — flex min-content asimetrisi
       yamuk dagilmaya yol acabilir. express-pay-row da ayni layout, iki satir
       mukemmel hizali. */
    .product-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-actions .btn {
        flex: initial;
        min-width: 0;
        width: 100%;
    }

    /* 2026-06-25: Sepete Ekle butonuna da Kart Odemesi (.btn-warm) butonundaki
       gibi hover ile buyuyen siyah alt-cizgi (underline accent) efekti. */
    .product-actions .btn-primary {
        position: relative;
        overflow: hidden;
    }
    .product-actions .btn-primary::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 6px;
        width: 0;
        height: 2px;
        border-radius: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.85) 65%, transparent);
        transform: translateX(-50%);
        transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
        pointer-events: none;
        opacity: 0.9;
        z-index: 1;
    }
    .product-actions .btn-primary:hover::after {
        width: 60%;
    }

    /* Tabs */
    .product-tabs {
        margin-top: 60px;
    }
    
    .tabs-nav {
        display: flex;
        gap: 30px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 15px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-muted);
        position: relative;
        transition: var(--transition-normal);
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .tab-btn::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-gradient);
        transition: var(--transition-normal);
    }
    
    .tab-btn.active,
    .tab-btn:hover {
        color: var(--text-primary);
    }
    
    .tab-btn.active::after {
        width: 100%;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .tab-content p {
        margin-bottom: 15px;
        line-height: 1.8;
        color: var(--text-secondary);
    }
    
    .tab-content h3 {
        font-size: 20px;
        margin: 30px 0 15px 0;
        color: var(--text-primary);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .tab-content h3:first-child {
        margin-top: 0;
    }
    
    .tab-content strong {
        color: var(--text-primary);
        font-weight: 600;
    }
    
    .tab-content ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    
    .tab-content li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        color: var(--text-secondary);
        line-height: 1.8;
    }
    
    .tab-content li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        background: var(--accent-gradient);
        border-radius: 50%;
    }
    
    /* Internal Links - Blue & Underlined */
    .tab-content a[href*="/p/"],
    .tab-content a[href*="/c/"],
    .tab-content a[href*="/blog/"],
    .tab-content a[href*="followturk.com/p/"],
    .tab-content a[href*="followturk.com/c/"],
    .tab-content a[href*="followturk.com/blog/"] {
        color: #3b82f6 !important;
        text-decoration: underline !important;
        text-decoration-color: rgba(59, 130, 246, 0.6) !important;
        text-underline-offset: 3px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .tab-content a[href*="/p/"]:hover,
    .tab-content a[href*="/c/"]:hover,
    .tab-content a[href*="/blog/"]:hover,
    .tab-content a[href*="followturk.com/p/"]:hover,
    .tab-content a[href*="followturk.com/c/"]:hover,
    .tab-content a[href*="followturk.com/blog/"]:hover {
        color: #60a5fa !important;
        text-decoration-color: #60a5fa !important;
        text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    }
    
    /* How to Use Steps */
    .howto-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .howto-step {
        display: flex;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .howto-step:hover {
        border-color: var(--accent-primary);
        background: rgba(210, 24, 24, 0.05);
        transform: translateX(5px);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-gradient);
        border-radius: 50%;
        font-size: 20px;
        font-weight: 700;
        color: white;
        box-shadow: 0 4px 15px rgba(210, 24, 24, 0.3);
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 8px 0;
    }
    
    .step-description {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0;
    }
    
    @media (max-width: 768px) {
        .howto-step {
            padding: 15px;
            gap: 15px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            min-width: 40px;
            font-size: 16px;
        }
        
        .step-title {
            font-size: 16px;
        }
    }
    
    /* Reviews */
    .review-item {
        padding: 25px;
        background: var(--card-bg);
        border-radius: var(--radius-md);
        margin-bottom: 20px;
    }
    
    .review-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--accent-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
    }
    
    .review-author {
        font-weight: 600;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .verified-purchase-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 700;
        color: #10b981;
        background: rgba(16, 185, 129, 0.10);
        border: 1px solid rgba(16, 185, 129, 0.25);
        padding: 2px 8px;
        border-radius: 12px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        line-height: 1.4;
        cursor: help;
    }
    .verified-purchase-badge i {
        font-size: 11px;
    }

    .review-date {
        font-size: 13px;
        color: var(--text-muted);
    }
    
    .review-content {
        color: var(--text-secondary);
        line-height: 1.7;
    }
    
    /* SMM Quantity Selector */
    .smm-quantity-selector {
        background: var(--card-bg);
        border-radius: var(--radius-lg);
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .smm-quantity-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .smm-quantity-label {
        font-weight: 600;
        color: var(--text-primary);
        font-size: 14px;
    }
    
    .smm-quantity-range {
        font-size: 13px;
        color: var(--text-muted);
        background: rgba(210, 24, 24, 0.1);
        padding: 4px 12px;
        border-radius: 20px;
    }
    
    .smm-quantity-input-wrapper {
        margin-bottom: 20px;
    }
    
    .smm-quantity-input {
        width: 100%;
        padding: 15px 20px;
        background: var(--bg-primary);
        border: 2px solid var(--border-color);
        border-radius: var(--radius-md);
        color: var(--text-primary);
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        transition: var(--transition-normal);
    }
    
    .smm-quantity-input:focus {
        outline: none;
        border-color: var(--accent-primary);
    }
    
    .smm-quantity-input::-webkit-outer-spin-button,
    .smm-quantity-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .smm-slider-wrapper {
        position: relative;
        height: 40px;
        margin-bottom: 25px;
    }
    
    .smm-slider-track {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 8px;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        pointer-events: none;
        z-index: 1;
    }
    
    .smm-slider-fill {
        position: absolute;
        top: 50%;
        left: 0;
        height: 8px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, #d21818, #ff4444);
        border-radius: 4px;
        pointer-events: none;
        z-index: 2;
        transition: width 0.05s linear;
    }
    
    .smm-slider {
        width: 100%;
        height: 40px;
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        position: relative;
        z-index: 3;
        cursor: pointer;
        margin: 0;
        padding: 0;
    }
    
    .smm-slider::-webkit-slider-runnable-track {
        width: 100%;
        height: 8px;
        background: transparent;
        cursor: pointer;
    }
    
    .smm-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #d21818, #ff4444);
        border-radius: 50%;
        cursor: grab;
        box-shadow: 0 2px 10px rgba(210, 24, 24, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        margin-top: -10px;
    }
    
    .smm-slider::-webkit-slider-thumb:hover {
        transform: scale(1.15);
        box-shadow: 0 4px 15px rgba(210, 24, 24, 0.5);
    }
    
    .smm-slider::-webkit-slider-thumb:active {
        cursor: grabbing;
        transform: scale(1.1);
    }
    
    .smm-slider::-moz-range-track {
        width: 100%;
        height: 8px;
        background: transparent;
        cursor: pointer;
        border: none;
    }
    
    .smm-slider::-moz-range-thumb {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #d21818, #ff4444);
        border-radius: 50%;
        border: none;
        cursor: grab;
        box-shadow: 0 2px 10px rgba(210, 24, 24, 0.4);
    }
    
    /* Drip Feed Section — matches site theme */
    .drip-feed-section {
        margin-bottom: 25px;
    }

    .drip-feed-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        cursor: pointer;
        transition: var(--transition-normal);
        color: var(--text-primary);
        font-size: 14px;
        font-weight: 600;
    }

    .drip-feed-toggle:hover {
        border-color: rgba(210, 24, 24, 0.3);
    }

    .drip-feed-toggle.active {
        border-color: rgba(210, 24, 24, 0.5);
        background: var(--card-bg);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .drip-feed-toggle-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .drip-feed-toggle-left i {
        color: var(--accent-primary, #d21818);
        font-size: 15px;
    }

    .drip-feed-switch {
        width: 44px;
        height: 24px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        position: relative;
        transition: background 0.3s ease;
    }

    .drip-feed-switch-knob {
        width: 20px;
        height: 20px;
        background: var(--text-muted);
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .drip-feed-toggle.active .drip-feed-switch {
        background: rgba(210, 24, 24, 0.2);
    }

    .drip-feed-toggle.active .drip-feed-switch-knob {
        transform: translateX(20px);
        background: linear-gradient(135deg, #d21818, #ff4444);
        box-shadow: 0 2px 8px rgba(210, 24, 24, 0.4);
    }

    .drip-feed-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        opacity: 0;
        background: var(--card-bg);
        border: 1px solid transparent;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: -1px;
    }

    .drip-feed-panel.open {
        max-height: 400px;
        opacity: 1;
        padding: 20px 20px 16px;
        border-color: rgba(210, 24, 24, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .drip-feed-row {
        display: flex;
        gap: 12px;
    }

    .drip-feed-row .drip-feed-field {
        flex: 1;
        margin-bottom: 14px;
    }

    .drip-feed-field {
        margin-bottom: 18px;
    }

    .drip-feed-field:last-of-type {
        margin-bottom: 14px;
    }

    .drip-feed-field-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .drip-feed-field-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .drip-feed-field-label i {
        color: var(--accent-primary, #d21818);
        font-size: 12px;
    }

    .drip-feed-field-value {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-primary);
        background: rgba(210, 24, 24, 0.1);
        padding: 3px 12px;
        border-radius: 20px;
    }

    .drip-feed-slider-wrapper {
        position: relative;
        height: 40px;
        display: flex;
        align-items: center;
    }

    .drip-feed-slider {
        width: 100%;
        height: 40px;
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        cursor: pointer;
        position: relative;
        z-index: 3;
        margin: 0;
        padding: 0;
    }

    .drip-feed-slider-track {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 8px;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        pointer-events: none;
        z-index: 1;
    }

    .drip-feed-slider-fill {
        position: absolute;
        top: 50%;
        left: 0;
        height: 8px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, #d21818, #ff4444);
        border-radius: 4px;
        pointer-events: none;
        z-index: 2;
        width: 0%;
        transition: width 0.05s linear;
    }

    .drip-feed-slider::-webkit-slider-runnable-track {
        width: 100%;
        height: 8px;
        background: transparent;
        cursor: pointer;
    }

    .drip-feed-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #d21818, #ff4444);
        border-radius: 50%;
        border: none;
        cursor: grab;
        box-shadow: 0 2px 10px rgba(210, 24, 24, 0.4);
        margin-top: -10px;
        position: relative;
        z-index: 3;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .drip-feed-slider::-webkit-slider-thumb:hover {
        transform: scale(1.15);
        box-shadow: 0 2px 15px rgba(210, 24, 24, 0.6);
    }

    .drip-feed-slider::-moz-range-track {
        width: 100%;
        height: 8px;
        background: transparent;
        cursor: pointer;
        border: none;
    }

    .drip-feed-slider::-moz-range-thumb {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #d21818, #ff4444);
        border-radius: 50%;
        border: none;
        cursor: grab;
        box-shadow: 0 2px 10px rgba(210, 24, 24, 0.4);
    }

    .drip-feed-field-range {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 4px;
    }

    .drip-feed-input-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .drip-feed-input {
        flex: 1;
        padding: 12px 16px;
        background: var(--bg-primary);
        border: 2px solid var(--border-color);
        border-radius: var(--radius-md);
        color: var(--text-primary);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        transition: var(--transition-normal);
    }

    .drip-feed-input:focus {
        outline: none;
        border-color: var(--accent-primary, #d21818);
    }

    .drip-feed-input::-webkit-outer-spin-button,
    .drip-feed-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .drip-feed-input-suffix {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .drip-feed-summary {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
        background: rgba(210, 24, 24, 0.06);
        border: 1px solid rgba(210, 24, 24, 0.15);
        border-radius: var(--radius-md);
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .drip-feed-summary i {
        color: var(--accent-primary, #d21818);
        margin-top: 2px;
        flex-shrink: 0;
    }

    .drip-feed-warning {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
        margin-top: 10px;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: var(--radius-md);
        font-size: 13px;
        font-weight: 600;
        color: #ef4444;
        line-height: 1.4;
    }

    .drip-feed-warning i {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .smm-price-info {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .smm-unit-price {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .smm-unit-price .label {
        font-size: 12px;
        color: var(--text-muted);
    }
    
    .smm-unit-price .value {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-secondary);
    }
    
    .smm-total-price {
        text-align: right;
    }
    
    .smm-total-label {
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 5px;
        display: flex;
        gap: 5px;
        justify-content: flex-end;
    }
    
    .smm-total-label #totalQuantityDisplay {
        color: var(--accent-primary);
        font-weight: 600;
    }
    
    .smm-total-value {
        font-family: var(--font-heading);
        font-size: 32px;
        font-weight: 700;
        background: linear-gradient(90deg, #d21818, #ff4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    @media (max-width: 991px) {
        .product-info {
            padding-left: 0;
            margin-top: 40px;
        }
        
        .product-gallery {
            position: static;
        }
        
        .smm-price-info {
            flex-direction: column;
            gap: 15px;
            align-items: stretch;
        }
        
        .smm-total-price {
            text-align: center;
        }
        
        .smm-total-label {
            justify-content: center;
        }
    }
    
    /* Mobile Layout - Single Column */
    @media (max-width: 768px) {
        .product-detail {
            padding: 110px 0 40px;
        }

        /* NOTE: `.product-detail .grid` single-column + gap is owned by mobile.css
           (the dedicated mobile-overrides sheet). Kept here would duplicate/conflict
           with an !important rule, so it lives in ONE place only. */

        .product-gallery {
            max-width: 100%;
        }
        
        .product-main-image {
            width: 300px;
            height: 300px;
            max-width: 80vw;
            max-height: 80vw;
            margin: 0 auto 15px;
        }
        
        .product-gallery-desc {
            font-size: 14px;
            padding: 15px;
            margin-top: 15px;
        }
        
        .product-info {
            padding: 0;
            margin-top: 0;
            text-align: center;
        }

        .product-breadcrumb {
            display: none;
        }
        
        .product-badges {
            margin-bottom: 10px;
            justify-content: center;
        }
        
        .product-detail-badge {
            padding: 4px 10px;
            font-size: 10px;
        }
        
        .product-detail-title {
            font-size: 22px;
            line-height: 1.3;
            margin-bottom: 10px;
            text-align: center;
        }

        .product-detail-price {
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: center;
        }
        
        .price-current {
            font-size: 32px;
        }
        
        .price-per-unit {
            font-size: 13px;
        }
        
        .product-meta-list {
            padding: 15px;
            margin-bottom: 20px;
            gap: 12px;
        }
        
        .product-meta-icon {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
        
        .product-meta-label {
            font-size: 12px;
        }
        
        .product-meta-value {
            font-size: 14px;
        }
        
        /* SMM Quantity Selector Mobile */
        .smm-quantity-selector {
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .smm-quantity-input {
            font-size: 20px;
            padding: 12px 15px;
        }
        
        .smm-total-value {
            font-size: 26px;
        }
        
        /* Product Actions Mobile - grid tek kolona iner */
        .product-actions {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .product-actions .btn {
            width: 100%;
            padding: 14px 20px;
            font-size: 14px;
        }
        
        /* Total Price Box */
        .total-price {
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .total-value {
            font-size: 22px;
        }
        
        /* Tabs Mobile */
        .product-tabs {
            margin-top: 40px;
        }
        
        .tabs-nav {
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        
        .tab-btn {
            font-size: 14px;
            white-space: nowrap;
        }
        
        .tab-content p {
            font-size: 14px;
        }
        
        .tab-content h3 {
            font-size: 18px;
        }
    }
    
    @media (max-width: 480px) {
        .product-detail {
            padding: 95px 0 30px;
        }

        .product-main-image {
            width: 260px;
            height: 260px;
            max-width: 80vw;
            max-height: 80vw;
        }
        
        .product-detail-title {
            font-size: 18px;
        }
        
        .price-current {
            font-size: 28px;
        }
        
        .smm-quantity-input {
            font-size: 18px;
        }
        
        .product-actions .btn {
            padding: 12px 16px;
            font-size: 13px;
        }
    }
