* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* Container */
.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {

background-color: #00d389; /* Dark orange background */
  color: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  top: 0;
  z-index: 1000;
} 

.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 120px;
  height: 70px;
}
/* Navigation Base */
/* Navigation Styles */
/* From Uiverse.io by Harsha2lucky */ 
.input {
  color: black;
  font: 1em/1.5 Hind, sans-serif;
}

.search-form, .input, .caret {
  margin: auto;
}

.search-form {
  position: relative;
  width: 100%;
  max-width: 17em;
}

.input, .caret {
  display: block;
  transition: all calc(1s * 0.5) linear;
}

.input {
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 0.25em inset;
  caret-color: #255ff4;
  width: 2em;
  height: 2em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input:focus, .input:valid {
  background: powderblue;
  border-radius: 0.25em;
  box-shadow: none;
  padding: 0.75em 1em;
  transition-duration: calc(1s * 0.25);
  transition-delay: calc(1s * 0.25);
  width: 100%;
  height: 3em;
}

.input:focus {
  animation: showCaret 1s steps(1);
  outline: transparent;
}

.input:focus + .caret, .input:valid + .caret {
  animation: handleToCaret 1s linear;
  background: transparent;
  width: 1px;
  height: 1.5em;
  transform: translate(0,-1em) rotate(-180deg) translate(7.5em,-0.25em);
}

.input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.label {
  color: #e3e4e8;
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

.caret {
  background: black;
  border-radius: 0 0 0.125em 0.125em;
  margin-bottom: -0.6em;
  width: 0.25em;
  height: 1em;
  transform: translate(0,-1em) rotate(-45deg) translate(0,0.875em);
  transform-origin: 50% 0;
}

/* Animations */
@keyframes showCaret {
  from {
    caret-color: transparent;
  }

  to {
    caret-color: #255ff4;
  }
}

@keyframes handleToCaret {
  from {
    background: currentColor;
    width: 0.25em;
    height: 1em;
    transform: translate(0,-1em) rotate(-45deg) translate(0,0.875em);
  }

  25% {
    background: currentColor;
    width: 0.25em;
    height: 1em;
    transform: translate(0,-1em) rotate(-180deg) translate(0,0.875em);
  }

  50%, 62.5% {
    background: #255ff4;
    width: 1px;
    height: 1.5em;
    transform: translate(0,-1em) rotate(-180deg) translate(7.5em,2.5em);
  }

  75%, 99% {
    background: #255ff4;
    width: 1px;
    height: 1.5em;
    transform: translate(0,-1em) rotate(-180deg) translate(7.5em,-0.25em);
  }

  87.5% {
    background: #255ff4;
    width: 1px;
    height: 1.5em;
    transform: translate(0,-1em) rotate(-180deg) translate(7.5em,0.125em);
  }

  to {
    background: transparent;
    width: 1px;
    height: 1.5em;
    transform: translate(0,-1em) rotate(-180deg) translate(7.5em,-0.25em);
  }
}



.second-navbar {
  background-color: #fff4e6;
  border-top: 1px solid #e0b999;
  border-bottom: 1px solid #e0b999;
  padding: 10px 0;
  font-family: sans-serif;
}

.second-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.second-nav-item {
  position: relative;
  margin: 0 15px;
}

.second-nav-item > a {
  text-decoration: none;
  font-weight: bold;
  color: #b84d00;
  padding: 8px 12px;
  display: inline-block;
  transition: color 0.3s ease;
}

.second-nav-item > a:hover {
  color: #ff6600;
}

.second-nav-item .dropdown {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ffa366;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  min-width: 220px;
}

.second-nav-item:hover .dropdown {
  display: block;
}

.dropdown li {
  list-style: none;
  margin: 0;
}

.dropdown li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}

.dropdown li a:hover {
  background-color: #fff0e6;
  color: #e65c00;
}



/* Hero Section */


.fancy-button {
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.fanct-button:hover {
  box-shadow: .5px .5px 150px #252525;
}
.fancy-button::after {
  content: "Shop Now";
  height: 50px;
  width: 150px;
  background-color: #ff8800;
  color: #fff;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(50px);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.fancy-button::before {
  content: "Buy Now";
  height: 50px;
  width: 150px;
  background-color: #fff;
  color: #008080;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translateY(0px) scale(1.2);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.fancy-button:hover::after {
  transform: translateY(0) scale(1.2);
}

.fancy-button:hover::before {
  transform: translateY(-50px) scale(0) rotate(120deg);
}
/*
.fancy-button:after {
 pointer-events: none;
 content: "";
 position: absolute;
 top: 120%;
 left: 0;
 height: 100%;
 width: 100%;
 background-color: var(--glow-spread-color);
 filter: blur(2em);
 opacity: .7;
 transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
}

.fancy-button:hover:after {
  box-shadow: 0px -13px 56px 12px #ffffffa6;
}
*/
/*.fancy-button span {
  position: absolute;
  width: 100%;
  font-size: 15px;
  font-weight: 100;
  left: 50%;
  top: 39%;
  letter-spacing: 3px;
  text-align: center;
  transform: translate(-50%, -50%);
  color: black;
  transition: all 2s ease;
}



.fancy-button:hover span {
  color: white;
}

.fancy-button:before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  background-color: black;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
}

.fancy-button:hover:before {
  width: 100%;
}
  */
  /*
.fancy-button:hover {
 color: var(--btn-color);
 background-color: var(--glow-color);
 box-shadow: 0 0 1em .25em var(--glow-color),
        0 0 4em 2em var(--glow-spread-color),
        inset 0 0 .75em .25em var(--glow-color);
}

.fancy-button:active {
 box-shadow: 0 0 0.6em .25em var(--glow-color),
        0 0 2.5em 2em var(--glow-spread-color),
        inset 0 0 .5em .25em var(--glow-color);
}
*/




@media (max-width: 480px) {
  .logo-img {
    width: 90px;
  }

  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}



/* Her  o Section */
.hero {
  background: url('') no-repeat center center/cover;
  color: black;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  background: black;
  color: #d21f3c;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* Categories */
.categories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.category-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-card {
  perspective: 1000px;
  width: 100%;
  height: 260px;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.flip-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.category-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.flip-front {
  background: #fff;
  z-index: 2;
}

.flip-front img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 50%;
  height: auto;
  margin-bottom: 12px;
}

.flip-front h3 {
  font-size: 18px;
  color: #1e1e1e;
  text-align: center;
}

.flip-back {
  background-color: #ffcc80;
  transform: rotateY(180deg);
  font-size: 16px;
  color: #1e1e1e;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}


/* About Preview */
.about-preview {
  padding: 2.5rem 1rem;
  text-align: center;
}

.about-preview h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
 

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 4rem 1rem;
  }
}
 .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 2rem;
    }
    .product-card {
      background: #fff3e0;
      border-radius: 1rem;
      overflow: hidden;
      text-align: center;
      padding: 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s;
    }
    .product-card:hover {
      transform: scale(1.03);
    }
    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 0.5rem;
    }
    .product-name {
      font-size: 1.1rem;
      font-weight: bold;
      margin: 0.8rem 0 0.4rem;
    }
    .product-price {
      color: #333;
      font-weight: 500;
      font-size: 0.95rem;
    }
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;

}
.whatsapp img {
    width: 50px;
    height: 50px;
      border-radius: 50%;
    
}
.content {
    padding: 20px;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

