/* Modern Minimal Product Detail Page Styles */

/* Reset ve Base Styles */
* {
    box-sizing: border-box;
}

/* Modern Beden Seçimi Kutucukları */
.size-selection-container {
    margin: 1.5rem 0;
}

.size-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.size-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: sizeBoxFadeIn 0.4s ease-out forwards;
}

@keyframes sizeBoxFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.size-option-box:nth-child(1) { animation-delay: 0.1s; }
.size-option-box:nth-child(2) { animation-delay: 0.15s; }
.size-option-box:nth-child(3) { animation-delay: 0.2s; }
.size-option-box:nth-child(4) { animation-delay: 0.25s; }
.size-option-box:nth-child(5) { animation-delay: 0.3s; }
.size-option-box:nth-child(6) { animation-delay: 0.35s; }

.size-option-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 167, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.size-option-box:hover::before {
    left: 100%;
}

.size-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.size-stock-info {
    font-size: 0.7rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

/* Stokta olan bedenler */
.size-option-box.in-stock {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}

.size-option-box.in-stock:hover {
    border-color: #d3a7fa;
    background: linear-gradient(135deg, #f8f4ff 0%, #f0e6ff 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(211, 167, 250, 0.3);
}

.size-option-box.in-stock:hover .size-number {
    color: #d3a7fa;
    transform: scale(1.1);
}

.size-option-box.in-stock:hover .size-stock-info {
    color: #8e24aa;
    font-weight: 600;
}

.size-option-box.in-stock .size-stock-info {
    color: #28a745;
}

/* Stokta olmayan bedenler */
.size-option-box.out-of-stock {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    opacity: 0.6;
}

.size-option-box.out-of-stock .size-number {
    color: #dc3545;
}

.size-option-box.out-of-stock .size-stock-info {
    color: #dc3545;
}

.size-option-box.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

/* Seçili beden */
.size-option-box.selected {
    border-color: #d3a7fa;
    background: linear-gradient(135deg, #f8f4ff 0%, #ede7ff 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(211, 167, 250, 0.4);
    position: relative;
}

.size-option-box.selected::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #d3a7fa;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: checkmark 0.3s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.size-option-box.selected .size-number {
    color: #d3a7fa;
    font-weight: 800;
}

.size-option-box.selected .size-stock-info {
    color: #8e24aa;
    font-weight: 600;
}

/* Ürün Özellikleri için Animasyonlar ve Hover Efektleri */
.product-features-minimal {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    transition: all 0.3s ease;
}

.product-features-minimal:nth-child(1) {
    animation-delay: 0.1s;
}

.product-features-minimal:nth-child(2) {
    animation-delay: 0.2s;
}

.product-features-minimal:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-features-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 167, 250, 0.15);
}

.feature-item-minimal {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 167, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item-minimal:hover::before {
    left: 100%;
}

.feature-item-minimal:hover {
    background: linear-gradient(135deg, rgba(211, 167, 250, 0.05) 0%, rgba(211, 167, 250, 0.1) 100%);
    border-color: rgba(211, 167, 250, 0.3);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(211, 167, 250, 0.2);
}

.feature-label-minimal {
    transition: color 0.3s ease;
}

.feature-value-minimal {
    transition: all 0.3s ease;
}

.feature-item-minimal:hover .feature-label-minimal {
    color: #8e24aa;
}

.feature-item-minimal:hover .feature-value-minimal {
    color: #d3a7fa;
    font-weight: 700;
    transform: translateX(2px);
}

.section-label {
    transition: all 0.3s ease;
    position: relative;
}

.section-label:hover {
    color: #d3a7fa;
    transform: translateX(3px);
}

.section-label i {
    transition: all 0.3s ease;
}

.section-label:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #d3a7fa;
}

/* Pulse animasyonu için */
.product-features-minimal:hover .section-label i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Shimmer efekti için */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.feature-item-minimal.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Özellik değerlerinin daha yumuşak geçişi için */
.feature-value-minimal {
    position: relative;
    overflow: hidden;
}

.feature-value-minimal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 167, 250, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-item-minimal:hover .feature-value-minimal::after {
    left: 100%;
}

/* Breadcrumb - Minimalist */
.breadcrumb {
    background: #fafafa;
    padding: 12px 0;
    margin-top: 80px;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #d3a7fa;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

/* Main Product Section - Clean Layout */
.product-detail {
    padding: 40px 0 80px;
    background: #fff;
    min-height: 100vh;
}

.product-detail .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Product Layout */
.product-layout-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Product Images - Clean & Modern */
.product-images {
    position: sticky;
    top: 120px;
}

.product-gallery-modern {
    position: sticky;
    top: 120px;
}

.main-image-container {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 650px;
}

.main-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    border: 2px solid #f0f0f0;
    border-top: 2px solid #d3a7fa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.main-image-container.loading::before {
    opacity: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-global {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-image-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.main-product-image {
    width: 100%;
    height: 650px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    background: #fafafa;
}

.thumbnail-gallery {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 4px 0;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer !important;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
    pointer-events: auto;
    user-select: none;
    flex-shrink: 0;
    background: #fafafa;
}

.thumbnail-image:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.thumbnail-image.active {
    opacity: 1;
    border-color: #d3a7fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(211, 167, 250, 0.3);
}

/* Product Info - Clean Typography */
.product-info {
    padding: 0;
}

.product-info-modern {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-header-modern {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.product-code {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d3a7fa;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

/* Color Selection - Minimal Cards */
.color-selection {
    margin-bottom: 32px;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 24px;
}

.color-swatch-large {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.color-option.active .color-swatch-large {
    border-color: #d3a7fa;
    box-shadow: 0 0 0 3px rgba(211, 167, 250, 0.2);
}

.color-selection h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-option {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    cursor: pointer !important;
    transition: all 0.2s ease;
    position: relative;
    user-select: none;
    pointer-events: auto;
    min-width: 120px;
    flex: 1;
    max-width: 140px;
}

.color-option:hover {
    border-color: #d3a7fa;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.color-option.active {
    border-color: #d3a7fa;
    background: #fff;
    box-shadow: 0 4px 16px rgba(211, 167, 250, 0.2);
}

.color-option.active::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    color: #d3a7fa;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-option img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #f0f0f0;
}

.color-option span {
    display: block;
    font-weight: 500;
    color: #555;
    font-size: 13px;
}

.color-name {
    margin-bottom: 4px;
}

.color-price {
    color: #d3a7fa !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

/* Product Details - Organized Sections */
.product-details {
    margin-bottom: 32px;
}

.product-details h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 20px 0 12px;
    font-weight: 600;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Feature Sections - Clean Cards */
.product-features-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.feature-section {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.feature-section h4 {
    margin: 0 0 16px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.feature-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

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

.feature-value {
    color: #333;
    font-weight: 600;
    text-align: right;
}

/* Size Info */
.size-info {
    background: #f0f9ff;
    padding: 16px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #e0f2fe;
}

.size-info h4 {
    margin: 0 0 12px;
    color: #0369a1;
    font-size: 16px;
}

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

.size-badge {
    background: #fff;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0f2fe;
}

/* Care Instructions */
.care-instructions {
    background: #fffbeb;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #fde68a;
    margin: 20px 0;
}

.care-instructions h4 {
    margin: 0 0 8px;
    color: #92400e;
    font-size: 16px;
}

.care-warning {
    margin: 0;
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
}

/* Order Section - Modern Button */
.order-section {
    margin: 32px 0;
}

.order-btn {
    background: linear-gradient(135deg, #d3a7fa 0%, #c19ae6 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(211, 167, 250, 0.3);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(211, 167, 250, 0.4);
}

.order-btn:active {
    transform: translateY(0);
}

.order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.order-btn i {
    font-size: 16px;
}

/* Loading state for order button */
.order-btn.loading {
    pointer-events: none;
}

.order-btn.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin-global 1s linear infinite;
    transform: translate(-50%, -50%);
}

.order-btn.loading span,
.order-btn.loading i {
    opacity: 0;
}

.brand-message {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.brand-message p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #d3a7fa;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Modal Styles - Modern & Clean */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.modal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 24px;
    padding: 24px 24px 0;
    letter-spacing: -0.02em;
}

.close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #999;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 1001;
}

.close:hover {
    color: #333;
}

/* Order Product Info in Modal */
.order-product-info {
    display: flex;
    gap: 16px;
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    margin: 0 24px 24px;
}

.order-product-image {
    flex-shrink: 0;
}

.order-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}

.order-product-details {
    flex: 1;
}

.order-product-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.order-product-details p {
    font-size: 14px;
    color: #666;
    margin: 2px 0;
}

.order-product-color {
    color: #888;
    font-size: 14px;
    margin-top: 4px;
}

/* Form Styles - Modern Input Design */
#orderForm {
    padding: 0 24px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d3a7fa;
    box-shadow: 0 0 0 3px rgba(211, 167, 250, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Loading Spinner in Modal */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0 24px 20px;
}

.loading-spinner.show {
    display: block;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #d3a7fa;
    border-radius: 50%;
    animation: spin-global 1s linear infinite;
    margin: 0 auto 12px;
}

.loading-spinner p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

/* Success and Error Messages */
.success-message,
.error-message {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin: 0 24px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.success-message {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #e0f2fe;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.success-message.show,
.error-message.show {
    display: block;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #d3a7fa 0%, #c19ae6 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(211, 167, 250, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Image Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.zoom-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.zoom-close:hover {
    opacity: 0.7;
}

.zoom-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.zoom-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
}

.zoom-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-content {
        gap: 60px;
    }
    
    .main-product-image {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 60px;
        padding: 8px 0;
        background: #fff;
    }
    
    .breadcrumb .container {
        padding: 0 16px;
    }
    
    .breadcrumb a, .breadcrumb span {
        font-size: 12px;
    }
    
    .product-detail {
        padding: 0;
        background: #f8f9fa;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        max-width: 100%;
    }
    
    .product-layout-modern {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    
    .product-images {
        position: static;
        background: #fff;
        padding: 16px;
        margin-bottom: 8px;
    }
    
    .product-gallery-modern {
        position: static;
        background: #fff;
        padding: 16px;
        margin-bottom: 8px;
    }
    
    .main-image-container {
        min-height: 350px;
        margin-bottom: 8px;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .main-product-image {
        height: 350px;
        border-radius: 16px;
    }
    
    .product-info {
        background: #fff;
        padding: 20px 16px;
        margin-bottom: 8px;
    }
    
    .product-info-modern {
        background: #fff;
        padding: 20px 16px;
        margin-bottom: 8px;
        gap: 16px;
    }
    
    .product-header-modern {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    
    .product-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .product-code {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .product-price {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .color-selection {
        background: #fff;
        padding: 16px;
        margin: 0 0 8px 0;
        border-radius: 12px;
    }
    
    .color-selection h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .color-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
        justify-content: center;
    }
    
    .color-option {
        min-width: 80px;
        max-width: 90px;
        padding: 8px;
        border-radius: 8px;
    }
    
    .color-option img {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
    
    .color-option span {
        font-size: 11px;
    }
    
    .thumbnail-gallery {
        justify-content: center;
        margin-top: 6px;
        gap: 6px;
    }
    
    .thumbnail-image {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    
    .product-details {
        background: #fff;
        padding: 16px;
        margin-bottom: 8px;
        border-radius: 12px;
    }
    
    .product-details h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    
    .product-description {
        background: #f8f9fa;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 16px;
        border-left: 3px solid #d3a7fa;
    }
    
    .product-description p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .product-features-grid {
        gap: 12px;
    }
    
    .feature-section {
        background: #f8f9fa;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
    }
    
    .feature-section h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .feature-list li {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .size-selection {
        background: #fff;
        padding: 16px;
        margin: 0 0 8px 0;
        border-radius: 12px;
    }
    
    .size-selection h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .size-options-buttons {
        gap: 8px;
        justify-content: center;
    }
    
    .size-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 40px;
    }
    
    .order-section {
        background: #fff;
        padding: 16px;
        margin: 8px 0;
        border-radius: 12px;
        position: sticky;
        bottom: 0;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    }
    
    .order-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .brand-message {
        background: #f8f9fa;
        padding: 12px;
        border-radius: 8px;
        margin-top: 12px;
    }
    
    .brand-message p {
        font-size: 12px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .product-detail-content {
        padding: 0;
    }
    
    .product-layout-modern {
        padding: 0;
        gap: 0;
    }
    
    .product-images,
    .product-gallery-modern {
        padding: 12px;
        margin-bottom: 6px;
    }
    
    .main-image-container {
        min-height: 300px;
        margin-bottom: 6px;
        border-radius: 12px;
    }
    
    .main-product-image {
        height: 300px;
        border-radius: 12px;
    }
    
    .product-info,
    .product-info-modern {
        padding: 16px 12px;
        margin-bottom: 6px;
    }
    
    .product-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .product-price {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .color-selection {
        padding: 12px;
        margin-bottom: 6px;
    }
    
    .color-options {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 6px;
    }
    
    .color-option {
        min-width: 70px;
        max-width: 80px;
        padding: 6px;
    }
    
    .color-option img {
        width: 35px;
        height: 35px;
    }
    
    .color-option span {
        font-size: 10px;
    }
    
    .product-details {
        padding: 12px;
        margin-bottom: 6px;
    }
    
    .product-details h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .product-description {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .product-description p {
        font-size: 13px;
    }
    
    .feature-section {
        padding: 10px;
    }
    
    .feature-section h4 {
        font-size: 13px;
    }
    
    .feature-list li {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .size-selection {
        padding: 12px;
        margin-bottom: 6px;
    }
    
    .size-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 35px;
    }
    
    .order-section {
        padding: 12px;
        margin: 6px 0 0 0;
    }
    
    .order-btn {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .thumbnail-gallery {
        margin-top: 4px;
        gap: 4px;
    }
    
    .thumbnail-image {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }
    
    .brand-message {
        padding: 10px;
        margin-top: 10px;
    }
    
    .brand-message p {
        font-size: 11px;
    }
    
    .feature-section {
        padding: 16px;
    }
    
    .modal-content {
        margin: 5% auto;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        padding: 20px 20px 0;
    }
    
    #orderForm {
        padding: 0 20px 20px;
    }
    
    .order-product-info {
        margin: 0 20px 20px;
        padding: 12px;
    }
    
    .order-product-img {
        width: 60px;
        height: 60px;
    }
}

/* Size Selection Styles */
.size-selection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.size-selection h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.size-options-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.size-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

.size-btn:hover {
    border-color: #d3a7fa;
    color: #d3a7fa;
    transform: translateY(-2px);
}

.size-btn.selected {
    background: #d3a7fa;
    border-color: #d3a7fa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 167, 250, 0.3);
}

.size-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.add-to-cart-btn, .order-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    border: 2px solid #d3a7fa;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #d3a7fa, #c19ae6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 167, 250, 0.3);
}

.order-btn {
    background: linear-gradient(135deg, #d3a7fa, #c19ae6);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 167, 250, 0.3);
}

.order-btn:hover {
    background: linear-gradient(135deg, #c19ae6, #b088d9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 167, 250, 0.4);
}

.add-to-cart-btn i, .order-btn i {
    font-size: 1.1rem;
}

/* Responsive Updates for New Elements */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .add-to-cart-btn, .order-btn {
        min-width: 100%;
        padding: 1rem;
    }
    
    .size-options-buttons {
        justify-content: center;
    }
    
    .size-selection {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .size-btn {
        padding: 0.6rem 1rem;
        min-width: 45px;
        font-size: 0.9rem;
    }
    
    .add-to-cart-btn, .order-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .size-selection h4 {
        font-size: 1rem;
    }
}

/* Additional Modern Styles for New Layout */
.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.color-option:hover {
    background: #f8f9fa;
    border-color: #e0e0e0;
}

.color-option.active {
    background: #f0f9ff;
    border-color: #d3a7fa;
}

.color-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.color-price {
    font-size: 12px;
    color: #d3a7fa;
    font-weight: 600;
}

/* Product Details Section Improvements */
.product-details h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #d3a7fa;
    padding-bottom: 8px;
    display: inline-block;
}

.product-description h4,
.feature-section h4,
.care-instructions h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}

.product-description {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #d3a7fa;
}

.product-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Improved Feature List */
.feature-list {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.feature-list li {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.feature-list li:hover {
    background: #f8f9fa;
}

.feature-list li:last-child {
    border-bottom: none;
}

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

.feature-value {
    font-weight: 600;
    color: #333;
    background: #f0f9ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}

/* Care Instructions Styling */
.care-instructions {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid #f59e0b;
}

.care-warning {
    color: #92400e;
    line-height: 1.5;
    margin: 0;
}

/* Size Selection Improvements */
.size-selection {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #d3a7fa;
}

.size-selection h4 {
    color: #333;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-selection h4::before {
    content: "📏";
    font-size: 18px;
}

/* Minimal Design Styles */
.product-info-minimal {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-header-minimal {
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.product-title-minimal {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-price-minimal {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d3a7fa;
    margin: 0 0 4px 0;
}

.product-code-minimal {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* Section Labels */
.section-label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Minimal Color Selection */
.color-selection-minimal {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.color-options-minimal {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.color-swatch-minimal {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-swatch-minimal:hover {
    transform: scale(1.1);
    border-color: #d3a7fa;
}

.color-swatch-minimal.active {
    border-color: #d3a7fa;
    box-shadow: 0 0 0 3px rgba(211, 167, 250, 0.2);
}

.selected-color-name {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Minimal Product Features */
.product-features-minimal {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.features-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-item-minimal {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #e9ecef;
}

.feature-label-minimal {
    color: #666;
    font-weight: 500;
    margin-right: 6px;
}

.feature-label-minimal::after {
    content: ":";
    margin-left: 2px;
}

.feature-value-minimal {
    color: #333;
    font-weight: 600;
}

/* Size Dropdown in Header - Right After Price */
.size-dropdown-container {
    margin-top: 20px;
    padding: 16px;
    background: #fafafa;
    border: 2px solid #d3a7fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(211, 167, 250, 0.15);
}

.size-dropdown-label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.size-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.size-dropdown:hover {
    border-color: #d3a7fa;
    box-shadow: 0 0 0 3px rgba(211, 167, 250, 0.1);
}

.size-dropdown:focus {
    outline: none;
    border-color: #d3a7fa;
    box-shadow: 0 0 0 3px rgba(211, 167, 250, 0.2);
}

.size-dropdown option {
    padding: 10px;
    font-weight: 500;
}

.size-dropdown option:disabled {
    color: #999;
    font-style: italic;
}

/* Old minimal size selection - kept for compatibility */
.size-selection-minimal {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    display: none; /* Hidden since we moved it to header */
}

.size-options-minimal {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.size-btn-minimal {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

.size-btn-minimal:hover {
    border-color: #d3a7fa;
    color: #d3a7fa;
}

.size-btn-minimal.selected {
    background: #d3a7fa;
    border-color: #d3a7fa;
    color: white;
}

.size-note-minimal {
    font-size: 12px;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* Minimal Description and Care */
.product-description-minimal,
.care-instructions-minimal {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.description-text,
.care-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Action Buttons Below Image */
.action-buttons-minimal {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.add-to-cart-btn-minimal,
.order-btn-minimal {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
}

.add-to-cart-btn-minimal {
    background: white;
    color: #d3a7fa;
    border: 2px solid #d3a7fa;
}

.add-to-cart-btn-minimal:hover {
    background: #d3a7fa;
    color: white;
}

.order-btn-minimal {
    background: #d3a7fa;
    color: white;
    border: 2px solid #d3a7fa;
}

.order-btn-minimal:hover {
    background: #c19ae6;
    border-color: #c19ae6;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .product-layout-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery-modern {
        position: static;
    }
    
    .action-buttons-minimal {
        flex-direction: column;
    }
    
    .features-grid-minimal {
        justify-content: center;
    }
    
    .feature-item-minimal {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .product-title-minimal {
        font-size: 1.5rem;
    }
    
    .product-price-minimal {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .size-dropdown-container {
        margin-top: 16px;
        padding: 12px;
    }
    
    .size-dropdown-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .size-dropdown {
        font-size: 14px;
        padding: 10px 14px;
        padding-right: 36px;
    }
}

@media (max-width: 480px) {
    .size-options-minimal {
        justify-content: center;
    }
    
    .color-options-minimal {
        justify-content: center;
    }
    
    /* Modern beden kutucukları mobil optimizasyonu */
    .size-options-grid {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .size-option-box {
        min-width: 60px;
        height: 60px;
        padding: 0.4rem;
    }
    
    .size-number {
        font-size: 1rem;
    }
    
    .size-stock-info {
        font-size: 0.65rem;
    }
    
    .size-option-box.in-stock:hover {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 4px 12px rgba(211, 167, 250, 0.2);
    }
    
    /* Mobil cihazlarda animasyonları optimize et */
    .product-features-minimal:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(211, 167, 250, 0.1);
    }
    
    .feature-item-minimal:hover {
        transform: scale(1.01);
        box-shadow: 0 1px 4px rgba(211, 167, 250, 0.15);
    }
    
    .section-label:hover {
        transform: translateX(2px);
    }
    
    /* Mobilde pulse animasyonunu daha hafif yap */
    .product-features-minimal:hover .section-label i {
        animation: pulse 2s infinite;
    }
    
    .add-to-cart-btn-minimal,
    .order-btn-minimal {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .size-dropdown-container {
        margin-top: 12px;
        padding: 10px;
        border-width: 1.5px;
    }
    
    .size-dropdown {
        font-size: 13px;
        padding: 9px 12px;
        padding-right: 32px;
    }
}

/* Print Styles */
@media print {
    .breadcrumb,
    .action-buttons,
    .action-buttons-minimal,
    .size-selection,
    .brand-message {
        display: none;
    }
    
    .product-detail-content,
    .product-layout-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-product-image {
        height: 300px;
    }
}
