@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* remove placeholder space created for fixed header */
#header-placeholder { height: 0; overflow: hidden; }

/* ensure hero section sits flush under nav */
#hero { margin-top: 0; padding-top: 0; }

/* ====================
   GLOBAL STYLES
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

.section-p1 { padding: 40px 80px; }
.section-m1 { margin: 40px 0; }
.logo { max-width: 150px; height: auto; }

/* =====================================================
   HEADER & NAVBAR
===================================================== */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.35s ease;
}

#header.nav-hidden {
  transform: translateY(-100%);
}

/* ================= CONTAINER ================= */

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */

.logo {
  height: 38px;
  transition: .3s;
}

.logo:hover { transform: scale(1.05); }

/* ================= DESKTOP NAV ================= */

#navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

#navbar li {
  list-style: none;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  padding: 6px 0;
  position: relative;
}

/* underline */
#navbar li a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--primary-color);
  transition:.3s;
}

#navbar li a:hover::after,
#navbar li a.active::after { width:100%; }

#navbar li a:hover { color:var(--primary-color); }

/* ================= DROPDOWN ================= */

.dropdown-menu {
  position:absolute;
  top:120%;
  left:0;
  min-width:220px;

  background:#fff;
  border-radius:10px;
  padding:10px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.08);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s;
}

.dropdown:hover .dropdown-menu {
  opacity:1;
  visibility:visible;
  transform:none;
}

.dropdown-menu li a {
  display:block;
  padding:10px 20px;
  font-size:14px;
}

.dropdown-menu li a:hover {
  background:#f8fafc;
  color:var(--primary-color);
}

/* ================= CART ================= */

.cart-link { position:relative; }

.cart-badge {
  position:absolute;
  top:-8px;
  right:-10px;
  background:var(--primary-color);
  color:#fff;
  font-size:11px;
  padding:3px 7px;
  border-radius:50px;
}

/* mobile cart button is only for small screens; keep hidden by default */
.mobile-cart { display: none; }

/* ====================
   PROFESSIONAL MINIMAL HAMBURGER
==================== */
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  cursor:pointer;

  background:transparent;
  border:none;
  outline:none;
  padding:0;

  -webkit-tap-highlight-color: transparent;
}

.hamburger span{
  height:2px;
  background:#1e293b;
  border-radius:2px;
}

.hamburger span:nth-child(1){width:26px;}
.hamburger span:nth-child(2){width:18px;}
.hamburger span:nth-child(3){width:26px;}

/* =====================================================
   MOBILE SIDEBAR
===================================================== */
/* ====================
   MOBILE DRAWER MENU
==================== */

.mobile-menu{
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;

  /* PREMIUM LOOK */
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* SPACING */
  padding: 90px 28px 40px;

  /* ANIMATION */
  transition: left .4s cubic-bezier(.77,0,.18,1);

  /* DEPTH */
  box-shadow: 10px 0 40px rgba(0,0,0,.18);

  /* SHAPE */
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;

  /* BEHAVIOR */
  overflow-y: auto;
  z-index: 1001;
}

/* OPEN STATE */

.mobile-menu.active{
  left: 0;
}
.mobile-menu.active { left:0; }

.mobile-menu ul {
  list-style:none;
  padding:0;
  margin:0;
}

.mobile-menu li a {
  display:block;
  padding:15px 25px;
  text-decoration:none;
  color:#1e293b;
  border-bottom:1px solid #f1f5f9;
}

.mobile-menu li a:hover {
  background:#f8fafc;
  color:var(--primary-color);
}

/* ⭐ mobile dropdown always visible */
.mobile-menu .dropdown-menu {
  position:static;
  opacity:1;
  visibility:visible;
  transform:none;
  box-shadow:none;
  padding-left:10px;
}

/* =====================================================
   OVERLAY
===================================================== */

.overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1000;
}

.overlay.active {
  opacity:1;
  visibility:visible;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width:1024px){
  #navbar { gap:20px; }
}

/* =====================================================
   PHONE
===================================================== */

@media (max-width:768px){

  #navbar { display:none; } 

  .hamburger { display:flex; margin-right: 40px; }

  .logo { height:32px; }

  /* show mobile cart icon beside hamburger */
  .mobile-cart {
      display: flex;
      align-items: center;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #1e293b;
  }
}



/* ====================
   HOME PAGE SECTIONS
==================== */
html,body{
  margin:0;
  padding:0;
}

/* HERO */
/* ================= HERO CONTAINER ================= */

#hero{
  position:relative;
  height:82vh;
  min-height:480px;
  overflow:hidden;
  background:#000;
}

/* ================= HERO VIDEO ================= */

#hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:130%;
  object-fit:cover;
  display:block;          /* visible by default */
  z-index:1;
}

/* ================= MOBILE IMAGE ================= */

.hero-mobile-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;

  display:none;           /* hidden on desktop */
  z-index:1;
}

/* ================= OVERLAY (optional cinematic layer) ================= */

#hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
}

/* ================= TABLET ================= */

@media (max-width:1024px){
  #hero{
    height:70vh;
    min-height:520px;
  }
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  /* hide video */
  #hero video{
    display:none;
  }

  /* show mobile image */
  .hero-mobile-img{
    display:block;
    object-fit: fill; /* fill entire hero area on mobile */
  }

  #hero{
    height:50vh;
    min-height:420px;
  }
}

  #shop-category {
    padding: 15px 12% 50px !important;
    margin: 0;
    margin-top: 0;
  }
  #shop-category h2 {
    margin: 0 !important;
    margin-bottom: 30px !important;
    padding-top: 15px;
  }


/* Shop Button */
.shop-btn {
  background-color: #2db4ff;
  color: var(--white-color);
  border: none;
  padding: 12px 20px;
  scroll-padding-top: 10px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.shop-btn:hover {
  background-color: #1a8cd8;
  transform: scale(1.05);
}

/* =========================
   CATEGORY SECTION
========================= */

#shop-category {
  padding: 40px 12% 50px; /* add top padding for nice spacing */
  margin: 0; /* ensure no top margin */
  text-align: center;
  background: #f9fafb;
}

#shop-category h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 70px 0; /* zero top margin, keep bottom */
  color: #111;
}

/* =========================
   GRID — 2 PER ROW
========================= */

.category-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: stretch;
}

/* Center last card (Beyond Basic) */
.category-container .category-card:last-child {
  grid-column: 1 / -1;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================
   CARD STYLE
========================= */

/* .category-card {
  background: #ffffff;
  border-radius: 16px;
  padding-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.category-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
} */

/* =========================
   IMAGE — SAME RATIO, SMALLER SIZE
========================= */

.category-card img {
  width: 80%;              /* reduced size */
  aspect-ratio: 6 / 5;     /* ratio unchanged */
  object-fit: cover;
  display: block;
  margin: 30px auto 0;     /* centered + top space */
  border-radius: 12px;
}

/* =========================
   TEXT AREA
========================= */

.category-card h3 {
  font-size: 1.35rem;
  margin: 25px 35px 10px;
  font-weight: 600;
  color: #111;
}

.category-desc {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.8;
  margin: 0 35px;
}


/* ========================= */
/* Mission 2030 Section */
/* ========================= */

#mission-2030 {
  padding: 80px 10%;
  background: #f4f9f6;
  text-align: center;
}

#mission-2030 h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

#mission-2030 h2 span {
  color: #2e7d32;
}

.mission-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mission-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-card i {
  font-size: 40px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.mission-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 15px;
  color: #555;
}

/* ========================= */
/* Sustainable Materials */
/* ========================= */

#sustainable-materials {
  padding: 80px 10%;
  background: #ffffff;
  text-align: center;
}

#sustainable-materials h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #2e7d32;
}

.materials-grid {
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  justify-self: center;
}

.material-card {
  background: #f4f9f6;
  justify-self: center; 
  width: 280px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  justify-content: center;
}

.material-card:hover {
  transform: translateY(-10px);
}

.material-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  justify-self: center;
}

.material-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  justify-self: center;
}

.material-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  justify-self: center;
}

@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, 280px);
  }
}

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


/* =========================
   PRODUCT SECTION 
========================= */

#product1 {
  padding: 80px 8%;
  text-align: center;
  background: var(--light-color);
}

.pro-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* PRODUCT CARD */
.bottle {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bottle:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* PRODUCT IMAGE */
.bottle img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 18px;
  background: #f7f7f7;
  border-radius: 14px;
  padding: 10px;
}

/* PRODUCT TEXT */
.des span {
  font-size: 13px;
  color: #777;
}

.des h5 {
  margin: 10px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* =========================
   PRICE + ADD TO CART ROW
========================= */

/* .price-row {
  margin-top: auto; /* pushes price row to bottom 
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-row h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
} */

/* ADD TO CART BUTTON
.price-row a {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.price-row a:hover {
  background: #1b4332;
  transform: scale(1.1);
} */

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 600px) {
  #product1 {
    padding: 50px 5%;
  }

  .price-row h4 {
    font-size: 17px;
  }
}


/* Instagram Banner */
#instagram-banner {
  text-align: center;
  padding: 50px 20px;
  background: var(--light-color);
}
#instagram-banner h2 { font-size: 28px; margin-bottom: 30px; font-weight: 600; }
.insta-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}
.insta-video {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 9 / 16;
}
.insta-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}
.insta-video:hover video { transform: scale(1.05); }
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--white-color);
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insta-video:hover .overlay { opacity: 1; }

/* Main Banner */
#banner {
  background: url(../img/banner1.jpg) no-repeat center;
  background-size: cover;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  border-radius: 30px;
  padding: 0 20px;
}
#banner h4, #banner h2 { color: var(--white-color); }

/* Newsletter */
#newsletter {
  width: 100%;
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
  padding: 40px 20px;
  text-align: center;
  margin: 50px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.newsletter-container { max-width: 1200px; margin: auto; }
.newsletter-container h2 { font-size: 2.2rem; margin-bottom: 10px; color: #2c3e50; }
.newsletter-container p { font-size: 1.1rem; color: #333; margin-bottom: 25px; }
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 15px 20px;
  width: 320px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.newsletter-form button {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: #27ae60;
  color: var(--white-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}
.newsletter-form button:hover { background: #219150; transform: scale(1.05); }

/* ====================
   FOOTER
==================== */

#footer {
  width: 100%;
  background: black;
  color: black;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* ===== DESKTOP GRID ===== */

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: auto;
  align-items: start;
  gap: 50px;
}

/* ================= LEFT ================= */

.footer-left {
  text-align: left;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
  max-width: 260px;
}

.footer-left h4 {
  color: #e7e7e7;
  font-weight: 400;
}

/* ================= MIDDLE ================= */

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

.footer-middle h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: #fff;
}

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

.footer-middle ul li {
  margin: 10px 0;
}

.footer-middle ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-middle ul li a:hover {
  color: #27ae60;
}

/* ================= RIGHT ================= */

.footer-right {
  text-align: right;
}

.footer-right h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-bottom: 15px;
  justify-content: flex-end;
}

.social-icons a {
  font-size: 1.5rem;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #27ae60;
  transform: scale(1.2);
}

.footer-contact {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.9;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #999;
}

/* ================= TABLET (<=992px) ================= */

@media (max-width: 992px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: auto;
  }

  /* right section goes full width under middle */
  .footer-right {
    grid-column: span 2;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-left p {
    max-width: 100%;
  }
}

/* ================= MOBILE (<=600px) ================= */

@media (max-width: 600px) {

  #footer {
    padding: 50px 18px 18px;
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    text-align: center;
  }

  .footer-logo {
    margin: auto;
    margin-bottom: 15px;
  }

  .footer-left p {
    margin: auto;
    max-width: 90%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 25px;
  }
}

/* ====================
   CONTACT PAGE STYLES
==================== */
#contact-us {
  padding: 50px 20px;
  background: var(--light-color);
  text-align: center;
}
#contact-us h2 { font-size: 2.5rem; margin-bottom: 10px; font-weight: bold; color: #333; }
#contact-us .intro-text { font-size: 1.1rem; color: #555; margin-bottom: 40px; }
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-form, .contact-info {
  flex: 1;
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 320px;
}
.contact-form h3, .contact-info h3 { margin-bottom: 15px; color: #222; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.contact-form button {
  width: 100%;
  padding: 12px;
  background: #2d7a46;
  color: var(--white-color);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover { background: #256638; }
.contact-info { text-align: left; }
.contact-info p { margin: 8px 0; font-size: 1rem; color: #444; }
.contact-info strong { color: #111; }
.map { margin-top: 15px; border-radius: 10px; overflow: hidden; }



/* ====================
   RESPONSIVE DESIGN
==================== */
/* Media Query for Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .section-p1 { padding: 40px; }
    #header { padding: 20px 30px; }
    /* Keep hero full height for video visibility and remove padding to avoid gaps */
    #hero { height: 100vh; padding: 0; }
    h1 { font-size: 40px; line-height: 50px; }
    h2 { font-size: 36px; line-height: 44px; }
    #hero p { font-size: 14px; }
    /* ensure video uses contain when overridden below */
    #hero video { object-fit: contain; background: var(--light-color); }
    .pro-container, .category-container, .insta-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-container {
        justify-content: center;
        text-align: center;
    }
    .footer-left, .footer-middle, .footer-right {
        flex-basis: 100%;
        margin: 10px 0;
    }
    .social-icons {
        justify-content: center;
        padding-left: 0;
    }
    .newsletter-form { justify-content: center; }
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-form, .contact-info {
        width: 90%;
        max-width: 500px;
    }
}

/* Media Query for Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .section-p1 { padding: 20px; }
    #header { padding: 10px 20px; }
    #navbar { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px; /* Initially hidden */
        height: 100vh;
        width: 300px;
        background-color: var(--light-color);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar.active {
        right: 0; /* Slides into view */
    }
    #navbar li {
        margin-bottom: 25px;
    }
    #navbar li:last-child {
        display: none; /* Hide the cart icon from the slide-out menu */
    }
    #mobile {
        display: flex; /* Show the mobile menu icon and cart icon */
        align-items: center;
    }
    #mobile i {
        font-size: 24px;
        color: black;
        padding-left: 10px;
    }
    #mobile a.lg-bag {
        display: initial; /* Ensure the cart icon is visible on the top right */
    }
    #close-menu {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: black;
        font-size: 24px;
    }


    /* keep full viewport height minus navbar and hide hero text */
    #hero { height: calc(100vh - 60px); margin: 0; padding: 0; text-align: center; align-items: center; }
    #hero h1, #hero p { display: none; }
    /* remove all spacing between hero and shop-category */
    #shop-category { padding: 0 12% 50px !important; margin: 0 !important; margin-top: 0 !important; }
    #shop-category h2 { margin: 0 !important; margin-bottom: 30px !important; padding-top: 15px; }
    /* video styling for mobile handled in earlier media queries */
    .pro-container, .category-container, .insta-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .shop-btn { width: 100%; font-size: 16px; }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
        font-size: 14px;
    }
    .contact-form, .contact-info { min-width: unset; width: 100%; }
}

/* Media Query for Mobile (max-width: 385px) */
@media (max-width: 385px) {
    #header {
        padding: 10px 15px; /* Adjust padding for smaller screens to ensure space for icons */
    }
    #navbar {
        right: -250px; /* Adjust the menu's starting position for a narrower screen */
        width: 250px;
    }
    #navbar.active {
        right: 0;
    }
    #navbar li:last-child {
        display: none;
    }
    #mobile {
        display: flex;
        align-items: center;
    }
    #mobile i {
        font-size: 20px;
    }
    #mobile a.lg-bag {
        display: initial;
        padding-right: 5px; /* Reduce padding to fit better */
    }
    #close-menu {
        display: initial;
        top: 20px; /* Adjust vertical position */
        left: 20px; /* Adjust horizontal position */
        color: black;
        font-size: 20px;
    }
    /* ensure mobile cart still positioned properly on extra small screens */
    .mobile-cart {
        right: 15px;
    }
    .hamburger { margin-right: 30px; }

}

/* =========================
   CART PAGE STYLES (SCOPED)
========================= */

#cart-page {
  max-width: 1200px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Heading */
#cart-page h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2d6a4f;
}

/* =========================
   CART TABLE
========================= */

#cart-page table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#cart-page th,
#cart-page td {
  text-align: center;
  padding: 12px;
  border: 1px solid #dddddd;
  font-size: 15px;
}

#cart-page th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333333;
}

/* Product image */
#cart-page img {
  border-radius: 8px;
  margin-right: 8px;
  vertical-align: middle;
}

/* =========================
   QUANTITY BUTTONS
========================= */

.cart-qty-btn {
  padding: 5px 10px;
  margin: 0 5px;
  background: #2d6a4f;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart-qty-btn:hover {
  background: #1b4332;
  transform: scale(1.05);
}

/* =========================
   REMOVE BUTTON
========================= */

.cart-remove-btn {
  padding: 6px 12px;
  background: #d00000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cart-remove-btn:hover {
  background: #9d0208;
  transform: scale(1.05);
}

/* =========================
   CART SUMMARY
========================= */

#cart-summary-box {
  margin-top: 20px;
  text-align: right;
}

#cart-summary-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

/* =========================
   CHECKOUT BUTTON
========================= */

#cart-checkout-btn {
  padding: 12px 20px;
  background: #2d6a4f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

#cart-checkout-btn:hover {
  background: #1b4332;
  transform: translateY(-2px);
}

/* =========================
   CART RESPONSIVE
========================= */

@media (max-width: 768px) {
  #cart-page {
    padding: 15px;
  }

  #cart-page table {
    font-size: 14px;
  }

  #cart-summary-box {
    text-align: center;
  }

  #cart-checkout-btn {
    width: 100%;
  }
}

/* =====================================================
   ECONATE COLORS
===================================================== */
:root{
  --eco-green:#8BBB4A;
  --eco-dark:#5E8F2A;
}

/* =====================================================
   HERO
===================================================== */
#about-hero{
  height:90vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* background layer */
.about-hero-bg{
  position:absolute;
  inset:0;
  background:url("img/about-us-banner.png") center/cover no-repeat;
  transform:scale(1.05);
}

/* gradient depth */
#about-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(139,187,74,0.25) 100%
  );
}

/* text card */
.about-hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  padding:60px;
  color:#fff;
  text-align:center;
  backdrop-filter:blur(6px);
  border-radius:24px;
  background:rgba(255,255,255,0.05);
  box-shadow:0 30px 60px rgba(0,0,0,0.3);
}

.about-hero-content h1{
  font-size:52px;
  margin-bottom:18px;
  letter-spacing:1px;
}

.about-hero-content p{
  font-size:19px;
  line-height:1.7;
  opacity:0.9;
}

/* =====================================================
   PREMIUM HEADING
===================================================== */
.about-mission-section h2,
.about-founders-section h2,
.about-values-section h2,
.about-cta h2{
  text-align:center;
  font-size:38px;
  margin-bottom:50px;
  position:relative;
  padding: 20px 0;
}

.about-mission-section h2::after,
.about-founders-section h2::after,
.about-values-section h2::after,
.about-cta h2::after{
  content:"";
  width:70px;
  height:4px;
  background:linear-gradient(90deg,var(--eco-green),var(--eco-dark));
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-14px;
  border-radius:10px;
}

/* =====================================================
   MISSION
===================================================== */
.about-mission-container{
  max-width:800px;
  margin:auto;
  text-align:center;
  line-height:1.8;
  padding-top: 0%;
}

/* =====================================================
   STORY
===================================================== */
/* =====================================================
   PREMIUM STORY
===================================================== */

.about-story-section{
  padding:120px 10%;
  background:#f8faf8;
}

.story-wrapper{
  position:relative;
  display:flex;
  align-items:center;
}

/* BIG image */
.story-image{
  width:50%;
}

.story-image img{
  width:100%;
  border-radius:26px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

/* floating text card */
.story-card{
  position:absolute;
  right:0;
  width:45%;
  background:#fff;
  padding:50px;
  border-radius:26px;
  box-shadow:0 40px 80px rgba(0,0,0,0.12);
}

.story-card h2{
  font-size:36px;
  margin-bottom:15px;
  position:relative;
}

.story-card h2::after{
  content:"";
  width:70px;
  height:4px;
  background:#8BBB4A;
  position:absolute;
  left:0;
  bottom:-10px;
  border-radius:10px;
}

.story-card p{
  margin-top:15px;
  line-height:1.8;
  color:#555;
}

@media(max-width:1000px){

  .story-wrapper{
    flex-direction:column;
  }

  .story-image{
    width:100%;
  }

  .story-card{
    position:relative;
    width:100%;
    margin-top:-60px;
  }

  .about-hero-content h1{
    font-size:36px;
  }

}

/* =====================================================
   FOUNDERS
===================================================== */
.founder-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:0 10%;
}

.founder-card{
  text-align:center;
  padding:30px 20px;
  border-radius:18px;
  background:#fff;
  transition:0.3s;
  border:1px solid transparent;
}

.founder-card:hover{
  transform:translateY(-8px);
  border:1px solid var(--eco-green);
}

/* =====================================================
   VALUES
===================================================== */
.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  padding:40px 20%;
}

.value-card{
  background:#fff;
  padding:35px;
  border-radius:16px;
  text-align:center;
  border-top:4px solid var(--eco-green);
}

/* =====================================================
   CTA
===================================================== */
.about-cta{
  text-align:center;
  padding:80px 20px;
  background:linear-gradient(135deg,var(--eco-green),var(--eco-dark));
  color:#fff;
}

.shop-btn{
  background:var(--eco-green);
  padding:12px 25px;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  margin:10px;
  display:inline-block;
}

.shop-btn:hover{
  background:var(--eco-dark);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:900px){
  .story-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}

@media(max-width:600px){
  .about-hero-overlay h1{font-size:28px;}
  .about-mission-section h2,
  .about-founders-section h2,
  .about-values-section h2,
  .about-cta h2{font-size:26px;}
}

/* =================
Categories of products
================= */

/* =========================
   CATEGORY HERO
========================= */
.category-hero{
  width: 100%;
  background-color: #ccc;
  padding: 8%;
  text-align: center;
  color: #706e6e;
}
.category-hero-content{
  max-width: 700px;
  margin: auto;
}

.category-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 700;
}

.category-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  opacity: 0.95;
}
/* GLOBAL CONTAINER FIX */

.section-p1{
  padding:40px 80px;
}

/* mobile fix */
@media(max-width:368px){
.section-p1{
  padding:30px 16px;
}
}

/* =========================
   SEARCH & SORT
========================= */

.search-sort {
  max-width: 1200px;
  margin: 30px auto 10px;
}

.search-sort input,
.search-sort select {
  background: #fff;
  transition: 0.2s ease;
}

.search-sort input:focus,
.search-sort select:focus {
  outline: none;
  border-color: #2d6a4f;
  box-shadow: 0 0 0 2px rgba(45,106,79,0.15);
}
/* =========================
   PRODUCT SECTION
========================= */
.product-page{
  max-width: 1200px;
  margin: auto;
}

.category-products {
  padding: 40px 20px 80px;
  background: #f9f9f9;
}

/* Responsive grid (auto adaptive) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;   /* ⭐ equal height */

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* =========================
   PRODUCT IMAGE
========================= */

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 14px;
}

/* =========================
   PRODUCT TEXT
========================= */

.product-desc {
  flex: 1; /* ⭐ pushes price row down */
}

.product-desc span {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
}

.product-desc h5 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 6px 0 12px;
  line-height: 1.4;
}

/* =========================
   PRICE + CART ROW
========================= */

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-top: auto;
  width: 100%;
}

/* PRICE */

.price-row h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d6a4f;
  white-space: nowrap;
}

/* ADD TO CART BUTTON */

.price-row a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 40px;
  min-height: 40px;

  background: #2d6a4f;
  color: #fff;

  border-radius: 50%;
  text-decoration: none;
  font-size: 15px;

  flex-shrink: 0;
  cursor: pointer;

  transition: all 0.25s ease;
}

.price-row a:hover {
  background: #1b4332;
  transform: scale(1.08);
}

/* =========================
   DESKTOP (default)
========================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px) {

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
  }

  .price-row h4 {
    font-size: 17px;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

  .category-products {
    padding: 30px 18px 70px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr); /* ⭐ clean tablet 2 column */
    gap: 18px;
  }

  .product-card {
    padding: 16px;
  }

  .price-row h4 {
    font-size: 16px;
  }

  .price-row a {
    min-width: 36px;
    min-height: 36px;
    font-size: 14px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

  .category-products {
    padding: 24px 14px 60px;
  }

  .category-grid {
    grid-template-columns: repeat(1, 1fr); /* ⭐ best ecommerce pattern */
    gap: 14px;
  }

  .product-card {
    padding: 12px;
  }

  .product-desc h5 {
    font-size: 14px;
  }

  .price-row h4 {
    font-size: 15px;
  }

  .price-row a {
    min-width: 32px;
    min-height: 32px;
    font-size: 13px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 360px) {

  .category-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PRODUCT DETAIL PAGE
========================= */

/* =====================================================
   GLOBAL CLICK + HEADER FIX
===================================================== */

body {
  padding-top: 90px; /* header height fix */
}

/* =====================================================
   PRODUCT DETAIL PAGE
===================================================== */

.product-detail {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  background: #fff;

  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 40px 20px;

  position: relative;
  z-index: 1;
}
/* Default helper text */
.product-price.helper {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;   /* subtle grey */
}

/* Actual price */
.product-price.price {
  font-size: 22px;
  font-weight: 600;
  color: #2d6a4f;
}

.product-price{
  font-size:20px;
  font-weight:600;
  color:#2d6a4f;
}

.product-error{
  font-size:13px;
  color:#e63946;
  margin-top:0px;
  font-weight:500;
  min-height:18px; /* prevents layout jump */
}

/* =====================================================
   PROFESSIONAL PRODUCT GALLERY (FINAL)
===================================================== */

.product-gallery{
  display:flex;
  gap:18px;
  flex:1.5;
  align-items:flex-start;
}

/* ---------- THUMBNAILS LEFT ---------- */

.thumbnail-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.thumbnail-column{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-height:460px;
  overflow-y:auto;
}

/* thumbnail style */
.thumbnail-column img{
  width:78px;
  height:78px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  opacity:.45;
  border:2px solid transparent;
  transition:.25s;
}

.thumbnail-column img:hover{opacity:.8;}

.thumbnail-column img.active{
  opacity:1;
  border-color:var(--primary-color);
  transform:scale(1.05);
  box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* arrows */
.thumb-btn{
  background:#fff;
  border:1px solid #ddd;
  width:34px;
  height:34px;
  border-radius:50%;
  cursor:pointer;
}

/* ---------- MAIN IMAGE ---------- */

.main-image{
  flex:1;
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

.main-image img{
  width:95%;
  max-height:500px;
  object-fit:contain;
  margin-left:-10px;
  filter:drop-shadow(0 14px 20px rgba(0,0,0,.15));
}

/* enlarge */
.enlarge-wrapper{
  display:none; /* optional clean look */
  text-align:center;
  margin-top:12px;    
}

/* =====================================================
   PRODUCT INFO
===================================================== */

.product-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* =====================================================
   ENLARGE BUTTON
===================================================== */

.enlarge-wrapper {
  text-align: center;
  margin-top: 12px;
}

#enlargeBtn {
  padding: 11px 20px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

#enlargeBtn:hover {
  background: #1b4332;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* =====================================================
   MODAL  FULLY UPGRADED
===================================================== */
/* =====================================================
   MODAL BASE
===================================================== */


.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.image-modal.active {
  display: flex;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}



/* =====================================================
   MAIN MODAL IMAGE
===================================================== */

.modal-main img {
  max-width: 85vw;
  max-height: 70vh;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
}

/* =====================================================
   THUMB ROW (LIKE SCREENSHOT)
===================================================== */

.modal-thumb-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* scroll container */
.modal-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px;
  max-width: 520px;
}

/* thumbnails */
.modal-thumbs img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: 0.2s;
}

.modal-thumbs img.active {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.05);
}

/* nav arrows */
.modal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

/* close */
.close-modal {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}


/* ====================================================
   CAPACITY SECTION
==================================================== */
.capacity-section {
  margin: 20px 0;
}

.capacity-section p {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

#capacityContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capacity-btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.capacity-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.capacity-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}


/* ====================================================
   GSM SECTION
==================================================== */
.gsm-section {
  margin: 20px 0;
}

.gsm-section p {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

#gsmContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gsm-btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.gsm-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.gsm-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* PRODUCT PRICE + CAPACITY TIGHTENED SPACING */
.product-price {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 6px 0 8px; /* reduced bottom gap */
}

.product-error {
  margin: 0 0 8px;
  color: #e11d48;
  font-size: 14px;
}

/* Capacity section — compact spacing to sit closer to price */
.capacity-section {
  margin: 8px 0; /* tightened */
}

.capacity-section p {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

#capacityContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capacity-btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.capacity-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.capacity-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .category-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  #shop-category {
    padding: 80px 8%;
  }

  .category-card img {
    width: 85%;
  }
}


/* ====================================================
   MOQ DROPDOWN
==================================================== */
.moq-section {
  margin: 18px 0;
}

#moqSelect {
  width: 100%;
  max-width: 240px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  font-size: 14px;
  transition: all .2s ease;
  background: #fff;
}

#moqSelect:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

/* ====================================================
   AVAILABLE COLORS
==================================================== */
.available-colors {
  margin: 22px 0;
}

.available-colors p {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

.color-dots {
  display: flex;
  gap: 10px;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  transition: all .2s ease;
  cursor: pointer;
}

.color-dot:hover {
  transform: scale(1.15);
  border-color: #94a3b8;
}

/* ====================================================
   HIGHLIGHTS
==================================================== */
.product-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}

.product-highlights li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
}

.product-highlights strong {
  font-weight: 700;
  color: #0f172a;
}

/* ====================================================
   ADD TO CART BUTTON
==================================================== */

.add-to-cart-btn {
  /* display: inline-flex; */
  align-items: center;
  gap: 10px;
  padding: 14px 28px;

  background:linear-gradient(rgb(0, 128, 75));

  color:white;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* ====================================================
   PRODUCT DESCRIPTION
==================================================== */
.product-description {
  margin-top: 0px;
  padding: 20px;
  background: #fafafa;
  border-radius: 22px;
  margin-left: 100px;
  margin-right: 100px;
}

.product-description h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  position: relative;
}

.product-description h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  margin-top: 8px;
}

.product-description p {
  max-width: 920px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

/* ====================================================
   ANIMATIONS
==================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================================
   RESPONSIVE
==================================================== */

@media (max-width: 900px) {
  .product-description {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 600px) {

  .product-info h1 {
    font-size: 22px;
  }

  .product-price {
    font-size: 24px;
  }

  .add-to-cart-btn {
    width: 100%;
    justify-content: center;
  }

  #moqSelect {
    max-width: 100%;
  }

  .product-description {
    padding: 22px;
  }

  .product-description h2 {
    font-size: 24px;
  }

  .product-description p {
    font-size: 14px;
  }
}


/* ====================================================
   PRODUCT INFO - PREMIUM REFINED UI
==================================================== */

.product-info {
  flex: 1;
  padding-top: 2%;
  animation: fadeIn 0.4s ease;
}

/* ---------- TITLE ---------- */
.product-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
  line-height: 1.3;
}

/* =====================================================
   ⭐ MOBILE GALLERY STRUCTURE (FINAL)
===================================================== */

@media (max-width:900px){

  /* gallery stacked */
  .product-gallery{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    gap:12px !important;
  }

  /* ⭐ MAIN IMAGE FIRST */
  .main-image{
    order:1 !important;
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }

  .main-image img{
    width:92% !important;
    margin-left:0 !important;
  }

  /* ⭐ HIDE ENLARGE (optional clean UX) */
  .enlarge-wrapper{
    display:none !important;
  }

  /*  THUMBNAILS SECOND */
  .thumbnail-wrapper{
    order:2 !important;
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }

  .thumbnail-column{
    display:flex !important;
    flex-direction:row !important;
    gap:10px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    width:100% !important;
  }

  .thumbnail-column img{
    width:64px !important;
    height:64px !important;
    flex-shrink:0;
  }

  /*  PRODUCT INFO LAST */
  .product-info{
    order:3 !important;
  }

}

/* ⭐ CENTER THUMB ROW (MOBILE) */
@media (max-width:900px){

  .thumbnail-wrapper{
    justify-content:center !important;
  }

  .thumbnail-column{
    justify-content:center !important;   /* ⭐ THIS centers images */
    margin:0 auto !important;
    max-width:100%;
  }

}
