.topbar {
    background:#131921;
}
.secondbar {
    background:#232f3e;
}
.logo {
    color:white;
    font-size:22px;
    font-weight:bold;
}
.nav-icon {
    color:white;
    text-align:center;
    font-size:14px;
}
.search-box {
    max-width:700px;
}
.form-select-category{
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.banner {
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
}

.banner-item {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Black carousel icons with proper size */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;      /* default Bootstrap size */
  height: 40px;
  background-size: 100%, 100%; /* fill the span */
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  border-radius: 50%;
}

/* Black Previous Arrow */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* Black Next Arrow */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.material-icons{font-size: 15px;}
/* Tablet (smaller than desktop) */
@media (max-width: 991.98px) {  /* Bootstrap lg breakpoint */
  .card h5 {
    font-size: 15px;
  }
  .card h6 {
    font-size: 13px;
  }
}

/* Mobile (smaller than tablet) */
@media (max-width: 767.98px) {  /* Bootstrap md breakpoint */
  .card h5 {
    font-size: 13px;
  }
  .card h6 {
    font-size: 12px;
  }
}
.card-hover:hover {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
  transform: translateY(-3px); /* Optional: slight lift */
  transition: all 0.3s ease-in-out;
}
.list-group-item:hover{background-color: #131921; color: white !important; cursor: pointer;}
.card-header{padding: 2px !important;}
#minusBtn{border-bottom-left-radius: 30px !important; border-top-left-radius: 30px !important;}
#plusBtn{border-bottom-right-radius: 30px !important; border-top-right-radius: 30px !important;}
.nav-icon:hover,.nav-logo:hover,.btn-add-to-cart:hover{cursor: pointer;}
#product-item .card{
  border-radius: 15px !important;
  border-radius: 15px !important;
}
#product-item .card-footer{
  border-bottom-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}
#product-item .card .img-fluid{
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}
#product-item .card-header{
  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;
}
.btn-white{
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}
.btn-white:hover{
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}
.btn-buy-now{
  background-color: #28a745;
  color: white;
  border: 1px solid #28a745;
}
.btn-buy-now:hover{
  background-color: #28a745;
  color: white;
  border: 1px solid #28a745;
}
#product-area .card h6{font-size: 13px !important; font-weight: 400 !important;}
#product-area .card-body{padding: 3px !important;}
#product-area .card-header img{max-height: 170px !important;}
#product-area .card-header{background-color: unset !important;}
#product-area .row>* {
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.btn-pilled {
  /* Colors - Matches the vibrant orange in Screenshot 2026-05-09 103554.png */
  background-color: #ec6606; 
  color: #ffffff;
  
  /* Typography - Extra heavy weight */
  /* font-family: "Impact", "Arial Black", sans-serif; */
  /* font-size: 64px;
  font-weight: 900; */
  letter-spacing: -1px; /* Tighter spacing matches the image */
  
  /* Shape */
  padding: 10px;
  border: 5px solid #e65c00; /* Darker orange outer ring visible in image */
  border-radius: 500px; /* Forces the perfect pill shape */
  
  /* The 3D "Inset" look from the image */
  box-shadow: 
    inset 0px 5px 15px rgba(0,0,0,0.2),   /* Top inner shadow */
    0px 4px 10px rgba(0,0,0,0.15);       /* Subtle drop shadow under button */

  cursor: pointer;
  display: inline-block;
  line-height: 1;
  outline: none;
  transition: all 0.1s ease-in-out;
  text-align: center;
  text-decoration: none;
}

/* Hover effect to make it feel interactive */
.btn-pilled:hover {
  background-color: #ff7b1a;
  /* transform: translateY(-2px); */
}

.btn-pilled:active {
  transform: translateY(2px);
  box-shadow: inset 0px 8px 20px rgba(0,0,0,0.3);
}

.btn-pilled-cancel {
  /* Colors - Matches the vibrant orange in Screenshot 2026-05-09 103554.png */
  background-color: #a6a5a4; 
  color: #ffffff;
  
  /* Typography - Extra heavy weight */
  /* font-family: "Impact", "Arial Black", sans-serif; */
  /* font-size: 64px;
  font-weight: 900; */
  letter-spacing: -1px; /* Tighter spacing matches the image */
  
  /* Shape */
  padding: 10px;
  border: 5px solid #7a706a; /* Darker orange outer ring visible in image */
  border-radius: 500px; /* Forces the perfect pill shape */
  
  /* The 3D "Inset" look from the image */
  box-shadow: 
    inset 0px 5px 15px rgba(0,0,0,0.2),   /* Top inner shadow */
    0px 4px 10px rgba(0,0,0,0.15);       /* Subtle drop shadow under button */

  cursor: pointer;
  display: inline-block;
  line-height: 1;
  outline: none;
  transition: all 0.1s ease-in-out;
  text-align: center;
  text-decoration: none;
}

/* Hover effect to make it feel interactive */
.btn-pilled-cancel:hover {
  background-color: #cbcbcb;
  /* transform: translateY(-2px); */
}

.btn-pilled-cancel:active {
  transform: translateY(2px);
  box-shadow: inset 0px 8px 20px rgba(0,0,0,0.3);
}