/* 
 * ÜRÜN.CSS - Ürün Sayfası Stilleri
 * Resimdeki tasarıma uygun güncellenmiş versiyon
 */

/* FONT AWESOME SİMULASYONU */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.woff2') format('woff2'),
         url('../fonts/fontawesome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-home:before { content: "\f015"; }
.fa-chevron-right:before { content: "\f054"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-bolt:before { content: "\f0e7"; }
.fa-exclamation-triangle:before { content: "\f071"; }
.fa-star:before { content: "\f005"; }
.fa-star-half-alt:before { content: "\f5c0"; }
.fa-check-circle:before { content: "\f058"; }
.fa-user-circle:before { content: "\f2bd"; }
.fa-times:before { content: "\f00d"; }
.fa-paper-plane:before { content: "\f1d8"; }
.fa-user:before { content: "\f007"; }
.fa-eye:before { content: "\f06e"; }
.fa-sign-in-alt:before { content: "\f2f6"; }
.fa-comments:before { content: "\f086"; }
.fa-user-shield:before { content: "\f505"; }
.fa-spinner:before { content: "\f110"; }
.fa-spinner.fa-spin {
    animation: fa-spin 1s infinite linear;
}
@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.fa-fw { width: 1.25em; text-align: center; }
.fa-xs { font-size: .75em; }
.fa-sm { font-size: .875em; }
.fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }

/* TAILWIND CSS SİMULASYONU */
* { box-sizing: border-box; }

.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.mx-auto { margin-right: auto; margin-left: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.pt-6 { padding-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-1\.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-1\.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-1\.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }

.w-full { width: 100%; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-8 { width: 2rem; }
.w-4 { width: 1rem; }
.max-w-none { max-width: none; }
.max-w-md { max-width: 28rem; }
.max-w-full { max-width: 100%; }
.max-w-4xl { max-width: 56rem; }

.h-full { height: 100%; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-8 { height: 2rem; }
.h-4 { height: 1rem; }
.max-h-full { max-height: 100%; }
.max-h-\[80vh\] { max-height: 80vh; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-line { white-space: pre-line; }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.top-2 { top: 0.5rem; }
.right-2 { right: 0.5rem; }
.-top-4 { top: -1rem; }
.-right-4 { right: -1rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-9999 { z-index: 9999; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; }
.bg-green-100 { background-color: #d1fae5; }
.bg-green-600 { background-color: #059669; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-yellow-50 { background-color: #fffbeb; }
.bg-yellow-100 { background-color: #fef3c7; }
.bg-yellow-400 { background-color: #fbbf24; }
.bg-indigo-50 { background-color: #eef2ff; }
.bg-black { background-color: #000000; }

.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.text-red-600 { color: #dc2626; }
.text-red-800 { color: #991b1b; }
.text-green-600 { color: #059669; }
.text-green-800 { color: #065f46; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-yellow-400 { color: #fbbf24; }
.text-yellow-500 { color: #f59e0b; }
.text-yellow-600 { color: #d97706; }
.text-yellow-700 { color: #b45309; }
.text-yellow-800 { color: #92400e; }
.text-white { color: #ffffff; }

.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-100 { border-color: #dbeafe; }
.border-blue-500 { border-color: #3b82f6; }
.border-yellow-200 { border-color: #fde68a; }
.border-transparent { border-color: transparent; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

.transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: background-color, border-color, color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-green-700:hover { background-color: #047857; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:text-gray-700:hover { color: #374151; }
.hover\:text-blue-500:hover { color: #3b82f6; }
.hover\:border-blue-500:hover { border-color: #3b82f6; }
.hover\:border-gray-300:hover { border-color: #d1d5db; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }

.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); }
.focus\:border-blue-500:focus { border-color: #3b82f6; }

.line-through { text-decoration: line-through; }

/* TEMEL STİLLER */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --success-color: #10b981;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* GENEL STİLLER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* RESİMDEKİ TASARIMA ÖZEL STİLLER */
.product-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* ÜRÜN DETAY LAYOUT - RESİMDEKİ GİBİ */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* SOL ALAN - RESİM GALERİSİ (RESİMDEKİ GİBİ) */
.product-images-section {
    width: 100%;
}

/* ANA RESİM CONTAINER - RESİMDEKİ GİBİ BÜYÜK */
.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    cursor: crosshair;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background: white;
    transition: transform 0.3s ease;
}

/* BÜYÜTEÇ İKONU - SAĞ ÜST KÖŞE */
.zoom-trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.zoom-trigger:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.zoom-trigger i {
    color: var(--text-primary);
    font-size: 1.125rem;
}

/* KÜÇÜK RESİMLER GALERİSİ - RESİMDEKİ GİBİ ALTTA */
.thumbnail-gallery-wrapper {
    margin-top: 1.5rem;
}

.thumbnail-scroll-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.thumbnail-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-scroll-container::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.thumbnail-scroll-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.product-thumbnail-item {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.product-thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-thumbnail-item.active {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SAĞ ALAN - ÜRÜN BİLGİLERİ (RESİMDEKİ GİBİ) */
.product-info-section {
    padding: 1rem;
}

/* ÜRÜN BAŞLIĞI - RESİMDEKİ GİBİ */
.product-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.product-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* FİYAT BÖLÜMÜ - RESİMDEKİ GİBİ */
.product-pricing-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.price-display-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.main-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1;
}

.original-price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge-large {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: var(--shadow-sm);
}

/* ÜRÜN SEÇENEKLERİ - RESİMDEKİ GİBİ */
.product-options-section {
    margin: 2rem 0;
}

.option-group {
    margin-bottom: 2rem;
}

.option-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* BEDEN SEÇENEKLERİ - RESİMDEKİ GİBİ */
.size-selection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.size-option-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    min-width: 50px;
}

.size-option-btn:hover {
    border-color: var(--primary-color);
    background: #f0f7ff;
}

.size-option-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* STOK BİLGİSİ - RESİMDEKİ GİBİ */
.stock-info-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.stock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.stock-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.stock-value {
    font-size: 1rem;
    color: var(--success-color);
    font-weight: 600;
}

.stock-count {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.brand-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.brand-value {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* HEMEN AL BUTONU - RESİMDEKİ GİBİ */
.buy-now-section {
    margin-top: 2rem;
}

.buy-now-button {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.buy-now-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.buy-now-button:active {
    transform: translateY(0);
}

/* BÜYÜTEÇ SİSTEMİ */
.zoom-lens {
    position: absolute;
    border: 2px solid var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    cursor: none;
    z-index: 10;
    pointer-events: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: none;
}

.zoom-window {
    position: fixed;
    width: 400px;
    height: 400px;
    border: 1px solid var(--border-color);
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.zoom-window-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease;
    will-change: transform;
}

/* MEVCUT CSS'LERİ GÜNCELLİYORUM - RESİMDEKİ TASARIMA UYGUN */
/* ÜRÜN RESİM ALANI */
.product-zoom-container {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 400px; /* Resimdeki boyuta uygun */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-zoom-container:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.zoom-base-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: crosshair;
    transition: transform 0.3s ease;
    background: white;
    padding: 1rem;
}

/* KÜÇÜK RESİMLER - RESİMDEKİ GİBİ YATAY KAYDIRILABİLİR */
.product-thumbnails-grid {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
}

.product-thumbnails-grid::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails-grid::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.product-thumbnails-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.product-thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.product-thumbnail:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-thumbnail.active {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ÜRÜN BİLGİLERİ - RESİMDEKİ GİBİ */
.product-info-section {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.product-title {
    font-size: 1.5rem; /* Resimdeki boyuta uygun */
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.product-price-section {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.current-price {
    font-size: 1.75rem; /* Resimdeki boyuta uygun */
    font-weight: 800;
    color: #ef4444; /* Resimdeki kırmızı renk */
    display: flex;
    align-items: baseline;
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* SEÇİM KONTROLLERİ - RESİMDEKİ GİBİ */
.selection-controls {
    margin: 1.5rem 0;
}

.selection-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.selection-label-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.selection-display {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* RENK SEÇENEKLERİ - RESİMDEKİ GİBİ */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.color-option {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.color-option:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.color-option.active {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

/* BEDEN SEÇENEKLERİ - RESİMDEKİ GİBİ */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: var(--text-primary);
    min-width: 50px;
    text-align: center;
    font-size: 0.875rem;
}

.size-option:hover {
    border-color: var(--primary-color);
    background: #f0f7ff;
    transform: translateY(-1px);
}

.size-option.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* STOK DURUMU - RESİMDEKİ GİBİ */
.stock-status {
    margin-left: 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stock-in {
    color: var(--success-color);
    font-weight: 600;
}

.stock-out {
    color: var(--danger-color);
    font-weight: 600;
}

/* AKSİYON BUTONLARI - RESİMDEKİ GİBİ TEK BUTON */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-action-button {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 56px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-action-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.primary-action-button:active {
    transform: translateY(0);
}

.primary-action-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* STOKTA YOK UYARISI */
.out-of-stock-alert {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.out-of-stock-alert i {
    color: #d97706;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.out-of-stock-content h4 {
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.out-of-stock-content p {
    color: #b45309;
    font-size: 0.875rem;
}

/* TAB SİSTEMİ */
.product-tabs {
    margin-top: 3rem;
}

.tab-header {
    border-bottom: 2px solid var(--border-color);
}

.tab-buttons {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-button {
    padding: 1rem 0;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: none;
    border: none;
    font-size: 1rem;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 2rem 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ÜRÜN ÖZELLİKLERİ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-label {
    font-weight: 600;
    color: var(--text-primary);
}

.feature-value {
    color: var(--text-secondary);
}

/* BENZER ÜRÜNLER - RESİMDEKİ GİBİ KART BOYUTLARI */
.similar-products-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
    margin-top: 3rem;
}

.section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* İNSAN BOYU ÜRÜN KARTLARI - RESİMDEKİ GİBİ */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 900px; /* İnsan boyu için uygun yükseklik */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 350px; /* İnsan figürünü göstermek için yüksek */
    flex-shrink: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 1rem;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

/* İnsan figürünü vurgulamak için overlay */
.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 70%,
        rgba(255, 255, 255, 0.9) 90%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.discount-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background: white;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    height: 2.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ef4444;
}

.product-original-price {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.action-button {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.25px;
}

.view-button {
    background: var(--primary-color);
    color: white;
}

.view-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.add-to-cart-similar {
    background: var(--success-color);
    color: white;
}

.add-to-cart-similar:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* RESİM MODALI */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.image-modal.hidden {
    display: none;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-close:hover {
    background: #f1f5f9;
    transform: rotate(90deg);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* BİLDİRİMLER */
.notification {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: var(--success-color);
}

.notification.error {
    border-left-color: var(--danger-color);
}

.notification.warning {
    border-left-color: var(--warning-color);
}

.notification.info {
    border-left-color: var(--primary-color);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.25rem;
}

.notification.success i {
    color: var(--success-color);
}

.notification.error i {
    color: var(--danger-color);
}

.notification.warning i {
    color: var(--warning-color);
}

.notification.info i {
    color: var(--primary-color);
}

.notification-content span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* YÜKLEME ANİMASYONU */
.loading-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* YILDIZ DEĞERLENDİRME */
.star-rating {
    direction: ltr;
}

.star-rating i {
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover {
    transform: scale(1.2);
}

/* YORUM KARTLARI */
.review-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* YARDIMCI OLDU BUTONU */
.review-helpful-btn {
    transition: all 0.2s ease;
}

.review-helpful-btn:hover {
    transform: scale(1.05);
}

.review-helpful-btn.voted {
    pointer-events: none;
}

/* MODAL ANİMASYONLARI */
#reviewModal {
    animation: modalFadeIn 0.3s ease-out;
}

#reviewImageModal {
    animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* BUTON YÜKLEME ANİMASYONU */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-spinner 0.6s linear infinite;
}

@keyframes button-spinner {
    to { transform: rotate(360deg); }
}

/* NAVIGASYON BUTONLARI */
.breadcrumb {
    padding: 1rem 0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.breadcrumb .separator {
    color: #9ca3af;
    margin: 0 0.5rem;
}

/* BREADCRUMB VE NAVIGASYON */
nav.breadcrumb-nav {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-current {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.breadcrumb-separator {
    color: var(--text-tertiary);
    margin: 0 0.5rem;
}

/* PROSE STİLLERİ */
.prose {
    color: var(--text-primary);
    line-height: 1.7;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul, .prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    font-weight: 600;
}

/* RTL DESTEĞİ */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .text-left {
    text-align: right;
}

[dir="rtl"] .text-right {
    text-align: left;
}

[dir="rtl"] .mr-2 {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .ml-2 {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .mr-3 {
    margin-right: 0;
    margin-left: 0.75rem;
}

[dir="rtl"] .ml-3 {
    margin-left: 0;
    margin-right: 0.75rem;
}

[dir="rtl"] .space-x-2 > * + * {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .space-x-3 > * + * {
    margin-left: 0;
    margin-right: 0.75rem;
}

[dir="rtl"] .space-x-4 > * + * {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .modal-close {
    right: auto;
    left: 0;
}

[dir="rtl"] .notification {
    right: auto;
    left: 1.25rem;
    transform: translateX(-120%);
}

[dir="rtl"] .notification.show {
    transform: translateX(0);
}

[dir="rtl"] .discount-badge {
    margin-left: 0;
    margin-right: 0.75rem;
}

[dir="rtl"] .original-price {
    margin-left: 0;
    margin-right: 0.75rem;
}

[dir="rtl"] .stock-status {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .breadcrumb-separator {
    transform: rotate(180deg);
}

/* RESPONSIVE DÜZENLEMELER - RESİMDEKİ TASARIMA UYGUN */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        gap: 2rem;
    }
    
    .main-image-wrapper {
        height: 400px;
    }
    
    .product-card {
        height: 450px;
    }
    
    .product-image-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .product-main-title {
        font-size: 1.5rem;
    }
    
    .main-price {
        font-size: 1.75rem;
    }
    
    .main-image-wrapper {
        height: 350px;
    }
    
    .product-thumbnail-item {
        width: 80px;
        height: 80px;
    }
    
    .similar-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-card {
        height: 400px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-name {
        font-size: 0.875rem;
        height: 2rem;
    }
    
    .product-price {
        font-size: 1.125rem;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .product-thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .primary-action-button {
        width: 100%;
    }
    
    .grid-cols-1\.lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-1\.lg\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .main-image-wrapper {
        height: 300px;
    }
    
    .product-thumbnail-item {
        width: 70px;
        height: 70px;
    }
    
    .color-selection-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .size-selection-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .similar-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        height: 400px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .action-button {
        width: 100%;
    }
    
    .product-thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-page-container {
        padding: 0 0.5rem;
    }
    
    .product-detail-wrapper {
        padding: 1rem;
    }
    
    .main-image-wrapper {
        height: 250px;
    }
    
    .product-thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .product-main-title {
        font-size: 1.25rem;
    }
    
    .main-price {
        font-size: 1.5rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .product-card {
        height: 380px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 0.875rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .action-button {
        padding: 0.625rem;
        font-size: 0.75rem;
        min-height: 36px;
    }
}

/* PRINT STİLLERİ */
@media print {
    .action-buttons,
    .similar-products-section,
    .notification,
    .modal-close,
    .product-zoom-container .zoom-lens,
    .product-zoom-container .zoom-window {
        display: none !important;
    }
    
    .product-zoom-container {
        border: 1px solid #ccc !important;
    }
}

/* YENİ EKLENEN STİLLER */
.original-price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Fiyat bölümü için düzenleme */
.price-display-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.main-price {
    color: #ef4444;
}

/* Stok bilgisi için */
.stock-info {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.stock-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

/* Sepete ekle butonu için */
.add-to-cart-section {
    margin-top: 1.5rem;
}

.add-to-cart-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.add-to-cart-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Miktar seçici */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.quantity-control-buttons {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
}

.quantity-decrease,
.quantity-increase {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.quantity-decrease:hover,
.quantity-increase:hover {
    background: var(--bg-tertiary);
}

.quantity-input-field {
    width: 4rem;
    height: 3rem;
    border: none;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    background: white;
    -moz-appearance: textfield;
}

.quantity-input-field::-webkit-outer-spin-button,
.quantity-input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}