.bg-dark{
    background-color: #383838 ;
}

.icon-hover i {
  color: white;
  transition: color 0.3s ease;
}

.icon-hover:hover i {
  color: #ff393a;
}

.icon-hover-login svg,
.icon-hover-login span {
  color: white;
  transition: color 0.3s ease;
}

.icon-hover-login:hover svg,
.icon-hover-login:hover span {
  color: #535353;
}
.header-custom{
    background-color: #ff393a;
    color: #ffffff;
}
#top {
     border-bottom: 0px solid ; 
     margin-bottom: 0px; 

}
#logo img {
    max-width: 150px;
}
.input-group .btn {
    /* border-radius: 0 10px 10px 0; */
    background-color: #383838;
    color: white;
    border: 1px solid #383838 ;
}
.header-custom-menu {
    background-color: #383838 ;
    color: #ffffff;
}

#menu {
  background-color: #383838;
  background-image: linear-gradient(to bottom, #383838, #383838);
  background-repeat: repeat-x;
  border: 0px solid #000000;
  border-color: #383838;
  min-height: 40px;
  border-radius: 4px;
  padding: 0 1rem;
  margin-bottom: 0px;
}
.section-border {
  border-top: 1px solid #d3d3d3; /* light gray */
  border-bottom: 1px solid #d3d3d3; /* light gray */
  padding: 40px 0;
}
.section-heading {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
}
.section-heading::after {
  width: 50px;
  height: 3px;
  background: rgba(255, 48, 48, 1);
  content: '';
  display: block;
  position: relative;
  margin-top: 7px;
}
 .column-content {
  text-align: center;
}
 .column-content img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.column-content img:hover {
   transform: scale(1.1);
}
.footer_underline {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background-color: #ffffff;
  margin-top: 4px;
}

.footer_chooese_us {
  background-color: #ff393a;
}
.custom-card {
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  border-radius: 2px !important;
  color: white;
}

.custom-card .card-body {
  color: white;
}

.custom-heading {
  font-size: 36px;
}

.custom-paragraph {
  font-size: 20px;
}
.icon-container {
  background-color: #ff393a;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (max-width: 576px) {

  .footer_chooese_us .card-body {
    flex-direction: column;
    text-align: center;
  }

  .footer_chooese_us .icon-container {
    margin-bottom: 10px;
  }

  .footer_chooese_us .card-heading {
    font-size: 1rem;
  }

  .footer_chooese_us .custom-text {
    font-size: 0.9rem;
  }
}

.icon-container img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}
.card-heading {
  font-size: 14px;
  margin-bottom: 0.3rem;
  font-weight: 700;
  color: white;
}

.custom-text {
  font-size: 12px;
  margin-bottom: 0;
  line-height: 1.6;
}
.custom-max-width {
  max-width: 1400px;
  margin: 0 auto;
  /* Center the container */
}

/* When screen width is exactly 1200px, set width to 1120px */
@media (min-width: 1200px) and (max-width: 1399px) {
  .custom-max-width {
    max-width: 1130px;
  }
}

/* Tablet - Adjust width for smaller screens */
@media (max-width: 991px) {
  .custom-max-width {
    max-width: 90%;
  }
}

/* Mobile - Adjust width for smaller devices */
@media (max-width: 576px) {
  .custom-max-width {
    max-width: 95%;
  }
}

.section-heading-page {
  position: relative;
  margin-bottom: 15px;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  padding-bottom: 10px;
  display: inline-block;
}

.section-heading-page::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  /* Adjust percentage as needed */
  height: 3px;
  background: rgba(255, 48, 48, 1);
}
a {
  color: black;
  text-decoration: none;
}
a:hover {
    color: black;
  text-decoration: none;
}

/* ————————— HEADER-MODE: dropdown BELOW the button ————————— */
#cart:not(.floating) .dropdown-menu,
#cart-mobile:not(.floating) .dropdown-menu {
  position: absolute;
  top: 4px    !important;
  left: auto      !important;
  right: 0px  !important;
  bottom: auto !important;
  margin-top: .125rem !important;
}

/* ————————— FLOATING-MODE: dropdown ABOVE the bubble ————————— */
#cart.floating .dropdown-menu,
#cart-mobile.floating .dropdown-menu {
  position: absolute !important;
  bottom: 24px !important;
  top:    auto !important;
  right:  0    !important;
  left:   auto !important;
}

/* ———————————————————————————————— */
/* 3) FLOATING BUBBLE SLIDE IN/OUT */
/* (assuming you already have your .floating, .slide-in/.slide-out logic) */
#cart,
#cart-mobile {
  transition: transform .4s ease, opacity .4s ease;
}
#cart.floating,
#cart-mobile.floating {
  position: fixed !important;
  bottom: 20px;
  right:  20px;
  z-index: 2000;
  transform: translateX(100px);
  opacity: 0;
}
#cart.floating.slide-in,
#cart-mobile.floating.slide-in {
  transform: translateX(0);
  opacity: 1;
}
#cart.floating.slide-out,
#cart-mobile.floating.slide-out {
  transform: translateX(100px);
  opacity: 0;
}

/* ———————————————————————————————— */
/* 4) YOUR BUTTON & BADGE STYLING (unchanged) */
#cart .btn-cart-custom,
#cart-mobile .btn-cart-custom {
  background-color: #343a40 !important;
  color: #fff               !important;
  border: none              !important;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cart .bg_cart_count,
#cart-mobile .bg_cart_count {
  background-color: #ff393a !important;
  color: #fff               !important;
}

/* Container just handles positioning, no background */
#promo-timer-floating {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 0px;
  left: 20px;
  z-index: 3000;
  padding: 0;                 /* remove wrapper padding */
  background: transparent;    /* no background here */
}

/* Mascot/image floats below with no background */
#promo-timer-floating .promo-img {
  width: 150px;
  border-radius: 4px;
}

@media (min-width: 992px) {
  #promo-timer-floating .promo-img {
    width: 225px; /* 1.5×150 */
    margin-top: -36px;
  }
}