/**
 * Fit Reyon — Ürün Detay Sayfası Stilleri
 *
 * urun.php'nin inline <style> bloğundan extract edildi (F.6, 24 May 2026).
 * Sadece /urun?id=X sayfasında kullanılan custom CSS class'leri.
 */

body {
    font-family: 'Poppins', sans-serif;
}
.zoom-container {
    overflow: hidden;
}
.quantity-option input[type="radio"] {
    display: none;
}
.quantity-option label {
    display: block;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}
.quantity-option input[type="radio"]:checked + label {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px #16a34a;
    background-color: #f0fdf4;
}
.selection-btn.active {
    background-color: #f0fdf4;
    color: #15803d;
    border-color: #16a34a;
}
.review-filter-btn.active {
    background-color: #111827;
    color: #ffffff;
}
/* Custom Scrollbar for gallery */
.media-gallery::-webkit-scrollbar {
    height: 8px;
}
.media-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.media-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.media-gallery::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
/* Accordion (SSS) styles */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details summary .icon {
    transition: transform 0.3s ease;
}
details[open] summary .icon {
    transform: rotate(45deg);
}
/* Resim slider için aktif nokta */
.indicator-dot.active {
    background-color: white !important;
    background-opacity: 1 !important;
}
/* Ürün uzun açıklama stilleri (Quill editor HTML'i için) */
.product-long-description {
    line-height: 1.8;
}
.product-long-description p {
    margin-bottom: 1rem;
}
.product-long-description ul, .product-long-description ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.product-long-description li {
    margin-bottom: 0.5rem;
}
.product-long-description h1, .product-long-description h2, .product-long-description h3,
.product-long-description h4, .product-long-description h5, .product-long-description h6 {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.product-long-description img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}
.product-long-description a {
    color: #16a34a;
    text-decoration: underline;
}
.product-long-description a:hover {
    color: #15803d;
}

/* Beden Tablosu (Size Guide) modalı için tablo stilleri — eskiden 848-853 satır arası inline */
.size-guide-content table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.size-guide-content th, .size-guide-content td { border: 1px solid #e5e7eb; padding: 8px 12px; text-align: center; }
.size-guide-content th { background: #f9fafb; font-weight: 600; }
.size-guide-content img { max-width: 100%; height: auto; }
