/* ==========================================
   BALDO - Pilav Üstü | Custom Stylesheet
   Theme Color: #204f24 | Background: #ededed
   Font: Plus Jakarta Sans
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --baldo-primary: #204f24;
  --baldo-primary-hover: #163819;
  --baldo-primary-light: rgba(32, 79, 36, 0.1);
  --baldo-bg: #ededed;
  --baldo-white: #ffffff;
  --baldo-dark: #111827;
  --baldo-muted: #6b7280;
  --baldo-accent: #d97706;
  --baldo-border: #d1d5db;
  --baldo-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --baldo-shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --baldo-shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
  --baldo-radius: 16px;
  --baldo-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--baldo-font) !important;
  background-color: var(--baldo-bg) !important;
  color: var(--baldo-dark);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

/* Custom Selection */
::selection {
  background-color: var(--baldo-primary);
  color: var(--baldo-white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--baldo-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--baldo-primary);
  border-radius: 4px;
}

/* ==========================================
   BALDO MODERN TEMİZ NAVBAR (TEK KOD)
   ========================================== */
.baldo-header {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.header-logo {
  height: 29px !important;
  width: auto;
  object-fit: contain;
}

/* Menü Linkleri */
.baldo-header .navbar-nav .nav-link {
  color: #2b2b2b !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 8px 18px !important;
  border-radius: 25px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

/* Hover Efekti */
.baldo-header .navbar-nav .nav-link:hover:not(.active) {
  color: var(--baldo-primary) !important;
  background-color: var(--baldo-primary-light) !important;
}

/* Aktif Sayfa Vurgusu */
.baldo-header .navbar-nav .nav-link.active {
  color: #ffffff !important;
  background-color: var(--baldo-primary) !important;
  font-weight: 700 !important;
}

/* Sipariş Butonu (BALDO Kurumsal Yeşili) */
.btn-baldo-primary {
  background-color: var(--baldo-primary) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  transition: all 0.25s ease-in-out !important;
  box-shadow: 0 4px 12px rgba(32, 79, 36, 0.25) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-baldo-primary:hover, .btn-baldo-primary:focus {
  background-color: var(--baldo-primary-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(32, 79, 36, 0.35) !important;
}

.btn-baldo-outline {
  background-color: transparent !important;
  color: var(--baldo-primary) !important;
  border: 2px solid var(--baldo-primary) !important;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 22px;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-baldo-outline:hover {
  background-color: var(--baldo-primary) !important;
  color: var(--baldo-white) !important;
  transform: translateY(-2px);
}

/* MOBİL GÖRÜNÜM DÜZELTMELERİ */
@media (max-width: 991.98px) {
  .baldo-header .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .baldo-header .navbar-nav .nav-link {
    padding: 10px 15px !important;
    margin-bottom: 4px;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  padding: 60px 0 40px;
}

.hero-badge {
  background-color: var(--baldo-primary-light);
  color: var(--baldo-primary);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--baldo-primary);
  letter-spacing: -0.03em;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--baldo-muted);
  line-height: 1.6;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--baldo-shadow-lg);
  border: 4px solid var(--baldo-white);
}

/* ==========================================
   CARDS & GRID
   ========================================== */
.baldo-card {
  background-color: var(--baldo-white);
  border-radius: var(--baldo-radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--baldo-shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.baldo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--baldo-shadow-md);
  border-color: var(--baldo-primary-light);
}

.baldo-card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.baldo-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.baldo-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--baldo-dark);
  margin-bottom: 8px;
}

.baldo-card-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--baldo-primary);
}

.feature-box {
  background-color: var(--baldo-white);
  border-radius: var(--baldo-radius);
  padding: 28px 20px;
  box-shadow: var(--baldo-shadow-sm);
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--baldo-shadow-md);
  border-top: 4px solid var(--baldo-primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--baldo-primary-light);
  color: var(--baldo-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ==========================================
   CATEGORY FILTER TABS
   ========================================== */
.category-tab-btn {
  background-color: var(--baldo-white);
  color: var(--baldo-dark);
  border: 1px solid #d1d5db;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.category-tab-btn.active, .category-tab-btn:hover {
  background-color: var(--baldo-primary);
  color: var(--baldo-white);
  border-color: var(--baldo-primary);
}

/* ==========================================
   FOOTER ALANI (ANTRASİT TEMA)
   ========================================== */
footer, 
.site-footer {
    background-color: #22252a !important; /* Antrasit / Koyu Gri */
    color: #ffffff;                        /* Yazı renkleri beyaz */
}

/* Footer içindeki linkler */
footer a, 
.site-footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

/* Footer linklerinin üzerine gelindiğinde (Hover) */
footer a:hover, 
.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer alt telif/bilgi çizgisi alanı varsa */
footer .footer-bottom,
.site-footer .footer-bottom {
    background-color: #1a1c1e !important; /* Bir tık daha koyu antrasit */
    border-top: 1px solid #33373d;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 30px 0;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .btn-baldo-outline {
    width: 100%;
  }
  .baldo-card-img-top {
    height: 170px;
  }
}

.swiper-slide .hero-product-png {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    max-height: 440px;
    object-fit: contain;
}

.swiper-slide-active .hero-product-png {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.swiper-slide .hero-content-box {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.swiper-slide-active .hero-content-box {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination-bullet-active {
    background-color: #204f24 !important;
    width: 24px !important;
    border-radius: 6px !important;
}

/* Modern Kart Hover Efektleri */
.product-card {
    transition: transform 0.35s ease, shadow 0.35s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
}
.product-card .product-img-png {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.12));
}
.product-card:hover .product-img-png {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

/* Yıldız Animasyonu */
@keyframes pulseStar {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.25) rotate(15deg); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
.animated-star {
    display: inline-block;
    animation: pulseStar 2s infinite ease-in-out;
}

/* WhatsApp Buton Rengi ve Hover */
.btn-whatsapp {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background-color: #1ebc57 !important;
    border-color: #1ebc57 !important;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35) !important;
}
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}
.feature-icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: rgba(32, 79, 36, 0.1);
    color: #204f24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    font-size: 1.4rem;
}
.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.about-img-wrapper img {
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 400px;
}
.about-img-wrapper:hover img {
    transform: scale(1.04);
}
.wheel-outer-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    user-select: none;
    touch-action: none;
}

#wheelCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: grab;
}

#wheelCanvas:active {
    cursor: grabbing;
}

/* Üstteki Kırmızı İğne */
.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 24px solid #dc3545;
    z-index: 10;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.3));
}

/* Ortadaki Çevir Butonu */
.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #204f24;
    color: #ffffff;
    border: 4px solid #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease;
}

.wheel-spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #173b1b;
}

.wheel-result-card {
    transition: all 0.3s ease;
}
.garnitur-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    cursor: grab;
    user-select: none;
    padding: 15px 0;
}

.garnitur-marquee-wrapper:active {
    cursor: grabbing;
}

.garnitur-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 12px; 
    will-change: transform;
}

/* Eğik Gri Kutu Tasarımı */
.garnitur-skew-card {
    background-color: #ededed;
    padding: 20px 35px;
    transform: skewX(-12deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.garnitur-skew-card:hover {
    background-color: #e2e2e2;
}

/* Kutu İçindeki Dik Duran Yazı */
.garnitur-text {
    transform: skewX(12deg);
    display: inline-block;
    font-weight: 800;
    font-size: 1.05rem;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}
.btn-baldo-center-menu {
    background-color: #204f24 !important;
    border-color: #204f24 !important;
    color: #ffffff !important;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.btn-baldo-center-menu:hover {
    background-color: #173b1b !important;
    border-color: #173b1b !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(32, 79, 36, 0.28) !important;
}

.btn-baldo-center-menu .animated-arrow {
    transition: transform 0.3s ease;
}

.btn-baldo-center-menu:hover .animated-arrow {
    transform: translateX(5px);
}
.builder-card-wrapper {
    background-color: #eaeaea;
    border: 1px solid #e0e0e0;
}

.custom-builder-select {
    background-color: #a8a8a8 !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    cursor: pointer;
}

.custom-builder-select:focus {
    box-shadow: 0 0 0 3px rgba(32, 79, 36, 0.25) !important;
}

.custom-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.custom-checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 22px;
    width: 22px;
    background-color: #a8a8a8;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.custom-checkbox-item:hover input ~ .checkmark {
    background-color: #939393;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 12px;
    border: solid #204f24;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox-item input:checked ~ .checkmark:after {
    display: block;
}

.btn-builder-whatsapp {
    background-color: #1b4d20 !important;
    color: #ffffff !important;
    border: none !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-builder-whatsapp:hover {
    background-color: #133a17 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 77, 32, 0.35) !important;
}
.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #204f24;
    box-shadow: 0 0 0 3px rgba(32, 79, 36, 0.15);
}

.map-card-wrapper {
    min-height: 280px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 260px;
    aspect-ratio: 1 / 1;
}

@media (max-width: 991px) {
    .map-container {
        aspect-ratio: 16 / 9;
    }
}

.main-footer {
    background-color: #22252a;
    color: #ededed;
}

.footer-links a {
    color: #ededed;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #25d366;
}

.social-icons a {
    color: #ededed;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .main-footer .social-icons {
        margin-left: auto;
    }
    
    .main-footer .col-md-4:last-child {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}
.footer-logo {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-logo:hover {
    transform: scale(1.45);
}
.extra-small {
    font-size: 0.78rem;
}

.menu-mini-card {
    transition: all 0.2s ease;
}

.menu-mini-card:hover {
    border-color: #204f24 !important;
    transform: translateY(-2px);
}

.order-builder-sticky {
    position: sticky;
    top: 90px;
}

.btn-outline-dashed {
    border: 2px dashed #204f24;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-outline-dashed:hover {
    background: rgba(32, 79, 36, 0.05);
}

.garnish-chip {
    cursor: pointer;
}

.garnish-chip input {
    display: none;
}

.garnish-chip span {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: #4b5563;
    user-select: none;
    transition: all 0.2s ease;
}

.garnish-chip input:checked + span {
    background-color: #204f24;
    color: #ffffff;
    border-color: #204f24;
}

.remove-bucket-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.8rem;
    color: #dc3545;
    cursor: pointer;
}
.product-clickable-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-clickable-card:hover {
    border-color: #204f24 !important;
    background-color: rgba(32, 79, 36, 0.02) !important;
    transform: translateY(-2px);
}

.remove-cart-item-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.8rem;
    color: #dc3545;
    cursor: pointer;
}

.insta-card .insta-overlay {
    background: rgba(32, 79, 36, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.insta-card img {
    transition: transform 0.4s ease;
}

.insta-card:hover img {
    transform: scale(1.08);
}
.mobile-sticky-bar {
    z-index: 1040;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08) !important;
}

.h-85 {
    height: 85vh !important;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px;
    }
}
.hover-top {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.floating-img-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-bucket {
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
    animation: floatAnimation 3.5s ease-in-out infinite;
}

.float-delay-1 {
    animation-delay: 0.6s;
}

.float-delay-2 {
    animation-delay: 1.2s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1.5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.product-floating-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
}

.hover-scale {
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.1);
    background-color: #bb2d3b !important;
}

.flame-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-color: transparent !important;
}

.flame-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        #ff0000, 
        #ff7300, 
        #fffb00, 
        #ff0000, 
        #ff7300, 
        #fffb00
    );
    animation: flameRotate 3s linear infinite;
    z-index: -2;
}

.flame-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #f8f9fa;
    border-radius: calc(1rem - 2px);
    z-index: -1;
}

.flame-card {
    box-shadow: 0 0 15px rgba(255, 68, 0, 0.35);
    animation: flameGlow 1.5s ease-in-out infinite alternate;
}

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

@keyframes flameGlow {
    from { box-shadow: 0 0 10px rgba(255, 68, 0, 0.3); }
    to { box-shadow: 0 0 20px rgba(255, 115, 0, 0.65), 0 0 30px rgba(255, 251, 0, 0.3); }
}

.green-flame-banner {
    position: relative;
    z-index: 1030;
    background: #0d2b16;
}

.green-flame-banner::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(
        #198754, 
        #20c997, 
        #a8ff78, 
        #00ff66, 
        #198754, 
        #20c997
    );
    animation: greenFlameRotate 4s linear infinite;
    z-index: 1;
}

.green-flame-banner::after {
    content: '';
    position: absolute;
    inset: 2px 0;
    background: #0a2312;
    z-index: 2;
}

.green-flame-banner {
    box-shadow: 0 0 15px rgba(32, 201, 151, 0.4);
    animation: greenFlameGlow 1.5s ease-in-out infinite alternate;
}

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

@keyframes greenFlameGlow {
    from { box-shadow: 0 0 10px rgba(25, 135, 84, 0.4); }
    to { box-shadow: 0 0 22px rgba(168, 255, 120, 0.75), 0 0 30px rgba(32, 201, 151, 0.5); }
}

.animated-clock-icon {
    display: inline-block;
    animation: clockShake 2s ease-in-out infinite;
}

@keyframes clockShake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-15deg) scale(1.15); }
    30% { transform: rotate(15deg) scale(1.15); }
    45% { transform: rotate(-10deg) scale(1.1); }
    60% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(0deg) scale(1); }
}

.counter-tick {
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.counter-tick.pulse-tick {
    animation: numberPulse 0.4s ease-out;
}

@keyframes numberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); color: #ffffff !important; }
    100% { transform: scale(1); }
}

.baldo-toast {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 109999; /* Modalların ve offcanvasların üzerinde çıkması için artırıldı */
    background-color: #212529;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    pointer-events: none;
}

.baldo-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.baldo-toast .toast-icon {
    /* Arka plan rengini JS'ten dinamik alması için boş bırakıldı */
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .baldo-toast {
        bottom: 25px;
    }
}

.baldo-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.baldo-toast .toast-icon {
    background-color: #198754;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

@media (min-width: 992px) {
    .baldo-toast {
        bottom: 25px;
    }
}

.btn-remove-item {
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 50%;
    background-color: #343a40;
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-remove-item:hover {
    background-color: #dc3545;
    color: #ffffff;
    transform: scale(1.1);
}
/* ÇEREZ ONAY BARI */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #edf2f7;
    padding: 18px 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease-in-out;
    transform: translateY(120%);
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-banner-icon {
    font-size: 1.5rem;
    color: #204f24;
    line-height: 1;
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #204f24;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
/* ==========================================
   HESABIM - GENEL BAKIŞ İSTATİSTİK KARTLARI
   ========================================== */
@keyframes baldoFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.stat-card {
    background-color: var(--baldo-white);
    border-radius: var(--baldo-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--baldo-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: baldoFadeUp 0.5s ease both;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--baldo-shadow-md);
    border-color: var(--baldo-primary-light);
}

.stat-card .stat-icon {
    transition: transform 0.35s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(-4deg);
}

.stat-card:nth-child(1) { animation-delay: 0.03s; }
.stat-card:nth-child(2) { animation-delay: 0.10s; }
.stat-card:nth-child(3) { animation-delay: 0.17s; }
.stat-card:nth-child(4) { animation-delay: 0.24s; }

.stat-progress-card {
    border-radius: var(--baldo-radius);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    animation: baldoFadeUp 0.5s ease 0.30s both;
}

.stat-progress-card:hover {
    box-shadow: var(--baldo-shadow-sm);
    border-color: var(--baldo-primary-light);
}

.stat-last-order-card {
    border-radius: var(--baldo-radius);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    animation: baldoFadeUp 0.5s ease 0.36s both;
}

.stat-last-order-card:hover {
    box-shadow: var(--baldo-shadow-sm);
    border-color: var(--baldo-primary-light);
    transform: translateY(-3px);
}
