/* =========================
      ROOT VARIABLES
   ========================= */
:root {
  --color-green: #07833d; /* Navbar / Brand green */
  --color-yellow: #fdb813; /* Highlight yellow */
  --color-red: #e63027; /* Accent red */
  --color-golden: #f6b500; /* Submenu / secondary */
  --color-dark: #432818; /* Footer brown */
  --color-light: #f8f9fa; /* Background */
  --color-white: #ffffff; /* Pure white */
  --color-text: #333; /* Base text */

    --anchor-color: #fff;
      /*it will change all elements where only nav, a*/
      --price: #d6452f;
      /*it will change all elements where price is present*/
      --discount: #999;
      /*it will change all elements where discount is present*/
      --buy-btn-color: #bb9457;
      /*it will change the color of buy btn*/
      --buy-btn-color-hover: #99582a;
      /*it will change the color of buy btn on hover*/

  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 50px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);

  --font-base: 16px;
  --font-sm: 14px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 35px;

  /* ==============ROOT VARIABLES FOR faq========================= */
  --transition-speed: 0.4s; /* Animation speed */

  /* ==============ROOT VARIABLES FOR Testinomials========================= */
  --card-bg: #fff;
  --accent: #fb1f07;
  --muted: #f89409;
  --quote: #2cb350;
  /* ==============ROOT VARIABLES FOR our hotels button========================= */
  --primary-color: #007bff; /* Main blue color for button */
  --primary-hover: #0056b3; /* Hover color */
  --background-slide: #f8f9fa; /* Light background for slide effect */
  --animation-duration: 0.5s; /* Duration for slide animation */
  --slide-distance: 100px; /* Distance the button slides from */
  --button-width: 60px; /* Width of the button */
  --button-height: 200px; /* Height for vertical layout */

  /* ==============ROOT VARIABLES FOR map-cards========================= */
  --map-section-padding: 40px;
  --map-card-width: 45%; /* medium width for side-by-side */
  --map-card-border-radius: 12px;
  --map-card-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  --map-img-height-desktop: 220px;
  --map-img-height-mobile: 160px;
  --map-height-desktop: 280px;
  --map-height-mobile: 220px;
  --map-section-bg: #f9f9f9;
  --map-text-color: #333;
  --map-gap: 20px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: Arial, sans-serif;
  background: var(--color-light);
  color: var(--color-text);
  max-width: 100%;
  overflow-x: hidden;
}

/*end testinomials*/
/* NAVBAR */
nav {
  width: 100%;
  height: 69px;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-green);
  /* Green */
  color: var(--color-light);
  position: relative;
  box-sizing: border-box;
}

nav img {
  width: 100px;
  height: auto;
}

.nav-part2 {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* make links and the dropdown wrapper fill navbar height and center their contents */
.nav-part2 > a,
.nav-part2 > .dropdown {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px; /* horizontal spacing inside nav */
  color: var(--anchor-color);
  text-decoration: none;
  font-size: var(--font-base);
  position: relative;
}

.nav-part2 a:hover {
  color: var(--navbar-after-hover-color);
}

.nav-part2 a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}
/* small invisible bridge to avoid losing hover when moving cursor from link --> menu */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px; /* tiny invisible area that keeps hover active */
  pointer-events: none; /* does not block mouse events */
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0px; /* push it to start near logo */
  background: var(--color-green);
  display: flex; /* horizontal layout */
  flex-direction: column;
  gap: 10px;
  min-width: auto;
  /* box-shadow: var(--shadow-md); */
  /* border: 2px solid var(--color-yellow); */
  /* border-radius: var(--radius-md); */
  z-index: 1000;
  padding: 12px; /*chatgpt changes*/
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  /* chatgpt changes */
  transition: opacity 0.18s ease, transform 0.18s ease;
  /* transition: all 0.3s ease; */
  /* padding: 20px 12px; */
}
/* keep open on hover or keyboard focus */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* optional hover bridge on the menu itself (extra insurance on flicker) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px; /* extends hover area a bit upward */
  left: 0;
  width: 100%;
  height: 8px;
  pointer-events: auto;
}
.dropdown-menu a {
  padding: 10px 15px;
  color: var(--anchor-color);
  text-decoration: none;
  white-space: nowrap;
  font-size: var(--font-base);
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--navbar-color);
  color: var(--navbar-after-hover-color);
}

/* On mobile keep dropdown vertical */
@media (max-width: 768px) {
  .nav-part2 {
    display: none; /* existing mobile behavior */
  }
  .hamburger {
    display: block;
    color: var(--color-white);
  }
  .dropdown-menu {
    position: static;
    display: none; /* hide inside navbar */
    flex-direction: column;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
  .dropdown:hover .dropdown-menu {
    display: none; /* prevent hover dropdown on mobile */
  }
}
.pro {
  color: white;
  text-decoration: none;
}
/* ============================
       Sub Dropdown Styles
    ============================= */
    .sub-dropdown {
      position: relative;
    }

    .sub-dropdown > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sub-dropdown > a::after {
      content: "\f105"; /* Font Awesome right arrow */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin-left: 8px;
    }

    .sub-dropdown-menu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background: var(--color-green);
      min-width: 180px;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
      /* border-radius: 6px; */
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.25s ease;
      z-index: 999;
    }

    .sub-dropdown-menu a {
      padding: 10px 15px;
      color: var(--color-light);
      display: block;
      text-decoration: none;
    }
    
    .sub-dropdown-menu a:hover {
      color: var(--color-red);
      background: var(--color-green);
    }

    .sub-dropdown:hover .sub-dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateX(0);
    }

/*.language-btn:hover{
  background: linear-gradient(to bottom,rgb(0, 255, 229),rgb(60, 255, 0));
  transition: all linear 0.3s;
}*/
/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s;
}

.hamburger:hover {
  transform: rotate(90deg);
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: var(--color-green);
  color: var(--color-light);
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 2000;
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar h4 a {
  display: block;
  color: var(--anchor-color);
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar h4 a:hover {
  color: var(--products-drop-down-color);
  transform: translateX(5px);
}

.sidebar .submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--products-drop-down-color);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidebar.active .submenu a {
  opacity: 1;
  transform: translateX(0);
}

.sidebar .submenu a:hover {
  color: var(--navbar-after-hover-color);
}

.sidebar .close-btn {
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--products-drop-down-color);
  transition: transform 0.3s;
}

.sidebar .close-btn:hover {
  transform: rotate(90deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-part2 {
    display: none;
  }

  .hamburger {
    display: block;
    color: #fff;
  }
}

/*=========================privacy policies css =========================*/
/*privacy policies style */
.faq-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border: 2px solid var(--color-green);
  margin-top: 30px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.faq-header {
  color: var(--color-green);
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-updated {
  font-size: 0.9rem;
  color: gray;
  margin-bottom: 20px;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-question {
  cursor: pointer;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-speed);
}

.faq-question:hover {
  background: var(--color-golden);
}

.faq-icon {
  transition: transform var(--transition-speed);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--transition-speed) ease,
    opacity var(--transition-speed) ease;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}
/*=========================end privacy policies css =========================*/
/* Footer */
.footer {
  background: var(--color-green);
  color: var(--color-white);
  padding: 50px 20px 20px;
  margin-top: 50px;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h3 {
  margin-bottom: 15px;
  font-size: var(--font-md);
  color: #ffe6a7;
  position: relative;
}
.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #bb9457;
  margin-top: 5px;
}
.footer-col p {
  font-size: var(--font-sm);
  line-height: 1.6;
  color: var(--color-light);
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffe6a7;
}
.newsletter {
  display: flex;
  border: 1px solid #bb9457;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 15px;
}
.newsletter input {
  border: none;
  padding: 10px;
  flex: 1;
  outline: none;
}
.newsletter button {
  background: #bb9457;
  border: none;
  color: var(--color-white);
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background: #99582a;
}
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: var(--color-white);
  font-size: var(--font-lg);
  transition: transform 0.3s, color 0.3s;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #ffe6a7;
}
.footer-bottom {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  color: #bbb;
}
/*floating button what's app*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px; /* distance from bottom */
  right: 20px; /* distance from right */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-float i {
  margin-top: 15px; /* centers icon vertically */
}

.whatsapp-float:hover {
  background-color: #20b955;
}

.footer-credit {
  text-align: center;
  padding: 10px;
  font-size: 16px;
  color: #aaa;
}

.footer-credit a {
  color: #ffffff; /* your brand yellow or any color */
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}
/*slideshow*/
/* Remove default body and section spacing */
body {
  margin: 0;
  padding: 0;
}

section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.slideshow {
  margin: 0 !important;
}

/* Main Slider Fixes */
.slideshow {
  position: relative;
  width: 100%;
  height: auto; /* CHANGED: from 90vh to auto */
  min-height: 400px; /* ADDED: minimum height */
  overflow: hidden;
  background-color: white;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.slide img {
  width: 100%;
  height: 100%; /* CHANGED: from auto to 100% */
  object-fit: cover; /* KEEP as cover for proper filling */
  z-index: 0;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.slide-content h1 {
  font-size: 4vw;
  margin-bottom: 0.5em;
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content h1 {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  color: white;
  z-index: 1;
}

.slide-content h1 {
  position: relative;
  display: inline-block;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.slide-content p {
  font-size: 2vw;
  margin-bottom: 1em;
}

.slide-content a {
  display: inline-block;
  padding: 0.7em 1.5em;
  background-color: rgba(238, 147, 10, 0.3);
  color: #dddddd;
  text-decoration: none;
  font-size: 1.2vw;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.slide-content a:hover,
.slide-content a:focus {
  background-color: rgba(255, 255, 255, 0.6);
  color: #4b4a4a;
  border-color: rgba(255, 255, 255, 0.8);
  outline: 1px solid rgb(36, 196, 4);
  outline-offset: 4px;
  text-shadow: none;
}

.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.nav button {
  background: rgba(120, 186, 111, 0.5);
  border-radius: 40px;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  margin-left: 30px;
  margin-right: 30px;
  transition: background 0.3s ease;
  box-shadow: 10px 10px 35px rgb(103, 101, 91);
}

.nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ========== RESPONSIVE FIXES ========== */

/* Tablets */
@media (max-width: 1024px) {
  .slideshow {
    height: auto;
    min-height: 350px;
  }
  
  .nav button {
    margin-left: 20px;
    margin-right: 20px;
    padding: 8px 16px;
    font-size: 1.5rem;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .slideshow {
    height: auto;
    min-height: 300px; /* CHANGED: from 50vh to fixed min-height */
  }
  
  .slide img {
    height: 100%;
    object-fit: cover;
  }
  
  .slide-content h1 {
    font-size: 6vw; /* CHANGED: from 5vw to 6vw */
    padding: 0.1em 0.3em;
  }
  
  .slide-content p {
    font-size: 4vw; /* CHANGED: from 3.5vw to 4vw */
  }
  
  .slide-content a {
    font-size: 3.5vw; /* CHANGED: from 3vw to 3.5vw */
    padding: 0.5em 1em;
  }
  
  .nav button {
    margin-left: 10px;
    margin-right: 10px;
    padding: 6px 12px;
    font-size: 1.2rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .slideshow {
    height: auto;
    min-height: 148px;
  }
  
  .slide-content h1 {
    font-size: 7vw;
  }
  
  .slide-content p {
    font-size: 4.5vw;
    margin-bottom: 0.5em;
  }
  
  .slide-content a {
    font-size: 4vw;
    padding: 0.4em 0.8em;
  }
  
  .nav button {
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .slideshow {
    min-height: 200px;
  }
  
  .slide-content {
    width: 90%;
  }
  
  .slide-content h1 {
    font-size: 8vw;
  }
  
  .slide-content p {
    font-size: 5vw;
  }
  
  .slide-content a {
    font-size: 4.5vw;
  }
}
   .chip {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      padding: 20px;
    }

  /*chip navgator*/                                                      
   /* ------------------------------
       🎠 Carousel Structure
    ------------------------------ */
    .category-carousel-container {
      display: flex;
      align-items: center;
      width: 90vw;
      max-width: 1200px;
      position: relative;
      padding: 20px 0;
    }

    .carousel-viewport {
      overflow: hidden;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    /* ------------------------------
       🧁 Category Item
    ------------------------------ */
    .carousel-item {
      flex: 0 0 calc(100% / 6);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 5px;
      text-decoration: none;
      cursor: pointer;
      user-select: none;
    }

    .item-icon-circle {
      width: 100px;
      height: 100px;
      background-color: var(--color-light);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .carousel-item:hover .item-icon-circle {
      transform: scale(1.05);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .item-icon {
      font-size: 2rem;
      color: var(--color-golden);
    }

    .item-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-green);
      text-align: center;
      font-family: "Georgia", serif;
    }

    /* ------------------------------
       ⬅️➡️ Navigation Buttons
    ------------------------------ */
    .carousel-btn {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1rem;
      color: var(--icon-color);
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
      z-index: 10;
    }

    .carousel-btn:hover:not(:disabled) {
      background-color: var(--bg-color);
    }

    .carousel-btn:disabled {
      opacity: 0.4;
      cursor: default;
    }

    /* ------------------------------
       📱 Responsive Adjustments
    ------------------------------ */
    @media (max-width: 992px) {
      .carousel-item {
        flex: 0 0 calc(100% / 4);
      }
      .item-icon-circle {
        width: 80px;
        height: 80px;
      }
      .item-icon {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 600px) {
      .carousel-item {
        flex: 0 0 calc(100% / 3);
      }
      .carousel-btn {
        width: 32px;
        height: 32px;
      }
      .item-icon-circle {
        width: 70px;
        height: 70px;
      }
      .item-name {
        font-size: 0.8rem;
      }
    }
    /*===================================product section==============================*/
    .most{
      text-align: center;
      margin: 10px;
      color: var(--color-golden);
      font-size: var(--font-xl);
    }
       /*cards*/
    .wrapper {
      display: flex;
      flex-wrap: wrap;
      row-gap: 2em;
      column-gap: 1em;
      margin: auto 35px;
      /* justify-content: space-evenly; */
    }

    .product-card {
      width: 390px;
      background: #fff;
      border-radius: 20px;
      /*box-shadow: 0 4px 15px #09b855;*/
      overflow: hidden;
      border: 0.5px solid grey;
      transition: transform 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    /* Image section */
    .image-box {
      padding: 20px;
      position: relative;
        height: auto;
      overflow: hidden;
      border-radius: 20px 20px 0 0;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .image-box:hover img {
      transform: scale(1.1);
    }

    /* Zoom button */
    .zoom-btn {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .image-box:hover .zoom-btn {
      opacity: 1;
    }

    /* Details */
    .details {
      padding: 15px;
    }

    .details h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .details p {
      font-size: 14px;
      color: #555;
      margin-bottom: 6px;
    }

    .price {
      font-size: 16px;
      font-weight: bold;
      color: #d6452f;
    }

    .discount {
      font-size: 13px;
      color: var(--discount);
      text-decoration: line-through;
      margin-left: 8px;
    }

    .buy-btn {
      display: inline-block;
      background: var(--buy-btn-color);
      color: var(--anchor-color);
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      margin-top: 10px;
      transition: background 0.3s;
    }

    .buy-btn:hover {
      background: var(--buy-btn-color-hover);
    }

    /* Image Modal */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

   .modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 .modal-content img {
  max-width: 100%;
  max-height: 80vh;   /* Prevent image from overflowing screen height */
  object-fit: contain; /* Keep aspect ratio intact */
  border-radius: 10px;
}

    .close-modal {
      position: absolute;
      top: -30px;
      right: 0;
      color: var(--anchor-color);
      font-size: 28px;
      cursor: pointer;
    }

    @media(max-width: 500px) {
      .product-card {
        width: 90%;
      }
    }

    /* Variation buttons */
    .variations {
      display: flex;
      gap: 10px;
      margin: 10px 0;
    }

    .variation-btn {
      border: 1px solid #ccc;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 13px;
      cursor: pointer;
      background: #f9f9f9;
    }

    .variation-btn.active {
      border-color: var(--buy-btn-color-hover);
      background: var(--background-color);
      font-weight: bold;
    }