/**
 * EROL HALI - PREMİUM TASARIM
 * ===========================
 * Lüks halı mağazası için özel tasarım
 * Soft toprak tonları, zarif tipografi, modern UI
 */

/* ============================================
   GOOGLE FONTS - Header'dan <link> ile yükleniyor (daha hızlı)
   ============================================ */

/* ============================================
   CSS DEĞİŞKENLERİ - Premium Renk Paleti
   ============================================ */
:root {
    /* Ana Renkler - Sıcak Toprak Tonları */
    --color-primary: #A67C52;           /* Sıcak kahve/kiremit */
    --color-primary-dark: #8B6544;
    --color-primary-light: #C9A882;
    
    /* Vurgu Renkleri */
    --color-gold: #C9A962;              /* Altın vurgu */
    --color-gold-light: #D4B87A;
    
    /* Nötr Tonlar - Krem ve Bej */
    --color-cream: #FAF7F2;             /* Ana arka plan */
    --color-beige: #F5EFE6;             /* İkincil arka plan */
    --color-sand: #E8E0D5;              /* Border ve ayraçlar */
    --color-taupe: #8B7E74;             /* Muted metin */
    
    /* Metin Renkleri */
    --color-text-dark: #2C2416;         /* Ana metin - koyu kahve */
    --color-text-medium: #5C5347;       /* İkincil metin */
    --color-text-light: #9A8F84;        /* Açık metin */
    
    /* Beyaz tonları */
    --color-white: #FFFFFF;
    --color-white-soft: #FFFCF8;
    
    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 36, 22, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 36, 22, 0.12);
    --shadow-hover: 0 12px 48px rgba(44, 36, 22, 0.15);
    
    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ============================================
   RESET & GENEL STİLLER
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Başlıklar - Zarif Serif Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* ============================================
   BOOTSTRAP OVERRIDE - Premium Renkler
   ============================================ */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    border-width: 2px;
    font-weight: 500;
    padding: 0.7rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

/* ============================================
   ÜST BAR - İletişim Bandı
   ============================================ */
.top-bar {
    background: var(--color-text-dark) !important;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.top-bar a {
    transition: color var(--transition-fast);
}

.top-bar a:hover {
    color: var(--color-gold) !important;
}

/* ============================================
   NAVİGASYON - Zarif ve Temiz
   ============================================ */
.navbar {
    padding: 1.25rem 0;
    background-color: var(--color-white) !important;
    transition: all var(--transition-normal);
    margin-bottom: 0;
}

.navbar.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark) !important;
    padding: 0.6rem 1.25rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2.5rem);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--color-beige);
    color: var(--color-primary);
    padding-left: 1.75rem;
}

/* Arama kutusu */
.navbar .form-control {
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    background-color: var(--color-beige);
    transition: all var(--transition-fast);
}

.navbar .form-control:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: none;
}

/* ============================================
   HERO SECTION - Premium Banner
   ============================================ */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1600166898405-da9535204843?w=1920&q=80') center center / cover no-repeat;
    padding: 6rem 0;
    overflow: hidden;
    margin-top: -1px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 36, 22, 0.85) 0%,
        rgba(44, 36, 22, 0.6) 50%,
        rgba(44, 36, 22, 0.75) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    min-height: 60vh;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-white) !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title span {
    color: var(--color-gold) !important;
    display: block;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
}

.hero-section .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-section .btn-primary {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-text-dark);
    font-weight: 600;
}

.hero-section .btn-primary:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

.hero-section .btn-outline-primary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero-section .btn-outline-primary:hover {
    background-color: var(--color-white);
    color: var(--color-text-dark);
}

/* Hero dekoratif çerçeve */
.hero-section::after {
    content: '';
    position: absolute;
    top: 3rem;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   BÖLÜM BAŞLIKLARI - Zarif Tipografi
   ============================================ */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    position: relative;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Başlık altı dekoratif çizgi */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ============================================
   KATEGORİ KARTLARI - Premium Görsel Kartlar
   ============================================ */
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    display: block;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

@media (min-width: 768px) {
    .category-card {
        height: 320px;
    }
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.1);
}

/* Gradient overlay */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 36, 22, 0) 0%,
        rgba(44, 36, 22, 0.3) 50%,
        rgba(44, 36, 22, 0.9) 100%
    );
    z-index: 1;
    transition: all var(--transition-normal);
}

.category-card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(44, 36, 22, 0.1) 0%,
        rgba(44, 36, 22, 0.4) 50%,
        rgba(44, 36, 22, 0.95) 100%
    );
}

.category-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.category-card:hover .card-body {
    transform: translateY(0);
}

.category-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.category-card .product-count {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hover'da ok ikonu */
.category-card .card-body::after {
    content: '→';
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    color: var(--color-gold);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.category-card:hover .card-body::after {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   ÜRÜN KARTLARI - Premium Tasarım
   ============================================ */
.product-card {
    background: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Görsel alanı */
.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--color-beige);
    aspect-ratio: 4 / 3;
}

.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

/* Görsel yoksa placeholder */
.product-card .card-img-wrapper .img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-sand) 100%);
    color: var(--color-taupe);
}

.product-card .card-img-wrapper .img-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.product-card .card-img-wrapper .img-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.6;
}

/* Ürün etiketleri */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-badge .badge {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.product-badge .badge.bg-success {
    background-color: #4A7C59 !important;
}

.product-badge .badge.bg-danger {
    background: linear-gradient(135deg, #C75D5D, #A84848) !important;
}

/* Hızlı görüntüleme butonu */
.product-card .quick-view {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    background: var(--color-white);
    color: var(--color-text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    z-index: 3;
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card .quick-view:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Kart içeriği */
.product-card .card-body {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-category a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-category a:hover {
    color: var(--color-gold);
}

.product-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-card .card-title a:hover {
    color: var(--color-primary);
}

.product-dimensions {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.product-dimensions i {
    color: var(--color-primary);
    margin-right: 0.25rem;
}

/* Fiyat */
.product-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-price-old {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-right: 0.75rem;
}

/* ============================================
   SECTION STİLLERİ - Ferahlık ve Boşluklar
   ============================================ */
section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 7rem 0;
    }
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-cream {
    background-color: var(--color-cream) !important;
}

.bg-beige {
    background-color: var(--color-beige) !important;
}

/* ============================================
   NEDEN BİZ SECTİON - Premium Tasarım
   ============================================ */
.features-section {
    background: var(--color-beige);
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.3);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(166, 124, 82, 0.4);
}

.feature-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION - Premium Banner
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    transform: rotate(30deg);
    pointer-events: none;
}

.cta-section h3 {
    color: var(--color-white);
    font-size: 2rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-light {
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.cta-section .btn-light:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
    transform: translateY(-3px);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-text-dark);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-sand);
}

/* ============================================
   SAYFALAMA - Premium Tasarım
   ============================================ */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    color: var(--color-text-dark);
    font-weight: 500;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--color-beige);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.4);
}

/* ============================================
   FOOTER - Premium Tasarım
   ============================================ */
footer {
    background: var(--color-text-dark) !important;
    font-size: 0.95rem;
}

footer h5, footer h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-white) !important;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

footer .text-muted,
footer p,
footer li,
footer small {
    color: rgba(255, 255, 255, 0.6) !important;
}

footer a,
footer a.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: all var(--transition-fast);
}

footer a:hover {
    color: var(--color-gold) !important;
    padding-left: 3px;
}

footer .text-primary,
footer i.text-primary {
    color: var(--color-gold) !important;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8) !important;
}

footer .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold) !important;
}

/* ============================================
   WHATSApp VE YUKARI ÇIK BUTONLARI
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: #25D366;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: #20BA5C;
}

#scrollToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    opacity: 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

#scrollToTop.show {
    display: flex;
    opacity: 1;
}

#scrollToTop:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   FORM ELEMANLARI - Premium Stiller
   ============================================ */
.form-control,
.form-select {
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--color-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

/* ============================================
   ÜRÜN DETAY SAYFASI
   ============================================ */
.product-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-beige);
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-gallery .thumbnail {
    border: 3px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-gallery .thumbnail.active,
.product-gallery .thumbnail:hover {
    border-color: var(--color-gold);
}

.product-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
}

.product-info .price-section {
    background: var(--color-beige);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-gold);
}

.product-info .current-price {
    font-family: 'Jost', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-specs {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.product-specs dt {
    font-weight: 500;
    color: var(--color-text-light);
}

.product-specs dd {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* ============================================
   FİLTRE PANELİ
   ============================================ */
.filter-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.filter-panel h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-sand);
}

/* ============================================
   ALERT MESAJLARI
   ============================================ */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
}

.alert-info {
    background-color: rgba(166, 124, 82, 0.1);
    color: var(--color-primary-dark);
}

/* ============================================
   RESPONSIVE DÜZENLEMELER
   ============================================ */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-right: 0;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-card {
        height: 220px;
    }
    
    .product-card .card-body {
        padding: 1.25rem;
    }
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal için hazırlık */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   DİNAMİK SLIDER SECTION
   ============================================ */
/* ============================================
   SWIPER HERO SLIDER
   ============================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.heroSwiper {
    width: 100%;
    height: auto;
}

.hero-slide {
    position: relative;
    line-height: 0;
}

.hero-slide .slider-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    line-height: 1.5;
}

/* Slide-up Animasyonu */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-up[data-delay="0"] { transition-delay: 0s; }
.slide-up[data-delay="1"] { transition-delay: 0.15s; }
.slide-up[data-delay="2"] { transition-delay: 0.3s; }
.slide-up[data-delay="3"] { transition-delay: 0.45s; }

/* Swiper Navigation - Şık Oklar */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.4s ease;
    opacity: 0;
}

.hero-slider-section:hover .swiper-button-prev,
.hero-slider-section:hover .swiper-button-next {
    opacity: 1;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

.heroSwiper .swiper-button-prev {
    left: 30px;
}

.heroSwiper .swiper-button-next {
    right: 30px;
}

/* Swiper Pagination - Şık Noktalar */
.heroSwiper .swiper-pagination {
    bottom: 30px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 8px !important;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--color-gold);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.heroSwiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle-top {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-slide .hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7),
                 0 0 30px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-text-dark);
}

/* Slider Responsive */
@media (max-width: 991.98px) {
    .hero-slide .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        width: 44px;
        height: 44px;
    }
    
    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after {
        font-size: 14px;
    }
    
    .heroSwiper .swiper-button-prev {
        left: 15px;
    }
    
    .heroSwiper .swiper-button-next {
        right: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide .slider-img {
        min-height: 320px;
        object-fit: cover;
    }
    
    .hero-slide .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-top {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-left: auto;
        margin-right: auto;
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        display: none;
    }
    
    .heroSwiper .swiper-pagination {
        bottom: 15px !important;
    }
    
    .heroSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px !important;
    }
}

/* ============================================
   ÜRÜN BİLDİRİM TOAST
   ============================================ */
.product-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px;
    z-index: 9998;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-toast.hiding {
    opacity: 0;
    transform: translateY(30px);
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-medium);
    transition: all 0.3s ease;
    z-index: 2;
}

.toast-close:hover {
    background: var(--color-sand);
    color: var(--color-text-dark);
}

.toast-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.toast-image {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-beige);
}

.toast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-toast:hover .toast-image img {
    transform: scale(1.1);
}

.toast-content {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.toast-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.toast-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 3px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-text {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.4;
}

/* Toast Masaüstü */
@media (min-width: 992px) {
    .product-toast {
        max-width: 380px;
        padding: 16px;
        border-radius: 18px;
        bottom: 35px;
        left: 35px;
    }
    
    .toast-link {
        gap: 18px;
    }
    
    .toast-image {
        width: 85px;
        height: 85px;
        border-radius: 14px;
    }
    
    .toast-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    .toast-title {
        font-size: 1.15rem;
        margin-bottom: 5px;
    }
    
    .toast-text {
        font-size: 0.88rem;
    }
    
    .toast-close {
        width: 28px;
        height: 28px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }
    
    .toast-content {
        padding-right: 24px;
    }
}

/* Toast Mobil */
@media (max-width: 575.98px) {
    .product-toast {
        left: 50%;
        transform: translateX(-50%) translateY(30px);
        bottom: 20px;
        max-width: calc(100% - 40px);
        width: 100%;
    }
    
    .product-toast.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .product-toast.hiding {
        transform: translateX(-50%) translateY(30px);
    }
}

/* ============================================
   YORUM VE DEĞERLENDİRME SİSTEMİ
   ============================================ */

/* Yorum Kartları */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.comment-card:hover {
    box-shadow: var(--shadow-md);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
}

.comment-meta {
    flex: 1;
}

.comment-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--color-text-dark);
}

.comment-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.comment-body {
    color: var(--color-text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Yorum Formu */
.review-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.review-form-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Yıldız Seçimi */
.star-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star-rating-input {
    display: flex;
    gap: 0.25rem;
}

.star-rating-input .star-icon {
    font-size: 1.75rem;
    color: var(--color-sand);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-input .star-icon.active,
.star-rating-input .star-icon.hover {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating-input .star-icon:hover {
    transform: scale(1.2);
}

.rating-text {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    font-weight: 500;
}

/* Ürün Sayfası Rating */
.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    font-size: 1rem;
}

/* ============================================
   BEĞENİ BUTONU
   ============================================ */
.btn-like {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--color-sand);
    color: var(--color-text-medium);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-like:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-like i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-like.liked {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.btn-like.liked i {
    color: #e74c3c;
}

.btn-like.animate {
    transform: scale(1.1);
}

.btn-like.animate i {
    transform: scale(1.3);
}

#likeCount {
    font-weight: 600;
}

/* Kompakt Yorum Listesi */
.comments-list-compact .comment-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-sand);
}

.comments-list-compact .comment-item:last-child {
    border-bottom: none;
}

.comment-avatar-sm {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.comment-stars-sm {
    display: flex;
    gap: 1px;
}

.comment-stars-sm i {
    font-size: 0.65rem;
}

/* Kompakt Form Yıldızları */
#reviewForm .star-rating-input .star-icon {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .review-form-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .comment-card {
        padding: 1.25rem;
    }
    
    .review-form-card {
        padding: 1.5rem;
    }
    
    .star-rating-input .star-icon {
        font-size: 1.5rem;
    }
}

/* ============================================
   ÇEREZ ONAY BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2C2416 0%, #3D3225 100%);
    padding: 1.25rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-text i {
    color: var(--color-gold);
}

.cookie-link {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--color-gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--color-gold);
    color: var(--color-text-dark);
    border: none;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.65rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner Mobil */
@media (max-width: 767.98px) {
    .cookie-banner {
        padding: 1rem 0;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* WhatsApp ve Toast için boşluk (cookie banner açıkken) */
.cookie-banner:not(.hidden) ~ .whatsapp-float {
    bottom: 100px;
}

.cookie-banner:not(.hidden) ~ #productToast {
    bottom: 110px;
}

@media (max-width: 575.98px) {
    .cookie-banner:not(.hidden) ~ .whatsapp-float {
        bottom: 130px;
    }
    
    .cookie-banner:not(.hidden) ~ #productToast {
        bottom: 140px;
    }
}

/* =============================================
   MOBİL ALT NAVİGASYON BARI (Bottom Navbar)
   ============================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFCF8;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    z-index: 9990;
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 0.5rem;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text-medium);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--color-gold);
    background: rgba(181, 136, 99, 0.08);
}

.mobile-bottom-nav .nav-item:hover i,
.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px 3px 0 0;
}

/* Mobil padding (bottom navbar için) */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
    
    footer {
        margin-bottom: 60px;
    }
    
    /* WhatsApp ve diğer fixed elementleri yukarı taşı */
    .whatsapp-float {
        bottom: 85px !important;
    }
    
    #scrollToTop {
        bottom: 85px !important;
    }
    
    #productToast {
        bottom: 85px !important;
    }
    
    .cookie-banner {
        bottom: 65px !important;
    }
}

/* Arama Offcanvas */
.search-offcanvas {
    background: #FFFCF8;
}

.search-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--color-sand);
    padding: 1.25rem 1.5rem;
}

.search-offcanvas .offcanvas-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-dark);
}

.search-offcanvas .btn-close {
    opacity: 0.5;
}

.search-offcanvas .offcanvas-body {
    padding: 1.5rem;
}

.search-offcanvas .search-input-wrapper {
    position: relative;
}

.search-offcanvas .search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-left: 3rem;
    border: 2px solid var(--color-sand);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.search-offcanvas .search-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(181, 136, 99, 0.1);
}

.search-offcanvas .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.search-offcanvas .search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-gold);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-offcanvas .search-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-50%) scale(1.05);
}

.search-offcanvas .popular-searches {
    margin-top: 2rem;
}

.search-offcanvas .popular-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.search-offcanvas .popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-offcanvas .popular-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--color-sand);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-offcanvas .popular-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(181, 136, 99, 0.05);
}

/* Kategori Offcanvas */
.category-offcanvas {
    background: #FFFCF8;
    width: 300px !important;
}

.category-offcanvas .offcanvas-header {
    background: var(--color-beige);
    padding: 1.5rem;
}

.category-offcanvas .offcanvas-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 1.1rem;
}

.category-offcanvas .offcanvas-body {
    padding: 0;
}

.category-offcanvas .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-offcanvas .category-item {
    border-bottom: 1px solid var(--color-sand);
}

.category-offcanvas .category-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-offcanvas .category-link:hover {
    background: var(--color-beige);
    color: var(--color-gold);
    padding-left: 2rem;
}

.category-offcanvas .category-link i {
    width: 24px;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: var(--color-gold);
}

.category-offcanvas .category-link span {
    flex: 1;
    font-weight: 500;
}

.category-offcanvas .category-link .arrow {
    color: var(--color-text-light);
    transition: transform 0.3s ease;
}

.category-offcanvas .category-link:hover .arrow {
    transform: translateX(5px);
    color: var(--color-gold);
}

.category-offcanvas .view-all-link {
    display: block;
    text-align: center;
    padding: 1.25rem;
    background: var(--color-gold);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-offcanvas .view-all-link:hover {
    background: var(--color-gold-light);
}

/* ============================================
   MODERN SOSYAL MEDYA �KONLARI
   ============================================ */
.social-icon-modern {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05); /* Cam efekti i�in zemin */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon-modern:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.5);
}

/* Instagram Gradyan */
.social-icon-modern.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 20px -10px rgba(214, 36, 159, 0.5);
}

/* Facebook Mavi */
.social-icon-modern.facebook:hover {
    background: #1877F2;
    box-shadow: 0 10px 20px -10px rgba(24, 119, 242, 0.5);
}

/* WhatsApp Ye�il */
.social-icon-modern.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.5);
}

/* �kon Animasyonu */
.social-icon-modern i {
    transition: transform 0.3s ease;
}

.social-icon-modern:hover i {
    transform: scale(1.2);
}


/* K���k Modern �konlar (Header i�in) */
.social-icon-modern-sm {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-modern-sm:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

