
     
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    line-height: 1.6;
    /* background-color: #f4f4f4; */
    background-color: #d7d3cd;
    /* color: var(--text-color); */
    overflow-x: hidden;
}
/* ------nav----- */
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  position: relative;
  transition: background-color 0.3s;
  z-index: 1000; /* Ensure navbar is above other content */
  background-color: #9D8F82;
}

/* Align logo and shop name to the left, nav content to the right */
.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
 
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  height: auto;
  width: 350px;
}

.logo img {
  height: 80px;
  width: 80px;
  /* border-radius: 50%; */
  margin-right: 10px;
}

.shop-name {
  display: inline-block;
  font-size: 1.2em;
  color: white;
  text-align: left; /* Align text to left */
}

/* Nav List */
.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end; /* Align nav items to the right */
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  /* color: black; */
  color: whitesmoke;
  font-weight: bold;
  padding: 10px;
}

/* Language Dropdown */
.language-dropdown {
  display: flex;
  align-items: center;
}

#languageSelect {
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f9fa;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 7px;
  width: 100px;
}

#languageSelect:hover {
  background-color: #e2e6ea;
}



/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  
  z-index: 1001; /* Make sure hamburger menu is above the navbar */
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  /* background-color: black; */
  background-color: whitesmoke;
  margin: 3px 0;
}

.book-now {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(244, 223, 78, 0.3);
  transition: var(--transition);
  margin-right: 1rem;
}

.book-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 223, 78, 0.4);
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .navbar-content {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
   
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    color: rgb(248, 246, 246);
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 25px; /* Adds space between the menu items */
    z-index: 1002; /* Ensure the menu is above the hero section */
  }
  .nav-list a{
      color: rgb(250, 248, 248);
  }
  .nav-list.active {
    display: flex;
    background-color: #9D8F82;
    /* margin-top: 3rem; */
  }

  .menu-toggle {
    display: flex;
  }

  /* Center Language Select in Mobile Menu */
  .language-dropdown {
    justify-content: center;
    width: 100%;
  }

  #languageSelect {
    width: 100%;
    margin: 10px auto;
  }
}

/* ----icon ends----- */

/* Profile icon styling */
#nav-item-profile-desktop i,
#nav-item-profile-mobile i {
  font-size: 1.5em;
  color: whitesmoke;
  padding: 10px;
  cursor: pointer;
}

/* Default: Show profile icon after Contact Us (Large Screens) */
#nav-item-profile-desktop {
  display: inline-block;
}

/* Mobile: Profile icon moves next to hamburger */
@media (max-width: 768px) {
  #nav-item-profile-desktop {
      display: none; /* Hide desktop icon on mobile */
  }

  .menu-icons {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  /* Show mobile profile icon */
  .mobile-only {
      display: inline-block;
  }

  /* Mobile Navigation */
  .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100px;
      left: 0;
      background-color: #0f172a;
      color: rgb(248, 246, 246);
      width: 100%;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 10px;
      gap: 25px;
      z-index: 1002;
  }

  .nav-list.active {
      display: flex;
  }
}

.login {
  color: white;
  font-size: 1.1em !important;
}


 /* -----nav ends---- */
/* Landing Section */
.landing {
  min-height: 100vh;
  background: url('images/background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 3rem 2rem;
  color: white;
}

/* Dark Overlay */
.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Landing Content */
.landing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 90%;
}

/* Responsive Heading */
.landing-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-in-out;
}

/* Responsive Paragraph */
.landing-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  animation: fadeInUp 1.3s ease-in-out;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.2rem;
  background: #9D8F82;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  max-width: 280px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 1.6s ease-in-out;
}

.cta-button:hover {
  background: #85786F;
}

/* Fade-In Animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing {
      padding: 5vh 1rem;
  }

  .landing-content h1 {
      font-size: 2.2rem;
  }

  .landing-content p {
      font-size: 1.2rem;
  }

  .cta-button {
      font-size: 1rem;
      padding: 10px 20px;
      width: 80%;
      max-width: 250px;
      margin: 0 auto; /* Ensures button stays centered */
      display: block;
  }
}


/* About Section */
.about-section {
  font-family: 'Roboto', sans-serif;
  /* background-color: #f3f4f6; */
  background-color: #d7d3cd;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.about-card {
  max-width: 100%;
  background-color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .about-card {
      flex-direction: row;
  }
  .about-image-container {
      width: 50%;
      padding-right: 2rem;
  }
  .about-content-container {
      width: 50%;
  }
}
.about-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .about-content-container {
      margin-top: 0;
  }
}
.about-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 3rem;
  font-weight: bold;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .about-title {
      font-size: 2.5rem;
  }
} 
.about-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* -----about us ends------ */

/* Gallery Section */
.gallery-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
}
 
 

.gallery-container {
  width: 100%;
  max-width: 72rem;
  display: flex;
  flex-direction: row; 
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 2rem;
}
@media (max-width: 768px) {
  .gallery-container {
      flex-direction: column;
  }
}

.gallery-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: relative; */
}
.gallery-image-container img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.gallery-arrow-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.gallery-arrow-button i {
  font-size: 2rem;
  color: black;
}
@media (max-width: 768px) {
  .gallery-arrow-button {
      padding: 0.8rem;
  }
  .gallery-arrow-button i {
      font-size: 1.5rem;
  }
  
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
  width: 100%;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }
}


/* ------gallery ends------ */


/* Product Section */
#products {
  padding: 4em 1em;
  text-align: center;
}


.products-header {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.product-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* max-width: 400px; */
  text-align: center;
  position: relative;
}

.product-image {
  height: 100%;
  /* position: relative; */
  /* overflow: hidden; */
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for Text */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  min-height: 60px;
  max-height: 40%;
  overflow: hidden;
}

/* Ensure text stays inside */
.overlay p {
  max-width: 90%;
  word-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-grid {
      grid-template-columns: 1fr;
  }
  .product-row {
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .product-grid, .product-row {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .product-card {
      max-width: 100%;
  }
  /* .product-image img {
      height: 280px;
  } */
  .overlay {
      min-height: 50%;
  }
}

/* Product Section */
#shop-section {
  padding: 4em 1em;
  text-align: center;
}

.shop-header {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}

/* Product Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.shop-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.shop-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  /* max-width: 400px; */
  text-align: center;
  position: relative;
}

.shop-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for Pricing */
.shop-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  min-height: 60px;
  max-height: 40%;
  overflow: hidden;
}

/* Pricing Style */
.shop-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .shop-grid {
      grid-template-columns: 1fr;
  }
  .shop-row {
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .shop-grid, .shop-row {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .shop-item {
      max-width: 100%;
  }
  .shop-image img {
      height: 280px;
  }
  .shop-overlay {
      min-height: 50%;
  }
}
/* ------price ends------ */
 /* -----payment--- */
 .payment {
  padding: 6rem 2rem;
  /* background: var(--light-gray); */
  /* background-color: #f4f4f4; */
  background-color: #d7d3cd;
}

.payment-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping for responsiveness */
}

.payment-info {
  flex: 1;
  min-width: 250px; /* Ensures that it doesn’t shrink too much on smaller screens */
}

.payment h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.payment-methods {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.payment-methods i {
  font-size: 3rem;
  color: #666;
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
}

.step i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.payment-image {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.payment-image img {
  max-width: 300px;
  border-radius: 10px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .payment-content {
      flex-direction: column; /* Stacks the content vertically on smaller screens */
  }

  .payment-image img {
      max-width: 100%;
  }
}
 
 /* -----payment ends----- */
 /* ----contact us------ */
/* Contact Section */
.contact {
  padding: 4rem 5%;
  background-color: #d7d3cd;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-green);
  font-size: 2.5rem;
  margin-top: 1rem;
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Info Card */
.info-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: scale(1.05);
}


/* Text Styling */
.info-text h3 {
  color: var(--dark-green);
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
}

.info-text p {
  color: #666;
  font-size:1.2em;
}

/* Connect Button */
.connect-btn-container {
  text-align: center;
  margin-top: 2.5rem;
}

.connect-btn {
  display: inline-block;
  padding: 12px 25px;
  /* background:var(--dark-green); */
  /* background-color: black; */
  background-color: #9D8F82;
  color: white;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  margin-bottom: 2rem;
}


.map-image{
  width: 90vw;
  /* height: 30vh; */
}
.map-image img{
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
      grid-template-columns: 1fr;
  }

  .info-item {
      padding: 1.2em;
  }

 

  .info-text h3 {
      font-size: 1.5rem;
  }

  .info-text p {
      font-size: 1.2em;
  }

  .connect-btn {
      padding: 10px 20px;
  }
}
 
 /* -----contact us ends---- */
 /* ----fotter--- */
 /* Footer Section */
/* Footer Styles */
.footer {
  /* background-color: #024014; */
  /* background-color: #441752; */
  /* background-color: rgb(230, 225, 225); */
  background-color: #9D8F82;
  color: white;
  /* color: black; */
  padding: 3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.social-media a {
  color: white;
  /* color: black; */
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
  /* color: #ff9800; */
  color: black;
  transform: scale(1.1);
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
}

.product-by-visys {
  opacity: 0.5;
  font-size: 0.7rem;
}

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

  .social-media {
      margin-bottom: 1rem;
  }

  .footer-copyright {
      text-align: center;
  }

  .contact-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
}

 /* fotter ends------ */
 /* ---pop up----- */
 .form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.form-container h2 {
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #f9f9f9;
}

.form-group button {
  width: 100%;
  padding: 12px;
  /* background-color: #1f2937; */

  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  /* background-color: #1f2937; */
  /* background-color: #58595B; */
  background-color: #9D8F82;

}

.form-group button:active {
  /* background-color: #004a8a;
   */
   background-color: #dcd1d1;
   color: black;
}

/* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  font-size: 18px;
  color: #4CAF50;
  padding: 20px;
}

/* Popup styles */
#contactpopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* Close button (cross mark) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}

.close-btn:hover {
  color: red;
}

/* Text input for hidden date selection 
#popup input[type="text"]  {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  display: none;
} */

/* Text input for email address */
input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

/* Textarea */
textarea {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
button[type="submit"] {
  /* background-color:#58595B; */
  background-color: #9D8F82;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #dcd1d1;
  color: black;
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
 /* pop up ends----- */
 /* ----whatsapp--- */
   
/* Styling for the floating WhatsApp button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, background 0.3s;
  text-decoration: none;
  }
  
  /* Hover effect */
  .whatsapp-btn:hover {
  background-color: #1EBE5D;
  transform: scale(1.1);
  }
  
  /* WhatsApp icon */
  .whatsapp-btn img {
  width: 35px;
  height: 35px;
  }

  @media(max-width:480px){
    .whatsapp-btn{
      width: 65px;
      height: 65px;
    }
     
  /* WhatsApp icon */
  .whatsapp-btn img {
    width: 40px;
    height: 40px;
    }
  }

 /* ----whatsapp ends----- */

 /* Custom Translate Button */
.translate-container {
  position: relative;
}

.translate-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.translate-btn:hover {
  background: #939292;
}

/* Language Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  z-index: 100;
  animation: fadeIn 0.3s ease-in-out;
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
} */

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background: #fff;
  color: red;
}


/* Hide Google Translate Branding Completely */
.goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
#google_translate_element select, .goog-te-gadget {
  display: none !important;
}



/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Ensure body does not shift down due to hidden banner */
body {
  top: 0px !important;
}
/* Hide Google Translate banner */
.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}


/* General video container */
#videos{
  background-color: #d7d3cd; 
  padding: 2rem;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#videos h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  display: block; /* Ensures it behaves as a block element /
  width: 100%; /* Makes sure it takes full width */
  text-align: center; /* Explicit centering */
  position: relative;
  padding-bottom: 10px;
}

/* Styling for each video item */
.video-item video {
    width: 80%; /* Make videos responsive */
    /* max-width: 320px; Limit width */
    height: auto;
    position: relative;
    border-radius: 8px;
}

/* Row for 2 or more videos */
.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Specific layouts for different video counts */
.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

/* .video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
} */

/* .video-item .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
} */

 
/* Responsive handling */
@media (max-width: 768px) {
    .video-item video {
        max-width: 100%;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ---pop up----- */
 #popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allow scrolling inside popup */
  z-index: 9999; /* Ensure it appears above everything */
}

/* Popup box (Centered properly) */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  max-height: 80vh; /* Restrict height */
  overflow-y: auto; /* Enable scrolling inside popup */
  z-index: 10001; /* Ensure it appears above navbar */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.close-btn:hover {
  background: darkred;
}

/* Prevent background scrolling when popup is open */
body.no-scroll {
  overflow: hidden;
}

/* Fix Navbar Overlapping */
.navbar {
  position: relative;
  z-index: 100; /* Ensure navbar does not cover popup */
}


/* Product grid layout */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Dynamic grid */
  gap: 15px;
  padding: 10px;
}

.product-item {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.discounted-price {
  color: #d9534f;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #777;
}

/* Buttons inside the popup */
.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.popup button:hover {
  opacity: 0.8;
}

.cart-item button {
  background-color: #dc3545;
  color: white;
}

.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
}

.popup button:first-of-type {
  background-color: #007bff;
  color: white;
}
.view-cart-btn {
  position: absolute;
  top: 10px;
  right: 80px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.view-cart-btn:hover {
  background-color: #218838;
}
.cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: none;
  z-index: 9999;
}

    