* {
  margin: 0;
  padding: 0;
}

body {
    background-color: #fffbe6;
    color: #5c3b00;
    text-align: center;
    overflow-x: hidden;
    width: 100%;
}

.header {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  text-decoration: none; 

}

/* Flower Decorations */
.flowers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: none !important
}

.flower {
  position: absolute;
  width: 50px;
}

.flower1 { top: 10px; left: 10%; }
.flower2 { top: 10px; right: 10%; }
.flower3 { bottom: 10px; right: 5%; }
.flower4 { top: 50px; left: 50%; transform: translateX(-50%); }
.flower5 { top: 50px; left: 3%; transform: translateX(-50%); }

.flowerdrop {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: url('/images/flower.avif');
  background-size: cover;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
      transform: translateY(0);
      opacity: 1;
  }
  100% {
      transform: translateY(100vh);
      opacity: 0;
  }
}

.navbar {
  background-color: #d4a017;
  width: 80%;
  max-width: 900px;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.brand-name {
  color: #fdf5e6;
  font-size: 18px;
  font-weight: bold;
}


.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #fdf5e6;
  font-size: 18px;
  transition: 0.3s;
}

.menu a:hover {
  text-decoration: underline;
}

.cart-icon {
  font-size: 20px;
}

.hamburger-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}


.topimg {
  width: 100%;
  height: 76.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.topimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro {
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.intro img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.intro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}


.intro-heading {
  z-index: 1;
  font-size: 42px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: white;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -100%);
  opacity: 0;
  transition: transform 6s ease, opacity 6s ease;
}

.intro-heading.slide-in {
  opacity: 1;
  transform: translate(-50%, -50%);
}


.intro-paragraph-1 {
  z-index: 1;
  font-size: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-150%);
  opacity: 0;
  transition: transform 4s ease, opacity 4s ease;
}

.intro-paragraph-1.slide-in {
  opacity: 1;
  transform: translateX(-50%);
}


.intro-paragraph-2 {
  z-index: 1;
  font-size: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-150%);
  opacity: 0;
  transition: transform 4s ease, opacity 4s ease;
}

.intro-paragraph-2.slide-in {
  opacity: 1;
  transform: translateX(-50%);
}


.front-shop-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: url('/images/productbg.avif') no-repeat center center;
  background-size: cover;
  gap: 20px;
  max-width: 100%;
  margin: auto;
  padding: 50px 20px;
  position: relative;
 
}

.front-product-container {
  background: hsla(0, 3%, 75%, 0.498);
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.front-product-container img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
  
}

.front-product-container h3 {
  font-size: 1.1rem;
  margin: 10px;
}


/* Buy More Button */
.buymore {
  background: #d4a017;
  color: #333;
  margin: 25px auto;
  margin-bottom: 15px;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: block;
  text-align: center;
  max-width: 200px;
}

.buymore:hover {
  background: #ffcc00;
  transform: scale(1.05);
}

.productpage-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Tagline Text Section */
.taglinetxt {
  text-align: center;
  padding: 50px 20px;
  max-width: 100%;
  margin: 0 auto;
  background-color: white;
  position: relative;
  height: 400px;
}

.tagline-heading1 {
  font-size: 45px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 20%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.tagline-heading2 {
  font-size: 45px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.tagline-paragraph1 {
  font-size: 25px;
  color: #666;
  margin: 20px 0;
  line-height: 1.6;
  position: absolute;
  top: 45%;
  left: 39%;
  transform: translateX(-50%);
}

.tagline-paragraph2 {
  font-size: 25px;
  color: #666;
  margin: 20px 0;
  line-height: 1.6;
  position: absolute;
  top: 65%;
  left: 40%;
  transform: translateX(-50%);
}

.tagline-paragraph1::first-letter {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
}


.taglineimg {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.taglineimg img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}


footer {
  background: #5c3b00;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Certifications Section */
.certifications {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.certifications img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.certifications img:hover {
  transform: scale(1.1);
}

footer p {
  font-size:20px;
  margin-top: 0px;
}

/* Responsive Styles Mobile devices main page */
@media screen and (max-width: 768px) {
  html, body {
      overflow-x: hidden;
      width: 100%;
  }

  img {
      max-width: 100%;
      height: auto;
  }

  .hamburger-icon {
      display: block;
      font-size: 20px;
      cursor: pointer;
      position: absolute;
      right: 50px;
      background: transparent;
      border: none;
      z-index: 2;
      color: black;
  }

  .menu {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: center;
      max-width: 100%;
      background: linear-gradient(135deg, #cbc19d, #f89f04);
      position: fixed;
      top: 0;
      right: 0;
      padding-top: 70px;
      transition: transform 0.4s ease-in-out;
      transform: translateX(100%);
      border-radius: 20px 0 0 20px;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      z-index: 2;
      
  }

  .menu.active {
      transform: translateX(0);
      z-index: 2;
  }

  .menu a {
      text-decoration: none;
      font-size: 18px;
      color: #fdf5e6;
      padding: 15px;
      width: 100px;
      text-align: center;
      background: rgba(255, 255, 255, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 8px;
      transition: all 0.3s ease;
  }

  .menu a:hover {
      background-color: #fdf5e6;
      color: #d4a017;
  }

  .navbar {
      flex-direction: column;
      align-items: center;
      padding: 10px;
  }

  .logo img {
      height: 30px;
      
  }

  .brand-name {
      font-size: 16px;
  }

  .cart-icon {
      font-size: 20px;
  }

  .no-scroll {
      overflow: hidden;
      height: 100%;
      position: fixed;
      width: 100%;
  }

  .topimg {
      width: 100%;
      min-height: 20vh; 
      max-height: 25vh; 
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;;
  }
  
  .topimg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  
  .intro {
      width: 100%;
      min-height: 150px; 
      max-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      padding: 10px;
  }

  .intro img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      object-position: center top;
  }

  .intro::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2); 
      z-index: 0;
  }

 
  .intro-heading {
      font-size: 13px; 
      top: 15%; 
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
  }


  .intro-paragraph-1 {
      font-size: 9px;
  top: 28%; 
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  }

  
  .intro-paragraph-2 {
      font-size: 9px;
      top: 55%; 
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      max-width: 90%; 
  }

  .front-shop-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    margin: auto;
    position: relative;
  }

  .front-product-container {
    background: hsla(0, 3%, 75%, 0.498);
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    margin-bottom: 30px;
  }
  
  .front-product-container img {
    width: 100px;
    height: 110px;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .front-product-container h3 {
    font-size: 0.8rem;
    margin: 5px;
  }


  


  .buymore {
      background: #d4a017;
      color: #333;
      margin: 25px auto;
      padding: 12px 20px;
      border: none;
      border-radius: 25px;
      font-size: 1.2rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      display: block;
      text-align: center;
      max-width: 180px;
  }
  
  .buymore:hover {
      background: #ffcc00;
      transform: scale(1.05);
  }
  
  .productpage-link {
      text-decoration: none;
      color: inherit;
      display: block;
  }
  

  @media (max-width: 768px) {
      .products {
          overflow-x: auto; 
          padding: 20px 0; 
          justify-content: flex-start;
      }
  
      .product {
          width: 280px; 
          flex: 0 0 auto; 
      }
  
      .product h3 {
          font-size: 20px;
      }
  
      .price {
          font-size: 16px;
      }
  
      .buymore {
          font-size: 1rem;
          padding: 10px 18px;
      }
  }
  
  @media (max-width: 480px) {
      .product {
          width: 250px; 
      }
  
      .product h3 {
          font-size: 18px;
      }
  
      .price {
          font-size: 14px;
      }
  
      .buymore {
          font-size: 0.9rem;
          padding: 8px 16px;
      }
  }
  


  .taglinetxt {
      text-align: center;
      padding: 50px 20px;
      max-width: 100%;
      margin: 0 auto;
      background-color: white;
      position: relative;
      height: 200px;
  }

  .tagline-heading1 {
      font-size: 21px;
      font-weight: bold;
      color: #333;
      margin: 10px 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      position: absolute;
      top: 10%;
      left: 34%;
      transform: translate(-50%, -50%);
  }

  .tagline-heading2 {
      font-size: 21px;
      font-weight: bold;
      color: #333;
      margin: 10px 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      position: absolute;
      top: 25%;
      left: 55%;
      transform: translate(-50%, -50%);
  }

  .tagline-paragraph1 {
      font-size: 15px;
      color: #666;
      margin: 20px 0;
      line-height: 1.2;
      position: absolute;
      top: 25%;
      left: 36%;
      transform: translateX(-30%);
  }

  .tagline-paragraph2 {
      text-align: center;
      font-size: 15px;
      color: #666;
      margin: 20px 0;
      line-height: 1.2;
      position: absolute;
      top: 60%;
      left: 40%;
      transform: translateX(-30%);
  }

  .tagline-paragraph1::first-letter {
      font-size: 2.5em;
      font-weight: bold;
      color: #333;
  }

  .taglineimg {
      position: relative;
      width: 100%;
      height: 100px;
      overflow: hidden;
  }

  .taglineimg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }
  
  footer {
      background: #5c3b00;
      color: white;
      padding: 20px;
      text-align: center;
  }

  .certifications {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 10px;
  }

  .certifications img {
      width: 35px;
      height: 30px;
      object-fit: contain;
      transition: transform 0.3s ease;
  }

  .certifications img:hover {
      transform: scale(1.1);
  }

  footer p {
      font-size: 14px;
      margin-top: 10px;
  }
}



/* Contact Page */
.contact {
  position: relative;
  width: 100%;
  height: 110vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: blur(2px); /
}


.contact-container {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  height: 80vh;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}


.contact-container h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #333;
}


.input-group {
  margin-bottom: 25px;
  text-align: left;
}

.input-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.input-group textarea {
  height: 100px;
  resize: none;
}


.buzz-btn {
  background: #ff9900;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.buzz-btn:hover {
  background: #e68a00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
      width: 80%;
      padding: 10px;
  }
  .input-group input,
.input-group textarea {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

}

/* about us css */
.about-section {
  position: relative;
  width: 100%; 
  height: 800px;
  text-align: center;
  color: #000000;
  overflow: hidden;
  padding: 50px;
}


.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/aboutbg.avif') no-repeat center center;
  background-size: cover;
  filter: blur(5px);
  z-index: -1; 
}

.about-section h1 {
  color: #d4a017; 
  font-size: 3rem;

}
 
.about-section p {
  font-size: 1.5rem;
  line-height: 1.2;
  background: rgba(0, 0, 0, 0); 
  padding: 10px;
  display: inline-block;
  
}
.quote {
  font-style: italic;
  font-size: 1.3rem;
  margin: 20px 0;
  color: #d4a017;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0px 0px 0px;
  }
  
  .about-section h1 {
    font-size: 2rem;
  }
  
  .about-section p {
    font-size: 1rem;
    padding: 10px;
    align-items: center;
    justify-content: center;
  }
  
  .quote {
    font-size: 1rem;
  } 
  }
  
/*Certificates Css */

.ch1, .ch2 {
  color: #005A0B; 
}

.ch1 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ch2 {
  font-size: 22px;
  margin-top: 25px;
  border-bottom: 2px solid #FFD700; 
  padding-bottom: 5px;
}


.cp {
  font-size: 16px;
  margin-bottom: 15px;
}


.cul {
  padding-left: 20px;
}

.cul .cli {
  margin-bottom: 8px;
}

.clogo {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  
}


.clogo {
  width: auto;
  height: auto;
  max-width: 200px;
}


.honey-image {
  width: auto;
  height: auto;
  max-width: 300px;
}

/* Responsive Design */
@media (max-width: 600px) {
  

  .ch1 {
      font-size: 24px;
  }

  .ch2 {
      font-size: 20px;
  }

  .cp {
      font-size: 14px;
  }
}

/* Shop Page Css */
.shop {
  position: relative;
  text-align: center;
  padding: 40px 0;
}


.shop-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}


.shop-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: auto;
  padding: 50px 20px;
  position: relative;
}

.product-link,
.product-link:visited,
.product-link:hover,
.product-link:active {
    text-decoration: none;
    color: inherit;
}


.product-container {
  background: hsla(0, 3%, 75%, 0.498);
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.product-container img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
}

.product-container h3 {
  font-size: 1.1rem;
  margin: 10px;
}

.price {
  font-size: 1.3rem;
  color: #d4a017;
  font-weight: bold;
}


.addtocart {
  background: #d4a017;
  color: #333;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 20px;
}

.addtocart:hover {
  background: #b88a14;
  transform: scale(1.05);
}


@media (max-width: 480px) {

  .shop-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    margin: auto;
    position: relative;
  }

  .product-container {
    background: hsla(0, 3%, 75%, 0.498);
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    margin-bottom: 30px;
  }
  
  .product-container img {
    width: 100px;
    height: 110px;
    object-fit: contain;
    border-radius: 8px;
  }
  
  .product-container h3 {
    font-size: 0.8rem;
    margin: 5px;
  }

  .price {
    font-size: 1.1rem;
    color: #d4a017;
    font-weight: bold;
  }
  

   /* cart css */
  .addtocart {
    padding: 8px 10px;
    font-size: 0,8rem;
    margin-top: 10px;
  }

}


 /* css product page */
  .container {
    display: flex;
    flex-direction: column; 
    width: 100%;
    height: auto;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .left, .right {
    flex: 1;
    text-align: center;
    padding: 10px; 
  }
  
  .main-img {
    width: 100%;
    max-width: 250px; 
    border-radius: 10px;
  }
  
  .thumbnails {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap; 
  }
  
  .thumbnails img {
    width: 40px; 
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid transparent;
  }
  
  .thumbnails img:hover {
    border-color: #000;
  }
  
  .h2p {
    margin-bottom: 10px;
    font-size: 18px; 
  }
  
  .quantity {
    margin: 10px 0;
  }
  
  .quantity input {
    width: 40px; 
    text-align: center;
  }
  
  .btn {
    display: block;
    width: 100%; 
    padding: 10px;
    margin: 10px auto 0 auto; 
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px; 
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #218838;
  }
  
  
  @media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
  
    .btn {
        width: 100%;
        margin-left: 0;
    }
  }

  .cart {
    width: 100%;
    min-height: 100vh; /* Ensures full height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden; /* Prevents scrolling issues */
  }
  
  .cart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Allows full width */
    height: 100%; /* Ensures it covers the section */
    z-index: -1; /* Sends it behind the content */
  }
  
  .cart-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full coverage */
    opacity: 0.3; 
  }
  
  .cart-container {
    background: rgba(255, 255, 255, 0.9); /* Light background for contrast */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  
  .cart-items {
    margin-top: 20px;
  }
  
  .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .cart-item img {
    width: 60px;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .item-details {
    flex-grow: 1;
    margin-left: 10px;
    text-align: left;
  }
  
  .remove-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .remove-btn:hover {
    background: #cc0000;
  }
  
  .cart-total {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .checkout-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .checkout-btn:hover {
    background: #218838;
  }
  
  
  
  
  




