/* =========================================================
   Tom and Jerry Pet House & Kuaför — Ana Stil Dosyası
   Renk paleti: Logo'dan türetilmiş (Kırmızı, Altın, Kahve, Krem)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary:       #C41E3A;
    --primary-dark:  #9B1429;
    --primary-light: #E63556;
    --gold:          #C9A030;
    --gold-dark:     #9E7D20;
    --gold-light:    #F0E4B0;
    --dark:          #3D2B1F;
    --dark-mid:      #5C3D28;
    --cream:         #FDF8F0;
    --cream-dark:    #F0E6D3;
    --text:          #2C1810;
    --text-muted:    #7A6355;
    --white:         #FFFFFF;
    --border:        #E8D5BE;
    --shadow:        rgba(61, 43, 31, 0.12);
    --shadow-lg:     rgba(61, 43, 31, 0.22);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.3s ease;
}

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ─── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ─── Utility Classes ──────────────────────────────────── */
.text-primary { color: var(--primary) !important; }
.text-gold    { color: var(--gold) !important; }
.text-dark-brand { color: var(--dark) !important; }
.bg-cream     { background: var(--cream) !important; }
.bg-cream-dark { background: var(--cream-dark) !important; }
.bg-dark-brand { background: var(--dark) !important; }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 72px; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
}
.section-title.center::after { left: 50%; transform: translateX(-50%); }

.badge-custom {
    background: linear-gradient(135deg, var(--gold-light), #FAF0CC);
    color: var(--gold-dark);
    border: 1px solid rgba(201,160,48,0.55);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(201,160,48,0.2);
}

/* ─── Navbar ───────────────────────────────────────────── */
#mainNav {
    background: transparent;
    transition: var(--transition);
    padding: 6px 0;
    z-index: 1050;
}
#mainNav.scrolled {
    background: var(--dark) !important;
    box-shadow: 0 4px 20px var(--shadow-lg);
    padding: 4px 0;
}
#mainNav .navbar-brand img {
    height: 90px;
    transition: var(--transition);
}
#mainNav.scrolled .navbar-brand img { height: 68px; }

#mainNav .nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
#mainNav .nav-link:hover { color: var(--gold) !important; background: rgba(255,255,255,0.08); }
#mainNav .nav-link.active { color: var(--gold) !important; }

#mainNav .navbar-toggler {
    border-color: rgba(255,255,255,0.4);
    padding: 6px 10px;
}
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown */
#mainNav .dropdown-menu {
    background: var(--dark);
    border: 1px solid rgba(201,160,48,0.3);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px var(--shadow-lg);
    padding: 8px;
    margin-top: 0;
    padding-top: 14px;
    min-width: 200px;
}
#mainNav .dropdown-item {
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
#mainNav .dropdown-item:hover {
    background: rgba(201,160,48,0.2);
    color: var(--gold);
}

/* ─── Mega Menu ─────────────────────────────────────────── */

/* Mega item: static position so panel anchors to #mainNav */
.mega-item { position: static !important; }

/* Chevron dönüşü */
.mega-chevron {
    font-size: 0.72rem;
    transition: transform 0.22s ease;
    opacity: 0.7;
}
.mega-item.mega-open .mega-chevron { transform: rotate(180deg); }

/* Panel: fixed, tam genişlik, navbar altına yapışık */
.mega-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 0; /* JS tarafından güncellenir */
    z-index: 1045;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}
.mega-panel.mega-panel--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* İç sarıcı: ince üst çizgi + gölge */
.mega-panel-wrap {
    border-top: 3px solid var(--primary);
    box-shadow: 0 12px 40px rgba(61,43,31,0.22);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

/* Üç sütun yan yana */
.mega-panel-inner {
    display: flex;
    min-height: 260px;
    max-height: 480px;
}

/* ── Sol panel: koyu arka plan, alt kategori listesi ──────── */
.mega-panel-left {
    width: 230px;
    min-width: 230px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    overflow-y: auto;
}

.mega-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px;
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    border-left: 3px solid transparent;
    gap: 8px;
    cursor: pointer;
}
.mega-cat-link span { display: flex; align-items: center; flex: 1; }
.mega-cat-link:hover,
.mega-cat-link.active {
    background: rgba(255,255,255,0.07);
    color: var(--gold) !important;
    border-left-color: var(--gold);
}
.mega-cat-link.active { color: var(--gold) !important; }


/* ── Orta panel: 3. seviye alt kategoriler ───────────────── */
.mega-panel-middle {
    flex: 1;
    background: var(--cream);
    border-left: 1px solid rgba(61,43,31,0.1);
    padding: 20px 24px;
    overflow-y: auto;
}

.mega-sub-group { display: none; }
.mega-sub-group.active { display: block; }

.mega-sub-heading {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.mega-sub-links {
    columns: 2;
    column-gap: 12px;
}

.mega-sub-link {
    display: block;
    padding: 6px 0;
    color: var(--text-muted) !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
    break-inside: avoid;
    line-height: 1.4;
}
.mega-sub-link i { font-size: 0.65rem; }
.mega-sub-link:hover {
    color: var(--primary) !important;
    padding-left: 4px;
}

/* ── Sağ panel: marka logoları / isimleri ─────────────────── */
.mega-panel-right {
    width: 270px;
    min-width: 270px;
    background: var(--white);
    border-left: 1px solid var(--border);
    padding: 20px;
    overflow-y: auto;
}

.mega-brands-heading {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-light);
}

.mega-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mega-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--dark) !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition: var(--transition);
    min-height: 42px;
    line-height: 1.2;
}
.mega-brand-item:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px var(--shadow);
}

/* ── Mobil mega menü ─────────────────────────────────────── */
@media (max-width: 991.98px) {
    .mega-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        pointer-events: auto;
        display: none;
        z-index: auto;
    }
    .mega-panel.mega-panel--open { display: block; }

    .mega-panel-wrap {
        border-top: 1px solid rgba(255,255,255,0.12);
        border-radius: 0;
        box-shadow: none;
    }
    .mega-panel-inner {
        flex-direction: column;
        max-height: none;
    }
    .mega-panel-left {
        width: 100%;
        padding: 4px 0;
    }
    .mega-panel-middle {
        background: rgba(253,248,240,0.07);
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 14px 16px;
    }
    .mega-panel-right {
        width: 100%;
        background: rgba(253,248,240,0.05);
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 14px 16px;
    }
    .mega-sub-group { display: block; margin-bottom: 16px; }
    .mega-sub-links { columns: 1; }
    .mega-brands-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-brands-heading,
    .mega-sub-heading { color: rgba(255,255,255,0.7); border-bottom-color: rgba(201,160,48,0.4); }
    .mega-sub-link { color: rgba(255,255,255,0.65) !important; }
    .mega-sub-link:hover { color: var(--gold) !important; }
    .mega-brand-item {
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.85) !important;
    }
    .mega-brand-item:hover {
        background: rgba(201,160,48,0.2);
        border-color: var(--gold);
        color: var(--gold) !important;
    }
}

/* ─── Hero Section ─────────────────────────────────────── */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #5C2020 40%, var(--primary-dark) 70%, #6B4423 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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");
}
.hero-paw {
    position: absolute;
    opacity: 0.06;
    font-size: 8rem;
    animation: floatPaw 6s ease-in-out infinite;
}
.hero-paw:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 5rem; }
.hero-paw:nth-child(2) { top: 60%; left: 2%; animation-delay: 2s; font-size: 9rem; }
.hero-paw:nth-child(3) { top: 20%; right: 5%; animation-delay: 1s; font-size: 7rem; }
.hero-paw:nth-child(4) { bottom: 15%; right: 8%; animation-delay: 3s; font-size: 6rem; }

@keyframes floatPaw {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(201,160,48,0.2);
    border: 1px solid rgba(201,160,48,0.5);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 36px;
}
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-logo-wrap img {
    max-width: 580px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: heroLogoFloat 4s ease-in-out infinite;
}
@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn-primary-brand {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 55%, var(--primary-dark) 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(196,30,58,0.3);
}
.btn-primary-brand:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(196,30,58,0.45);
}
.btn-trendyol {
    background: #FF6000;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(255,96,0,0.35);
}
.btn-trendyol:hover {
    background: #e55500;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255,96,0,0.5);
}
.btn-getir {
    background: #5D3EBC;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(93,62,188,0.35);
}
.btn-getir:hover {
    background: #4e34a0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(93,62,188,0.5);
}
.btn-gold {
    background: linear-gradient(135deg, #E8C040 0%, var(--gold) 50%, var(--gold-dark) 100%);
    border: none;
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(201,160,48,0.35);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201,160,48,0.5);
}
.btn-outline-brand {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-brand:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Hero Split ───────────────────────────────────────── */
#hero-split { min-height: 100vh; }

.hero-split-row { min-height: 100vh; }

.hero-split-panel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 48px 60px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-split-panel::before {
    content: '🐾';
    position: absolute;
    font-size: 18rem;
    opacity: 0.04;
    top: -30px;
    right: -40px;
    pointer-events: none;
    line-height: 1;
}
.hero-split-left {
    background: linear-gradient(145deg, #1A0A05 0%, var(--dark) 50%, #2E1A0A 100%);
    border-right: 1px solid rgba(201,160,48,0.25);
}
.hero-split-right {
    background: linear-gradient(315deg, #1A0A05 0%, var(--dark) 50%, #2E1A0A 100%);
    padding-left: 24px;
    padding-right: 24px;
}
.hero-split-inner {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}
.hero-split-right .hero-split-inner {
    max-width: 100%;
}
.hero-split-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.hero-split-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 28px;
}
.hero-animal-grid { margin-top: 4px; }
.hero-animal-mini {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}
.hero-animal-mini:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.13);
    border-color: var(--gold);
}
.hero-animal-mini-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: block;
}
.hero-animal-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}
.hero-animal-mini:hover img { transform: scale(1.05); }
.hero-animal-mini-noimg {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(255,255,255,0.05);
}
.hero-animal-mini-info {
    padding: 8px 12px 10px;
}
.hero-animal-mini-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-animal-mini-species {
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 2px;
}
.hero-happy-slide { height: 460px; }
.hero-split-empty {
    text-align: center;
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
}

@media (max-width: 991px) {
    .hero-split-panel {
        min-height: 70vh;
        padding: 90px 24px 50px;
    }
    .hero-split-panel::before { font-size: 10rem; }
    .hero-split-left { border-right: none; border-bottom: 1px solid rgba(201,160,48,0.25); }
    .hero-happy-slide { height: 320px; }
}
@media (max-width: 575px) {
    .hero-animal-mini-name { font-size: 0.82rem; }
    .hero-split-title { font-size: 1.6rem; }
}

/* ─── Stats Bar ────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, #271509 0%, var(--dark) 45%, #271509 100%);
    padding: 38px 0;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid rgba(201,160,48,0.25);
}
.stat-item {
    text-align: center;
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(201,160,48,0.35);
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    margin-top: 4px;
}

/* ─── Hero Text Section ────────────────────────────────── */
.hero-text-section {
    background: var(--white);
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}
.hero-text-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.hero-text-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}
.hero-text-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 72px; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
}
.hero-text-sub {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* ─── Section Padding ──────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ─── Category Cards ───────────────────────────────────── */
.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow);
}
.cat-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61,43,31,0.22), 0 0 24px rgba(201,160,48,0.18);
}
.cat-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.cat-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-image img { transform: scale(1.08); }
.cat-card-icon {
    position: absolute;
    bottom: -20px; right: 20px;
    width: 48px; height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(196,30,58,0.4);
    border: 3px solid #fff;
}
.cat-card-body {
    padding: 30px 20px 20px;
}
.cat-card-body h5 {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 6px;
}
.cat-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* No-image category card */
.cat-card-noimg {
    background: linear-gradient(135deg, var(--cream-dark), var(--white));
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
}
.cat-card-noimg:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61,43,31,0.22), 0 0 24px rgba(201,160,48,0.18);
}
.cat-card-noimg .cat-icon-wrap {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 2rem;
}
.cat-card-noimg h5 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.cat-card-noimg p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ─── Category Sidebar ─────────────────────────────────── */
.cat-sidebar-sticky {
    position: sticky;
    top: 100px;
}
.cat-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.cat-sidebar-title {
    background: linear-gradient(135deg, var(--dark) 0%, #2A1508 100%);
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 14px 18px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(201,160,48,0.3);
}

.cat-sidebar-root {
    display: flex;
    align-items: center;
    padding: 11px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary) !important;
    text-decoration: none !important;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.cat-sidebar-root:hover,
.cat-sidebar-root.active {
    background: var(--primary);
    color: #fff !important;
}

.cat-sidebar-list {
    list-style: none;
    padding: 6px 0;
    margin: 0;
}
.cat-sidebar-list li { margin: 0; }

.cat-sidebar-item {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text) !important;
    text-decoration: none !important;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.cat-sidebar-item:hover {
    background: var(--cream);
    color: var(--primary) !important;
    border-left-color: var(--primary);
    padding-left: 22px;
}
.cat-sidebar-item.active {
    color: var(--primary) !important;
    font-weight: 700;
    border-left-color: var(--primary);
    background: rgba(196,30,58,0.05);
}

.cat-sidebar-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cat-sidebar-subitem {
    display: flex;
    align-items: center;
    padding: 7px 18px 7px 30px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.cat-sidebar-subitem:hover {
    color: var(--primary) !important;
    background: rgba(196,30,58,0.04);
    border-left-color: var(--gold);
    padding-left: 34px;
}
.cat-sidebar-subitem.active {
    color: var(--primary) !important;
    font-weight: 700;
    border-left-color: var(--gold);
    background: rgba(196,30,58,0.06);
}

@media (max-width: 991px) {
    .cat-sidebar-sticky { position: static; }
    .cat-sidebar { margin-bottom: 24px; }
}

/* ─── Marka Filtresi ───────────────────────────────────── */
.brand-filter-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
}
.brand-filter-box-title {
    background: linear-gradient(135deg, var(--dark) 0%, #2A1508 100%);
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 14px 18px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(201,160,48,0.3);
}
.brand-filter-box-body {
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.brand-btn {
    display: inline-block;
    padding: 6px 14px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark) !important;
    text-decoration: none !important;
    transition: var(--transition);
    background: var(--cream);
}
.brand-btn:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--dark) !important;
}
.brand-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff !important;
}

/* ─── Product Card ─────────────────────────────────────── */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61,43,31,0.22), 0 0 24px rgba(201,160,48,0.18);
}
.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--cream-dark);
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
    color: var(--border);
}
.product-badge-featured {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.stock-badge {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}
.stock-in    { background: #d4edda; color: #155724; }
.stock-out   { background: #f8d7da; color: #721c24; }
.stock-order { background: #fff3cd; color: #856404; }

.product-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-category-tag {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.product-card-body h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.price-current {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
.price-old {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-card-footer {
    padding: 0 18px 18px;
}

/* ─── Animal Card ──────────────────────────────────────── */
.animal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow);
}
.animal-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(61,43,31,0.22), 0 0 24px rgba(196,30,58,0.18);
}
.animal-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
}
.animal-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.animal-card:hover .animal-card-img img { transform: scale(1.06); }
.adopted-ribbon {
    position: absolute;
    top: 20px; right: -28px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}
.animal-card-body { padding: 18px; }
.animal-species-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.animal-card-body h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.animal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.animal-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}
.animal-meta-item i { color: var(--gold); }
.vaccine-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #d4edda;
    color: #155724;
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ─── About Section ────────────────────────────────────── */
.about-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2A1508 60%, var(--dark-mid) 100%);
    color: #fff;
}
.about-section h2,
.about-section h6 { color: #fff; }
.about-section p,
.about-section div[style*="color:var(--text-muted)"] { color: rgba(255,255,255,0.7) !important; }
.about-section .badge-custom { background: rgba(255,255,255,0.12); color: var(--gold); border-color: rgba(255,255,255,0.2); }
.about-section .feature-text h6 { color: rgba(255,255,255,0.95); font-weight: 700; }
.about-section .feature-text p { color: rgba(255,255,255,0.6) !important; }
.about-section .feature-item {
    background: rgba(201,160,48,0.08);
    border: 1px solid rgba(201,160,48,0.22);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
}
.about-section .feature-icon {
    background: linear-gradient(135deg, rgba(201,160,48,0.3), rgba(201,160,48,0.15));
    border: 1px solid rgba(201,160,48,0.35);
    color: var(--gold);
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 3px rgba(201,160,48,0.2);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-decoration {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}
.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    align-items: flex-start;
    height: 100%;
}
.feature-icon {
    min-width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}
.feature-text h6 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}
.feature-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ─── CTA Banner ───────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '🐾';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    right: -30px;
    bottom: -30px;
}

/* ─── Contact Section ──────────────────────────────────── */
.contact-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}
.contact-icon-wrap {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.form-control-brand {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--text);
    transition: var(--transition);
}
.form-control-brand:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,160,48,0.15);
    outline: none;
}
.form-label-brand {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* ─── Footer ───────────────────────────────────────────── */
#footer {
    background: linear-gradient(180deg, #2C1A10 0%, var(--dark) 30%, #1E100A 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
    border-top: 3px solid var(--primary);
}
.footer-logo img { height: 80px; margin-bottom: 16px; }
.footer-about {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-heading {
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a i { color: var(--gold); font-size: 0.75rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.footer-contact-icon {
    min-width: 36px; height: 36px;
    background: rgba(201,160,48,0.15);
    border: 1px solid rgba(201,160,48,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}
.footer-contact-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.footer-contact-text strong {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 22px 0;
    margin-top: 40px;
    text-align: center;
    background: rgba(0,0,0,0.2);
}
.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold); }

/* ─── Breadcrumb ───────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #3A1A0A 35%, var(--dark-mid) 65%, #2A1508 100%);
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { color: #fff; font-size: 2.2rem; font-weight: 800; }
.breadcrumb-custom { margin-top: 10px; }
.breadcrumb-custom .breadcrumb-item { font-size: 0.88rem; font-weight: 600; }
.breadcrumb-custom .breadcrumb-item a { color: var(--gold); }
.breadcrumb-custom .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ─── Product Detail ───────────────────────────────────── */
.product-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-dark);
    aspect-ratio: 1;
}
.product-main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
.product-thumbnails { display: flex; gap: 10px; margin-top: 12px; }
.product-thumb {
    width: 80px; height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}
.product-detail-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ─── WhatsApp Button ──────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 10px 30px rgba(37,211,102,0.7);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ─── Alert / Flash ────────────────────────────────────── */
.alert-brand {
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    padding: 14px 20px;
}

/* ─── Pagination ───────────────────────────────────────── */
.pagination .page-link {
    color: var(--dark);
    border-color: var(--border);
    padding: 10px 16px;
    font-weight: 700;
    transition: var(--transition);
    border-radius: 8px !important;
    margin: 0 3px;
}
.pagination .page-link:hover { background: var(--gold-light); border-color: var(--gold); color: var(--dark); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ─── Back to Top ──────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 46px; height: 46px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 15px var(--shadow-lg);
    transition: var(--transition);
    font-size: 1.1rem;
}
#backToTop:hover { background: var(--primary); transform: translateY(-3px); }
#backToTop.show { display: flex; }

/* ─── Loader ───────────────────────────────────────────── */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hide { opacity: 0; visibility: hidden; }
.loader-paw {
    font-size: 3rem;
    animation: loaderBounce 0.8s ease-in-out infinite alternate;
}
@keyframes loaderBounce {
    from { transform: scale(0.8); opacity: 0.5; }
    to { transform: scale(1.2); opacity: 1; }
}

/* ─── Mutlu Sonlar Slider ──────────────────────────────── */
.happy-endings-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2A1A10 60%, var(--dark-mid) 100%);
    position: relative;
    overflow: hidden;
}
.happy-endings-section::before {
    content: '🐾';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    top: -40px;
    right: -60px;
    pointer-events: none;
}

.happy-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-width: 820px;
    margin: 0 auto;
}

.happy-carousel-inner { border-radius: var(--radius-lg); }

.happy-slide {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: var(--dark);
}

.happy-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
.carousel-item.active .happy-slide img { transform: scale(1.02); }

/* Altta caption overlay */
.happy-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
    padding: 40px 28px 22px;
}

.happy-animal-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.happy-caption-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Gezinme okları */
.happy-prev,
.happy-next {
    width: 46px;
    height: 46px;
    background: rgba(201,160,48,0.85);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    opacity: 0.9;
}
.happy-prev { left: 16px; }
.happy-next { right: 16px; }
.happy-prev:hover,
.happy-next:hover {
    background: var(--gold);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
.happy-prev::after, .happy-next::after { display: none; }

/* Göstergeler */
.happy-indicators {
    bottom: 12px;
    gap: 6px;
    margin: 0;
}
.happy-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    opacity: 1;
    transition: var(--transition);
    flex-shrink: 0;
    margin: 0;
}
.happy-indicators .active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .happy-slide { height: 300px; }
    .happy-animal-name { font-size: 1.05rem; }
    .happy-caption-text { font-size: 0.82rem; }
    .happy-prev, .happy-next { width: 38px; height: 38px; font-size: 1rem; }
}

/* ─── 404 Page ─────────────────────────────────────────── */
.page-404 { min-height: 70vh; display: flex; align-items: center; }
.page-404 .big-number {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

/* ─── Navbar Arama ─────────────────────────────────────── */
.nav-search-btn {
    background: rgba(201,160,48,0.1);
    border: 1px solid rgba(201,160,48,0.25);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.nav-search-btn:hover { background: rgba(201,160,48,0.22); }

.nav-search-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.nav-search-overlay.active { display: flex; }
.nav-search-overlay-inner {
    width: 100%;
    max-width: 680px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}
.nav-search-overlay-form {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.nav-search-overlay-icon {
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 10px;
    flex-shrink: 0;
}
.nav-search-overlay-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: var(--dark);
}
.nav-search-overlay-input::placeholder { color: #aaa; }
.nav-search-overlay-btn {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-search-overlay-btn:hover { opacity: 0.88; }
.nav-search-overlay-close {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.nav-search-overlay-close:hover { background: rgba(255,255,255,0.25); }

/* ─── Mobil Üst Bar ────────────────────────────────────── */
.mobile-top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    background: var(--dark);
    border-bottom: 2px solid rgba(201,160,48,0.3);
    z-index: 1039;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.mobile-top-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
/* Mobile search button */
.mobile-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.mobile-top-search {
    background: rgba(201,160,48,0.1);
    border: 1px solid rgba(201,160,48,0.25);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.mobile-top-search:hover { background: rgba(201,160,48,0.2); }
.mobile-search-expand {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    background: var(--dark);
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    z-index: 1050;
    border-bottom: 2px solid rgba(201,160,48,0.3);
}
.mobile-search-wrap.active .mobile-search-expand { display: flex; }
.mobile-search-wrap.active .mobile-top-search { display: none; }
.mobile-search-form {
    display: flex;
    flex: 1;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,160,48,0.3);
    border-radius: 50px;
    overflow: hidden;
    padding: 0 4px 0 14px;
}
.mobile-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.88rem;
    padding: 8px 0;
    font-family: inherit;
}
.mobile-search-input::placeholder { color: rgba(255,255,255,0.45); }
.mobile-search-submit {
    background: var(--gold);
    border: none;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.85rem;
    cursor: pointer;
    flex-shrink: 0;
}
.mobile-search-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ─── Arama Sayfası ─────────────────────────────────────── */
.search-page-form {
    max-width: 600px;
    margin: 0 auto;
}
.search-page-input-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: border-color 0.2s;
}
.search-page-input-wrap:focus-within { border-color: var(--gold); }
.search-page-icon {
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 10px;
    flex-shrink: 0;
}
.search-page-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: var(--dark);
}
.search-page-input::placeholder { color: #aaa; }
.search-page-btn {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.search-page-btn:hover { opacity: 0.88; }

/* Mobil top bar için içerik kayması */
@media (max-width: 991px) {
    body { padding-top: 56px; }
    .page-loader { top: 56px; }
    #pageLoader { top: 56px; }
}

/* ─── Mobil Alt Navigasyon ─────────────────────────────── */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--border);
    display: flex;
    z-index: 1040;
    box-shadow: 0 -4px 24px rgba(61,43,31,0.13);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px 8px;
    color: var(--text-muted);
    text-decoration: none !important;
    font-size: 0.65rem;
    font-weight: 700;
    gap: 4px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-item i {
    font-size: 1.35rem;
    line-height: 1;
    transition: var(--transition);
}

.mobile-nav-item span {
    letter-spacing: 0.2px;
    line-height: 1;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0; left: 25%; right: 25%;
    height: 2px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.mobile-nav-item.active {
    color: var(--primary);
}
.mobile-nav-item.active::before { transform: scaleX(1); }
.mobile-nav-item.active i { transform: translateY(-2px); }

.mobile-nav-item:hover { color: var(--primary); }

/* ─── Responsive ───────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════
   MOBİL & TABLET RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 991px) ──────────────────────────────────── */
@media (max-width: 991px) {
    /* Navbar gizle — alt navigasyon kullanılıyor */
    #mainNav { display: none !important; }
    body { padding-bottom: 72px; }

    /* Genel section padding */
    .section-pad { padding: 50px 0; }
    .section-pad-sm { padding: 36px 0; }

    /* Stats */
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px; }
    .stat-number { font-size: 2rem; }

    /* Kayan butonlar */
    .whatsapp-float { bottom: 82px; }
    #backToTop { bottom: 152px; }

    /* Page header */
    .page-header { padding: 50px 0 30px; }
    .page-header h1 { font-size: 1.6rem; }

    /* About section — resim yüksekliği */
    .about-img-wrap img { height: 300px; }
    .about-decoration { display: none; }

    /* Footer — kolonlar yığılıyor, boşlukları azalt */
    .footer-logo img { height: 64px; }
    footer .section-pad { padding: 40px 0 0; }

    /* Ürün detay sayfası */
    .product-detail-main { flex-direction: column; }

    /* Kategori sidebar — sticky kaldır */
    .cat-sidebar-sticky { position: static; }
}

/* ── Mobil (≤ 767px) ───────────────────────────────────── */
@media (max-width: 767px) {
    /* Tipografi */
    .section-title { font-size: 1.45rem; }
    .hero-text-title { font-size: 1.5rem !important; }
    .hero-text-section { padding: 44px 0; }

    /* Stats */
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.78rem; }
    .stats-bar { padding: 28px 0; }

    /* Hero split — dikey yığılma */
    .hero-split-panel { padding: 50px 20px 40px; min-height: 60vh; }
    .hero-animal-mini-img { height: 140px; }
    .hero-split-title { font-size: 1.5rem !important; }
    .hero-split-sub { font-size: 0.88rem; margin-bottom: 18px; }
    .hero-badge { font-size: 0.7rem; padding: 4px 12px; }

    /* Kategori kartları */
    .cat-card-image { height: 130px; }
    .cat-card-body { padding: 16px 12px 14px; }
    .cat-card-body h5 { font-size: 0.85rem; word-break: break-word; hyphens: auto; }
    .cat-card-body p { font-size: 0.75rem; }
    .cat-card-noimg { padding: 22px 12px; }
    .cat-card-noimg h5 { font-size: 0.85rem; word-break: break-word; hyphens: auto; }
    .cat-card-noimg p { font-size: 0.75rem; }
    .cat-icon-wrap { width: 50px; height: 50px; font-size: 1.3rem; }

    /* Ürün kartları */
    .product-card-img { height: 160px; }
    .product-card-body { padding: 12px; }
    .product-card-body h5 { font-size: 0.85rem; margin-bottom: 6px; }
    .product-card-footer { padding: 0 12px 12px; }
    .product-card-footer .btn-primary-brand { font-size: 0.78rem; padding: 8px; }
    .price-current { font-size: 1rem; }
    .product-category-tag { font-size: 0.68rem; }

    /* Ürün badge'leri çakışma düzeltmesi */
    .product-badge-featured { font-size: 0.62rem; padding: 2px 7px; top: 8px; left: 8px; }
    .stock-badge { font-size: 0.62rem; padding: 2px 7px; top: auto; bottom: 8px; right: 8px; }

    /* Hayvan kartları */
    .animal-card-img { height: auto; aspect-ratio: 1; }

    /* About section */
    .about-img-wrap { display: none; }
    .about-section .col-lg-5 { display: none; }
    .about-section .col-lg-7 { flex: 0 0 100%; max-width: 100%; }
    .feature-item { gap: 8px; margin-bottom: 0; overflow: hidden; height: 100%; align-items: flex-start; }
    .about-section .feature-item { padding: 10px; }
    .feature-icon { min-width: 34px; height: 34px; font-size: 0.9rem; flex-shrink: 0; }
    .feature-text h6 { font-size: 0.8rem; }
    .feature-text p { font-size: 0.76rem; }

    /* Footer */
    .footer-logo img { height: 56px; margin-bottom: 10px; }
    .footer-about { font-size: 0.83rem; margin-bottom: 14px; }
    .footer-heading { font-size: 0.85rem; margin-bottom: 12px; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { font-size: 0.83rem; }
    .footer-contact-item { gap: 10px; margin-bottom: 12px; }
    .footer-contact-icon { width: 32px; height: 32px; font-size: 0.85rem; }
    .footer-social a { width: 34px; height: 34px; font-size: 0.95rem; }
    .footer-bottom { padding: 14px 0; font-size: 0.78rem; }

    /* İletişim sayfası */
    .contact-card { padding: 20px; }
    .contact-icon-wrap { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 12px; }

    /* Sayfa başlığı */
    .page-header { padding: 44px 0 24px; }
    .page-header h1 { font-size: 1.4rem; }
    .breadcrumb-custom { font-size: 0.78rem; }

    /* Sayfalama */
    .pagination .page-link { padding: 6px 10px; font-size: 0.82rem; }

    /* Butonlar */
    .btn-primary-brand { font-size: 0.88rem; padding: 11px 20px; }
    .btn-gold { font-size: 0.88rem; padding: 11px 20px; }

    /* Badge */
    .badge-custom { font-size: 0.7rem; padding: 4px 12px; }
}

/* ── Küçük Mobil (≤ 575px) ─────────────────────────────── */
@media (max-width: 575px) {
    /* Genel */
    .section-pad { padding: 40px 0; }
    .section-title { font-size: 1.3rem; }

    /* Hero split */
    .hero-split-panel { padding: 60px 16px 36px; }
    .hero-animal-mini-img { height: 120px; }
    .hero-animal-mini-info { padding: 6px 8px 8px; }
    .hero-animal-mini-name { font-size: 0.78rem; }
    .hero-animal-mini-species { font-size: 0.68rem; }
    .hero-happy-slide { height: 280px; }

    /* Ürün kartları — tek sütun grid'de daha iyi */
    .product-card-img { height: 175px; }

    /* Stats */
    .stat-number { font-size: 1.6rem; }

    /* Hero text */
    .hero-text-section { padding: 36px 0; }
    .hero-text-sub { font-size: 0.92rem; }

    /* Kayan butonlar */
    .whatsapp-float { bottom: 78px; right: 14px; width: 48px; height: 48px; font-size: 1.4rem; }
    #backToTop { bottom: 148px; right: 14px; width: 38px; height: 38px; font-size: 0.95rem; }

    /* Footer — daha sıkışık */
    footer .row.g-4 { --bs-gutter-y: 1.5rem; }

    /* Kategori sidebar */
    .cat-sidebar { padding: 16px; }
    .brand-filter-box-body { gap: 6px; }
    .brand-btn { font-size: 0.75rem; padding: 5px 10px; }
}

/* ── Çok Küçük (≤ 390px) ───────────────────────────────── */
@media (max-width: 390px) {
    .hero-split-panel { padding: 56px 14px 32px; }
    .hero-animal-mini-img { height: 105px; }
    .product-card-img { height: 155px; }
    .stat-number { font-size: 1.4rem; }
    .section-title { font-size: 1.2rem; }
    .page-header h1 { font-size: 1.25rem; }
}

/* ─── Animations ───────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
