body {
  background-color: #c2c1bfc4;
}

img {
  max-width: 100%;
  height: auto;
}

.search-btn button {
  border: 1px solid #eb6207;
  color: #eb6207;
}

.search-btn button:hover {
  transition: 0.6s;
  background-color: #eb6207;
  border: 1px solid #eb6207;
}

li {
  padding: 10px;
}

li:hover {
  border-bottom: 2px solid #eb6207;
}

.search:hover {
  border: 2px solid #eb6207;
}

.hero-sec {
  background-image: url(../images/banners/hero-image.png);
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 2rem 5%;
}

.hero-sec h1 {
  color: #ec5a06;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
}

.hero-sec h1 span {
  color: #0221cfe8;
}

.hero-sec h5 {
  color: #a7a3a3e1;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  max-width: 500px;
}

.hero-sec a button {
  background-color: #ec5a06;
  border-radius: 30px;
  padding: 1rem 2rem;
  color: antiquewhite;
  font-weight: 900;
  border: 1px solid #ff5e00;
}

.hero-sec a button:hover {
  background-color: #f760081c;
  color: black;
  border: 1px solid #ff5e00;
}

.hero-tagline h6 {
  background-color: #aebdbdc7;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
}

.hero-tagline h6 a {
  text-decoration: none;
  color: #ff5100;
  font-weight: 700;
}

.head {
  background-color: #ffffffc2;
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
}

.head:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.head img {
  width: 100%;
  max-height: 21rem;
  object-fit: cover;
  border-radius: 10px;
  margin: 1rem 0;
}

.head h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

.head h5 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #ff4a02;
  text-decoration: underline;
}

a {
  text-decoration: none;
}

.prod {
  margin: 50px auto;
  background-color: #fdfdff;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
}

.img img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.cont button {
  background-color: #eb9b07e3;
  border-radius: 20px;
  padding: 10px 30px;
  font-weight: 600;
}

.cont button:hover {
  background-color: white;
  border: 1px solid #eb6207;
}

.content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.a {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #5050526e;
  border-radius: 5px;
  margin-bottom: 9px;
  box-shadow: 1px 1px 10px #808080ee;
}

.a h1 {
  padding-left: 20px;
  font-weight: 100;
}

.a p {
  padding-left: 20px;
  font-size: large;
  font-weight: 600;
}

.main-content h3,
.main-content p {
  text-align: center;
}

.main-content hr {
  margin: 1rem;
}

.cs-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem;
}

.card {
  margin: 1rem !important;
}

.card ul {
  padding-left: 20px;
}

.detail,
.promise-detail {
  background-color: white;
  text-align: center;
  margin: 1rem;
  border-radius: 5px;
  padding: 1rem;
}

.cart a {
  margin-left: 2pc;
  color: #eb6207;
  padding: 10px;
  position: relative;
  display: inline-block;
}

.cart a:hover {
  background-color: #eb6207;
  color: white;
  border-radius: 20px;
}

#cart-count {
  font-size: 0.6rem !important;
}

.cart-container {
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
}

.cart-table {
  width: 100%;
  margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.qty-controls {
  display: flex;
  gap: 0.5rem;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
}

.cart-total-section {
  text-align: right;
  font-size: 1.2rem;
  font-weight: bold;
}

.btn-empty-cart {
  background: #dc3545;
}

.btn-checkout {
  background: #28a745;
}

.footer {
  margin-top: 2rem;
  text-align: center;
}

.btt {
  width: 100%;
  background-color: #7c7c80;
  padding: 12px;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.btt:hover {
  background-color: #6a6a6a;
}

.copyr {
  background-color: #232324c5;
  color: white;
  padding: 15px 10px;
}

.copyr p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .hero-sec {
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cs-card {
    flex-direction: column;
  }

  .content {
    flex-direction: column;
  }

  .cart-table {
    font-size: 0.9rem;
  }

  .qty-controls {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-tagline h6 {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

.footer a{
  text-decoration: none;
}

.cs-card {
  margin-left: 20%;
}

.card {
  padding-left: 10%;
}