  /* === Base Layout === */
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  }

  /* === Header Section === */
    header {
    width: 100%;
    background-color: #f2f2f2;
    padding: 10px 0;
    text-align: center;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    background-color: #f2f2f2;
    padding: 15px 20px;
    text-align: center;
  }

  .logo-area {
    flex: 0 0 auto;
  }

  .site-logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
  }

  .header-text {
    flex: 0 1 auto;
    min-width: 250px;
  }

  .top-links {
    margin-top: 8px;
    font-size: 14px;
  }

  .top-links a {
    color: #333;
    margin: 0 8px;
    text-decoration: none;
  }

  /* === Top Bar Navigation === */
  .top-bar {
    background-color: #daf5ae;
    padding: 6px 10px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
  }

  .top-bar a {
    color: #333;
    margin: 0 10px;
    text-decoration: none;
  }

  .top-bar a:hover {
    text-decoration: underline;
  }

  /* === Main Navigation Menu === */
  nav {
    background-color: #90dae1;
    color: #fff;
    width: 100%;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
  }

  nav li {
    margin: 5px 10px;
  }

  nav a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  /* === Main Content Section === */
  main {
    width: 100%;
  }

  section {
    width: 100%;
    padding: 10px;
  }

  /* === Footer Section === */
  footer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: #daf5ae;
  }

 .site-footer {
  background-color: #daf5ae;
  color: #333;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  border-top: 1px solid #ccc;
}

.site-footer a {
  color: #336699;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-content p {
  margin: 6px 0;
}

.other-shops {
  font-size: 13px;
  color: #555;
}

  /* === Image Defaults === */
  img {
    max-width: 100%;
    height: auto;
  }
  
  

  /*============================
  Sticky Cart (Floating Icon)
=============================*/
.sticky-cart {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 999;
  background-color: #fff;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.sticky-cart img {
  height: 36px;
  width: auto;
}
.sticky-cart:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/*=====================================
  Hero Section with Overlayed Text Box
======================================*/
.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
.hero-overlay img {
  max-width: 60%;
  height: auto;
  flex: 1 1 60%;
}
.hero-overlay-text {
  flex: 1 1 35%;
  padding: 20px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  color: #333;
  font-size: 1.2em;
}
.hero-overlay-text h2 {
  font-size: 1.8em;
  margin-top: 0;
}
.shop-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #3cc3c8;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.shop-button:hover {
  background-color: #2aa6aa;
}

/*=================
  Footer Styling
==================*/
/* === Footer Section === */
.footer-bar {
  background-color: #daf5ae;
  padding: 20px 10px 10px;
  font-size: 14px;
  color: #000;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo,
.footer-address,
.footer-socials {
  flex: 1 1 200px;
  text-align: center;
}

.footer-logo img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 6px;
}

.footer-socials img {
  width: 24px;
  margin: 0 8px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #333;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/*===============================
  Mobile Styles (Max-width 768px)
===============================*/
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
  }
  .sticky-cart {
    top: 10px;
    right: 10px;
    padding: 4px;
  }
  .sticky-cart img {
    height: 30px;
  }
  .top-links a {
    display: inline-block;
    margin: 5px;
  }
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-area {
    margin: 0 0 10px 0;
  }
  .hero-overlay {
    flex-direction: column;
    text-align: center;
  }
  .hero-overlay img,
  .hero-overlay-text {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .hero-overlay-text {
    margin-top: 20px;
    text-align: center;
  }
} 
</body>
</html>