@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

html, body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Raleway', sans-serif;
}

body, * {
  cursor: url('cursor-image-3.png') 36 36, auto;
}

body {
    background-image: url('wallpaper.png');
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
}

html {
    scroll-behavior: smooth;
}

.logo {
  position:absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 200px; /* Adjust as needed */
  text-align: center;
  padding-top: 10px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
.logo {
left: 15px;
transform:scale(1) translateX(0);
width: 150px; /* optional smaller width for mobile */
}
}

.search-box {
  position: absolute;
  top: 60px;
  right: 40px;
  display: flex;
  align-items: center;
  background: #ffe5bbba;
  border: .5px solid #672b00;
  border-radius: 2.5em;
  height: 40px;
  width: 40px;
  transition: width 0.5s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 2px 12px rgba(103,43,0,0.07);
  z-index: 300;
}

.search-box input[type="text"] {
  border: none;
  outline: none;
  background: transparent;
  width: 0;
  opacity: 0;
  font-size: 1.1em;
  font-family: inherit;
  font-weight: 500;
  color: #672b00;
  padding: 0 0 0 18px;
  transition: width 0.5s cubic-bezier(.4,2,.6,1), opacity 0.3s;
  height: 100%;
}

.search-box .search-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #672b00;
  font-size: 1.4em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
}

.search-box:hover,
.search-box:focus-within {
  width: 260px;
  background: #ffe5bbba;
  box-shadow: 0 4px 18px rgba(103,43,0,0.13);
}

.search-box:hover input[type="text"],
.search-box:focus-within input[type="text"] {
  width: 180px;
  opacity: 1;
  padding-right: 10px;
}

.search-box .search-btn:hover,
.search-box .search-btn:focus {
  background: #672b00;
  color: #ffe3b5d7;
}

.navbar {
  position: relative;
  top: 250px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #ffdfaccb;
  backdrop-filter: blur(5px);
  z-index: 100;
  flex-wrap: wrap;
  box-sizing: border-box
}

/* Burger menu button styles */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.burger:focus {
  outline: none;
}

.burger-bar {
  width: 100%;
  height: 3px;
  background-color: #a85c00;
  border-radius: 2px;
  transition: all 0.3s linear;
}

/* Responsive styles for navbar and burger menu */
@media (max-width: 700px) {
  .navbar {
    justify-content: flex-start;
    padding: 10px 20px;
    height: auto;
  }

  .burger {
    display: flex;
  }

  #navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffdfaccb;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(103,43,0,0.2);
  }

  #navbar-menu.show {
    display: flex;
  }

  #navbar-menu li {
    padding: 10px 20px;
  }

  #navbar-menu li a {
    font-size: 1.2rem;
    display: block;
  }

  /* Hide dropdown menus by default on mobile */
  .dropdown-content {
    display: none !important;
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Show dropdown content when parent is clicked (handled by JS) */
  .dropdown.show > .dropdown-content {
    display: block !important;
    position: static !important;
    background: #ffdfaccb !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 12px rgba(103,43,0,0.2) !important;
    border-radius: 0 0 8px 8px !important;
  }
}

.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
  color: #333;
  list-style: none;
}

.navbar ul li {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #a85c00;
  font-size: 1rem;
  font-weight: 560;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #a85c00;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

.navbar ul li a:hover {
  color: #672b00;
}

.navbar ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
}

/* Parent dropdown */
.navbar ul li .dropdown-content {
  position: absolute;
  z-index: 101; /* base z-index for parent dropdown */
  display: none;
  position: absolute;
  background: rgba(255, 223, 172, 0.95);
  margin-top: 25px;
  margin-left: 0px;
  padding: 16px 0;
  border-radius: 8px;
  min-width: 270px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 101;
}

/* Submenu (subhead) dropdown */
.navbar ul li .dropdown-content .dropdown .dropdown-content {
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 200; /* higher z-index for submenus */
}

/* Two-column dropdown for large menus */
.dropdown-content.two-columns {
  columns: 2;
  min-width: 380px; /* wider for two columns */
  column-gap: 30px;
  padding: 18px 32px;
  margin-right: 70px;
}

.dropdown-content.two-columns li {
  break-inside: avoid;
  padding: 6px 0;
  margin-left: 20px;
  margin-right: 20px;
  min-width: 120px; /* ensure items are wide enough */
}

/* Show dropdown on hover */
.navbar ul li.dropdown:hover > .dropdown-content,
.navbar ul li.dropdown:focus-within > .dropdown-content {
  display: block;
}

.navbar ul li.dropdown:hover > .dropdown-content {
  display: block;
}

.navbar ul li .dropdown-content .dropdown:hover > .dropdown-content {
  left: 100%;
  top: 0;
  margin-left: 0;
  margin-top: 0;
  display: block;
  position: absolute;
  min-width: 280px;
}

/* Style the Google Translate container */
#google_translate_element {
  position: absolute;
  top: 15px;
  right: 43.5px;
  z-index: 400;
  background: #ffffff;
  border: 1.5px solid #672b00;
  border-radius: 2.5em;
  padding: 5px 5px 5px 5px;
  box-shadow: 0 2px 12px rgba(103,43,0,0.07);
  font-family: 'Raleway', sans-serif;
}

/* Remove Google branding background and border */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Style the dropdown */
.goog-te-combo {
  background: #ffe3b5;
  color: #672b00;
  border: 1px solid #672b00;
  border-radius: 0.8em;
  padding: 4px 10px;
  font-size: 1em;
  font-family: inherit;
  margin: 0 0 0 5px;
  outline: none;
  transition: border 0.2s;
}

.goog-te-combo:focus {
  border: 1.5px solid #a85c00;
}

/* Hide the Google logo and "powered by" text */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* Optional: shrink the widget for a cleaner look */
.goog-te-gadget {
  font-size: 1em !important;
  padding: 0 !important;
}

/* --- Our Company Content Styles --- */
.main-content {
  margin: 320px 15px 40px 15px;
  padding: 20px 15px;
  background: #ffe5bbba;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(103,43,0,0.08);
  color: #672b00;
  z-index: 1;
  position: relative;
}

@media (max-width: 900px) {
  .main-content {
    margin: 320px 15px 40px 15px; 
    padding: 20px 15px;
    max-width: 100%;
  }
}

.main-content h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: #a85c00;
  text-align: center;
  text-decoration: underline;
}

.main-content ul {
  margin: 0 0 18px 0;
  padding-left: 22px;
}

.main-content ul li,
.main-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #672b00;
}

/* --- Footer Styles --- */
.footer {
  width: 97.2%;
  background: #ffdfac;
  color: #672b00;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05em;
  padding: 40px 20px 20px 20px;
  border-top: 2px solid #a85c00;
  box-shadow: 0 -2px 12px rgba(103,43,0,0.04);
  margin-top: auto;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.footer-signup p {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-align: center;
  color: #4a2d00;
}

.footer-signup-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-signup-form input[type="text"],
.footer-signup-form input[type="email"] {
  padding: 8px 12px;
  font-size: 1em;
  border: 1.5px solid #a85c00;
  border-radius: 4px;
  width: 120px;
  max-width: 60%;
  font-family: 'Raleway', sans-serif;
  color: #672b00;
  outline: none;
  transition: border-color 0.3s;
}

.footer-signup-form input[type="text"]:focus,
.footer-signup-form input[type="email"]:focus {
  border-color: #672b00;
}

.footer-signup-form button {
  padding: 8px 20px;
  font-size: 1em;
  background-color: #a85c00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
}

.footer-signup-form button:hover {
  background-color: #672b00;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  padding: 20px 0;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h4 {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 12px;
  color: #672b00;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #672b00;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: #a85c00;
  text-decoration: underline;
}

.footer-group {
  margin-left: 70px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #672b00;
}

.social-links li a i {
  font-size: 1.2em;
  color: #a85c00;
  transition: color 0.2s;
}

.social-links li a:hover i {
  color: #672b00;
}

.social-links li a:hover {
  color: #a85c00;
}

/* Header social icons styling */
.social-icons {
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 90px;
  right: 32px;
  padding: 10px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  color: #a85c00;
  font-size: 1.5em;
  border-radius: 50%;
  background-color: #ffdfac;
  box-shadow: 0 2px 6px rgba(168, 92, 0, 0.3);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  color: #672b00;
  background-color: #ffe5bb;
  transform: scale(1.1);
}

/* Responsive adjustments for header social icons */
@media (max-width: 600px) {
  .social-icons {
    gap: 12px;
  }
  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
}

.footer-bottom {
  font-size: 0.9em;
  color: #4a2d00;
  border-top: 1px solid #a85c00;
  padding-top: 12px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.footer a {
  color: #a85c00;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #a85c00;

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.footer a:hover {
  color: #451d00;
  text-decoration: underline;
}

/* Product Gallery Styles */
.product-gallery {
  display: flex;
  flex-wrap:wrap;         /* Prevent wrapping on large screens */
  gap: 50px;
  justify-content: center;
  margin-top: 400px;            /* Only vertical margin */
}

.flip-card {
  background: transparent;
  width: 260px;
  height: 340px;
  perspective: 1000px;
  cursor: pointer;
  flex: 0 0 260px;           /* Prevent shrinking/growing */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.4,2,.6,1);
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(103,43,0,0.10);
  background: #ffe3b5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  transform: rotateY(180deg);
  text-align: center;
  color: #672b00;
  font-family: 'Raleway', sans-serif;
  /* Remove fixed height/width here */
}

.product-description {
  padding: 16px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #672b00;
}

/* Responsive */
@media (max-width: 900px) {
  .main-content {
    margin: 120px 10px 30px 10px;
    padding: 18px 8px;
  }
  .main-content h1 {
    font-size: 1.5em;
  }
}

@media (max-width: 600px) {
  .footer {
    font-size: 0.95em;
    padding: 18px 4px 12px 4px;
  }

  .footer-group {
    flex-direction: column;
    margin-left: 0;
    gap: 20px;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-signup-form input[type="text"],
  .footer-signup-form input[type="email"],
  .footer-signup-form button {
    width: 80%;
    max-width: 80%;
  }
}

.philosophy-image{
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(103,43,0,0.1);
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Optional: subtle fade-in for nav/footer links on page load */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

.navbar ul li,
.footer a {
  animation: fadeInUp 0.7s both;
}

.navbar ul li:nth-child(1) { animation-delay: 0.05s; }
.navbar ul li:nth-child(2) { animation-delay: 0.1s; }
.navbar ul li:nth-child(3) { animation-delay: 0.15s; }
.navbar ul li:nth-child(4) { animation-delay: 0.2s; }
.navbar ul li:nth-child(5) { animation-delay: 0.25s; }
.navbar ul li:nth-child(6) { animation-delay: 0.3s; }
.navbar ul li:nth-child(7) { animation-delay: 0.35s; }

.index-content {
  max-width: 900px;
  margin: 10px auto 50px auto; /* Reduced top margin to reduce gap */
  padding: 48px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* Carousel Styles */
.image-carousel {
  position: relative;
  height: 600px; /* Fixed height for carousel */
  width: 99vw; /* Make carousel full viewport width */
  max-width: 100vw; /* Override max-width to full viewport width */
  margin: 250px 0 40px 0; /* Remove horizontal auto margin to stretch full width */
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  overflow: hidden; /* Hide overflow to avoid horizontal scroll */
  box-sizing: border-box; /* Include padding and border in width */
  padding: 0; /* Remove horizontal padding to make carousel edges touch screen edges */
}

.carousel-track-container {

  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  flex-direction: row; /* Ensure slides are in a row */
  transition: transform 0.5s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-slide {
  min-width: 100%;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.carousel-slide.current-slide {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 110vw; /* Increased width for more width */
  height: 600px; /* Increased height */
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(103,43,0,0.2);
  overflow: hidden;
}

.carousel-btn {
  background-color: rgba(168, 92, 0, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  transition: background-color 0.3s ease;
  user-select: none;
}

.carousel-btn:hover {
  background-color: rgba(168, 92, 0, 1);
}

.left-btn {
  left: 10px;
  z-index: 10; /* Ensure left button is above other elements */
}

.right-btn {
  right: 10px;
  z-index: 10; /* Ensure right button is above other elements */
}

.carousel-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px #a85c00;
}

/* Responsive */
@media (max-width: 700px) {
  .image-carousel {
    width: 100%;
  }
  .carousel-track-container {
    width: 90%;
  }
  .carousel-slide img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 700px) {
  .index-content {
    margin: 80px 8px 20px 8px;
    padding: 24px 8px 20px 8px;
    max-width: 98vw;
  }
}

.index-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: #794b0b;
  position: relative;
}

.index-content h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #a85c00;
  margin: 18px auto 0 auto;
  border-radius: 2px;
  opacity: 0.7;
}

.index-content p {
  font-size: 1.18rem;
  font-weight: 560;
  color: #4a2d00;
  line-height: 1.7;
  margin: 0 auto 12px auto;
  max-width: 700px;
}

@media (max-width: 700px) {
  .index-content {
    padding: 24px 8px 20px 8px;
    max-width: 98vw;
  }
  .index-content h1 {
    font-size: 1.5rem;
  }
  .index-content p {
    font-size: 1rem;
  }
}

    .search-results {
      max-width: 800px;
      margin: 300px auto 40px auto; /* Added top margin to avoid overlap with navbar */
      padding: 0 1rem;
    }
    .search-results h1 {
      margin-bottom: 1rem;
    }
    .search-item {
      border-bottom: 1px solid #7d4301;
      padding: 0.5rem 0;
    }
    .search-item a {
      font-weight: bold;
      color: #672b00;
      text-decoration: none;
    }
    .search-item a:hover {
      text-decoration: underline;
    }
    .search-item p {
      margin: 0.25rem 0 0 0;
    }

.wholesale-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.wholesale-hero {
  position: relative;
  background-image: url('wholesale.jpg'); /* update the path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(105, 60, 1, 0.531); /* light brown overlay */
  z-index: 1;
}

.wholesale-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 30px;
  max-width: 900px;
}

.wholesale-text h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #f5d7a3; /* light cream/orange tone */
}

.wholesale-text p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.wholesale-text a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* No gap to mimic full-width edge-to-edge like wholesale */
  margin: 0;
  padding: 0;
  width: 99vw;
  overflow: hidden;
}

.feature-box {
  position: relative;
  height: 500px; /* You can increase this if needed */
  overflow: hidden;
  border: 2px solid rgb(234, 170, 97);
}

.feature-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-box:hover img {
  transform: scale(1.08);
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 30, 20, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 10px;
  box-sizing: border-box;
}

.feature-box:hover .feature-overlay {
  opacity: 1;
}

.feature-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.feature-overlay p {
  margin: 0 auto;
}

.know-more-btn {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 12px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.know-more-btn:hover {
  background-color: white;
  color: #000;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 480px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* Products Page Category Styles */
.product-categories-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-top: 20px;
}

.product-category {
  margin-bottom: 40px;
  padding: 20px 15px;
  border-bottom: 1px solid #4a2900;
}

.product-category h2 {
  font-size: 1.8rem;
  color: #4f2b00;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

/* Product grid styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}

.product-item a {
  color: #7a4300;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 6px 8px;
  width: 100%;
  display: block;
  transition: color 0.3s ease;
  border-radius: 4px;
  background: rgba(255, 223, 172, 0.8);
  box-shadow: 0 2px 8px rgba(103,43,0,0.1);
}

.product-item a:hover {
  color: #672b00;
  text-decoration: underline;
}

/* Footer navigation links hover underline */
.footer-column ul li a:hover {
  text-decoration: underline;
}

/* Footer navigation column to align Home, Testimony, Contact at top left */
.footer-columns {
  justify-content: flex-start;
  gap: 40px;
}

/* Footer links at top left corner */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 0.5px;
  left: 0.5px;
  z-index: 1000;
}

.footer-links h4 {
  margin: 10px 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #672b00;
}

.footer-links h4 a {
  color: #391800;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 900px) {
  .product-categories-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .product-item a {
    font-size: 1rem;
    padding: 5px 6px;
  }
}

/* Contact form section styling to avoid overlap with navbar */
.contact-main {
  margin: 320px auto 80px;
  padding: 100px;
  max-width: 800px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(94, 47, 0, 0.605);
  color: #a25b1d;
  position: relative;
  background-color: rgba(255, 193, 131, 0.204); /* decreased opacity brown */
  box-sizing: border-box;
  z-index: 1;
}

.contact-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  background-image: url('mandala-top-right.png');
  background-repeat:inherit;
  background-position: center;
  background-size: 450px;
  opacity: 0.15; /* reduced opacity */
  pointer-events: none;
  z-index: 0;
}

.contact-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background-image: url('mandala-bottom-left.png');
  background-repeat:inherit;
  background-position: center;
  background-size: 450px;
  opacity: 0.15; /* reduced opacity */
  pointer-events: none;
  z-index: 0;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #763300;
  margin-bottom: 28px;
  text-decoration: underline wavy;
  text-underline-offset: 2px;
}

.contact-form {
  z-index: 1;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 200px;
  margin-bottom: 24px;
  border: 2px solid #773900;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #ffdc9adc;
  color: #542600;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a85c00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 92, 0, 0.15);
}

.contact-form textarea {
  min-height: 50px;
  resize: vertical;
}

.contact-form button {
  background-color: #a85c00;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
  margin: 30px auto 0;
}

.contact-form button:hover {
  background-color: #672b00;
  transform: translateY(-2px);
}

.header-right-column .social-icon:hover {
  color: #672b00;
  background-color: #ffe5bb;
  transform: scale(1.1);
  position: relative;
}

/* Tooltip container */
.header-right-column .social-icon {
  position: relative;
  cursor: pointer;
}

/* Tooltip text */
.header-right-column .social-icon .tooltip-text {
  visibility: hidden;
  width: max-content;
  background-color: #a85c00;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 8px;
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 0.85em;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

/* Tooltip arrow */
.header-right-column .social-icon .tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #a85c00;
}

/* Show tooltip on hover */
.header-right-column .social-icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Carousel Text Overlay Styles */
.carousel-text-overlay {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.carousel-text-overlay h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.carousel-text-overlay hr {
  border: 0;
  height: 3px;
  background: #ffffff;
  width: 60%;
  margin: 0 auto 15px auto;
  border-radius: 2px;
  opacity: 0.8;
}

.carousel-text-overlay p {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 700px) {
  .carousel-text-overlay h1 {
    font-size: 2.2rem;
  }
  .carousel-text-overlay p {
    font-size: 1.2rem;
  }
  .carousel-text-overlay hr {
    height: 2px;
    width: 80%;
  }
}

/* === Responsive Breakpoints === */

/* 🟨 Small Devices (Tablets) */
@media (min-width: 600px) {
  .navbar {
    padding: 25px 40px;
    font-size: 1rem;
  }

  .main-content {
    margin: 280px 30px 40px 30px;
    padding: 25px;
  }
}


/* 🟦 Medium Devices (Small Laptops & Large Tablets) */
@media (min-width: 768px) {
  .navbar {
    padding: 30px 50px;
    justify-content: space-between;
  }

  .main-content {
    margin: 260px 50px 50px 50px;
    padding: 30px;
  }
}


/* 🟪 Large Devices (Desktops) */
@media (min-width: 992px) {
  .navbar {
    padding: 35px 80px;
    font-size: 1.1rem;
  }

  .main-content {
    margin: 250px 80px 60px 80px;
    padding: 35px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* 🟥 Extra Large Devices (Large Desktops/TVs) */
@media (min-width: 1200px) {
  .navbar {
    padding: 40px 120px;
    font-size: 1.2rem;
  }

  .main-content {
    max-width: 1200px;
    margin: 250px auto 70px auto;
    padding: 40px;
  }
}

/* === Responsive Breakpoints === */

/* Small devices (phones, < 600px) */
@media (max-width: 599px) {
  .main-content {
    margin: 340px 12px 40px 12px;
    padding: 18px 14px;
    font-size: 0.95em;
  }

  .main-content h1 {
    font-size: 1.6em;
  }

  .navbar {
    top: 200px;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
  }

  .nav-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hamburger-menu {
    align-self: flex-start;
  }
}


/* Medium devices (tablets, 600px to 900px) */
@media (min-width: 600px) and (max-width: 899px) {
  .main-content {
    margin: 300px 20px 40px 20px;
    padding: 25px;
    font-size: 1em;
  }

  .navbar {
    top: 220px;
    padding: 20px;
  }
}


/* Large devices (900px and up) */
@media (min-width: 900px) {
  .main-content {
    margin: 250px auto 60px auto;
    padding: 32px 28px;
    max-width: 900px;
  }

  .navbar {
    top: 250px;
    padding: 30px 60px;
  }
}