/* HAIR CLASS MAN - Ana Stil Dosyası */

/* CSS Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Değişkenleri (Renk Paleti) - PRD v1.0 */
:root {
    /* Ana Renk Paleti (4 Renk) */
    --ral-6005: #0B4619;         /* RAL 6005 - Koyu Yeşil (Footer, Fiyatlar, Vurgular) */
    --ral-6003: #4F6F52;         /* RAL 6003 - Zeytin Yeşili (Butonlar, Hover) */
    --matte-black: #1C1C1C;      /* Mat Siyah (Header, Başlıklar) */
    --greige: #ACA89A;           /* Gri-Bej (Logo, Menu, İkonlar, Etiketler) */
    
    /* Yardımcı Renkler */
    --white: #ffffff;            /* Beyaz (Arka plan, Buton yazıları) */
    --text-dark: #3A3A3A;        /* Açık Siyah (Normal metinler) */
    --border-light: #ACA89A;     /* Kenarlıklar */
    
    /* Eski değişkenleri yeni palete map et */
    --primary-color: var(--ral-6003);    /* Ana renk */
    --secondary-color: var(--ral-6005);  /* İkincil renk */
    --accent-color: var(--ral-6003);     /* Vurgu rengi */
    --text-color: var(--matte-black);    /* Ana metin */
    --light-gray: #F5F5F5;               /* Arka plan */
    --dark-gray: var(--matte-black);     /* Koyu gri */
}

/* Temel Tipografi */
body {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Başlık Stilleri */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

/* Bağlantı Stilleri */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--ral-6003);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--ral-6005);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--ral-6003);
    border: 2px solid var(--ral-6003);
}

.btn-secondary:hover {
    background-color: var(--ral-6003);
    color: var(--white);
    transform: translateY(-1px);
}

/* Container ve Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Sınıfları */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Gizleme Sınıfları */
.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Header Stilleri - PRD Modern Renk Şeması */
.header-container {
    background-color: var(--matte-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(0);
    transition: all 0.3s ease, transform 0.3s ease;
}

.header-container.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(10px);
}

.header-container .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 60px;
    position: relative;
}

/* Logo Stilleri - Gri-Bej */
.logo {
    flex: 0 0 auto;
    min-width: 200px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.logo a {
    color: var(--greige);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.logo a:hover {
    color: var(--white);
    transform: scale(1.05);
}

.header-container.scrolled .logo h1 {
    font-size: 1.4rem;
}

/* Ana Navigasyon */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

/* Mobil-only öğeleri desktop'ta gizle */
.nav-menu li.mobile-only {
    display: none;
}

.nav-menu li a {
    color: var(--greige);
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap !important;
    display: inline-block;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    background-color: rgba(79, 111, 82, 0.2);
    color: var(--ral-6003);
    outline: none;
}

.nav-menu li a:focus {
    box-shadow: 0 0 0 2px var(--ral-6003);
}

.nav-menu li a.active {
    background-color: var(--ral-6003);
    color: var(--white);
    font-weight: 600;
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background-color: var(--light-gray);
    outline: none;
}

.mobile-menu-toggle:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Aksiyonları */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 0 0 auto;
    min-width: 200px;
    justify-content: flex-end;
}

/* Header İkonları (Trend Stili) - Gri-Bej */
.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--greige);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem;
}

.header-icon:hover {
    color: var(--ral-6003);
}

.icon-label {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Giriş Yap İkonu (Trend Stili - Normal) */
.membership-icon {
    /* Diğer ikonlarla aynı stil */
}

.membership-icon:hover {
    color: var(--accent-color);
}

/* Header Arama Satırı (Alt) */
.header-search-row {
    background: var(--light-gray);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.header-search-row .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar-full {
    position: relative;
    width: auto;
    max-width: 600px;
    min-width: 500px;
}

.search-bar-full .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    pointer-events: none;
    z-index: 1;
}

.search-input-full {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
}

.search-input-full:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.1);
}

.search-results-full {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results-full.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: var(--light-gray);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--light-gray);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.search-result-price {
    color: var(--accent-color);
    font-weight: 700;
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--dark-gray);
}

/* Arama Container */
.search-container {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover,
.search-toggle:focus {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    outline: none;
}

.search-toggle:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.search-results {
    margin-top: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.search-result-item:hover {
    background-color: var(--light-gray);
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--light-gray);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.search-result-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--dark-gray);
}

/* Wishlist İkonu */
.wishlist-icon {
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-icon:hover,
.wishlist-icon:focus {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    outline: none;
}

.wishlist-icon:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-count.hidden {
    display: none;
}

/* Sepet İkonu */
.cart-icon {
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon:hover,
.cart-icon:focus {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    outline: none;
}

.cart-icon:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--ral-6005);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count.hidden {
    display: none;
}

/* Randevu Butonu */
.appointment-btn {
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
}

.appointment-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent-color);
}

/* Body padding (fixed header için) */
body {
    padding-top: 100px;
}

/* Mobil Header Stilleri */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem 0;
    }
    
    .header-container.scrolled {
        padding: 0.8rem 0;
    }
    
    body {
        padding-top: 90px;
    }
    
    .logo {
        min-width: auto;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .main-nav {
        margin: 0;
        order: 3;
    }
    
    /* Nav-menu stilleri mobile.css'te tanımlı */
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .header-actions {
        gap: 0.5rem;
        order: 1;
        min-width: auto;
        justify-content: flex-start;
    }
    
    .appointment-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .cart-icon {
        font-size: 1.3rem;
        padding: 0.3rem;
    }
    
    /* Mobil menü açıkken body scroll'u engelle */
    body.menu-open {
        overflow: hidden;
    }
}

/* Büyük Ekran Header Stilleri */
@media (min-width: 1200px) {
    .header-container .container {
        max-width: 1400px;
    }
    
    .logo {
        min-width: 250px;
    }
    
    .main-nav {
        margin: 0 3rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu li a {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    .header-actions {
        min-width: 250px;
        gap: 1.5rem;
    }
    
    .appointment-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Tablet Header Stilleri */
@media (min-width: 769px) and (max-width: 1199px) {
    .main-nav {
        margin: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu li a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .appointment-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .header-actions {
        min-width: 180px;
    }
}

/* ========================================
   ÜRÜN KARTLARI (TREND STİLİ)
   ======================================== */
.product-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--light-gray);
}

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

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

/* İndirim Badge */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

/* Ücretsiz Kargo Badge */
.free-shipping-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ral-6003);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 2;
}

/* Stok Tükendi Badge */
.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(28, 28, 28, 0.9);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Düşük Stok Badge */
.low-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ral-6003);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

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

/* Stokta olmayan ürün kartı */
.product-card.out-of-stock {
    opacity: 0.6;
}

.product-card.out-of-stock .product-image {
    filter: grayscale(50%);
}

/* Ürün Aksiyonları (Hover'da görünür) */
.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
}

.product-card:hover .product-actions {
    opacity: 1;
    visibility: visible;
}

.product-action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-action-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-action-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

/* Wishlist Butonu (Sağ üst köşe) */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--dark-gray);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

/* Ürün Bilgileri */
.product-info {
    padding: 1.2rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.product-old-price {
    font-size: 1rem;
    color: var(--dark-gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.product-tax-info {
    font-size: 0.75rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

/* Ürün Butonları */
.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-add-cart {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

.btn-quick-buy {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-buy:hover {
    background: var(--ral-6005);
    transform: translateY(-2px);
}

/* Quickview Modal */
.quickview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.quickview-modal.active {
    display: flex;
}

.quickview-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.quickview-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quickview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quickview-image {
    width: 100%;
    border-radius: 12px;
}

.quickview-details h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quickview-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.quickview-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.6rem 1rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--white);
}

.pagination-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   HESABIM SAYFASI
   ======================================== */
.account-page {
    padding: 2rem 0 4rem;
    min-height: 70vh;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.account-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.account-user-info {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 1.5rem;
}

.account-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.account-user-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.account-user-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.account-nav-link:hover {
    background: var(--light-gray);
    color: var(--accent-color);
}

.account-nav-link.active {
    background: var(--accent-color);
    color: var(--white);
}

.account-nav-link.logout-link {
    color: var(--secondary-color);
    margin-top: 1rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.account-content {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.account-section {
    display: none;
}

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

.account-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.account-form {
    max-width: 600px;
}

.orders-list, .appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-card, .appointment-card {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.order-card:hover, .appointment-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.address-card {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.address-card.default {
    border-color: var(--accent-color);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--dark-gray);
}

.empty-state svg {
    margin: 0 auto 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* ========================================
   YASAL SAYFALAR & FAQ
   ======================================== */
.legal-page {
    padding: 3rem 0;
    min-height: 60vh;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-intro {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.legal-section p, .legal-section li {
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-section ul, .legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ========================================
   BREADCRUMB NAVİGASYONU
   ======================================== */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 1rem 0;
    margin-top: -1rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.breadcrumb-list li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--accent-color);
}

.breadcrumb-list li:last-child {
    color: var(--accent-color);
    font-weight: 500;
}

/* Hero Section Stilleri */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    min-height: 2rem;
    position: relative;
}

.hero-subtitle::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--white);
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: float 3s ease-in-out infinite;
}

.hero-actions .btn:nth-child(2) {
    animation-delay: 0.5s;
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        min-width: 200px;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Hizmetler Önizleme */
.services-preview {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.services-preview h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Galeri Önizleme */
.gallery-preview {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-preview h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.8), rgba(231, 76, 60, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

/* İletişim Bilgileri */
.contact-info {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--white);
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        min-width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}/
* Hizmetler Sayfası Stilleri */

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hizmet Filtreleri */
.services-filters {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hizmetler Listesi */
.services-list {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

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

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

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

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-content {
    padding: 2rem;
}

.service-content .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.service-book-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

/* Fiyat Tablosu */
.price-table-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    display: block;
    visibility: visible;
}

.price-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.price-table {
    width: 100%;
    background-color: var(--white);
    border-collapse: collapse;
    font-size: 0.95rem;
    display: table;
}

.price-table th {
    background-color: var(--ral-6003);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: none;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.category-header td {
    background-color: var(--dark-gray);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-row:hover {
    background-color: rgba(243, 156, 18, 0.1);
}

.price-cell {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.popular-tag {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 10px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Randevu Çağrısı */
.appointment-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   NEWSLETTER & GÜVEN ROZETLERİ
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--ral-6003) 0%, var(--ral-6005) 100%);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    white-space: nowrap;
    background: var(--white);
    color: var(--accent-color);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-badge svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-text strong {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.trust-badge-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Footer Stilleri - RAL 6005 Koyu Yeşil */
.footer {
    background-color: var(--ral-6005);
    color: var(--greige);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--greige);
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--white);
}

.social-links a {
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--greige);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Hizmetler Sayfası */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1.5rem;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .price-table {
        font-size: 0.85rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.7rem 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0 5px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}/* M
odal Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 550px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--light-gray);
    background: linear-gradient(135deg, var(--primary-color), var(--dark-gray));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header-icon {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    flex-shrink: 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
    max-height: calc(95vh - 100px);
    overflow-y: auto;
}

/* Form Stilleri */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

.form-group select:disabled {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
}

/* Şifre Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--accent-color);
}

.password-toggle .eye-icon {
    width: 20px;
    height: 20px;
}

.field-error {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.form-actions .btn {
    min-width: 120px;
    padding: 12px 24px;
    font-weight: 600;
}

/* Sepet Modal Stilleri */
.cart-modal .modal-content {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
}

.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cart-items {
    padding: 1rem 0;
}

.cart-header {
    display: grid;
    grid-template-columns: 80px 1fr 80px 100px 40px;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cart-list {
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 80px 100px 40px;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.item-total {
    font-weight: 600;
    color: var(--secondary-color);
    text-align: right;
}

.item-remove {
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cart-summary {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.cart-total {
    margin-bottom: 1.5rem;
}

.cart-total > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cart-total .total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-top: 1px solid var(--primary-color);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cart-actions .btn {
    min-width: 140px;
}

/* Ürün Kartları */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-stock {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.product-stock.low-stock {
    color: var(--secondary-color);
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    font-weight: 600;
}

.add-to-cart-btn:disabled {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Mağaza Filtreleri */
.shop-filters {
    background-color: var(--light-gray);
    padding: 2rem 0;
}

.filters-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-sort-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
}

.search-box button {
    padding: 0.8rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.sort-box select {
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--white);
}

.price-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-range {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.price-range input[type="range"] {
    width: 150px;
}

.price-values {
    font-weight: 600;
    color: var(--primary-color);
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--dark-gray);
}

.loading-indicator {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Responsive Mağaza */
@media (max-width: 768px) {
    .cart-header,
    .cart-item {
        grid-template-columns: 60px 1fr 60px 80px 30px;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .cart-header {
        font-size: 0.85rem;
    }
    
    .item-details h4 {
        font-size: 0.85rem;
    }
    
    .item-price {
        font-size: 0.75rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .search-sort-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .price-filter {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-range {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-range input[type="range"] {
        width: 200px;
    }
}

/* Bildirim Stilleri */
.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    animation: notificationSlideIn 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.notification-success {
    border-left-color: #27ae60;
    background-color: #d5f4e6;
}

.notification-error {
    border-left-color: var(--secondary-color);
    background-color: #ffeaea;
}

.notification-warning {
    border-left-color: var(--accent-color);
    background-color: #fff8e1;
}

.notification-info {
    border-left-color: #3498db;
    background-color: #e3f2fd;
}

.notification-message {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--secondary-color);
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade-in animasyonları */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}ground-color: #fdf2f2;
}

.notification-warning {
    border-left-color: var(--accent-color);
    background-color: #fef9e7;
}

.notification-info {
    border-left-color: #3498db;
    background-color: #ebf3fd;
}

.notification-message {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Animasyonlar */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes notificationSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .notification-container {
        top: 80px;
        right: 10px;
        left: 10px;
    }
    
    .notification {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
}/
* Galeri Sayfası Stilleri */

/* Galeri Filtreleri */
.gallery-filters {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.gallery-filters .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Galeri Bölümü */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-image.lazy-load {
    opacity: 0.3;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(44, 62, 80, 0.9) 0%, 
        rgba(231, 76, 60, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.gallery-overlay-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-view-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Daha Fazla Yükle */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

/* Instagram CTA */
.instagram-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--matte-black) 0%, var(--ral-6005) 50%, var(--ral-6003) 100%);
    color: var(--white);
    text-align: center;
}

.instagram-cta .cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.instagram-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.instagram-cta .btn-large {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.instagram-cta .btn-large:hover {
    background: var(--white);
    color: var(--matte-black);
    transform: translateY(-3px);
}

/* Lightbox Stilleri */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
    display: none;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-info {
    margin-top: 2rem;
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.lightbox-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.lightbox-counter {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

/* Lightbox Animasyonları */
@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Galeri */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .gallery-overlay-content h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay-content p {
        font-size: 0.8rem;
    }
    
    .gallery-view-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .instagram-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Lightbox Mobil */
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-image-container {
        max-height: 60vh;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: auto;
        bottom: 20px;
        transform: none;
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-info {
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-filters .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .lightbox-image-container {
        max-height: 50vh;
    }
}/* Mağaz
a Sayfası Stilleri */

/* Mağaza Filtreleri */
.shop-filters {
    padding: 2rem 0;
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filters-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-sort-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--accent-color);
}

.search-box input {
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
    flex: 1;
    min-width: 250px;
}

.search-box button {
    background: var(--accent-color);
    border: none;
    padding: 10px 15px;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: var(--ral-6005);
}

.sort-box select {
    padding: 10px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    min-width: 200px;
}

.sort-box select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Fiyat Aralığı Filtresi */
.price-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-filter label {
    font-weight: 600;
    color: var(--primary-color);
}

.price-range {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.price-range input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--light-gray);
    outline: none;
    -webkit-appearance: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price-range input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price-values {
    font-weight: 600;
    color: var(--primary-color);
}

/* Ürünler Bölümü */
.products-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.results-info span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-stock {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-stock.low-stock {
    color: var(--secondary-color);
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:disabled {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
    transform: none;
}

/* Yükleme Göstergesi */
.loading-indicator {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Ürün Bulunamadı */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--dark-gray);
}

.no-products h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Öne Çıkan Ürünler */
.featured-products {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.featured-products h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Ürün Detay Modal */
.product-modal-content {
    max-width: 800px;
    width: 95%;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-image-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-info-section .product-price {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-info-section .product-stock {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-info-section p {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.quantity-selector {
    margin-bottom: 2rem;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-controls input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-controls input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.product-actions {
    margin-top: 1rem;
}

/* Responsive Mağaza */
@media (max-width: 768px) {
    .filters-row {
        gap: 1rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .category-filters .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .search-sort-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box input {
        min-width: auto;
    }
    
    .sort-box select {
        min-width: auto;
        width: 100%;
    }
    
    .price-range {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Modal Responsive */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image-section img {
        height: 250px;
    }
    
    .results-info {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .category-filters .filter-btn {
        width: 200px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
}/* S
epet Modal Stilleri */
.cart-modal .modal-content {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
}

.cart-content {
    min-height: 300px;
}

/* Boş Sepet */
.empty-cart {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--dark-gray);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-cart p {
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Sepet Öğeleri */
.cart-items {
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 100px 50px;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 100px 100px 50px;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    align-items: center;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.item-price {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 20px;
    text-align: center;
}

.item-total {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-align: right;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.remove-btn:hover {
    background-color: var(--secondary-color);
    opacity: 1;
    transform: scale(1.1);
}

/* Sepet Özeti */
.cart-summary {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.cart-total {
    margin-bottom: 2rem;
}

.cart-total > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total > div:last-child {
    border-bottom: none;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.subtotal span:first-child,
.shipping span:first-child {
    color: var(--dark-gray);
    font-weight: 500;
}

.subtotal span:last-child,
.shipping span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.cart-actions .btn {
    flex: 1;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sepet Scroll Bar */
.cart-list::-webkit-scrollbar {
    width: 6px;
}

.cart-list::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.cart-list::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.cart-list::-webkit-scrollbar-thumb:hover {
    background: var(--ral-6005);
}

/* Responsive Sepet */
@media (max-width: 768px) {
    .cart-modal .modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .cart-header {
        grid-template-columns: 60px 1fr 80px 80px 40px;
        gap: 0.5rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr 80px 80px 40px;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .item-image img {
        width: 50px;
        height: 50px;
    }
    
    .item-details h4 {
        font-size: 0.9rem;
    }
    
    .item-price {
        font-size: 0.8rem;
    }
    
    .quantity-btn {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .quantity {
        font-size: 0.9rem;
    }
    
    .item-total {
        font-size: 1rem;
    }
    
    .remove-btn {
        font-size: 1rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-summary {
        padding: 1rem;
    }
    
    .empty-cart {
        padding: 2rem 1rem;
    }
    
    .empty-cart-icon {
        font-size: 3rem;
    }
    
    .empty-cart h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .cart-header {
        grid-template-columns: 50px 1fr 70px 70px 35px;
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .cart-item {
        grid-template-columns: 50px 1fr 70px 70px 35px;
        padding: 0.6rem;
    }
    
    .item-image img {
        width: 40px;
        height: 40px;
    }
    
    .item-details h4 {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .item-price {
        font-size: 0.7rem;
    }
    
    .quantity-btn {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
    
    .quantity {
        font-size: 0.8rem;
        min-width: 15px;
    }
    
    .item-total {
        font-size: 0.9rem;
    }
    
    .cart-total > div {
        font-size: 0.9rem;
    }
    
    .cart-total > div:last-child {
        font-size: 1.1rem;
    }
}

/* Sepet Animasyonları */
@keyframes cartBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.cart-icon.bounce {
    animation: cartBounce 0.6s ease;
}

/* Sepet Badge Animasyonu */
@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-count:not(.hidden) {
    animation: badgePulse 0.3s ease;
}/* Sip
ariş Modal Stilleri */
.checkout-modal .modal-content {
    max-width: 900px;
    width: 95%;
    max-height: 95vh;
}

/* Adım Göstergesi */
.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    padding: 1rem;
    transition: all 0.3s ease;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step.completed::after {
    background-color: var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--accent-color);
    color: var(--white);
}

.step.completed .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
}

.step.active .step-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sipariş Adımları */
.checkout-step {
    padding: 2rem 0;
}

.checkout-step h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Sipariş Formu */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.checkout-form .form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

/* Ödeme Yöntemleri */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.payment-method {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-method.selected {
    border-color: var(--accent-color);
    background-color: rgba(243, 156, 18, 0.1);
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.payment-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.payment-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Sipariş Özeti */
.order-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-section {
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.summary-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.summary-section p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-row.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Sipariş Aksiyonları */
.checkout-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.checkout-actions .btn {
    min-width: 120px;
    padding: 12px 24px;
    font-weight: 600;
}

.checkout-actions .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sipariş Onayı */
.order-confirmation {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin: 1rem 0;
}

.order-confirmation h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.order-confirmation p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

/* Responsive Sipariş */
@media (max-width: 768px) {
    .checkout-modal .modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1rem;
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .payment-method {
        padding: 0.8rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .payment-info h4 {
        font-size: 1rem;
    }
    
    .payment-info p {
        font-size: 0.8rem;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkout-actions .btn {
        width: 100%;
    }
    
    .checkout-step {
        padding: 1.5rem 0;
    }
    
    .checkout-step h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .checkout-modal .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .checkout-steps {
        padding: 0.5rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .checkout-form input,
    .checkout-form select,
    .checkout-form textarea {
        padding: 10px 12px;
    }
    
    .payment-method {
        padding: 0.6rem;
    }
    
    .summary-section {
        padding: 0.8rem;
    }
    
    .order-confirmation {
        padding: 1.5rem;
    }
}/* İ
letişim Sayfası Stilleri */

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Çalışma Saatleri */
.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-note {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-style: italic;
}

/* İletişim Formu */
.contact-form-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-form-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.contact-form label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-actions {
    margin-top: 1rem;
}

.contact-form .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

/* Harita Bölümü */
.map-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.embedded-map {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.embedded-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 250px;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.map-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
}

/* Instagram Bölümü */
.instagram-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--matte-black) 0%, var(--ral-6005) 50%, var(--ral-6003) 100%);
    color: var(--white);
}

.instagram-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.instagram-section p {
    margin-bottom: 3rem;
    opacity: 0.9;
}

.instagram-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Instagram Feed */
.instagram-feed {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.instagram-loading {
    text-align: center;
    padding: 3rem;
    color: var(--white);
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.instagram-post {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.post-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.instagram-post:hover .post-image img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    color: var(--white);
    font-weight: 600;
}

.post-info {
    padding: 1rem;
}

.post-caption {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-date {
    font-size: 0.8rem;
    opacity: 0.7;
}

.instagram-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Instagram Profil */
.instagram-profile {
    background: var(--matte-black);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.profile-header {
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
}

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

.profile-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.profile-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
}

.profile-actions .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.profile-actions .btn:hover {
    background: var(--white);
    color: #833ab4;
}

/* SSS Bölümü */
.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-gray);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive İletişim */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instagram-posts {
        grid-template-columns: 1fr;
    }
    
    .profile-stats {
        gap: 1rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-form-section {
        padding: 1rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
    
    .instagram-section {
        padding: 3rem 0;
    }
    
    .instagram-feed,
    .instagram-profile {
        padding: 1.5rem;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
}/
* Hakkımızda Sayfası Stilleri */

/* Hikayemiz Bölümü */
.our-story {
    padding: 4rem 0;
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.story-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Değerlerimiz */
.our-values {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.our-values h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Ekibimiz */
.our-team {
    padding: 4rem 0;
    background-color: var(--white);
}

.our-team h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Neden Biz */
.why-choose-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
}

.why-choose-us h2 {
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.about-cta {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-content p {
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
}

/* Responsive Hakkımızda */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .our-values h2,
    .our-team h2,
    .why-choose-us h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .member-image img {
        width: 100px;
        height: 100px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-large {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .our-story,
    .our-values,
    .our-team,
    .why-choose-us,
    .about-cta {
        padding: 3rem 0;
    }
    
    .story-text h2,
    .our-values h2,
    .our-team h2,
    .why-choose-us h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-image img {
        width: 80px;
        height: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}/* 
Randevu Formu - Hizmet Seçimi Stilleri */
.services-checkboxes {
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
    background: var(--white);
}

.service-category-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 0.25rem;
}

.service-category-title:first-child {
    margin-top: 0;
}

.service-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-checkbox-item:last-child {
    border-bottom: none;
}

.service-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.service-checkbox-item label {
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    flex: 1;
    margin: 0;
}

.service-checkbox-item:hover {
    background-color: var(--light-gray);
    border-radius: 4px;
    margin: 0 -0.5rem;
    padding: 0.5rem;
}

/* Responsive Hizmet Seçimi */
@media (max-width: 768px) {
    .services-checkboxes {
        max-height: 150px;
        padding: 0.8rem;
    }
    
    .service-category-title {
        font-size: 0.9rem;
    }
    
    .service-checkbox-item label {
        font-size: 0.9rem;
    }
    
    .service-checkbox-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}/* 
Randevu Formu - Çoklu Hizmet Seçimi Stilleri */
#appointment-services {
    min-height: 120px;
    max-height: 200px;
    padding: 8px 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

#appointment-services:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

#appointment-services optgroup {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

#appointment-services option {
    padding: 8px 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--white);
}

#appointment-services option:hover {
    background-color: var(--light-gray);
}

#appointment-services option:checked {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Responsive Çoklu Select */
@media (max-width: 768px) {
    #appointment-services {
        min-height: 100px;
        max-height: 150px;
        font-size: 0.9rem;
    }
    
    #appointment-services optgroup {
        font-size: 0.85rem;
    }
    
    #appointment-services option {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}
/* ===== Hİ
ZMETLER SAYFASI STİLLERİ ===== */

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Hizmet Filtreleri */
.services-filters {
    padding: 3rem 0 2rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

/* Arama Kutusu */
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent-color);
}

.search-btn {
    padding: 0.8rem 1.2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Arama Sonuçları */
.search-results {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.no-results {
    background-color: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.no-results p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Filtre ve Sıralama Container */
.filter-sort-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sıralama */
.sort-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-container label {
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

/* Hizmetler Listesi */
.services-list {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.services-list .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.services-list .service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.services-list .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* Hizmet Resmi */
.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hizmet İçeriği */
.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hizmet Detayları */
.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.service-details .service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.service-details .service-duration {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Hizmet Randevu Butonu */
.service-book-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fiyat Tablosu */
.price-table-section {
    padding: 5rem 0;
    background-color: var(--white);
    display: block;
    visibility: visible;
    min-height: 400px;
}

.price-table-section h2 {
    color: var(--matte-black);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.price-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    background-color: var(--white);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    font-size: 0.95rem;
    display: table;
    visibility: visible;
}

.price-table thead {
    background: linear-gradient(135deg, var(--ral-6003), var(--ral-6005));
    color: var(--white);
    display: table-header-group;
    visibility: visible;
}

.price-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background-color: var(--ral-6003);
    border: none;
}

.price-table tbody tr {
    transition: background-color 0.3s ease;
}

.price-table tbody tr:hover {
    background-color: var(--light-gray);
}

.category-header td {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-row td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: middle;
}

.price-cell {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.popular-tag {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Randevu Çağrısı */
.appointment-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.appointment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.appointment-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    background-color: var(--white);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .services-filters {
        padding: 2rem 0 1rem;
    }
    
    .filter-sort-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .sort-container {
        justify-content: center;
    }
    
    .services-list {
        padding: 3rem 0;
    }
    
    .services-list .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .price-table-section {
        padding: 3rem 0;
    }
    
    .price-table {
        font-size: 0.85rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .appointment-cta {
        padding: 4rem 0;
    }
    
    .appointment-cta h2 {
        font-size: 2rem;
    }
    
    .appointment-cta p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        min-width: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .appointment-cta h2 {
        font-size: 1.6rem;
    }
}

/* Fade-in Animasyonları */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animasyonu */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* =
==== RANDEVU SİSTEMİ MODAL STİLLERİ ===== */

/* Modal Temel Stilleri */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(-50px);
    transition: all 0.3s ease;
    position: relative;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--light-gray);
    background: linear-gradient(135deg, var(--primary-color), var(--dark-gray));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    padding: 1.5rem 2rem 2rem;
    max-height: calc(95vh - 100px);
    overflow-y: auto;
}

/* Randevu Formu */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Çoklu Seçim Select */
.form-group select[multiple] {
    min-height: 120px;
    padding: 0.5rem;
}

.form-group select[multiple] option {
    padding: 0.5rem;
    margin: 0.2rem 0;
    border-radius: 4px;
}

.form-group select[multiple] option:checked {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
}

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

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.form-actions .btn {
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Field Error Messages */
.field-error {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.field-error::before {
    content: '⚠️';
    font-size: 0.8rem;
}

/* Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

/* Success State */
.form-success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 2px solid #2ecc71;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #27ae60;
    font-weight: 600;
}

/* Randevu Özeti */
.appointment-summary {
    background: linear-gradient(135deg, var(--light-gray), rgba(243, 156, 18, 0.1));
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
}

.appointment-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--secondary-color);
}

.summary-label {
    font-weight: 500;
    color: var(--text-color);
}

.summary-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .appointment-form {
        gap: 1.2rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 1rem;
        border-radius: 10px 10px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
}

/* Animasyonlar */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
}

/* Accessibility */
.modal[aria-hidden="true"] {
    display: none;
}

.modal[aria-hidden="false"] {
    display: flex;
}

/* Focus Trap */
.modal-content:focus {
    outline: none;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}/
* Index sayfası için özel menü düzeltmesi */
.nav-menu li a {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: none;
}

/* Mobil menüde de aynı kuralı uygula */
@media (max-width: 768px) {
    .nav-menu li a {
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* M
odal animasyonları */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}/*
 Sepet Miktar Butonları */
.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-btn:disabled,
.quantity-btn.disabled {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
    opacity: 0.5;
    border-color: var(--light-gray);
}

.quantity-btn:disabled:hover,
.quantity-btn.disabled:hover {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}/* 
Ürün Stok Durumu Stilleri */
.product-stock {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-stock.urgent-stock {
    color: var(--secondary-color);
    font-weight: 700;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    animation: urgentPulse 2s infinite;
}

.product-stock.out-of-stock {
    color: var(--secondary-color);
    font-weight: 600;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.product-stock.hidden-stock {
    display: none;
}

/* Acele et animasyonu */
@keyframes urgentPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}/* 
Ödeme Formu Stilleri */
.payment-section {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-top: 1rem;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-color);
}

.payment-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.payment-form {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.form-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.form-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

/* Ödeme Yöntemleri */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method {
    flex: 1;
    cursor: pointer;
}

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

.payment-method-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s ease;
    font-weight: 500;
}

.payment-method input[type="radio"]:checked + .payment-method-label {
    border-color: var(--accent-color);
    background-color: rgba(243, 156, 18, 0.1);
    color: var(--primary-color);
}

.payment-icon {
    font-size: 1.2rem;
}

/* Sipariş Özeti */
.order-summary {
    background: var(--white);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.summary-row.total-row {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-top: 1px solid var(--light-gray);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

/* Checkbox Stili */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Ödeme Aksiyonları */
.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.payment-actions .btn {
    min-width: 120px;
}

/* Responsive Ödeme Formu */
@media (max-width: 768px) {
    .payment-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .payment-form {
        max-height: 350px;
    }
}/* Aut
h Sayfası Stilleri */
.auth-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    min-height: 70vh;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-form-container {
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.auth-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.auth-header p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.auth-switch p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.auth-switch a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Checkbox Stili (Auth için özel) */
.auth-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.auth-form .checkbox-label input[type="checkbox"] {
    display: none;
}

.auth-form .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.auth-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-container {
        margin: 0 1rem;
        max-width: none;
    }
    
    .auth-form-container {
        padding: 1.5rem;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}/
* Üyelik Modal Stilleri */
.membership-modal .modal-content {
    max-width: 480px;
    width: 95%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px 16px 0 0;
    text-align: center;
    position: relative;
}

.modal-header-icon {
    margin: 0 auto 1rem;
    display: block;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
}

.auth-tab {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.auth-tab.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

.auth-tab:hover {
    color: var(--primary-color);
    background-color: rgba(243, 156, 18, 0.1);
}

.auth-forms-container {
    position: relative;
    overflow: visible;
    min-height: 400px;
    padding: 2rem;
    background: var(--white);
}

.auth-form-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
}

.auth-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

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

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Checkbox Stili (Modal için) */
.auth-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.auth-form .checkbox-label input[type="checkbox"] {
    display: none;
}

.auth-form .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.auth-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .membership-modal .modal-content {
        margin: 1rem;
        max-width: none;
    }
    
    .auth-tab {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .auth-forms-container {
        min-height: 450px;
    }
}
/* =====
 AUTH SECTION STYLES ===== */
.auth-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.auth-form-container {
    padding: 40px;
    transition: all 0.3s ease;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
}

.auth-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.auth-switch {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.auth-switch p {
    color: #666;
    font-size: 14px;
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-switch a:hover {
    color: var(--secondary-color);
}

/* Form geçiş animasyonları */
.auth-form-container.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.auth-form-container.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .auth-container {
        margin: 20px;
        border-radius: 15px;
    }
    
    .auth-form-container {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .auth-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 40px 0;
    }
    
    .auth-form-container {
        padding: 25px 20px;
    }
    
    .auth-header h2 {
        font-size: 22px;
    }
}

/* Özel input stilleri */
.form-group input[type="date"] {
    color: #666;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
}

/* Hata durumu stilleri */
.form-group.error input {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-group.error label {
    color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Başarı durumu stilleri */
.form-group.success input {
    border-color: #28a745;
    background: #f8fff8;
}

/* Loading durumu */
.auth-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-submit.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* ==
=== AUTH FORM İYİLEŞTİRMELERİ ===== */

/* Form başlık stilleri */
.auth-header {
    position: relative;
}

.auth-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Input focus efektleri */
.form-group input:focus {
    transform: translateY(-2px);
}

/* Placeholder animasyonu */
.form-group {
    position: relative;
}

.form-group label {
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    transform: translateY(-5px);
    font-size: 12px;
    color: var(--primary-color);
}

/* Checkbox hover efekti */
.checkbox-label:hover .checkmark {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Form geçiş animasyonları iyileştirmesi */
.auth-form-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form-container.fade-out {
    opacity: 0;
    transform: translateX(-30px) scale(0.98);
}

.auth-form-container.fade-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Buton hover efektleri */
.auth-submit {
    position: relative;
    overflow: hidden;
}

.auth-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.auth-submit:hover::before {
    left: 100%;
}

/* Form validasyon animasyonları */
.form-group.error input {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group.success input {
    animation: success-pulse 0.6s ease-in-out;
}

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

/* Loading spinner iyileştirmesi */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-submit.loading::after {
    animation: spin 1s linear infinite;
}

/* Responsive iyileştirmeler */
@media (max-width: 480px) {
    .auth-header h2 {
        font-size: 20px;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 16px; /* iOS zoom'u önlemek için */
    }
    
    .auth-submit {
        padding: 16px;
        font-size: 16px;
    }
}

/* Özel scroll bar */
.auth-form-container::-webkit-scrollbar {
    width: 6px;
}

.auth-form-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.auth-form-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.auth-form-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Form container gölge efekti */
.auth-container:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Link hover efektleri */
.auth-switch a,
.forgot-password {
    position: relative;
}

.auth-switch a::after,
.forgot-password::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.auth-switch a:hover::after,
.forgot-password:hover::after {
    width: 100%;
}

/* Form başarı durumu */
.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Form genel hata durumu */
.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}/* ===
== ABOUT PAGE - FEATURES GRID TEK SATIR ===== */

.features-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
    overflow-x: auto;
}

.feature-item {
    flex: 0 0 auto;
    width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.feature-item h3 {
    font-size: 1rem;
    margin: 10px 0 5px;
}

.feature-item p {
    font-size: 0.85rem;
    line-height: 1.4;
}
/* ===== SHOP PAGE - INLINE RESULTS INFO ===== */

.search-sort-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 200px;
}

.sort-box {
    flex: 0 0 auto;
    min-width: 180px;
}

.results-info-inline {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-info-inline span {
    font-weight: 500;
    color: var(--text-color);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}
/* ===== FEATURED PRODUCTS SLIDER (ANA SAYFA) ===== */

.featured-products-slider {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 0;
}

.featured-products-slider h2 {
    margin-bottom: 40px;
}

.products-slider-container {
    position: relative;
    z-index: 0;
    padding: 0 50px;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 0;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-product-card {
    flex: 0 0 250px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.slider-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.slider-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.slider-product-card h3 {
    font-size: 1rem;
    margin: 10px 0 5px;
}

.slider-product-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.slider-product-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.slider-product-card .btn {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
}
/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
    position: absolute;
    bottom: 115px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.9rem;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* ===== GALLERY SLIDER (ANA SAYFA) ===== */

.gallery-slider-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 0;
}

.gallery-slider-section h2 {
    margin-bottom: 15px;
}

.gallery-slider-container {
    position: relative;
    z-index: 0;
    padding: 0 50px;
    margin-bottom: 30px;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide-item {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-slide-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-slide-item {
        flex: 0 0 250px;
        height: 200px;
    }
    
    .gallery-slider-container {
        padding: 0 30px;
    }
}


/* ===== MODERN AUTH MODAL TASARIMI ===== */
.modern-auth-modal {
    max-width: 500px !important;
    width: 90% !important;
    max-height: 90vh !important;
    border-radius: 20px !important;
    padding: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Logo/Başlık */
.auth-modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.auth-brand-icon {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
}

.auth-brand {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0;
    font-weight: 700;
}

.modern-auth-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Tab Butonları */
.auth-tabs-modern {
    display: flex;
    padding: 0 2rem;
    gap: 0;
    border-bottom: 2px solid var(--light-gray);
}

.auth-tab-modern {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.auth-tab-modern.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

/* Form Container */
.auth-forms-container-modern {
    padding: 2rem;
    position: relative;
    min-height: auto;
}

.auth-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Modern Form Groups */
.form-group-modern {
    position: relative;
}

.form-group-modern input {
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: #f5f5f5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-modern input:focus {
    outline: none;
    background-color: #ebebeb;
}

.form-group-modern input::placeholder {
    color: #999;
}

/* Password Toggle */
.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
}

/* Şifremi Unuttum */
.forgot-password-modern {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    text-align: left;
}

/* Modern Butonlar */
.btn-auth-modern {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-auth-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-auth-primary:hover {
    background-color: var(--ral-6005);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 70, 25, 0.3);
}

.btn-auth-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--light-gray);
}

.btn-auth-secondary:hover {
    background-color: #f9f9f9;
}

/* Checkbox Modern */
.form-checkbox-modern {
    margin: 0.5rem 0;
}

.form-checkbox-modern label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-checkbox-modern input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Sosyal Giriş */
.social-login-modern {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.social-login-title {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn-modern {
    width: 50px;
    height: 50px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn-modern:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icon {
    font-size: 1.5rem;
}

/* Responsive Modern Auth */
@media (max-width: 768px) {
    .modern-auth-modal {
        width: 90% !important;
        max-height: 60vh !important;
        margin: 0.5rem;
    }
    
    .auth-modal-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .auth-brand {
        font-size: 1.2rem;
    }
    
    .modern-auth-modal .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.3rem;
        width: 25px;
        height: 25px;
    }
    
    .auth-tabs-modern {
        padding: 0 1rem;
    }
    
    .auth-tab-modern {
        padding: 0.7rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .auth-forms-container-modern {
        padding: 1rem;
    }
    
    .auth-form-modern {
        gap: 0.7rem;
    }
    
    .form-group-modern input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .btn-auth-modern {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .forgot-password-modern {
        font-size: 0.8rem;
    }
    
    .social-login-modern {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .social-login-title {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }
    
    .social-buttons-modern {
        gap: 0.7rem;
    }
    
    .social-btn-modern {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        font-size: 1.2rem;
    }
    
    .form-checkbox-modern label {
        font-size: 0.8rem;
    }
    
    .form-checkbox-modern input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

/* Scroll bar styling for modal */
.modern-auth-modal::-webkit-scrollbar {
    width: 8px;
}

.modern-auth-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-auth-modal::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.modern-auth-modal::-webkit-scrollbar-thumb:hover {
    background: var(--ral-6005);
}



/* ===== MEMBERSHIP BUTTON (ICON + TEXT) ===== */
.membership-btn {
    min-width: auto !important;
    padding: 0.3rem 0.5rem !important;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    background: none !important;
    border: none !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    cursor: pointer;
}

.membership-btn:hover {
    background: none !important;
    opacity: 0.7;
}

.membership-btn .btn-icon {
    width: 28px;
    height: 28px;
    display: block;
    stroke: currentColor;
}

.membership-btn .btn-text {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
    color: var(--text-color);
    line-height: 1;
}


/* Modal içindeki Giriş Yap butonu hover */
.auth-form .btn-primary:hover,
.auth-form .btn-large:hover {
    background-color: var(--white) !important;
    color: var(--accent-color) !important;
    border: 2px solid var(--accent-color);
}

/* ============================================
   HİZMETLER TABLOSU
   ============================================ */

/* Hizmetler Tablosu Section */
.services-table-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    display: block !important;
    visibility: visible !important;
}

.services-table-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--matte-black);
    margin-bottom: 3rem;
}

/* Tablo Wrapper */
.table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

/* Tablo */
.services-table {
    width: 100%;
    border-collapse: collapse;
    display: table !important;
}

/* Tablo Başlıkları */
.services-table thead {
    background: linear-gradient(135deg, var(--ral-6003) 0%, var(--ral-6005) 100%);
}

.services-table thead tr {
    display: table-row !important;
}

.services-table th {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: white !important;
    text-transform: uppercase;
    border: none !important;
}

.services-table th:last-child {
    text-align: center;
}

/* Tablo Gövdesi */
.services-table tbody {
    display: table-row-group !important;
}

.services-table tbody tr {
    display: table-row !important;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.services-table tbody tr:hover {
    background-color: #f8f9fa;
}

.services-table tbody tr:last-child {
    border-bottom: none;
}

/* Hizmet Satırları */
.services-table tbody td {
    padding: 1.2rem 1.5rem;
    vertical-align: middle;
    color: var(--text-dark);
}

.services-table tbody td:first-child {
    font-weight: 600;
    font-size: 1rem;
    color: var(--matte-black);
}

.services-table tbody td:nth-child(2) {
    color: #6c757d;
    font-size: 0.9rem;
}

.services-table tbody td:nth-child(3) {
    color: #6c757d;
    font-size: 0.95rem;
}

.services-table tbody td:nth-child(4) {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ral-6005);
}

.services-table tbody td:last-child {
    text-align: center;
}

/* Popüler Etiketi */
.services-table .popular-badge {
    display: inline-block;
    background-color: #ffc107;
    color: var(--matte-black);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Randevu Al Butonu */
.services-table .btn-appointment {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--ral-6003);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-table .btn-appointment:hover {
    background-color: var(--ral-6005);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-table-section {
        padding: 3rem 0;
    }
    
    .services-table-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .table-wrapper {
        border-radius: 8px;
    }
    
    .services-table {
        font-size: 0.85rem;
    }
    
    .services-table th,
    .services-table td {
        padding: 1rem 0.8rem;
    }
    
    .services-table th {
        font-size: 0.75rem;
    }
    
    .services-table .btn-appointment {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}
