body {
  font-family: "Poppins", sans-serif !important;
}

.nav-link {
  display: inline-block;
  font-weight: 600;
  padding: 22px 0px;
  color: black;
  font-size: 14px;
  line-height: 1;
  transition: color 0.25s, padding 0.25s;
}

.container {
  padding-left: 0px;
}

.container-fluid {
  padding: 0px !important;
}

.top-bar {
  width: 100%;
  padding-top: 12px calc(50% - 640px);
  border-bottom: 1px solid rgb(243, 243, 247);
  z-index: 101;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  height: 52px;
  -webkit-box-align: center;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
}

.badge-orange {
  background-color: #e65c00; /* Arka plan rengi */
  color: #fff; /* Metin rengi */
  padding: 4px 8px; /* İçerik boşluğu */
  border-radius: 5px; /* Köşe yuvarlatma */
  font-size: 0.575rem; /* Yazı boyutu */
  display: inline-block; /* Satır içi kutu düzeni */
}

.badge-danger {
  background-color: rgb(220 53 69); /* Arka plan rengi */
  color: #fff; /* Metin rengi */
  padding: 4px 8px; /* İçerik boşluğu */
  border-radius: 5px; /* Köşe yuvarlatma */
  font-size: 0.575rem; /* Yazı boyutu */
  display: inline-block; /* Satır içi kutu düzeni */
}

.badge-gray {
  background-color: rgb(243, 243, 247); /* Arka plan rengi */
  color: rgb(25 135 84);/* Metin rengi */
  padding: 4px 8px; /* İçerik boşluğu */
  border-radius: 5px; /* Köşe yuvarlatma */
  font-size: 0.575rem; /* Yazı boyutu */
  display: inline-block; /* Satır içi kutu düzeni */
}


.top-bar:hover span {
  color: #ff6900;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.logo {
  border-radius: 10px;
  margin-right: 13px;
}

.nav-link:hover {
  color: #007bff;
  /* Hover rengini değiştirebilirsiniz */
  padding-top: 25px;
  /* Hover durumunda biraz daha padding eklenebilir */
}

.login-button {
  height: 40px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 24px;
  border-radius: 20px;
  background-color: rgb(243, 243, 247);
  color: rgb(92, 99, 112);
}

.login-button:hover {
  background-color: rgb(255, 105, 0);
  color: rgb(255, 255, 255);
}

.modal-button {
  padding: 8px;
  border: none;
  background-color: #e65c00;
  color: #ffffff;
  border-radius: 20px;
}

.modal-button:hover {
  padding: 8px;
  background-color: #ff6900;
  color: #ffffff;
  border-radius: 20px;
}

/* Sepet Butonu */
.basket {
  height: 40px;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 9999px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  background-color: #e65c00;
  color: #ffffff;
  position: fixed; /* Sabit pozisyon */
  bottom: 40px; /* Alt boşluk */
  right: 40px; /* Sağ boşluk */
  z-index: 1000; /* Üstte kalması için */
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket:hover {
  background-color: #ff6900;
  color: #ffffff;
}
.fa-shopping-cart{
  position: relative;
}
/* Sayı Stili */
.cart-count {
  position: absolute;
  top: -8px; /* İkonun üstüne */
  right: -8px; /* İkonun sağına */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.cart-count:hover{
  color: white;
}

.navbar-brand {
  font-size: 30px;
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: #000;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff6900 !important;
}

.card {
  border: none;
  min-height: 200px;
}

.card-title {
  font-size: 20px;
  font-weight: 500;
}

.card-description {
  height: 41px; /* Tanımlı yüksekliği korur */
  margin: 0px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: rgb(92, 99, 112);
  font-weight: 400;
  overflow: hidden; /* Taşan metni gizler */
  display: -webkit-box; /* Flexbox benzeri davranış */
  -webkit-line-clamp: 2; /* Maksimum satır sayısı (2 satırda sınırla) */
  -webkit-box-orient: vertical; /* Dikey hizalama */
}

.modal-img{
  height: 227px;
}

.card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 20px;
  font-weight: 500;
}

.modal-description {
  font-size: 14px;
  line-height: 20px;
  color: rgb(92, 99, 112);
  font-weight: 400;
}

/* Genel kart tasarımı */
.modal-product-card {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-product-card:hover {
  border-color: #ff8c00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Checkbox görünmez yapılır */
.custom-checkbox {
  display: none;
}

/* Seçili olduğunda kartın değişen görünümü */
.custom-checkbox:checked + .card-content {
  border-color: #ff8c00;
  background-color: #ffe6cc;
}

/* Kart içeriği */
.card-content {
  position: relative;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Ürün adı ve fiyat */
.product-name {
  font-size: 13px;
  margin-bottom: 5px;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
}

/* Check işareti */
.checkmark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #ff8c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Seçili olduğunda check işareti görünür hale gelir */
.custom-checkbox:checked + .card-content .checkmark {
  opacity: 1;
  background-color: #ff8c00;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.checkmark::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}


.modal-footer {
  position: sticky;
  border-top: none;
  bottom: 0;
  z-index: 10; 
  background-color: rgba(255, 255, 255, 0.6); /* Şeffaf beyaz arka plan */
    backdrop-filter: blur(10px); /* Bulanıklık efekti */
    padding-top: 12px;
    padding-bottom: 12px;
}

.checkbox-group {
  display: flex;
  gap: 15px; /* Checkboxlar arası boşluk */
  align-items: center;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 5px; /* Checkbox ile metin arasındaki boşluk */
}

.checkbox-group input[type="checkbox"]:checked + label {
  text-decoration: line-through; /* Üzerine çizgi at */
  color: gray; /* İsteğe bağlı: metni soluklaştır */
}



footer {
  background-color: rgb(24, 24, 24);
  color: #ffffff;
}

.footer-body {
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-body h2,
.footer-body h4 {
  color: #ffffff;
}

.footer-body ul {
  padding: 0;
  list-style-type: none;
}

.footer-body ul li {
  margin-bottom: 10px;
}

.footer-body ul li i {
  margin-right: 10px;
  color: #ff6900;
}

.map-container {
  border: 2px solid #ff6900;
  border-radius: 5px;
  overflow: hidden;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.carousel-inner img {
  height: 500px; /* Görsellerin yüksekliği */
  object-fit: cover; /* Görsellerin taşmasını önle */
  border-radius: 15px; /* Yuvarlatılmış köşeler */
}

.carousel-indicators button {
  background-color: #007bff; /* İndicatorların mavi rengi */
}

.carousel-indicators button.active {
  background-color: #e65c00; /* Aktif indicator yeşil */
}

.carousel-caption h5 {
  color: white; /* Yazı rengi */
  padding: 5px 10px; /* İçerik boşluğu */
  border-radius: 8px; /* Köşe yuvarlatma */
  display: inline-block; /* Blok görünümü */
  background-color: rgba(0, 0, 0, 0.3); /* Hafif siyah arka plan */
  backdrop-filter: blur(10px); /* Bulanıklaştırma efekti */
  -webkit-backdrop-filter: blur(10px); /* Safari desteği için */
}

.carousel-caption p {
  color: white; /* Yazı rengi */
  padding: 5px 10px; /* İçerik boşluğu */
  border-radius: 5px; /* Köşe yuvarlatma */
  display: inline-block; /* Blok görünümü */
  background-color: rgba(0, 0, 0, 0.3); /* Hafif siyah arka plan */
  backdrop-filter: blur(10px); /* Bulanıklaştırma efekti */
  -webkit-backdrop-filter: blur(10px); /* Safari desteği için */
}



.size-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.size-option {
  padding: 4px 30px;
  font-size: 14px;
  color: #000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.size-option:hover {
  background-color: #fff;
}

.size-option.active {
  background-color: #e65c00; /* Turuncu renk */
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

.modal-footer .modal-button{
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

#navbar {
  width: 100%;
  /* Navbar'ın tüm genişliği kapsaması */
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
  background-color: transparent;
  /* Başlangıçta şeffaf */
}

#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.75);
  /* Kaydırıldığında beyaz arka plan */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: rgba(6, 5, 50, 0.1) 0px 4px 30px;
}



#navbar .nav-link {
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
}

#navbar .nav-link:hover {
  color: #ff6900;
}

.card-price{
  font-weight: 600;
  font-size: 18px;
}

/* Mobil Cihazlar İçin (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar {
    display: none;
    /* Mobil cihazlarda gizle */
  }

  .navbar-brand {
    font-size: 20px;
    /* Logo yazı boyutunu küçült */
  }

  .navbar-brand img {
    width: 40px;
    /* Görsel boyutunu küçült */
  }

  .navbar .d-flex {
    flex-direction: row;
    /* Logo ve hamburger menü yan yana */
    align-items: center;
  }

  .navbar-toggler {
    border: none;
    background: transparent;
    font-size: 25px;
    color: black;
  }

  .login-button {
    font-size: 13px;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .container {
    width: 90% !important;
    margin: 0 auto;
  }

  .navbar-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .navbar-nav::-webkit-scrollbar {
    display: none;
  }

  .size-option{
    font-size: 13px;
  }

  .row {
    display: flex;
    flex-direction: column;
  }

  .col-3 {
    width: 100%;
  }

  .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }

  .card-left {
    width: 35%;
    max-width: 50%;
    margin-right: 10px;
  }

  .card-right {
    width: 50%;
    padding: 10px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
  }

  .card-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .card-price {
    margin-top: 15px;
    font-size: 19px;
    font-weight: 600;
  }

  .card-details .modal-button {
    width: 40%;
    margin-top: 10px;
  }

  .gow.g-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  
  }

  .col-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 8px;
  }

  .offcanvas-end {
    width: 100% !important;
  }

  .footer-body .row > .col-md-4 {
    margin-bottom: 20px;
    position: relative;
  }

  .footer-body .row > .col-md-4:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }

  .product-name{
    font-size: 13px;
  }

  .product-price{
    font-size: 13px;
  }

  .col-md-4 h2 {
    font-size: 35px;
  }

  .col-md-4 p {
    font-size: 20px;
  }

  .carousel-inner img {
    height: 300px;
  }

  .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .basket .text {
    display: none;
  }

  .basket {
    padding: 15px;
    font-size: 20px;
    bottom: 20px; /* Alt boşluk */
    right: 20px; /* Sağ boşluk */
  }
}

@media (max-width: 576px) {
  .card {
    flex-direction: column;
    /* Küçük ekranlarda kartları alt alta sıralıyoruz */
  }

  .card-left {
    width: 100%;
    /* Sol kısmı tam genişlikte yapıyoruz */
    margin-right: 0;
    /* Sağ içeriğin boşluğunu kaldırıyoruz */
  }

  .card-right {
    width: 100%;
    /* Sağ kısmı tam genişlikte yapıyoruz */
  }

  .card-left img {
    width: 100%;
    /* Görselin tam genişlikte yerleşmesi */
  }
}

@media (max-width: 767px) {
  .modal-dialog {
    max-width: 97% !important;
    width: 97% !important;
  }
}

/* Orta boyutlu cihazlar ve üzeri (desktop görünümü) */
@media (min-width: 768px) {
  .modal-card-wrapper {
    flex: 0 0 calc(33.33% - 20px);
  }
}

/* Desktop ekranlar için mevcut düzeni koruyalım */
@media (min-width: 769px) {
  .modal-dialog {
    max-width: 80%;
    width: 80%;
  }

  .modal-card-img {
    width: 18vh;
  }
}

/*SEPET SALLAMA ANİMASYONLARI*/
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
/*SEPET SALLAMA ANİMASYONLARI*/
.basket.shaking {
  animation: shake 0.5s ease-in-out;
}

.profile-card{
  display: block;
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"] {
  display: none;
}

/* Üstü çizilmiş yazı */
label.checked span {
  text-decoration: line-through;
  color: #dd0d0d; /* Yazıyı daha soluk göstermek için */
}

/* Varsayılan yazı geçiş stili */
label span {
  transition: text-decoration 0.3s, color 0.3s; /* Animasyon */
}

@media (min-width: 992px) {
  .scrollable-modal-content {
      max-height: 80vh; /* Modalın yüksekliğini sınırlamak için */
      overflow-y: auto; /* Dikey kaydırma çubuğu */
  }
}

/* Mobilde kaydırma çubuğunu devre dışı bırakma */
@media (max-width: 991px) {
  .scrollable-modal-content {
      max-height: none; /* Yüksekliği sınırsız */
      overflow-y: visible; /* Kaydırma çubuğunu kaldır */
  }
}
.scrollable-modal-content::-webkit-scrollbar {
  width: 8px; /* Kaydırma çubuğunun genişliği */
  background-color: #f5f5f5; /* Arka plan rengi */
}

/* Scrollbar çubuğu */
.scrollable-modal-content::-webkit-scrollbar-thumb {
  background-color: #e65c00; /* Kaydırma çubuğunun rengi */
  border-radius: 4px; /* Yuvarlak köşeler */
  border: 2px solid #f5f5f5; /* Çubuğun etrafındaki boşluk */
}

/* Scrollbar çubuğu üzerine gelince */
.scrollable-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #e65c00; /* Hover'da koyulaşan renk */
}

/* Scrollbar çubuğu kenarları */
.scrollable-modal-content::-webkit-scrollbar-track {
  background-color: #e0e0e0; /* Track (arkaplan) rengi */
  border-radius: 4px;
}
.info-text{
  font-size: 13px;
  color: gray;
}
.toggle-info-icon {
  cursor: pointer;
  font-size: 16px; /* İkon boyutu */
}
/* Varsayılan stil */
.form-control {
  border: 1px solid #ccc; /* Varsayılan kenarlık rengi */
  transition: border-color 0.3s ease; /* Geçiş efekti */
}

/* Active (focus) durumunda kenarlık turuncu olacak */
.form-control:focus {
  border-color: orange; /* Turuncu kenarlık */
  box-shadow: 0 0 5px #e65c00; /* Turuncu parlama efekti */
  outline: none; /* Varsayılan mavi outline'ı kaldır */
}

.order-card{
  background-color: #e65c00;
  color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);

}
.custom-table {
  width: 100%;
  border-collapse: separate; /* Sütunlar arasında boşluk bırakmak için */
  border-spacing: 0 10px; /* Sütunlar arası boşluk */
  text-align: left;
  
}

.custom-table thead th {
  background-color: rgb(209, 87, 0); /* Başlık arka plan rengi */
  color: #ffffff;
  padding: 12px 15px; /* Hücre içi boşluk */
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #ddd; /* Alt çizgi */
}

.custom-table tbody td {
  background-color: #fff;
  color: #555;
  border-radius: 5px;
  padding: 10px 15px; /* Hücre içi boşluk */
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0; /* Alt çizgi */
}

.custom-table tbody tr:hover {
  background-color: #f9f9f9; /* Hover efekti */
  cursor: pointer; /* İmleç değişimi */
}

.order-container {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
}

.order-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.order-table .order-row {
  display: table-row;
  border-bottom: 1px solid #ddd;
}

.order-table .order-cell {
  display: table-cell;
  padding: 10px 15px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.order-table .order-header {
  font-weight: bold;
  background-color: #f7f7f7;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #e65c00;
  text-align: center;
  margin-bottom: 20px;
}

.about-section, .mission-section {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.about-section img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.mission-list {
  padding-left: 20px;
}

.mission-list li {
  margin-bottom: 10px;
}

.check-cart{
  width: 80%;
    margin: 0px auto 0px 84px;
    padding: 32px;
    box-shadow: rgba(6, 5, 50, 0.1) 0px 6px 20px;
    border-radius: 8px;
}
