/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fefcf9;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #53350a;
}
.maintenance-banner {
  background: linear-gradient(90deg, #D4AF37, #c29b2f); /* champagne gold gradient */
  color: #fff; /* white text */
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;   /* shorter height */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  letter-spacing: 0.3px;
}

body {
  margin-top: 50px; /* Push page down so banner doesn't overlap content */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  display: flex;
  align-items: center;
}


.logo img {
  height: 70px; /* adjust based on your navbar height */
  width: auto;
  object-fit: contain;
}


.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  transition: all 0.4s ease;
}

.nav-links li a {
  font-weight: 600;
  color: #2b1a05;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #a87c3f;
  transition: width 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.hamburger span {
  background-color: #2b1a05;
  height: 3px;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: left;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    flex-direction: column;
    padding: 1rem 1.5rem;
    display: none;
    min-width: 180px;
    animation: fadeDown 0.3s ease forwards;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon svg {
  color: #2b1a05;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #a87c3f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  display: inline-block;
}

/* Keep hamburger styles from previous code */

/* Positioning and styling the navbar remains the same */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon svg {
  color: #2b1a05;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #a87c3f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Mini-cart dropdown */
.mini-cart {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 9999;
  animation: fadeIn 0.3s ease forwards;
}

.mini-cart h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #2b1a05;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.mini-cart ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 150px;
  overflow-y: auto;
}

.mini-cart ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #333;
}

.mini-cart ul li.empty {
  text-align: center;
  color: #999;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.checkout-btn {
  background: #a87c3f;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #8a662f;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}


/* ================================
   HERO SLIDER STYLES
================================ */





.section {
  padding: 4rem 2rem;
  background: #fff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.products, .team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card, .member {
  background: #f5f1eb;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover, .member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 100%;
  max-width: 120px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}


  footer {
    background: #2f2319;
    color: #f5efe7;
    padding: 4rem 2rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1s ease-in;
  }

  .footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
  }

  .footer-column h3,
  .footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e6d3b3;
  }

  .footer-column p,
  .footer-column a,
  .footer-column li {
    font-size: 0.95rem;
    color: #d9c6ae;
    line-height: 1.6;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column a {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }

  .footer-bottom a {
    color: #bba98a;
  }

  .footer-column a:hover {
    color: #f8d99b;
  }

  .footer-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-icons a {
    color: #d9c6ae;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .footer-icons a:hover {
    color: #f8d99b;
    transform: scale(1.2);
  }

  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #bba98a;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.hmo-affiliate {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #fffdf9;
}

.card-link {
  text-decoration: none;
  flex: 1 1 300px;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  overflow-x: auto;
}

.categories button {
  background: #f4f4f4;
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.categories button.active,
.categories button:hover {
  background: #2d6a4f;
  color: white;
  border-color: #2d6a4f;
}

.search-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.search-box input {
  padding: 8px 12px;
  width: 200px;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .categories {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .categories::-webkit-scrollbar {
    display: none;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
  }

  .search-box input {
    width: 100%;
  }
}


.card {
  display: block;
  height: 100%;
  background: linear-gradient(145deg, #fffaf3, #fdf4e7);
  border: 1px solid #e8d9c5;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #50330a;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #3d2a10;
  margin-bottom: 1.2rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #2b1a05;
}

.card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #d8a64e;
  font-weight: bold;
}


.products-section {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #faf6f0, #fdfaf7);
  text-align: center;
}

.products-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.products-section p {
  font-size: 1.1rem;
  color: #6a4e2f;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  background: #fff9f4;
  border: 1px solid #ecdccb;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #d8a64e, #e3c99c);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.product-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4e3314;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-name i {
  color: #d8a64e;
  font-size: 1.2rem;
}

.product-description {
  font-size: 0.95rem;
  color: #5b4331;
  line-height: 1.6;
}

.team-section {
  padding: 5rem 2rem;
  background: #fffdf9;
  text-align: center;
}

.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.team-section p {
  font-size: 1.1rem;
  color: #6a4e2f;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.team-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-card {
  background: #fdf6ef;
  border: 1px solid #e8d7c2;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #d8a64e;
}

.team-name {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  color: #4c3111;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.95rem;
  color: #6e5032;
}

.services-section {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #fffdf9, #fef8ef);
  text-align: center;
  font-family: 'Playfair Display', serif;
  animation: fadeIn 1s ease-in-out;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.services-section p {
  font-size: 1.1rem;
  color: #6a4e2f;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  background: #fff9f4;
  border: 1px solid #ecdccb;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #d8a64e, #e3c99c);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.service-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4e3314;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.service-description {
  font-size: 0.95rem;
  color: #5b4331;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(to right, #d8a64e, #e3c99c);
  color: #4e3314;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
  background: linear-gradient(to right, #e3c99c, #d8a64e);
  transform: translateY(-2px);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonial Section */
.testimonials-section {
  background-color: #fffdf7;
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 2rem;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff9f1;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
  color: #5e3b20;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: bold;
  color: #8c6239;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#product-highlights {
  padding: 4rem 2rem;
  background: #fff9f7;
  text-align: center;
}
#product-highlights h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #5a3811;
  margin-bottom: 2rem;
}
.product-card {
  background: #fffaf8;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-name {
  font-size: 1.5rem;
  color: #4e3314;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.product-name i {
  color: #d8a64e;
}
.product-description {
  font-size: 1rem;
  color: #5b432f;
  line-height: 1.6;
}

.why-section {
  padding: 5rem 2rem;
  background: #fdfaf4;
  text-align: center;
  font-family: 'Playfair Display', serif;
}
.why-section h2 {
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.why-card {
  background: #fff9f4;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
}
.why-card i {
  font-size: 2rem;
  color: #d8a64e;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.3rem;
  color: #4e3314;
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.95rem;
  color: #5b4331;
  line-height: 1.6;
}

.newsletter-section {
  background: #fdf6f3;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.newsletter-section h2 {
  font-size: 2rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1rem;
  color: #6a4f2d;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: inline-flex;
  gap: 1rem;
}

/* Email input */
.newsletter-form input[type="email"] {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 2px solid #d8a64e;
  border-radius: 30px;
  outline: none;
}

/* Button */
.newsletter-form button {
  padding: 0.8rem 2rem;
  background: #d8a64e;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #b98936;
}

.team-icon {
  font-size: 3rem;
  color: #5a3811;
  margin-bottom: 1rem;
}


/* Responsive fix */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    display: flex;
    width: 100%;
    align-items: center;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    max-width: 400px;
  }
}


.products-highlight {
  padding: 4rem 2rem;
  background: #fff9f7;
  font-family: 'Playfair Display', serif;
  text-align: center;
}
.products-highlight h2 {
  font-size: 2.25rem;
  color: #5a3811;
  margin-bottom: 2rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1140px;
  margin: 0 auto;
}
.product-card {
  background: #fffaf8;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.product-name {
  font-size: 1.35rem;
  color: #4e3314;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.product-description {
  font-size: 1rem;
  color: #5b432f;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.buy-button {
  padding: 0.8rem 2rem;
  background: #a87c3f;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  align-self: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.buy-button:hover {
  background: #8c5d1c;
  transform: scale(1.05);
}

.product-image-placeholder {
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  animation: fadeInImage 1s ease-in-out;
}
.product-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Optional image fade-in animation */
@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-nav-button {
  display: inline-block; /* Prevents stretching full width */
  padding: 0.6rem 1.4rem;
  background-color: #d8a64e;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-left: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cta-nav-button {
    margin: 0.5rem auto;  /* center the button */
    display: block;       /* optional: stack neatly */
    width: auto;          /* don't let it stretch */
    text-align: center;
  }
}

/* End of home page style.css */

/* SERCICES.HTML */

.services-fullpage {
  background: #fdfaf4;
  padding: 5rem 2rem;
  font-family: 'Playfair Display', serif;
  color: #5b4331;
  text-align: center;
}
.services-fullpage h2 {
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 1rem;
}
.services-fullpage p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.service-fullgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.service-fullcard {
  background: #fffaf8;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-fullcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.service-fullcard h3 {
  font-size: 1.4rem;
  color: #4e3314;
  margin-bottom: 1rem;
}
.service-fullcard p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.read-more {
  color: #a87c3f;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
}
.read-more:hover {
  border-bottom-color: #a87c3f;
}

.book-session {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.6rem 1.2rem;
  background-color: #d8a64e;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.book-session:hover {
  background-color: #b98936;
  transform: translateY(-2px);
}

.service-img {
  width: 100%;
  height: 240px; /* Set a fixed height */
  border-radius: 12px;
  margin-bottom: 1rem;
  display: block;
  object-fit: cover; /* This will ensure the image covers the area without distortion */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 600px;
  margin: 5% auto;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
}

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* booking section */

.booking-section {
  background: #fff8f2;
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.booking-section h2 {
  font-size: 2.4rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.booking-section p {
  font-size: 1rem;
  color: #6b5a40;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0c9a5;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #d8a64e;
  box-shadow: 0 0 6px rgba(216, 166, 78, 0.3);
  outline: none;
}

.submit-btn {
  background: #d8a64e;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background: #b98936;
  transform: translateY(-2px);
}


.hmo-section {
  padding: 80px 5%;
  background: #f6f9f8;
  text-align: center;
}
.hmo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.hmo-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.hmo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hmo-card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}
.cta-hmo, .cta-hmo-alt {
  margin-top: 60px;
}
.cta-hmo button, .book-btn {
  margin-top: 15px;
  background: #14763e;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.cta-hmo button:hover, .book-btn:hover {
  background: #0e5d2f;
}

/* affiliate section */
.affiliate-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.affiliate-card {
  background: #f6f9f8;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}
.affiliate-card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}
.affiliate-card:hover {
  transform: translateY(-5px);
  background: #eef5f0;
}
.affiliate-steps {
  text-align: left;
  max-width: 700px;
  margin: 50px auto;
}
.affiliate-steps h3 {
  text-align: center;
  margin-bottom: 20px;
}
.affiliate-steps ol {
  list-style: decimal inside;
  font-size: 16px;
  line-height: 1.8;
}
.cta-affiliate {
  margin-top: 60px;
}
.cta-affiliate button {
  margin-top: 15px;
  background: #14763e;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-affiliate button:hover {
  background: #0e5d2f;
}

/* SHOP */


.shop-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.shop-card {
  background: #f6f9f8;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s ease;
}
.shop-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.shop-card h3 {
  margin: 10px 0;
  font-size: 18px;
}
.price {
  font-weight: bold;
  color: #14763e;
}
.shop-card button {
  background: #14763e;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.shop-card button:hover {
  background: #0e5d2f;
}
.shop-card:hover {
  transform: translateY(-5px);
  background: #eef5f0;
}

/* End of shop section */
/*BLOG*/
.blog-section {
  padding: 4rem 2%;
  font-family: 'Playfair Display', serif;
  text-align: center;
}
.blog-section .section-title {
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 1rem;
}
.blog-section .section-subtext {
  font-size: 1.1rem;
  color: #6b5a40;
  margin-bottom: 2.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fffaf7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 1.5rem;
  text-align: left;
}
.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #4e3314;
}
.blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #5a4830;
}
.read-more {
  color: #d8a64e;
  font-weight: bold;
}
.read-more:hover {
  text-decoration: underline;
}

/* CONTACT */
.contact-section {
  padding: 4rem 2%;
  font-family: 'Playfair Display', serif;
  text-align: center;
  background-color: #fffaf7;
}

.contact-section .section-title {
  font-size: 2.5rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.contact-section .section-subtext {
  font-size: 1.1rem;
  color: #6b5a40;
  margin-bottom: 2.5rem;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  text-align: left;
  background: #fdf4ec;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #4e3314;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a4830;
}

.contact-info a {
  color: #d8a64e;
  text-decoration: none;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #e2d1c3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d8a64e;
  outline: none;
}

.btn-submit {
  background-color: #d8a64e;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #c58e3c;
}

/* Hide scrollbar for Chrome, Safari, and Edge */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
html {
  scrollbar-width: none;
}

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* dashboard */
 /* Dashboard-specific tweaks (inherits from style.css) */
    .dashboard-container {
      max-width: 1200px;
      margin: auto;
      padding: 1rem;
    }
    .hero-banner {
      position: relative;
      overflow: hidden;
      height: 200px;
      margin-bottom: 1rem;
    }
    .hero-banner img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: none;
    }
    .hero-banner img.active {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .search-bar {
      display: flex;
      margin-bottom: 1rem;
    }
    .search-bar input {
      flex: 1;
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
    }
    .search-bar button {
      padding: 0.5rem 1rem;
      border: none;
      background: #5d9c59;
      color: white;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }
    .category-buttons {
      margin-bottom: 1rem;
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .category-buttons button {
      padding: 0.4rem 0.8rem;
      border: none;
      background: #eee;
      border-radius: 4px;
      cursor: pointer;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
    }
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}
    .product-card img {
      max-width: 100%;
      object-fit: cover;
      border-radius: 6px;
    }

    .product-card h4 {
  font-size: 1rem;
  margin: 0.8rem 0 0.4rem;
}

.product-card p {
  color: #d8a64e; /* your site’s accent color */
  font-weight: bold;
}

@media (max-width: 768px) {
  #productsGrid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

    /* Cart Badge */
#cart-count {
  background: red;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
  top: 0;
  right: -8px;
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.cart-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.close-cart {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}

#cart-items {
  margin: 20px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.cart-item-details {
  flex: 1;
}

.cart-item button {
  background: red;
  color: white;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
}

.add-to-cart-btn {
  background-color: #d8a64e; /* warm gold */
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #b98936;
  transform: scale(1.05);
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

/* PROFILE */
.profile-section {
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.profile-container h2 {
  font-size: 2rem;
  color: #5a3811;
  margin-bottom: 1rem;
}

.profile-container p {
  color: #6a4f2d;
  margin: 0.3rem 0;
}

form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

form input {
  padding: 0.8rem 1rem;
  width: 100%;
  max-width: 400px;
  border: 2px solid #d8a64e;
  border-radius: 30px;
  outline: none;
}

form button {
  padding: 0.8rem 2rem;
  background: #d8a64e;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #b98936;
}

.logout-btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #e74c3c; /* professional red for logout */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logout-btn:hover {
  background: #c0392b; /* slightly darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.logout-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


/* horizontal scroll*/
/* Scrollable Filter Bar */
.filter-bar {
  margin: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.categories {
  display: flex;
  gap: 10px;
}

.categories button {
  flex: 0 0 auto;
  padding: 10px 16px;
  background: #eee;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.categories button.active {
  background: #4CAF50;
  color: white;
}

/* Scrollable Product Grid */
.product-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.product-grid {
  display: flex;
  gap: 16px;
}

.product-card-link {
  flex: 0 0 auto;
  width: 250px;
  text-decoration: none;
}
