:root {
  --color-primary: rgb(255, 228, 196); /* biscuit */
  --color-secondary: rgb(65, 50, 33); /* dark brown */
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
}
/* whatsApp Btn */
.main-page-whatsApp-btn {
  background: none;
  border: none;
  position: fixed;

  z-index: 100;
  transform: translate(-50%, -50%);
  top: 90%;
  right: 3%;
}
/* loader */
.loader {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  /* background-color: var(--color-primary); */
}
/* nav */

.nav {
  height: 120px;
  width: 100%;
  background: var(--color-primary);
  text-align: center;
}
.title-img {
  height: 55px;
  margin-top: 5px;
}
.nav-items {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.nav-items li {
  margin-left: 13px;
  list-style: none;
}
.item {
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--color-secondary);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  float: right;
  margin-top: 12px;
  margin-right: 8px;
}
.menu-btn img {
  height: 22px;
}

/* slide menu */
.menu {
  display: none;
  position: fixed;
  height: 100vh;
  width: 180px;
  z-index: 100;
  right: 0;
  transform: translateX(100%);
  background-color: rgb(255, 247, 240);
  transition: transform ease-in-out 0.5s;
}
.menu-items {
  margin-top: 40px;

  list-style: none;
}
.menu-items li {
  margin-top: 15px;
}
.menu-item {
  color: var(--color-secondary);
  text-decoration: none;
  margin: 25px;
}
.menu-close-btn {
  cursor: pointer;
  color: var(--color-secondary);
  background: none;
  border: none;
  position: relative;
  float: right;
  margin: 10px;
  font-size: 1rem;
}
/* contact modal */

/* overlay */
.overlay {
  height: 100vh;
  width: 100%;
  position: fixed;
  backdrop-filter: blur(8px);
}
/*  */

.contact-modal {
  /* display: none; */
  opacity: 0;
  position: fixed;
  background-color: #ffff;
  pointer-events: none;
  height: 580px;
  width: 450px;
  transform: translate(-50%, -50%) scale(0.4);
  top: 50%;
  left: 50%;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.contact-modal-title {
  font-size: 2rem;
  text-align: center;
  margin: 10px;
  margin-top: 20px;

  color: rgb(59, 59, 59);
}
.contact-modal-para {
  text-align: center;

  font-size: 1.2rem;
  margin: 10px;
  color: #666666;
}
.modal-close {
  position: absolute;
  cursor: pointer;
  color: rgb(59, 59, 59);
  background: none;
  border: none;
  margin-left: 20px;
  font-size: 1.2rem;
  margin-top: 20px;
}
.input-field {
  display: block;
  height: 30px;
  width: 250px;
  margin: auto;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid rgb(204, 204, 204);
  font-size: 1rem;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}
#contact-form label {
  margin-left: 25px;
}
#email-body {
  padding: 10px;
  resize: none;
  display: block;
  font-size: 1rem;
  height: 90px;
  width: 250px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid rgb(204, 204, 204);
  background-color: #ffffff;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}
.email-sent {
  text-align: center;
  height: 300px;
}
.email-sent p {
  color: #7a7a7a;

  margin-top: 50px;
}
.contact-modal-btn {
  display: block;
  height: 30px;
  width: 250px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid rgb(204, 204, 204);
  background-color: hsl(208, 56%, 53%);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  cursor: pointer;
}
.contact-modal-social-btns-container {
  text-align: center;
  margin-top: 30px;
}
.contact-modal-social-btns-container p {
  color: #666;
}

.contact-modal-social-btns-container button {
  border: none;
  background: none;
}
/* Gifting model */
.gifting-modal {
  opacity: 0;
  position: fixed;
  background-color: #ffff;
  pointer-events: none;
  height: 580px;
  width: 450px;
  transform: translate(-50%, -50%) scale(0.4);
  top: 50%;
  left: 50%;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}
.gifting-model-title {
  color: var(--color-secondary);
  font-size: 2.5rem;
  margin: 20px;
  text-align: center;
}
.gifting-model-para {
  font-size: 1.6rem;
  margin: 20px;
}
.gifting-btn-to-whatsApp {
  display: block;
  margin: auto;
  height: 50px;
  width: 150px;
  border-radius: 5px;
  border: none;
  background-color: var(--color-secondary);
  color: white;
  font-size: large;
  font-weight: bold;
}
.gifting-btn-to-whatsApp img {
  height: 20px;
}
.active {
  transform: translate(-50%, -50%) scale(1);
  display: block;
  opacity: 1;
  pointer-events: auto;
}
/* header */

.header {
  height: 52vh;
  background-image: url(img/bg-header.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(175, 134, 84);
}

/* products section */
.products-section {
  margin: 30px;
}

.products-section-heading {
  color: var(--color-secondary);
  font-size: 2.5rem;
  margin-top: 20px;

  text-align: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.catageory-heading {
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: var(--color-secondary);
  margin-top: 30px;
}
/* dummy card */
/* 
 */
.dummy-card {
  background: #fff;
  width: 300px;
  height: 418px;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 15px;
  background: linear-gradient(to right, rgb(236, 236, 236), rgb(190, 190, 190));
  background-size: 300% 100%; /* Larger than the element */
  animation: slideGradient 1s linear infinite alternate;
}
@keyframes slideGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/*  */
/* product card */

.card {
  background: #fff;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 15px;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.card-body h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.card-body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  /* color: #e67e22; */
  color: var(--color-secondary);

  margin-bottom: 15px;
}
.price-span {
  opacity: 0.8;
  font-size: 13px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-secondary);

  color: var(--color-primary);
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}
/* video section */
/* marqee */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 12px 0;
  position: relative;
}

.marquee__inner {
  display: inline-block;
  padding-left: 100%; /* start from outside the right edge */
  animation: scroll-left linear infinite;
  animation-duration: 20s; /* constant speed */
}

.marquee__inner:hover {
  animation-play-state: paused; /* pause on hover */
}

.marquee__item {
  display: inline-block;
  margin-right: 40px;
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

.outline {
  -webkit-text-stroke: 1px #000;
  color: transparent;
  font-weight: 600;
}

/* Keyframes for smooth continuous scrolling */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*  */
.video-section {
  padding-top: 50px;
  min-height: 60vh;
  text-align: center;
}
#player {
  margin: auto;
  margin-top: 50px;
  height: 450px;
  width: 500px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);

  border-radius: 10px;
}
/* faq */

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: var(--color-primary);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--color-secondary);
}

.faq {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq button {
  display: block;
  margin: auto;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  text-align: left;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  color: var(--color-secondary);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq button:hover {
  color: #000;
}

.faq button .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq button.faq-active .icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  color: #333;
}

.faq-content.open {
  padding: 15px;
  max-height: 300px;
}

/* Footer Styling */

footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 3rem 1.5rem;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 0.5rem 0;
}

.footer-col ul li a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #000;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons {
  height: 27px;
  margin: 3px;
}

.footer-socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  text-align: center;
  line-height: 35px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #000;
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--color-secondary);
  padding-top: 1rem;
}

/* hidden */
.hidden {
  display: none;
}

/* v1 responsive */
/* =======================
   Responsive Media Queries
   ======================= */

/* Large laptops/desktops (1200px and up) */
@media (min-width: 1200px) {
  .nav-items {
    gap: 20px;
  }

  #player {
    width: 600px;
    height: 400px;
  }
}

/* Tablets and small laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .nav {
    height: auto;
    padding: 15px;
  }
  .nav-items {
    flex-wrap: wrap;
    gap: 12px;
  }
  .header {
    height: 30vh;
  }

  #player {
    width: 90%;
    height: 360px;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .nav {
    text-align: center;
    padding: 10px;
  }
  .nav-items {
    /* flex-direction: column; */

    gap: 5px;
  }
  .title-img {
    height: 45px;
  }
  .products-section-heading {
    font-size: 2rem;
  }

  .faq-section {
    margin: 20px;
    padding: 15px;
  }
  #player {
    width: 95%;
    height: 280px;
  }
}
@media (max-width: 659px) {
  .card {
    width: 140px;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px;
  }

  .card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .card-body {
    padding: 8px;
  }

  .card-body h2 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .card-body p {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .price {
    font-size: 14px;

    margin-bottom: 5px;
  }

  .btn {
    padding: 5px 10px;
    font-size: 9px;
    border-radius: 20px;
  }
}
/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .nav-items {
    /* flex-direction: column; */
    display: none;
    align-items: center;
  }

  .menu-btn {
    display: block;
  }

  /* slide menu */
  .menu {
    display: block;
  }

  .header {
    height: 25vh;
  }
  .products-section-heading {
    font-size: 1.6rem;
  }

  .contact-modal,
  .gifting-modal {
    width: 90%;
    height: auto;
  }
  #player {
    width: 100%;
    height: 220px;
  }
  .faq-title {
    font-size: 1.6rem;
  }
  /* .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  } */
}

/* Extra small devices (max-width: 375px, e.g. iPhone SE) */
@media (max-width: 375px) {
  .nav {
    padding: 8px;
  }
  .item {
    font-size: 0.9rem;
  }
  .card-body h2 {
    font-size: 16px;
  }
  .card-body p {
    font-size: 12px;
  }
  .contact-modal,
  .gifting-modal {
    width: 95%;
    padding: 10px;
  }
  .products-section-heading {
    font-size: 1.4rem;
  }
  #player {
    width: 100%;
    height: 200px;
  }
}
