/* ===== TEMEL STİLLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== QUICK FEATURES - SHIRTINATOR STİLİ ===== */
.quick-features {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.feature-element {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px; /* ← Buradan da kıs (eskiden 15px idi) */
    border-right: 1px solid #dee2e6;
    gap: 8px;
    min-height: 10px; /* ← Veya bu değeri azalt */
}

.feature-element:last-child {
    border-right: none;
}

.feature-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400; /* Bold değil normal */
    color: #2C2D33;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-element:nth-child(even) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-element {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }
    
    .feature-element:last-child {
        border-bottom: none;
    }
}

/* Shirtinator benzeri hover efekti */
.feature-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #e60000;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
    z-index: -1;
}

.feature-item:hover::before {
    opacity: 0.03;
}

.feature-item:hover .feature-text strong {
    color: #e60000;
}

.feature-item:hover .feature-text span {
    color: #495057;
}

/* İkon hover efekti */
.feature-item:hover .feature-svg,
.feature-item:hover .feature-img {
    filter: brightness(0.9);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* T-Shirts Bedrucken Section - 4'LÜ GRID */
.tshirts-bedrucken {
    padding: 60px 0;
    background: white;
}

.tshirts-bedrucken .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tshirts-bedrucken .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tshirts-bedrucken .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bedrucken-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bedrucken-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.bedrucken-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.bedrucken-card .card-image {
    height: 200px;
    overflow: hidden;
}

.bedrucken-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bedrucken-card:hover .card-image img {
    transform: scale(1.05);
}

.bedrucken-card .card-content {
    padding: 20px;
    text-align: center;
}

.bedrucken-card .card-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* Personalisieren und Bedrucken Section - 4'LÜ GRID */
.personalize-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.personalize-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.personalize-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.personalize-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.personalize-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.personalize-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.personalize-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.personalize-card .card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.personalize-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.personalize-card:hover .card-image img {
    transform: scale(1.1);
}

.personalize-card .card-content {
    padding: 25px 20px;
    text-align: center;
    background: white;
}

.personalize-card .card-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.personalize-card .card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.all-products-link {
    text-align: center;
    margin-top: 30px;
}

.all-products-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e60000;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.all-products-button:hover {
    background: #c40000;
    transform: translateY(-2px);
}

/* 6'lı Kategoriler Section - 3'LÜ GRID (3 ÜSTTE 3 ALTTA) */
.six-categories-section {
    padding: 60px 0;
    background: white;
}

.six-categories-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.six-categories-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.six-categories-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.six-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-six-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.category-six-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.category-six-card .category-six-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-six-card .category-six-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-six-card:hover .category-six-image img {
    transform: scale(1.1);
}

.category-six-card .category-six-content {
    padding: 25px 20px;
    text-align: center;
    background: white;
}

.category-six-card .category-six-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.category-six-card .category-six-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Aktuelle Lieblingsmotive Section - 3'LÜ GRID (3 ÜSTTE 3 ALTTA) */
.favorite-designs-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.favorite-designs-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.favorite-designs-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.favorite-designs-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.design-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.design-card .design-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.design-card .design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.design-card:hover .design-image img {
    transform: scale(1.1);
}

.design-card .design-content {
    padding: 25px 20px;
    text-align: center;
    background: white;
}

.design-card .design-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.design-card .design-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Alle T-Shirts zum Bedrucken Section */
.all-tshirts-section {
    padding: 60px 0;
    background: white;
}

.all-tshirts-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.all-tshirts-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.all-tshirts-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== PRODUCT SLIDER STYLES - KÜÇÜK VERSİYON ===== */
.product-slider-section {
    background: #fffff;
    padding: 40px 0; /* DAHA AZ PADDING */
    margin: 30px 0;
}

.product-slider-section .section-header {
    text-align: center;
    margin-bottom: 30px; /* DAHA AZ MARGIN */
}

.product-slider-section .section-header h2 {
    color: white;
    font-size: 2rem; /* DAHA KÜÇÜK FONT */
    margin-bottom: 8px;
    font-weight: 700;
}

.product-slider-section .section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem; /* DAHA KÜÇÜK FONT */
}

.product-slider {
    position: relative;
    padding: 0 40px; /* DAHA AZ PADDING */
}

.slider-product-card {
    background: white;
    border-radius: 12px; /* DAHA KÜÇÜK BORDER RADIUS */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* DAHA HAFİF GÖLGE */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.slider-product-card:hover {
    transform: translateY(-3px); /* DAHA AZ HOVER */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slider-product-card .product-image {
    position: relative;
    height: 180px; /* DAHA KÜÇÜK RESİM */
    overflow: hidden;
}

.slider-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-product-card:hover .product-image img {
    transform: scale(1.03); /* DAHA AZ ZOOM */
}

.discount-badge {
    position: absolute;
    top: 10px; /* DAHA KÜÇÜK */
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 4px 10px; /* DAHA KÜÇÜK PADDING */
    border-radius: 15px;
    font-size: 0.7rem; /* DAHA KÜÇÜK FONT */
    font-weight: bold;
}

.slider-product-card .product-info {
    padding: 15px; /* DAHA AZ PADDING */
}

.product-title {
    font-size: 0.95rem; /* DAHA KÜÇÜK FONT */
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
    height: 40px; /* DAHA KÜÇÜK YÜKSEKLİK */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-pricing {
    margin-bottom: 12px;
}

.current-price {
    font-size: 1.1rem; /* DAHA KÜÇÜK FONT */
    font-weight: bold;
    color: #2d3436;
}

.compare-price {
    font-size: 0.9rem; /* DAHA KÜÇÜK FONT */
    color: #636e72;
    text-decoration: line-through;
    margin-left: 6px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.view-product-btn {
    background: #0984e3;
    color: white;
    padding: 6px 12px; /* DAHA KÜÇÜK PADDING */
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem; /* DAHA KÜÇÜK FONT */
    transition: background 0.3s ease;
    flex: 1;
    text-align: center;
}

.view-product-btn:hover {
    background: #0770c4;
    color: white;
}

.add-to-cart-slider {
    background: #00b894;
    color: white;
    border: none;
    width: 35px; /* DAHA KÜÇÜK */
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.add-to-cart-slider:hover {
    background: #00a085;
}

/* Swiper Navigation - DAHA KÜÇÜK */
.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    color: #000000;
    background: #e0e0e0;
    width: 40px; /* DAHA KÜÇÜK */
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
    font-size: 1rem; /* DAHA KÜÇÜK */
}

.product-slider .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 8px; /* DAHA KÜÇÜK */
    height: 8px;
}

.product-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .product-slider-section {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .product-slider {
        padding: 0 20px;
    }
    
    .slider-product-card .product-image {
        height: 150px;
    }
    
    .product-slider-section .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 1200px) {
    .quick-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-features .feature-item:nth-child(3) {
        border-right: none;
    }
    
    .bedrucken-grid,
    .personalize-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .six-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .designs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tshirts-bedrucken,
    .personalize-section,
    .six-categories-section,
    .favorite-designs-section,
    .all-tshirts-section {
        padding: 40px 0;
    }
    
    .tshirts-bedrucken .section-header h2,
    .personalize-section .section-header h2,
    .six-categories-section .section-header h2,
    .favorite-designs-section .section-header h2,
    .all-tshirts-section .section-header h2 {
        font-size: 2rem;
    }
    
    .quick-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-features .feature-item:nth-child(2) {
        border-right: none;
    }
    
    .quick-features .feature-item {
        padding: 10px 8px;
        min-height: 50px;
    }
    
    .bedrucken-grid,
    .personalize-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .six-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .designs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .all-products-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quick-features .features-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-features .feature-item {
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0;
        justify-content: flex-start;
        padding: 8px 15px;
    }
    
    .quick-features .feature-item:last-child {
        border-bottom: none;
    }
    
    .bedrucken-card .card-image,
    .personalize-card .card-image,
    .category-six-card .category-six-image,
    .design-card .design-image {
        height: 160px;
    }
    
    .tshirt-image {
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
    }
}
/* product_detail.php Stilleri */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #2c3e50;
    font-weight: 500;
}

/* Main Grid Layout */
.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Product Gallery */

.product-gallery {
    position: static !important;
}

.main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    cursor: crosshair;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.no-image-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    color: #6c757d;
}

.no-image-placeholder i {
    margin-bottom: 1rem;
    color: #dee2e6;
}

/* Mouse ile Zoom Efekti */
.zoomable-image {
    transition: transform 0.1s ease;
}

.main-image.zooming .zoomable-image {
    transform: scale(2);
}

/* Daha yüksek zoom için ek stil */
.main-image.high-zoom .zoomable-image {
    transform: scale(4);
}

.thumbnail-gallery {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #667eea;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    transform: translateY(-2px);
    border-color: #667eea;
}

/* Product Info */
.product-info {
    padding: 0 0.5rem;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Pricing - ÜST KISIM FİYAT STİLİ */

/* Product Pricing Top */
.product-pricing-top {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.current-price-top {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    display: block;
    margin-bottom: 0.25rem;
}

.price-includes-tax {
    font-size: 0.85rem;
    color: #6c757d;
    display: block;
}

.compare-price-top {
    font-size: 1.1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-saving-top {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
/* Shipping Costs Popup */
.shipping-costs-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.shipping-costs-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    z-index: 10001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    background: #f5f5f5;
    border-radius: 50%;
}

.shipping-modal-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
}

.shipping-modal-header .back-button {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.shipping-modal-body {
    padding: 0;
    max-height: calc(80vh - 60px);
    overflow-y: auto;
}

.shipping-table-container {
    padding: 15px;
}

.shipping-costs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    line-height: 1.3;
}

.shipping-costs-table th {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 8px 6px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.shipping-costs-table td {
    border: 1px solid #dee2e6;
    padding: 8px 6px;
    text-align: center;
}

.shipping-costs-table .country-header td {
    background: #e9ecef;
    font-weight: 600;
    text-align: left;
    padding: 6px 8px;
    border-left: none;
    border-right: none;
}

.shipping-costs-table .country-name {
    background: #f8f9fa;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
}

.shipping-info-note {
    padding: 12px 15px;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    font-size: 11px;
    line-height: 1.4;
    color: #666;
}

.shipping-info-note p {
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 480px) {
    .shipping-costs-content {
        width: 95%;
        margin: 10px;
    }
    
    .shipping-costs-table {
        font-size: 11px;
    }
    
    .shipping-costs-table th,
    .shipping-costs-table td {
        padding: 6px 4px;
    }
}

/* Scrollbar styling */
.shipping-modal-body::-webkit-scrollbar {
    width: 4px;
}

.shipping-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.shipping-modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

/* Selection Section */
.selection-section {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.section-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-link {
    font-size: 0.85rem;
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.size-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.size-link i {
    margin-right: 4px;
}

/* Farbe wählen: - Shirtinator Stili */
.color-selection-section {
    margin-bottom: 1.5rem;
}

.color-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.color-selection-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.selected-color-info {
    font-size: 0.85rem;
    color: #6c757d;
}

.selected-color-name {
    font-weight: 600;
    color: #2c3e50;
}

.color-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 60px);
    gap: 8px;
    margin-top: 0.5rem;
}

.color-option-item {
    text-align: center;
}

.color-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 70px;
    width: 60px;
    box-sizing: border-box;
    position: relative;
}

.color-option-label:hover {
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.15);
}

.color-option-item input[type="radio"]:checked + .color-option-label {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.color-option-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 4px;
    border: 1px solid #f8f9fa;
}

.color-option-swatch {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 4px;
    border: 1px solid #f8f9fa;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.color-option-text {
    font-size: 0.65rem;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Größe wählen: - Yatay Kutular, İçeriğe Sığacak */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.75rem;
}

.size-option {
    text-align: center;
    flex: 0 0 auto;
}

.size-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    min-width: 60px;
    box-sizing: border-box;
    position: relative;
}

.size-label:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}

.size-option input[type="radio"]:checked + .size-label {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    color: #2c3e50;
}

.size-text {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.85rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.size-price {
    display: block;
    font-size: 0.65rem;
    color: #28a745;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 1px 4px;
    border-radius: 6px;
    margin-bottom: 1px;
    line-height: 1.1;
}

.size-stock {
    display: block;
    font-size: 0.6rem;
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
    padding: 1px 3px;
    border-radius: 4px;
    line-height: 1.1;
}

.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
}

.out-of-stock:hover {
    transform: none;
    border-color: #e9ecef;
    box-shadow: none;
}

/* Radio Input Styling */
.color-option-item input[type="radio"],
.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Fit Info Section */
.fit-info-section {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.fit-scale {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 12px;
}

.fit-scale span:first-child,
.fit-scale span:last-child {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.8rem;
    min-width: 35px;
}

.fit-scale > div {
    flex: 1;
    position: relative;
}

.fit-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.fit-labels span {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: 500;
}

#fitValue {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Range Input Styling */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(to right, #dc3545, #ffc107, #28a745);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Action Buttons */
.design-section {
    margin: 1.5rem 0;
}

.design-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.design-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Purchase Section */
.purchase-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
    align-items: end;
}

.quantity-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85rem;
}

.quantity-input {
    padding: 0.625rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.cart-section {
    display: flex;
    align-items: flex-end;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Delivery Info */
.product--delivery {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.delivery--information {
    margin: 0.375rem 0;
}

.delivery--text {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.85rem;
}

.delivery--status-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.delivery--status-available {
    background: #28a745;
}

.delivery--status-available-express {
    background: #007bff;
}

/* Trust Elements */
.trust-element {
    margin: 1.5rem 0;
    text-align: center;
}

.trust-element img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
}

/* Size Table Popup */
.size-table-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.size-table-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0.25rem;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
    font-size: 0.85rem;
}

.size-table th,
.size-table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.size-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Product Description */
.product-description {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.product-description h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-description p {
    line-height: 1.6;
    color: #495057;
    font-size: 0.9rem;
}

/* Error Container */
.error-container {
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.error-container h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-container p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.error-container .btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin: 0 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.error-container .btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* Zoom Indicator Styles */
#zoomIndicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Yüksek zoom için cursor değişikliği */
.main-image.high-zoom {
    cursor: zoom-out;
}

/* Zoom seviyeleri için smooth transition */
.zoomable-image {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-gallery {
        position: static;
    }
    
    .color-options-grid {
        grid-template-columns: repeat(auto-fill, 55px);
        gap: 6px;
    }
    
    .color-option-label {
        height: 65px;
        width: 55px;
        padding: 6px 3px;
    }
    
    .color-option-image,
    .color-option-swatch {
        width: 35px;
        height: 35px;
    }
    
    .color-option-text {
        font-size: 0.6rem;
    }
    
    .size-options {
        gap: 6px;
    }
    
    .size-label {
        padding: 6px 10px;
        min-height: 45px;
        min-width: 55px;
    }
    
    .purchase-section {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .selection-section {
        padding: 1rem;
    }
    
    /* Mobile'da zoom'u devre dışı bırak */
    .main-image.zooming .zoomable-image {
        transform: scale(1) !important;
    }
    
    .main-image {
        cursor: default !important;
    }
}

@media (max-width: 480px) {
    .product-detail-container {
        padding: 10px;
    }
    
    .color-options-grid {
        grid-template-columns: repeat(auto-fill, 50px);
    }
    
    .color-option-label {
        height: 60px;
        width: 50px;
        padding: 5px 2px;
    }
    
    .color-option-image,
    .color-option-swatch {
        width: 30px;
        height: 30px;
    }
    
    .color-option-text {
        font-size: 0.55rem;
    }
    
    .size-label {
        padding: 5px 8px;
        min-height: 40px;
        min-width: 50px;
    }
    
    .size-text {
        font-size: 0.8rem;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
}

/* Touch device detection - Disable zoom */
@media (hover: none) and (pointer: coarse) {
    .main-image {
        cursor: default;
    }
}
/* ===== BÜYÜK VERTICAL GALLERY STİLLERİ ===== */
.product-gallery-vertical-large {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-left: -50px;
    margin-right: 20px;
}

.thumbnail-gallery-vertical-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 120px;
    flex-shrink: 0;
    margin-left: 50px;
}

.thumbnail-vertical-large {
    width: 120px;
    height: 120px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-vertical-large:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.thumbnail-vertical-large.active {
    border-color: #007bff;
    border-width: 3px;
    transform: scale(1.05);
}

.thumbnail-vertical-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-container-large {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.main-image-vertical-large {
    width: 100%;
    max-width: 600px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-image-vertical-large img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
    object-fit: contain;
}

.no-image-placeholder-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    color: #6c757d;
    font-size: 16px;
}

/* Grid yapısını güncelle */
.product-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* Zoom container için stiller */
#zoomContainer {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

#zoomContainer.zooming {
    cursor: zoom-in;
}

#zoomContainer.high-zoom {
    cursor: zoom-out;
}

.zoomable-image {
    transition: transform 0.1s ease;
    will-change: transform;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-gallery-vertical-large {
        margin-left: -30px;
        gap: 20px;
    }
    
    .thumbnail-gallery-vertical-large {
        width: 100px;
    }
    
    .thumbnail-vertical-large {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 1024px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery-vertical-large {
        margin-left: 0;
        margin-right: 0;
    }
    
    .thumbnail-gallery-vertical-large {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .product-gallery-vertical-large {
        flex-direction: column-reverse;
        gap: 15px;
    }
    
    .thumbnail-gallery-vertical-large {
        flex-direction: row;
        width: 100%;
        order: 2;
        overflow-x: auto;
        padding: 10px 0;
        gap: 10px;
    }
    
    .thumbnail-vertical-large {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }
    
    .main-image-vertical-large {
        max-width: 100%;
    }
    
    .main-image-vertical-large img {
        min-height: 300px;
    }
    
    .no-image-placeholder-large {
        height: 300px;
    }
    
    /* Mobile'da zoom'u devre dışı bırak */
    #zoomContainer {
        cursor: default !important;
    }
}

/* Scrollbar styling for thumbnails */
.thumbnail-gallery-vertical-large::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery-vertical-large::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-gallery-vertical-large::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.thumbnail-gallery-vertical-large::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* product_detail.php Stilleri */

/* note.php Stilleri */

        /* Header ve Footer için temel stiller */
        .simple-header {
            background: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .simple-header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .simple-logo a {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .simple-logo a i {
            color: #e74c3c;
        }
        
        .simple-nav {
            display: flex;
            gap: 20px;
        }
        
        .simple-nav a {
            color: #34495e;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .simple-nav a:hover {
            background: #f8f9fa;
            color: #e74c3c;
        }
        
        .simple-footer {
            background: #2c3e50;
            padding: 40px 0 20px;
            margin-top: 80px;
            color: white;
        }
        
        .simple-footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        
        .simple-footer p {
            margin: 5px 0;
            color: #bdc3c7;
        }
        
        .simple-footer p:first-child {
            color: white;
            font-weight: 500;
            margin-bottom: 15px;
        }

        /* Wish List İçerik Stilleri */
        .main-content {
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .wishlist-content {
            max-width: 600px;
            width: 100%;
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        
        .sh--wishlist-icon {
            margin-bottom: 30px;
        }
        
        .sh--wishlist-icon i {
            font-size: 80px;
            color: #e74c3c;
            background: linear-gradient(135deg, #ffece9, #fff5f5);
            padding: 30px;
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
            border: 3px solid #ffece9;
        }
        
        .wishlist-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        
        .wishlist-description {
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .wishlist-description p {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 15px;
        }
        
        .text-warning {
            color: #e67e22;
            font-weight: 500;
            font-size: 1rem;
            background: #fef9e7;
            padding: 12px 20px;
            border-radius: 8px;
            display: inline-block;
            border: 1px solid #f9e79f;
        }
        
        .wishlist-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            min-width: 250px;
        }
        
        .btn i {
            margin-left: 12px;
            transition: transform 0.3s ease;
        }
        
        .btn:hover i {
            transform: translateX(5px);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .is--primary {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .is--primary:hover {
            background: linear-gradient(135deg, #2980b9, #2471a3);
        }
        
        .is--large {
            padding: 18px 36px;
            font-size: 1.2rem;
        }
        
        .sh-designer-btn {
            background: linear-gradient(135deg, #2c3e50, #1a252f);
            color: white;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
        }
        
        .sh-designer-btn:hover {
            background: linear-gradient(135deg, #1a252f, #2c3e50);
        }
        
        .button-divider {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 300px;
            margin: 15px 0;
        }
        
        .divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, #bdc3c7, transparent);
        }
        
        .divider-text {
            padding: 0 20px;
            color: #95a5a6;
            font-size: 0.9rem;
            font-weight: 500;
            background: white;
        }
        
        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .simple-header .container {
                flex-direction: column;
                gap: 15px;
            }
            
            .simple-nav {
                gap: 10px;
            }
            
            .wishlist-content {
                padding: 40px 20px;
                margin: 20px;
            }
            
            .wishlist-title {
                font-size: 2rem;
            }
            
            .sh--wishlist-icon i {
                font-size: 60px;
                padding: 20px;
            }
            
            .btn {
                min-width: 200px;
                padding: 14px 28px;
            }
        }
        
        @media (max-width: 480px) {
            .wishlist-content {
                padding: 30px 15px;
            }
            
            .wishlist-title {
                font-size: 1.75rem;
            }
            
            .wishlist-description p {
                font-size: 1rem;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
            }
            
            .button-divider {
                max-width: 250px;
            }
        }
/* note.php Stilleri */

/* customers-account.php Stilleri */
/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    line-height: 1.6;
}

/* Container Optimierungen - Minimum Boşluk */
.page-wrap {
    min-height: 80vh;
    padding: 0;
}

.content-main.container.block-group {
    max-width: 100%;
    padding: 0 80px;
    margin: 0 auto;
}

.content-main--inner {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Shirtinator Style Layout - Minimum Boşluk */
.account--container {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 60px;
}

.account--columns {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.account--login-column {
    flex: 0 0 350px;
    background: transparent !important;
}

.account--register-column {
    flex: 1;
    background: transparent !important;
    min-width: 0;
}

/* Panel Styles */
.panel {
    background: transparent !important;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.panel.has--border {
    border: 1px solid #e0e0e0;
    background: transparent !important;
}

.panel.is--rounded {
    border-radius: 8px;
}

.panel--title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    padding: 18px 20px;
    margin: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.panel--title.is--underline {
    border-bottom: 2px solid #007bff;
}

.panel--body {
    padding: 18px 20px;
    background: transparent !important;
}

.panel--body.is--wide {
    padding: 20px;
}

/* Accordion Styles */
.sh--accordion-container {
    margin-bottom: 0;
    height: 100%;
}

.sh--accordion-container.is--active .sh--accordion-content {
    display: block;
}

.sh--accordion-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 12px 18px;
    border: 1px solid #007bff;
    background: #007bff;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.sh--accordion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: #0056b3;
    border-color: #0056b3;
}

.sh--accordion-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    font-size: 0.85rem;
    background: #007bff;
    color: white;
}

.btn.is--small {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.btn.is--large {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn.is--primary {
    background: #007bff;
    color: white;
}

.btn.is--primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn.is--secondary {
    background: #6c757d;
    color: white;
}

.btn.is--secondary:hover {
    background: #545b62;
}

/* Form Styles */
.register--form {
    max-width: 100%;
}

.register--field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.register--field:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.register--field.is--required {
    border-left: 3px solid #007bff;
}

.register--login-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    box-sizing: border-box;
}

/* Select Field Styles */
.select-field {
    position: relative;
    margin-bottom: 12px;
}

.select-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
    appearance: none;
    cursor: pointer;
}

.select-field::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 0.8rem;
}

/* Checkbox Styles */
.register--checkbox {
    margin-right: 6px;
}

.chklabel {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

.chklabel.is--bold {
    font-weight: 600;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert.is--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert.is--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert.is--rounded {
    border-radius: 6px;
}

.alert--icon {
    font-size: 1.1rem;
}

.alert--content {
    flex: 1;
    font-size: 0.9rem;
}

.alert--content p {
    margin: 0;
}

/* Password Generator Styles */
.register--password-generator {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.password-generator--header {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.password-generator--controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.password-display {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.generated-password-field {
    flex: 1;
    min-width: 180px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-family: monospace;
    font-size: 0.9rem;
}

.password-action-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.password-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.use-password-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.password-security-info {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Required Info */
.required_fields {
    color: #666;
    font-size: 0.8rem;
    margin: 15px 0;
    line-height: 1.4;
}

.required_fields small {
    font-size: 0.75rem;
}

/* Content Block */
.content.block {
    background: transparent !important;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.content.block.has--border {
    border: 1px solid #e0e0e0;
}

/* Register Specific Styles */
.register--content {
    background: transparent !important;
    height: 100%;
}

.register--customertype,
.register--salutation,
.register--firstname,
.register--lastname,
.register--email,
.register--companyname,
.register--department,
.register--vatId,
.register--street,
.register--additional-line1,
.register--zip-city,
.register--country {
    margin-bottom: 12px;
}

.register--zip-city {
    display: flex;
    gap: 12px;
}

.register--zip-city .register--field {
    flex: 1;
}

.register--spacer {
    margin-right: 0;
}

/* Login Form Optimierungen */
.register--existing-customer,
.register--new-customer {
    height: 100%;
}

/* Minimum Boşluk için Ek Optimizasyonlar */
.register--login-action,
.register--action {
    margin-top: 15px;
}

.register--login-lostpassword {
    margin-top: 10px;
}

.register--check {
    margin: 12px 0;
}

.register--alt-shipping {
    margin: 15px 0 0 0;
}

/* Account Dashboard Styles */
.account-dashboard {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    min-height: 600px;
    max-width: 1470px;
    margin: 0 auto;
    padding: 20px;
}

/* Genişletilmiş Account Sidebar */
.account-sidebar {
    flex: 0 0 320px;
    background: #fffff;
    color: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
    overflow: hidden;
}

.sidebar-header {
    padding: 2rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.user-welcome h2 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: black;
}

.user-email {
    color: black;
    font-size: 0.9rem;
    margin: 0;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin: 0.25rem 0;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: black;
    border-left-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.menu-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: black;
    border-left-color: #4ade80;
    font-weight: 600;
}

.menu-link.active::before {
    content: '';
    position: absolute;
    right: 1.5rem;
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.menu-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-link:hover .menu-icon {
    transform: scale(1.1);
}

.menu-text {
    flex: 1;
    font-size: 0.95rem;
}

.order-count,
.wishlist-count {
    background: #ef4444;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.menu-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

/* Logout Link */
.logout-link {
    color: black;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.logout-link:hover {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-support h4 {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    color: black;
    text-align: center;
}

.customer-support p {
    font-size: 0.85rem;
    margin: 0.5rem 0;
    color: black;
    text-align: center;
}

.support-phone,
.support-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.support-hours {
    font-size: 0.8rem;
    color: black;
    text-align: center;
    margin-top: 0.5rem;
}

/* Quick Stats */
.sidebar-stats {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 0.75rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
    background: black;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Account Content */
.account-content {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.content-section.active {
    display: block;
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
}

.section-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.section-header p {
    color: #666;
    margin-bottom: 0.5rem;
}

.order-info {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.dashboard-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    animation: fadeInUp 0.5s ease-out;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.dashboard-card h3 {
    color: #333;
    margin-bottom: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.dashboard-card .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.user-info {
    line-height: 1.6;
    color: #555;
}

.user-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.user-info p:last-child {
    margin-bottom: 0;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
}

.welcome-section h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
}

.welcome-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Form Sections */
.personal-data-form {
    max-width: 800px;
}

.form-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-section h3 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.form-actions {
    margin-top: 1.5rem;
    text-align: right;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 1rem;
    max-width: 600px;
}

.payment-method {
    background: #fff;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method input[type="radio"]:checked + label {
    color: #007bff;
}

.payment-method input[type="radio"]:checked + label .payment-icon {
    background: #007bff;
    color: white;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 1.2rem;
}

.payment-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-description {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: normal;
}

/* Addresses */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.address-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.address-type {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.address-content p {
    margin: 0.5rem 0;
    color: #333;
}

.address-actions {
    margin-top: 1rem;
    text-align: right;
}

.address-actions-main {
    text-align: center;
}

/* Orders */
.orders-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.status-cancelled {
    color: #dc3545;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 15px;
    width: 100%;
}

.mobile-menu-toggle:hover {
    background: #5a6fd8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .account--columns {
        gap: 15px;
    }
    
    .account--login-column {
        flex: 0 0 320px;
    }
    
    .account-dashboard {
        gap: 20px;
    }
    
    .account-sidebar {
        flex: 0 0 280px;
    }
    
    .content-main.container.block-group {
        padding: 0 50px;
    }
}

@media (max-width: 968px) {
    .account--columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .account--login-column,
    .account--register-column {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .account--container {
        padding: 10px 20px;
    }
    
    .account-dashboard {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .account-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .sidebar-nav {
        display: none;
    }
    
    .sidebar-nav.mobile-open {
        display: block;
    }
    
    .register--zip-city {
        flex-direction: column;
        gap: 8px;
    }
    
    .password-display {
        flex-direction: column;
        align-items: stretch;
    }
    
    .password-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .panel--body {
        padding: 15px;
    }
    
    .panel--title {
        padding: 15px;
        font-size: 1.3rem;
    }
    
    .btn.is--large {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .orders-table {
        overflow-x: auto;
    }
    
    .order-product {
        flex-direction: column;
        text-align: center;
    }
    
    .product-image {
        align-self: center;
    }
    
    .section-header h1 {
        font-size: 1.5rem;
    }
    
    .payment-method label {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .welcome-section {
        padding: 20px;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .account-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .content-main.container.block-group {
        padding: 0 20px;
    }
    
    .account--container {
        padding: 8px 15px;
    }
    
    .account-dashboard {
        padding: 10px;
    }
    
    .account-sidebar {
        padding: 0;
    }
    
    .sidebar-header h2 {
        font-size: 1.1rem;
    }
    
    .menu-text {
        font-size: 0.9rem;
    }
    
    .account-content {
        padding: 15px;
    }
    
    .register--field,
    .register--login-field {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .sh--accordion-btn {
        margin: 10px 15px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .panel--body {
        padding: 12px 15px;
    }
    
    .panel--title {
        padding: 12px 15px;
        font-size: 1.2rem;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .welcome-section {
        padding: 15px;
    }
    
    .sidebar-menu a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Animation for Dashboard Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card:nth-child(1) { animation-delay: 0.1s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.3s; }
.dashboard-card:nth-child(4) { animation-delay: 0.4s; }
.dashboard-card:nth-child(5) { animation-delay: 0.5s; }

/* Scrollbar Styling */
.account-sidebar::-webkit-scrollbar {
    width: 6px;
}

.account-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.account-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.account-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Hidden Elements */
.is--hidden {
    display: none !important;
}

/* Required field indicator */
.is--required {
    border-left: 3px solid #dc3545 !important;
}
/* customers-account.php Stilleri */