:root {
    /* Brand – Premium Black & Brass */
    --primary-color: #0d0d0d;
    --primary-dark: #000000;
    --secondary-color: #404040;
    --accent-color: #c9a227;
    --accent-light: #e8d9a0;
    --accent-dark: #9a7b1a;
    --accent-glow: rgba(201, 162, 39, 0.28);
    --accent-glow-strong: rgba(201, 162, 39, 0.45);
    
    /* Surfaces */
    --bg-page: #f8f7f4;
    --bg-surface: #ffffff;
    --light-bg: #f0efe9;
    --cream: #faf9f6;
    --text-primary: #0d0d0d;
    --text-secondary: #525252;
    --border-color: #e5e4df;
    
    /* Shadows – refined */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 28px 60px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.06);
    --shadow-accent: 0 8px 32px var(--accent-glow);
    
    --bs-primary: #0d0d0d;
    --bs-primary-rgb: 13, 13, 13;
    --bs-link-color: #0d0d0d;
    --bs-link-hover-color: #000000;
    --dark-bg: #0a0a0a;
    --header-height: 72px;
    
    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.35s var(--ease-out);
    
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-page);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', 'DM Sans', system-ui, sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.fw-bold {
    font-weight: 600 !important; /* Override default bold */
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Page grain overlay – premium texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
    body::before { opacity: 0.02; }
    .home-animate-item,
    .home-animate-fade,
    .home-animate-slide { animation: none; opacity: 1; transform: none; }
    .home-cta-decorative,
    .home-hero-fallback-visual { animation: none; }
}

/* Navbar – minimal premium */
.navbar-custom {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-color);
    height: var(--header-height);
    border-bottom: none;
}

.navbar-custom .nav-link {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    border-radius: 1px;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

/* Navigation & Sidebar Overrides */
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.card-header.bg-primary {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.card-header.bg-primary h1,
.card-header.bg-primary h2,
.card-header.bg-primary h3,
.card-header.bg-primary h4,
.card-header.bg-primary h5,
.card-header.bg-primary h6 {
    color: #fff !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border-width: 1.5px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
}

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

.text-primary {
    color: var(--primary-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.nav-link {
    font-weight: 400; /* Lighter font */
    color: var(--text-primary) !important;
    padding: 0.5rem 1rem !important;
}


.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

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

/* Search Bar */
.search-bar {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-input {
    background-color: var(--light-bg);
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    padding-right: 3rem;
    transition: all var(--transition-normal);
}

.action-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-input:focus {
    background-color: var(--bg-surface);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--text-secondary);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    max-height: 360px;
    overflow-y: auto;
    background: var(--bg-surface);
    z-index: 1050;
}

.search-suggestions a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.15s;
}

.search-suggestions a:hover,
.search-suggestions a:focus,
.search-suggestions a.active {
    background: var(--light-bg);
}

.search-suggestions a.active {
    background: var(--accent-light) !important;
}

.search-suggestions .suggest-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.search-suggestions .suggest-section {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 6px 14px;
    background: var(--light-bg);
}

/* Fiyat aralığı slider */
.price-range-slider {
    margin-bottom: 1rem;
}

.price-range-slider input[type="range"] {
    width: 100%;
    margin: 8px 0;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Filtre chip'leri */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 0.85rem;
}

.filter-chip a {
    color: var(--text-secondary);
    padding: 0 2px;
}

.filter-chip a:hover {
    color: var(--primary-color);
}

/* Action Buttons (Cart, User) */
.action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
}

/* Footer – premium dark */
.footer-custom {
    background: linear-gradient(180deg, #0d0d0d 0%, var(--dark-bg) 100%);
    color: #fff;
    padding: 4.5rem 0 2.5rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-custom h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-custom h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Footer'da logo görseli açık renkte görünsün (koyu arka plan için) */
.footer-custom .site-logo {
    filter: brightness(0) invert(1);
}

.footer-link {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Section titles – premium */
.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.04em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    border-radius: 2px;
}

.mt-6 {
    margin-top: 5rem;
}

/* Hero carousel – premium */
#heroCarousel {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

#heroCarousel .carousel-indicators {
    bottom: 1.5rem;
}

#heroCarousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    opacity: 0.9;
    transition: var(--transition-fast);
}

#heroCarousel .carousel-indicators button.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.25);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.95;
    transition: var(--transition-normal);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

#heroCarousel .carousel-control-prev { left: 1.25rem; }
#heroCarousel .carousel-control-next { right: 1.25rem; }

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(0,0,0,0.55);
    opacity: 1;
}

/* Feature strip - ana sayfa özellik kartları */
.feature-strip .feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(212, 175, 55, 0.2) 100%);
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.feature-strip .border.rounded-3:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8962e 100%);
    color: #fff;
    transform: scale(1.05);
}

.feature-strip .border.rounded-3 {
    transition: var(--transition-normal);
    border-radius: 16px !important;
}

.feature-strip .border.rounded-3:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light) !important;
}

/* Hero badge */
.hero-badge {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    border: none;
}

/* CTA / Hero buton vurgusu */
.btn-hero, .carousel .btn-light {
    transition: var(--transition-normal);
}

.carousel .btn-light:hover {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* Öne çıkan ürünler – container */
.section-products {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Product cards – premium */
.product-card .position-relative > .badge {
    z-index: 10;
}

.product-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-fast);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: 1px solid transparent;
    background: var(--bg-surface);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--border-color) !important;
}

.product-card .card-img-top img,
.product-card .product-img-wrap img {
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .card-img-top img,
.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

/* Mobilde ürün kartı aksiyonları her zaman görünsün (hover yok) */
@media (max-width: 767.98px) {
    .product-card .overlay {
        opacity: 1;
        background: rgba(255, 255, 255, 0.95);
    }
    .product-card .product-card-actions .action-icon {
        width: 36px;
        height: 36px;
    }
}

.category-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
    background: linear-gradient(145deg, var(--primary-color) 0%, #1a1a1a 100%) !important;
    border-color: transparent !important;
}

.category-card:hover h6 {
    color: #fff !important;
}

.category-card:hover .bg-light {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

.category-card .bg-light.rounded-circle {
    transition: background var(--transition-normal), color var(--transition-normal);
}

/* Koleksiyon kartları – premium */
.collection-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
    border-color: transparent !important;
}

/* Boş / hata durumları (empty state) */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.empty-state-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Skip link – klavye erişilebilirliği */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Focus stilleri – erişilebilirlik */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 4px rgba(33, 33, 33, 0.15);
}

/* Ürün görseli yüklenemezse (hata) gösterilecek ikon alanı */
.product-img-wrap {
    position: relative;
}
.product-img-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--text-secondary);
}
.product-img-fallback i.bi-box {
    font-size: 4rem;
}

/* ===== İletişim sayfası ===== */
.contact-page .contact-badge {
    color: var(--accent-color);
    letter-spacing: 0.12em;
}

.contact-page .contact-hero .lead {
    font-size: 1.1rem;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    border-radius: 16px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--accent-light) !important;
}

.contact-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(212, 175, 55, 0.25) 100%);
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8962e 100%);
    color: #fff;
    transform: scale(1.08);
}

.contact-card-cta {
    transition: var(--transition-fast);
}

.contact-card:hover .contact-card-cta {
    transform: translateX(4px);
}

.contact-placeholder-icon {
    font-size: 3rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.contact-extra .card {
    border-radius: 16px;
}

.contact-extra .btn-outline-dark:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ===== Ana Sayfa – Premium Tema ===== */
.text-accent {
    color: var(--accent-color) !important;
}

/* Duyuru çubuğu – header altı, ortalanmış tek metin, HTML destekli */
.announcement-bar {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
}

.announcement-bar-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0.75rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}

.announcement-bar-content {
    line-height: 1.4;
}

.announcement-bar-content p,
.announcement-bar-content div {
    margin: 0;
    display: inline;
}

.announcement-bar-content a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-bar-content a:hover {
    color: #fff;
}


/* Kategori sidebar – slider ile aynı yükseklik, aşağı kaydırılabilir */
.home-category-sidebar {
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-color);
    height: 450px !important; /* Slider ile aynı yükseklik */
    display: flex;
    flex-direction: column;
}

.home-category-sidebar .card-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.home-sidebar-header {
    background: var(--primary-color) !important;
    border: none;
    font-family: 'Syne', sans-serif;
}

/* Hero fallback – editorial */
.home-hero-fallback {
    background: var(--primary-color);
    background-image: 
        radial-gradient(ellipse 100% 80% at 85% 20%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 100% at 15% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
}

.home-hero-fallback-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 75% 40%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 15% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 45%);
}

.home-hero-fallback-visual {
    animation: hero-float 5s ease-in-out infinite;
}

.home-hero-display {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #fff;
}

.home-hero-accent {
    color: var(--accent-light);
    position: relative;
}

.home-btn-pill {
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.home-btn-pill:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Stats – premium strip */
.home-stats-section {
    padding: 3.5rem 0;
    background: var(--primary-color) !important;
    color: #fff;
}

.home-stat-item {
    padding: 1rem 0.5rem;
}

.home-stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.04em;
}

.home-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

/* Trust badges */
.home-trust-section {
    padding: 1rem 0 !important;
    background: var(--bg-surface) !important;
}

.home-trust-strip {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.home-trust-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Newsletter block */
.home-newsletter-section {
    padding: 3rem 0;
}

.home-newsletter-card {
    background: var(--primary-color);
    background-image: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 55%);
    box-shadow: var(--shadow-md);
}

.home-newsletter-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.home-newsletter-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.home-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.home-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

#homeNewsletterMessage.text-success { color: #75cf7a !important; }
#homeNewsletterMessage.text-danger { color: #f08080 !important; }

/* Section genel stilleri */
.home-section {
    padding: 4rem 0;
}

.home-section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--light-bg) 50%, var(--bg-page) 100%);
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Features – premium cards */
.home-features-section {
    margin-top: 1rem;
    padding-top: 2rem;
}

.home-feature-card {
    transition: var(--transition-normal);
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-color) !important;
}

.home-feature-card:hover {
    border-color: var(--accent-light) !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md) !important;
}

.feature-strip .feature-icon-wrap {
    border-radius: 12px;
    background: linear-gradient(145deg, var(--accent-light) 0%, rgba(201, 162, 39, 0.2) 100%) !important;
}

.home-feature-card:hover .feature-icon-wrap {
    background: linear-gradient(145deg, var(--accent-color) 0%, var(--accent-dark) 100%) !important;
    color: #fff !important;
}

/* Kategoriler bölümü */
.home-categories-section {
    background: var(--bg-surface);
}

/* Koleksiyonlar bölümü */
.home-collections-section {
    background: var(--light-bg);
}

/* Ürünler bölümü */
.home-products-section {
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--light-bg) 100%);
}

/* CTA Promo Kartı */
.home-cta-section {
    padding: 4rem 0 5rem;
}

.home-cta-card {
    background: var(--primary-color);
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201, 162, 39, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 45%);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.home-cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: 
        radial-gradient(circle at 25% 75%, var(--accent-color) 0%, transparent 45%),
        radial-gradient(circle at 75% 25%, rgba(201, 162, 39, 0.15) 0%, transparent 40%);
}

.home-cta-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-cta-decorative {
    animation: float-subtle 6s ease-in-out infinite;
}

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

/* Kategori sidebar hero yanında - görsel iyileştirme */
.home-section .section-header .section-title::after {
    bottom: -12px;
}

/* Hero fallback iyileştirmesi */
.home-section .position-relative .rounded-circle.bg-warning,
.home-section .position-relative .rounded-circle.bg-primary {
    filter: blur(1px);
}

/* ===== Ana Sayfa Animasyonları ===== */
.home-animate-fade {
    animation: home-fade-in 0.8s var(--ease-out) forwards;
    opacity: 0;
}

.home-animate-slide {
    animation: home-slide-up 0.8s var(--ease-out) 0.1s forwards;
    opacity: 0;
}

.home-animate-float {
    animation: hero-float 5s ease-in-out infinite;
}

.home-animate-item {
    opacity: 0;
    transform: translateY(15px);
}

.home-section-visible .home-animate-item {
    animation: home-item-reveal 0.6s var(--ease-out) calc(var(--ani-order, 0) * 0.08s) forwards;
}

@keyframes home-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes home-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home-item-reveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA buton hover geliştirmesi */
.home-cta-card .btn-light:hover {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.home-cta-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
}

/* Kategori kartı icon transition */
.category-card .bg-light.rounded-circle i {
    transition: transform var(--transition-normal);
}

.category-card:hover .bg-light.rounded-circle i {
    transform: scale(1.1);
}

/* Collection card icon */
.collection-card .bg-light.rounded-circle i {
    transition: transform var(--transition-normal);
}

.collection-card:hover .bg-light.rounded-circle i {
    transform: scale(1.1) translateX(2px);
}

/* ===== Blog Sayfası ===== */
.blog-page {
    min-height: 50vh;
}

.blog-hero {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--bg-page) 100%);
}

.blog-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.blog-lead {
    font-size: 1.05rem;
}

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}

.blog-card-thumb {
    height: 140px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--bg-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-thumb .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-icon {
    font-size: 3rem;
    color: var(--accent-light);
    opacity: 0.8;
}

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

.blog-card-date {
    color: var(--accent-color) !important;
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-summary {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--accent-color);
    gap: 0.5rem;
}

.blog-empty {
    padding: 4rem 2rem;
}

.blog-empty-icon {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Blog detay sayfası */
.blog-detail-page {
    min-height: 50vh;
    padding-bottom: 4rem;
}

.blog-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
}

.blog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--text-secondary);
}

.blog-article {
    max-width: 1200px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 2.5rem 2.5rem;
    margin-top: 0.5rem;
}

.blog-article-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-article-image img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.blog-article-date {
    color: var(--accent-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.blog-article-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.blog-article-lead {
    font-size: 1.15rem;
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

.blog-article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-primary);
}

.blog-article-body h2,
.blog-article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-article-body p {
    margin-bottom: 1.25rem;
}

.blog-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.blog-article-body ul,
.blog-article-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-article-body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
}

.blog-article-footer {
    max-width: 1200px;
}

.blog-article-footer .btn {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all var(--transition-fast);
}

.blog-article-footer .btn:hover {
    transform: translateX(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== Floating Contact Buttons ===== */
.contact-floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-floating-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.contact-floating-btn-whatsapp {
    background: #25d366;
}

.contact-floating-btn-whatsapp:hover {
    background: #20bd5a;
}

.contact-floating-btn-phone {
    background: var(--primary-color);
}

.contact-floating-btn-phone:hover {
    background: var(--primary-dark);
}

@media (max-width: 575.98px) {
    .contact-floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    .contact-floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}