@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #f95555;
  --primary-color-dark: #bb0811;
  --text-dark: #171717;
  --text-light: #737373;
  --light: #e5e5e5;
  --extra-light: #fdfaf6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
}

.section__header {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.section__header span {
  position: relative;
  isolation: isolate;
}

.section__header span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 100%;
  border-bottom: 4px solid var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px 20px 5px 20px;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9999;
}

.nav__header {
  padding: 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;

}

.nav__logo .logo-dark {
  display: none;
}

.nav__logo .logo-white {
  max-width: 60px;
}

.nav__menu__btn {
  display: flex;
  align-items: center; /* Dikey olarak ortalamak için */
  gap: 8px; /* Yazı ve ikon arasında boşluk */
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}
.nav__menu__btn i {
  font-size: 1.5rem; /* Yazı ile aynı boyutta yap */
  display: flex; /* Ortalamaya yardımcı olur */
  align-items: center;
}


.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: none;
}

/* 🎨 Genel Carousel Tasarımı */
.carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px); /* Daha iyi yerleşim için yüksekliği biraz azalt */
  min-height: 500px;
  display: flex;
  align-items: center; /* İçeriği tam ortala */
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  background: #000; /* Arkaplanı siyah yaparak daha premium görünüm */
}

/* 🎥 Carousel İç Yapısı */
.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 📷 Carousel Görselleri */
.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8); /* Hafif koyu efekt */
  transition: transform 0.5s ease-in-out; /* Geçişleri yumuşat */
}

/* 🖌 Opak Katman */
.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6); /* Hafif koyulaştırma */
  z-index: 1;
}

/* 🎭 Carousel Yazı Kutusu - Tüm İçeriği Yukarı Çek ve Ortala */
.carousel .carousel-caption {
  position: absolute;
  top: 45%; /* İçeriği biraz yukarı al */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  color: white;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center; /* İçeriği yatay ortala */
  justify-content: center; /* İçeriği dikey ortala */
}

/* 📝 Başlık */
.carousel .carousel-caption h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px; /* Başlık ile altındaki metin arasındaki boşluğu azalt */
  text-transform: uppercase;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  animation: fadeInLeft 1s ease-in-out;
}

/* 🔡 Alt Metin */
.carousel .carousel-caption p {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px; /* Boşluğu azaltarak daha iyi hizalama */
  font-family: 'Poppins', sans-serif;
  color: #FFDD57; /* Sushi için altın tonları */
  animation: fadeInRight 1s ease-in-out;
}


/* 🎯 Küçük Ok Butonları */
.carousel-control-prev,
.carousel-control-next {
  width: 3%; /* Butonları küçült */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.6);
  padding: 10px; /* Buton iç padding küçültüldü */
  border-radius: 50%;
  width: 30px; /* Küçültülmüş boyut */
  height: 30px; /* Küçültülmüş boyut */
  transition: background 0.3s ease-in-out;
}


/* 🔘 Carousel İndikatörler (Alt Noktalar) */
.carousel-indicators li {
  background-color: #FF4500; /* Turuncu noktalar */
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}

.carousel-indicators .active {
  transform: scale(1.3); /* Aktif nokta büyük */
  background-color: var(--primary-color); /* Altın sarısı */
  margin-bottom: 20px;
}

/* 📱 Responsive Tasarım */
@media (max-width: 768px) {
  .carousel .carousel-caption h1 {
      font-size: 2.5rem;
  }

  .carousel .carousel-caption p {
      font-size: 1.2rem;
  }

}

@media (max-width: 576px) {
  .carousel .carousel-caption h1 {
      font-size: 2rem;
  }

  .carousel .carousel-caption p {
      font-size: 1rem;
  }

}

/* 🌟 Önceki Animasyon Efekti */

/* Başlık Soldan Gelir */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px); /* Soldan gelir */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Alt Metin Sağdan Gelir */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px); /* Sağdan gelir */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 🎨 Butonların Genel Tasarımı */
.carousel-buttons {
  align-items: center; /* Butonları tam ortala */
  display: flex;
  gap: 15px; /* Butonlar arasındaki boşluk */
  justify-content: center; /* Ortaya hizala */
  margin-top: 20px;
}

/* 🟢 Sifariş Et Butonu (Dolu Renkli - Primary) */
.carousel-buttons .btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color-dark);
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border-radius: 5px 20px 5px 20px; /* Sağ üst ve alt köşeler yuvarlatıldı */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.carousel-buttons .btn-primary:hover {
  background: var(--primary-color-dark);
  border-color: var(--primary-color);
  color: white;
}

/* ⚫ Menyunu Gör Butonu (Outline - Şeffaf) */
.carousel-buttons .btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border-radius: 5px 20px 5px 20px; /* Sağ üst ve alt köşeler yuvarlatıldı */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.carousel-buttons .btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color-dark);
}

/* 📱 Responsive Buton Düzeni */
@media (max-width: 768px) {
  .carousel .carousel-caption {
    top: 55%; /* Daha iyi hizalama */
    width: 90%;
  }

  .carousel .carousel-caption h1 {
      font-size: 2.2rem;
  }

  .carousel .carousel-caption p {
      font-size: 1.1rem;
  }

  .carousel-buttons {
      flex-direction: column; /* Küçük ekranlarda butonlar alt alta */
  }

  .carousel-buttons .btn {
      width: 100%; /* Ekranı kaplasın */
  }
}



/* Page Header - Şık Arxa Plan Dizaynı */
.page-header {
  width: 100%;
  height: 300px;
  background: linear-gradient(to right, rgba(74, 74, 74, 0.7), rgba(76, 76, 76, 0.8)), 
            url('https://i.ibb.co/Hf9rZFHP/sushi-back.png') center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 50px 20px;
  color: white;
}

/* Məzmunun Ortalanması */
.page-header-content {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: inline-block;
  text-align: center;
}

/* Başlıq Dizaynı */
.page-header-content h1 {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: white;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 18px;
  color: white;
}

.breadcrumb a {
  text-decoration: none;
  color: #ffcc00;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: white;
}

/* Responsiv Dizayn */
@media (max-width: 768px) {
  .page-header {
      margin-top: 4.5rem;
      height: 250px;
  }

  .page-header-content {
      padding: 15px 30px;
      border-radius: 12px;
  }

  .page-header-content h1 {
      font-size: 36px;
  }

  .breadcrumb {
      font-size: 16px;
  }
}



/* Bölmə başlığı */
.home_menu__container .section__header {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
}

/* Konteyner (home menyu bölməsi) */
.home_menu__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px;
}

/* Grid sistemini düzəlt */
.home_menu__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100%;
  padding-bottom: 40px;
}

/* Kart dizaynı */
.home_menu__card {
  width: 280px;
  height: 420px;
  padding: 20px;
  text-align: center;
  background-color: var(--white);
  border-radius: 1.5rem;
  transition: 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Hover effekti */
.home_menu__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* 🔥 Şəkil dizaynı (Dikdörtgen) */
.home_menu__card img {
  width: 100%;
  height: 180px; /* Daha böyük dikdörtgen görünüş */
  object-fit: cover;
  border-radius: 1rem; /* Kartın ümumi dizaynı ilə uyğun */
  margin-bottom: 12px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

/* Hover zamanı şəkil */
.home_menu__card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

/* Başlıq */
.home_menu__card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* 📝 Açıklama (Uzun mətnlər üçün) */
.home_menu__card p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  max-width: 95%;
  max-height: 3.2em; /* Təxminən 2 sətirlik mətn göstər */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Maksimum 2 sətir göstər */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

/* Qiymət dizaynı */
.home_menu__card__footer h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Kart alt hissəsi */
.home_menu__card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

/* Buttonlar */
.home_menu__card__footer .btn {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1.4rem;
  border-radius: 0.6rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  transition: all 0.3s ease-in-out;
}

.home_menu__card__footer .btn:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.07);
}

/* 📱 **Mobil Uyğunlaşdırma** */
@media (max-width: 768px) {
  .home_menu__grid {
      flex-direction: column;
      align-items: center;
      padding-bottom: 25px;
  }

  .home_menu__card {
      width: 95%;
      max-width: 320px;
      height: auto;
      padding: 15px;
  }

  .home_menu__card img {
      height: 140px; /* Mobil üçün daha kiçik ölçü */
  }

  .home_menu__card p {
      font-size: 0.9rem;
      max-height: 4.5em; /* Daha çox mətn göstər */
      -webkit-line-clamp: 3; /* Mobil üçün 3 sətir */
  }
}

/* "Bütün menyunu gör" düyməsi */
.home_menu__btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 25px;
  margin-top: 25px;
}

.home_menu__btn .btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home_menu__btn .btn:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.08);
}


/* 📌 Xidmətlər Bölməsi */
.service {
  position: relative;
  background: var(--white);
  padding: 70px 0;
}

/* Bölmə Başlığı */
.service__container .section__header {
  text-align: center;
  font-size: 1.8rem; /* Biraz kiçildildi */
  font-weight: 600; /* Daha yumşaq görünüş üçün */
  margin-bottom: 2.5rem; /* Daha balanslı boşluq */
  color: var(--text-dark);
}

/* 📌 Modern Grid */
.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* 📌 Kart Dizaynı */
.service__card {
  position: relative;
  padding: 35px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15); /* Şüşə effekt */
  backdrop-filter: blur(15px);
  border-radius: 18px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* 📌 Hover effekti */
.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* 📌 İkon Dizaynı */
.service__icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  transition: 0.3s ease-in-out;
}

/* 📌 Hover zamanı ikon */
.service__card:hover .service__icon {
  background: var(--primary-color-dark);
  transform: scale(1.08);
}

/* 📌 Başlıq */
.service__content h4 {
  font-size: 1.3rem;
  font-weight: 500; /* Daha yüngül font */
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* 📌 Açıklama */
.service__content p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light); /* Tam qara deyil, tünd boz (gray-black) */
  line-height: 1.6rem;
}

/* 📱 **Mobil Uyğunlaşdırma** */
@media (max-width: 768px) {
  .service__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service__container .section__header {
    font-size: 1.6rem;
  }

  .service__card {
    padding: 30px;
  }

  .service__icon {
    width: 65px;
    height: 65px;
    font-size: 2rem;
  }

  .service__content h4 {
    font-size: 1.2rem;
  }

  .service__content p {
    font-size: 0.95rem;
    line-height: 1.5rem;
  }
}


/* Haqqımızda Bölməsi */
.banner {
  background: var(--white);
  padding: 50px 0; /* Daha kiçik padding */
}

/* Konteyner */
.banner__container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* İki sütunlu dizayn */
  align-items: center;
  gap: 2.5rem; /* Daha kiçik boşluq */
  margin: auto;
  padding: 0 20px;
}

/* Şəkil */
.banner__image {
  display: flex;
  justify-content: center;
}

.banner__image img {
  max-width: 400px; /* Daha kiçik şəkil */
  border-radius: 2rem; /* Daha az radius */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Daha yumşaq kölgə */
  transition: transform 0.3s ease-in-out;
}

/* Hover effekti */
.banner__image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Haqqımızda Başlığı */
.banner__content .section__header {
  font-size: 1.8rem; /* Daha kiçik font */
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Mətn */
.banner__content p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem; /* Daha kiçik font */
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.6rem;
}

/* Düymə Stili */
.banner__btn {
  margin-top: 15px;
}

.banner__btn .btn {
  font-size: 1rem; /* Daha kiçik düymə */
  font-weight: 600;
  padding: 10px 22px; /* Daha balanslı padding */
  border-radius: 8px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner__btn .btn:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.04);
}

/* 📱 **Mobil uyğunlaşdırma** */
@media (max-width: 992px) {
  .banner__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .banner__image img {
    max-width: 80%;
  }

  .banner__content .section__header {
    font-size: 1.6rem;
  }

  .banner__content p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .banner__btn .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* 📌 Footer Bölməsi */
.footer {
  position: relative;
  background: linear-gradient(to right, #181818, #222222);
  padding: 70px 0;
  color: var(--white);
  text-align: center;
}

/* 📌 Konteyner */
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* 📌 Loqo */
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Loqo və yazını starta hizaladım */
}

.footer__logo img {
  max-width: 90px; /* Loqonu böyütdüm */
  margin-bottom: 1rem;
  transition: 0.3s ease-in-out;
}

.footer__logo img:hover {
  transform: scale(1.1);
}

/* 📌 Açıklama */
.footer__col p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left; /* Yazını sola hizaladım */
}

/* 📌 Başlıqlar */
.footer__col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* 📌 Keçidlər */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease-in-out;
}

.footer__links a:hover {
  color: var(--primary-color);
}

/* 📌 Sosial Media İkonları */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer__social a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.footer__social a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* 📌 Alt Məlumat */
.footer__bar {
  margin-top: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* 📱 **Mobil Uyğunlaşdırma** */
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: left; /* Mobil üçün də sola hizaladım */
  }

  .footer__col {
    margin-bottom: 2rem;
  }

  .footer__social {
    justify-content: flex-start;
  }
}



/* 📌 **Tablet və Böyük Ekranlar (768px-dən yuxarı)** */
@media (width > 768px) {
  nav {
    position: static;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__header {
    flex: 1;
    background-color: transparent;
    transition: opacity 0.3s ease-in-out;
  }

  .nav__logo .logo-white {
    display: none;
  }

  .nav__logo .logo-dark {
    display: flex;
    max-width: 80px;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav__btns .btn {
    padding: 4px 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
    background-color: transparent;
    border-radius: 100%;
    border: none;
  }

  .nav__btns .btn:hover {
    box-shadow: 0 0 20px rgba(249, 85, 85, 0.3);
  }

  .header__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    direction: rtl; /* Grid içində elementlərin yerini tərsinə çevirir */
  }

  .header__content {
      direction: ltr; /* Mətni normal sola oxunacaq hala gətirir */
      text-align: left;
  }


  .header__container :is(h1, p) {
    text-align: left;
  }

  .header__btns,
  .header__flex {
    justify-content: flex-start;
  }


  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .banner__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    direction: rtl; /* Sağdan sola düzülüş təmin edir */
}

  .banner__content {
      direction: ltr; /* Məzmunun normal sola oxunuşunu qoruyur */
      text-align: left;
  }


  .customer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .customer__card {
    padding: 1.5rem;
  }
}

/* 📌 **Daha Böyük Ekranlar (1024px-dən yuxarı)** */
@media (width > 1024px) {
  .customer__card {
    padding: 2rem;
  }
}

/* 📱 **Mobil Uyğunlaşdırma (768px-dən kiçik ekranlar üçün)** */
@media (max-width: 768px) {

  .menu__card {
    width: 90%; /* Kartlar ekrana tam otursun */
    max-width: 320px;
    margin: auto;
  }

  /* 🟢 **Xidmətlər Bölməsi** */
  .service__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service__card {
    width: 90%;
    max-width: 320px;
    margin: auto;
  }

  /* 🟢 **Banner Bölməsi** */
  .banner__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner__image img {
    max-width: 90%;
  }

  /* 🟢 **Müştəri Rəyləri Bölməsi** */
  .customer__container {
    grid-template-columns: 1fr;
  }

  .customer__card {
    width: 90%;
    max-width: 320px;
    padding: 20px;
    margin: auto;
  }

  .customer__card__footer {
    flex-direction: column; /* Mobil üçün sola sıxışmasın */
  }

  .customer__swiper__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .customer__swiper__controls .btn {
    padding: 8px 16px;
    font-size: 1.2rem;
    border-radius: 50px;
  }

  /* 🟢 **Footer Bölməsi** */
  .footer__container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer__logo img {
    max-width: 80px; /* Loqonu mobil üçün bir az böyüt */
  }

  .footer__social {
    justify-content: flex-start;
  }
}




/* General Contact Section */
.contact-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to right, #fefefe, #fff2f5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

/* Contact Content */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Contact Info Section */
.contact-info {
  flex: 1;
  padding: 40px;
  background: #222;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h6 {
  font-size: 18px;
  color: #ff4b2b;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Ünvanlar */
.branch-info {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  opacity: 0.9;
}

.branch-info i {
  color: #ff4b2b;
  margin-right: 5px;
}

/* Delivery Service */
.delivery-service {
  font-size: 22px;
  font-weight: bold;
  background: rgba(255, 75, 43, 0.1);
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
}

.delivery-service .red-text {
  color: #ff4b2b;
}

.delivery-service .white-text {
  color: white;
}

.delivery-service a {
  color: var(--primary-color);
}

.map-container #map {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}

/* Google Maps */
.map-container {
  flex: 1;
  padding: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
}

/* Social Media Icons */
.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}

.social-media a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  color: white;
}

/* Sosial media arxa plan rəngləri */
.social-media a[href*="wa.me"] {
  background-color: #25D366; /* WhatsApp yaşıl */
}

.social-media a[href*="instagram.com"] {
  background-color: #E1306C; /* Instagram gradient pink */
}

.social-media a[href*="tiktok.com"] {
  background-color: #353535; /* TikTok qara */
}

.social-media a[href*="facebook.com"] {
  background-color: #1877F2; /* Facebook mavi */
}

.social-media a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.social-media i {
  font-size: 24px;
}


/* Responsive Design */
@media (max-width: 900px) {
  .contact-content {
      flex-direction: column;
  }

  .contact-info, .map-container {
      padding: 30px;
  }

  .map-container iframe {
      height: 300px;
  }
}


/* Normal halda kateqoriya bölməsi */
.menu__categories {
  width: 100%;
  position: relative; /* Başlanğıcda normal yerdədir */
  background-color: white;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease-in-out;
}

/* Sticky mode aktiv olduqda */
.menu__categories.sticky {
  position: fixed;
  top: 0; /* Nav header hündürlüyünü nəzərə alır */
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: top 0.3s ease-in-out;
}

.menu__categories::-webkit-scrollbar {
  display: none; /* Chrome və Safari üçün scrollbar gizlət */
}

/* İçəridəki düymələri scroll edilən divə yerləşdiririk */
.menu__categories__wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 20px;
  scrollbar-width: none;
}

/* Scroll barı gizlət (Chrome, Safari) */
.menu__categories__wrapper::-webkit-scrollbar {
  display: none;
}

/* Kateqoriya düymələri */
.filter-btn {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: white;
  color: #ff4b2b;
  border: 2px solid #ff4b2b;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}


.filter-btn:hover,
.filter-btn.active {
  background-color: #ff4b2b;
  color: white;
}

/* Menyu Grid */
.menu__grid {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
  width: 100%;
  padding-bottom: 30px;
}

/* Kart dizaynı (kiçik kartlar) */
.menu__card {
  overflow: hidden;
  width: 220px; /* Daha kiçik kartlar */
  height: auto;
  min-height: 320px;
  padding: 15px;
  text-align: center;
  background-color: white;
  border-radius: 1.5rem;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Hover effekti */
.menu__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}


/* 🔥 Şəkil dizaynı (Dikdörtgen) */
.menu__card img {
  pointer-events: auto;
  width: 100%; /* Kartın enini tam dolduracaq */
  height: 160px; /* Dikdörtgen şəkil */
  object-fit: cover;
  border-radius: 1rem; /* Kartın ümumi dizaynı ilə uyğun */
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.menu__card .size-select {
  pointer-events: none; /* klikləri ötürmək üçün */
}

.menu__card .size-select .size-btn {
  pointer-events: auto; /* düymələrin özləri kliklənə bilsin deyə */
}

/* Hover zamanı şəkil */
.menu__card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Başlıq */
.menu__card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* Açıklama (Uzun mətnlər üçün düzgün ellipsis) */
.menu__card p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  max-width: 90%;
  max-height: 4.5em; /* Daha çox mətn göstər */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Maksimum 3 sətir */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-bottom: 6px;
  white-space: normal;
}


.menu__card__footer {
  width: 100%; 
}

/* Qiymət */
.menu__card__footer h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* Buttonlar üçün ümumi stil */
.menu__card__footer .cart-button {
  font-weight: 700;
  font-size: 0.9rem;
  height: 35px;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.menu__card__footer .cart-button:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.05);
}

.menu__card__footer .cart-button i {
  position: absolute;
  left: -10%;
  font-size: 1.2em;
  transition: left 0.3s ease-in-out;
  pointer-events: none;
}

.menu__card__footer .cart-button span {
  font-size: 0.9rem;
  position: absolute;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu__card__footer .cart-button span.add-to-cart {
  opacity: 1;
}

.menu__card__footer .cart-button span.added {
  opacity: 0;
}

.menu__card__footer .cart-button.clicked i {
  animation: cart 1.5s ease-in-out forwards;
}

.menu__card__footer .cart-button.clicked span.add-to-cart {
  animation: txt1 1.5s ease-in-out forwards;
}

.menu__card__footer .cart-button.clicked span.added {
  animation: txt2 1.5s ease-in-out forwards;
}

/* Animasiya keyframes */
@keyframes cart {
  0% { left: -10%; }
  40%, 60% { left: 50%; }
  100% { left: 110%; }
}

@keyframes txt1 {
  0% { opacity: 1; }
  20%, 100% { opacity: 0; }
}

@keyframes txt2 {
  0%, 80% { opacity: 0; }
  100% { opacity: 1; }
}

/* 🔥 Yeni əlavə edilən yaşıl animasiya 🔥 */
.menu__card__footer .cart-button.clicked {
  animation: green-bg 1.5s ease-in-out forwards;
}

@keyframes green-bg {
  0%, 70% { background-color: #4caf50; }
  100% { background-color: var(--primary-color); }
}



/* 📱 Mobil Uyğunlaşdırma */
@media (max-width: 768px) {
  .menu__categories {
    padding: 8px 0;
  }

  .filter-btn {
      font-size: 0.85rem;
      padding: 7px 12px;
  }
 
  .menu__grid {
      margin-top: 10%;
      flex-direction: column;
      align-items: center;
  }

  .menu__card {
    
      width: 90%;
      max-width: 260px;
      height: auto;
      padding: 12px;
  }


  .menu__card p {
      font-size: 0.8rem;
      max-height: 4.5em; /* Daha çox mətn göstər */
      -webkit-line-clamp: 3; /* Mobil üçün 3 sətir */
  }
}


.cabinet {
  padding: 60px 20px;
  background-color: #f8f9fa;
}
.cabinet__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cabinet__item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.cabinet__item:hover {
  transform: translateY(-4px);
}
.cabinet__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.cabinet__image {
  width: 50%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.cabinet__image:hover {
  transform: scale(1.05);
}
.cabinet__info {
  width: 50%;
  text-align: left;
}
.cabinet__info h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
  text-align: inherit; /* `inherit` qoymaqla parent-dən asılı edirik */
}
.cabinet__info p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.cabinet__button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  margin-top: 20px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}
.cabinet__button:hover {
  background-color: var(--primary-color-dark);
}

@media (max-width: 768px) {
  .cabinet__item {
      flex-direction: column;
      text-align: center;
      padding: 20px;
  }
  .cabinet__item:nth-child(odd) {
      flex-direction: column;
  }
  .cabinet__image, .cabinet__info {
      width: 100%;
  }
  .cabinet__image {
      order: -1;
      height: 250px;
  }
  .cabinet__info {
      text-align: center;
  }
  .cabinet__info h2 {
    text-align: center;
}
}


.blog {
  padding: 80px 20px;
  background-color: #f8f9fa;
}
.blog__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.blog__item {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog__item:hover {
  transform: translateY(-5px);
}
.blog__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.blog__content {
  padding: 15px 0;
}
.blog__content h2 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}
.blog__content p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
.blog__button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.blog__button:hover {
  background-color: var(--primary-color-dark);
}

/* 🎨 Galeri Bölümü */
.gallery {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f4f4f4, #e8e8e8);
  text-align: center;
}

/* 📌 Galeri Başlığı */
.gallery-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #FF4500;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 📸 Galeri Swiper */
.gallery-swiper {
  position: relative;
  width: 85%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  border-radius: 20px;
  overflow: hidden;
}


/* 📷 Fotoğraf Slaytları */
.gallery-swiper .swiper-slide {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-swiper .swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}

/* 📐 Resimlerin Sabit Ölçüde Olması */
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 15px;
  transition: opacity 0.3s ease-in-out;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #FF4500;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Preloader animasiyası */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.gallery-swiper .swiper-slide:hover img {
  transform: scale(1.03);
  filter: brightness(90%);
}

/* ⏭️ Önceki & Sonraki Butonlar (Minimalist Dizayn) */
.gallery-prev,
.gallery-next {
  color: #fff;
  font-size: 18px; /* İkonun ölçüsü */
  width: 40px; /* Dairəvi balans üçün uyğun ölçü */
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Sol buton */
.gallery-prev {
  left: 10px;
}

/* Sağ buton */
.gallery-next {
  right: 10px;
}

/* Düzgün İkon Ölçüsü */
.gallery-prev svg,
.gallery-next svg {
  width: 18px; /* İkon tam ortada və balanslı olacaq */
  height: 18px;
  fill: white;
}

/* Hover effekti */
.gallery-prev:hover,
.gallery-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* 🔘 Pagination (Alt Noktalar) */
.gallery-pagination {
  margin-top: 50px; /* Daha aşağı çəkmək */
  position: relative;
}

.gallery-pagination .swiper-pagination-bullet {
  background: rgba(255, 69, 0, 0.7);
  width: 12px;
  height: 12px;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: #FF4500;
  width: 16px;
  height: 16px;
  opacity: 1;
}

/* 📱 Responsive Tasarım */
@media (max-width: 1024px) {
  .gallery-title {
    font-size: 2rem;
  }

  .gallery-swiper {
    width: 90%;
  }

  .gallery-swiper .swiper-slide {
    height: 280px;
  }

  .gallery-prev,
  .gallery-next {
    font-size: 12px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-swiper .swiper-slide {
    height: 240px;
  }

  .gallery-prev,
  .gallery-next {
    font-size: 10px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-swiper .swiper-slide {
    height: 200px;
  }

  .gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .gallery-prev,
  .gallery-next {
    display: none; /* Mobil üçün butonları gizlət */
  }
}

#menuModal {
  display: none; /* Modal ilk açılışda gizli olacaq */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}


/* 🌑 Modal Overlay */
.modal {
  display: none; /* Başlanğıcda gizlidir */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* 🖼️ Modal Şəkil Konteyneri (Tam Ortada Göstərmək üçün) */
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Şəkil və məzmun ortalansın */
  justify-content: center;
  text-align: center;
  background: white;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-in-out;
}

/* 🖼️ Modal Şəkil */
.modal-content img {
  width: 70%; /* Şəkil ölçüsünü düzgün balanslaşdırmaq */
  max-width: 230px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  display: block; /* Default olaraq block olsun */
  margin-left: auto; /* Ortaya gətirmək üçün */
  margin-right: auto;
}

.modal-content img:hover {
  transform: scale(1.05);
}


/* ❌ Modal Bağlama Düyməsi */
.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #666;
  transition: 0.3s ease;
}

.close:hover {
  color: #ff4b2b;
}

/* 📝 Mətnlər */
.modal-content h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.modal-content p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.2rem;
  margin-bottom: 12px;
  padding: 0 10px;
}

.modal-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff4b2b;
  margin-bottom: 15px;
}

/* 🛒 Səbətə Əlavə Et Düyməsi */
.btn.add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1rem;
  padding: 6px 20px;
  border-radius: 8px;
  background-color: #ff4b2b;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.btn.add-to-cart i {
  font-size: 1.2rem;
}

.btn.add-to-cart:hover {
  background-color: #e03e1d;
  transform: scale(1.05);
}

/* 📱 Responsive */
@media (max-width: 480px) {
  .modal-content {
    padding: 20px;
    max-width: 350px;
  }

  .modal-content img {
    width: 80%;
    max-width: 200px;
  }

  .modal-content h4 {
    font-size: 1.2rem;
  }

  .modal-content p {
    font-size: 0.95rem;
  }

  .modal-content h3 {
    font-size: 1.1rem;
  }

  .btn.add-to-cart {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

/* 🌟 Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* 🔝 Top Bar */
.top-bar {
  background: #ff4b2b;
  color: white;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* Konteyner */
.top-bar .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* İçərik */
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Elementlər */
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 🔘 İkonlar */
.top-bar-item i {
  font-size: 18px;
}

/* 📞 Telefon Linkləri */
.top-bar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* 📱 **Mobil Uyğunluq (Gizlət)** */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Səbət ikonu stil (Sabitledilmiş) */
#fixed-cart-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#fixed-cart-btn .btn {
  position: relative;
  background-color: #ff4b2b;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}

#fixed-cart-btn #cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #fff;
  color: #ff4b2b;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Overlay stil */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 9998;
}

#overlay.active {
  display: block;
}

/* Bottom sheet stil */
#bottom-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  max-height: 70vh;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
  transition: bottom 0.4s ease-in-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

#bottom-sheet.active {
  bottom: 0;
}

/* Sheet Header */
.sheet-header {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheet-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

#close-cart {
  cursor: pointer;
  font-size: 2rem;
  color: #333;
  transition: 0.3s;
}

#close-cart:hover {
  color: #ff4b2b;
}

/* Sheet Content */
.sheet-content-wrapper {
  overflow-y: auto;
  padding: 15px 20px;
  flex: 1; /* Scroll problemini həll edir */
}

/* Cart Item */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.item-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.qty-btn, .remove-btn {
  background: #ff4b2b;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover, .remove-btn:hover {
  background: #e23e22;
}

.clear-cart-btn,
.checkout-btn {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.clear-cart-btn {
  background-color: #ff9800; /* Narıncı rəng (dəyişdirildi) */
  color: #fff;
  padding: 8px 12px; /* Kiçildilmiş padding */
  font-size: 0.95rem; /* Kiçildilmiş font ölçüsü */
  width: auto; /* Sadəcə məzmun qədər yer tutacaq */
  margin: 0 auto; /* Ortada hizalamaq üçün */
  display: inline-block; /* Avtomatik ölçü üçün */
}

.clear-cart-btn:hover {
  background-color: #fb8c00; /* Hover rəngi (narıncı tonunda) */
}


.checkout-btn {
  background-color: #ff4b2b;
  color: white;
}

.checkout-btn:hover {
  background-color: #e84320;
}

/* Cart Footer */
.cart-footer {
  position: sticky;
  bottom: 0;
  padding: 15px 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.total-price {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: right;
}

/* Scroll deaktivləşdir */
body.no-scroll {
  overflow: hidden;
}

/* Responsive Dizayn */
@media (max-width: 768px) {
  #fixed-cart-btn {
    bottom: 15px;
    right: 15px;
  }
}

.size-select {
  margin: 10px 0;
  display: flex;
  gap: 10px;
}

.size-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.size-btn.active {
  background-color: #333;
  color: white;
  border-color: #333;
}




