/* Add this at the top of style.css */
/* FORCE SCREEN WIDTH LOCK */
/* --- CRITICAL MOBILE OVERFLOW FIX --- */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important; /* Force kills the right side space */
  position: relative;
}

/* Fix the video hero to ensure it never exceeds screen width */
.video-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-video {
  width: 100vw;
  height: auto;
  object-fit: cover; /* Ensures video fills space without distortion */
}


/* Basic responsive layout and styling */
:root {
--nav-bg: rgba(0,0,0,0.55);
--nav-blur: blur(14px);
--nav-height: 78px;
--font-satoshi: 'Satoshi','Satoshi',Helvetica,Arial,sans-serif;
}
* { font-family: var(--font-satoshi); }

body {
  padding-top: 0 !important;
  margin: 0;
  background-color: #000;
}

body.menu-open {
  overflow: hidden;
}

.announcement-bar {
  background: #ffb951;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
  text-align: center;
  font-family: 'Satoshi', Helvetica, Arial, sans-serif;
  position: relative;
  z-index: 9999; /* Higher than the nav to ensure visibility if they overlap */
}


.announcement-bar .container span,
.announcement-bar .container a {
  margin: 0 8px;
  color: #644916;
  text-decoration: none;
}

@media (max-width: 600px) {
  .announcement-bar .container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap; /* Allows horizontal swipe for info */
    gap: 5px;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .announcement-bar span {
    display: none; /* Remove the vertical lines to save space */
  }
}

/* This targets all navigation links */
.nav-item a, 
.nav-item a:visited, 
.nav-item a:active {
    color: #d1d1d1;          /* Set your desired color (Black/Dark Grey) */
    text-decoration: none;   /* Removes the ugly underline */
    transition: color 0.3s ease;
}

/* This handles what happens when you hover over them */
.nav-item a:hover {
    color: #b8964b;          /* Vantra Gold on hover */
}

/* Special fix for the "More" text which might not be an <a> tag */
.nav-item {
    color: #222222;
    cursor: pointer;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 10px !important;
    justify-content: space-between;
  }

  .nav-right {
    gap: 8px !important; /* Tightens the icons so they don't push the edge */
  }

  /* Ensure the search box doesn't push the screen wide */
  .search-box {
    width: 80vw !important;
    right: 0 !important;
  }
}
/* this is global thing */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Main Navigation */
.main-nav {
  position: fixed;
  padding: 4px 0 !important; /* This creates the "margin" look above/below the logo */
  top: 31px;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #000000d3;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* On mobile, if the announcement bar gets taller, adjust the nav top */
@media (max-width: 600px) {
  .main-nav {
    top: 40px; /* Adjust based on mobile announcement bar height */
  }
}


.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.nav-logo {
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-item {
  position: relative;
  font-size: 15px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item i {
  position: relative;
  font-size: 12px;
  transition: 0.2s;
}

.nav-item:hover i {
  transform: rotate(180deg);
}

/* Dropdown styling */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #636363;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 10000;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
}

.dropdown a:hover {
  background: #333333;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-box {
  border: 1px solid #ccc;
  padding: 7px 10px;
  border-radius: 4px;
}

/* --- Desktop Search (Default) --- */
.search-toggle-btn {
    display: none; /* Hide icon on desktop */
}

@media (min-width: 992px) {
.search-box {
        display: block;
        width: 200px;
        background: #fff; /* Ensure visibility on desktop */
        color: #000;
    }
}

/* --- Mobile Search Logic --- */
@media (max-width: 991px) {
.search-container {
    position: relative;
    display: flex;
    align-items: center;
  }

.search-toggle-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
    z-index: 10001; /* Above Nav */
  }

.search-box {
    display: block !important; 
    position: absolute;
    top: 65px;
    /* CHANGE: Instead of right: -150px, we center it */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-20px) !important;
    width: 90vw !important;
    max-width: 400px;
    background: #1a1a1a;
    border: 1px solid #b8964b; 
    padding: 12px;
    border-radius: 12px;
    color: white;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
  }

/* State when Active */
.search-container.active .search-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto;
  }
}

.nav-icon i {
  font-size: 18px;
  color: #ffffff;
}

/* --- Hamburger Fix --- */
.hamburger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff; /* CHANGED TO WHITE so you can see it on your black nav */
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger Animation (Optional but nice) */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Mobile Menu Fix --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden off-screen */
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -8px 0 25px rgba(0,0,0,0.2);
  padding: 80px 22px 22px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20000;
  visibility: visible; /* Ensure it's not hidden by the desktop rule */
}

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


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

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  display: block;
  padding: 16px 6px;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.2s;
}

.mobile-menu a:hover {
  color: #000;
  padding-left: 12px;
  background: #f7f7f7;
}


/* ---------------------- */
/* RESPONSIVE RULES FIXED */
/* ---------------------- */
/* Desktop: hide hamburger visually but keep menu off-canvas (no display:none) */
@media (min-width: 992px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu {
    right: -100%;   /* keep it off-canvas on desktop but not display:none */
    pointer-events: none;
    visibility: hidden;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .nav-links { display: none !important; }

  .hamburger { 
    display: flex !important; 
    z-index: 21001; /* Must be higher than mobile-menu (20000) */
  }

.mobile-menu {
    right: -100%; 
    pointer-events: auto;
    visibility: visible;
    /* Ensure this matches your JS .active class */
  }
}
/* hero video banner */

.video-hero {
  position: relative;
  height: 90vh;
  /* overflow: hidden; */
  width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  margin-top: 78px;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay h1 {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-overlay p {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.85;
}
/* FIX: Prevents the Hero text from pushing the screen wide on small phones */
@media (max-width: 600px) {
  .hero-overlay {
    width: 95% !important; /* Changed from max-content to percentage */
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  /* FIX: Prevents the New Arrivals track from leaking out */
  /* .new-arrivals-section {
    width: 100vw !important;
    overflow: hidden !important;
    position: relative;
  } */
   .new-arrivals-section {
    padding: 40px 0;
    width: 100%;
    overflow: hidden; /* Prevent horizontal scroll on the whole page */
  }
}
/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  background: #ffffff;
  color: #000;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 500;
  transition: 0.25s;
}

.btn-primary:hover {
  background: #eaeaea;
}

.btn-outline {
  border: 1px solid #ff8800;
  color: #080808;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.hero-overlay {
  position: absolute;
  top: 70%;                
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
  color: #fff;
  z-index: 10;

  /* Black translucent box */
  /* background: rgba(0,0,0,0.25);
  padding: 20px 32px;
  border-radius: 12px;
  backdrop-filter: blur(4px); */
}

/* mobile hero video banner */
@media (max-width: 900px) {

  .hero {
    height: 380px;
  }

  .hero video {
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    width: 90%;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 20px;
  }

  .hero-overlay .hero-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* --- Backdrop Fix --- */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 19990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}


/* ===========================
   NEW ARRIVALS SECTION
=========================== */

.new-arrivals-section {
  background: #0b0b0b;
  padding: 70px 0;
  /* overflow: hidden; */
  width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

.new-arrivals-header {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.new-arrivals-header h2 {
  font-size: 50px;
  letter-spacing: 1px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
}

.new-arrivals-header p {
  color: #aaa;
  font-size: 15px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
  margin-top: 8px;
}

/* MOVING STRIP */
.new-arrivals-wrapper {
  display: flex;
  gap: 20px;
  padding-left: 10px;
  width: max-content;
  animation: newSlide 30s linear infinite;
  will-change: transform;
}

.new-arrivals-wrapper {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: newSlide 40s linear infinite; /* Slowed down so people can see all 15 */
  will-change: transform;
}

/* AUTO LEFT → RIGHT */
@keyframes newSlide {
  from { transform: translateX(0); }
  /* Instead of a fixed %, we use a calculation or a larger negative value 
     to ensure it passes all products before restarting */
  to { transform: translateX(-70%); } 
}

/* HOVER = PAUSE */
.new-arrivals-wrapper:hover {
  animation-play-state: paused;
}

/* MOBILE */
@media (max-width: 768px) {
.new-product-card {
    width: 180px; /* Ensures 15 products create a very long horizontal line */
    flex-shrink: 0;
  }
.new-arrivals-wrapper {
    gap: 15px;
    /* On mobile, we ensure the animation doesn't "jump" */
    animation: newSlide 25s linear infinite;
  }
  .new-arrivals-header h2 {
    font-size: 26px;
  }
}
@media (hover: hover) {
  .new-arrivals-wrapper:hover {
    animation-play-state: paused;
  }
}

/* CARD */
.new-product-card {
  width: 220px;
  background: #141414;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

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

/* 1:1 IMAGE RATIO */
.new-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-product-card:hover img {
  transform: scale(1.08);
}

/* NEW TAG */
.new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff2a2a;
  color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* INFO */
.new-product-info {
  padding: 14px 14px 16px;
  color: white;
}

.new-product-info h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.new-product-info span {
  font-size: 13px;
  color: #ccc;
}

@media (max-width: 600px) {
    /* Target the container where script.js injects the cards */
    #product-grid, .product-container-class { 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Make the card take full width of the phone */
    .card {
        width: 95% !important; 
        max-width: 100% !important;
        margin: 10px 0 !important;
    }

    /* Ensure the image inside the card fits perfectly */
    .card img {
        height: 300px !important; /* Larger height for single column */
        object-fit: contain !important;
    }
}

/* =========================================
   SPECIAL BANNER SECTION (OVERFLOW FIXED)
   ========================================= */

.special-banner-section {
  max-width: 1400px;
  height: 600px;
  position: relative;
  margin: 40px auto;
  border-radius: 25px;
  width: calc(100% - 40px) !important; /* Fixed: Leaves space for margins */
  overflow: hidden !important;        /* Critical: Clips everything inside the box */
  background: #000;
  box-sizing: border-box !important;
}

.special-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Double protection against scrollbars */
}

.special-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden; /* FIX: Tells browser to ignore this element for scrolling */
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, visibility 0.8s;
}

.special-slide.active {
  opacity: 1;
  visibility: visible; /* FIX: Only makes it "real" when active */
  transform: translateX(0%);
  z-index: 2;
}

.special-slide.exit {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}

.special-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Overlay & Content --- */
.special-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 60px 60px;
  z-index: 3;
}

/* --- Dot Navigation Fix --- */
.special-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%); /* Perfectly centers the dots */
  display: flex;
  gap: 10px;
  z-index: 10;
}

.special-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.special-dot.active {
  background: #fff;
  width: 25px; /* Pill shape for active dot */
  border-radius: 10px;
}

/* --- MOBILE OPTIMIZATIONS --- */
/* --- FULL WIDTH MOBILE BANNER FIX --- */
/* --- FULL VIEW MOBILE BANNER (NO CROPPING) --- */
/* --- CRITICAL MOBILE FIXES --- */
@media (max-width: 768px) {
  
  /* 1. Prevent the Nav Menu from hiding the Banner */
  body {
    padding-top: 110px !important; /* Pushes the whole site down below the nav */
  }

  .special-banner-section {
    height: auto !important;
    aspect-ratio: 16 / 9 !important; /* Force the banner shape */
    margin: 10px auto 30px !important;
    overflow: visible !important; /* Ensures slides aren't cut off */
  }

  /* 2. Fix "Blank" Slides: Force them to fill the 16:9 box */
  .special-slider {
    height: 100% !important;
    min-height: 200px; /* Minimum height backup */
    position: relative;
  }

  .special-slide {
    width: 100% !important;
    height: 100% !important; /* Ensures the next slides have height */
    position: absolute;
    inset: 0;
  }

  .special-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Shows full image */
    background: #000; 
  }

  /* 3. Fix "Large Buttons": Shrink them so they don't hide the product */
  .special-overlay {
    padding: 10px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  }

  .special-overlay h2 {
    font-size: 16px !important; /* Smaller text */
    margin-bottom: 5px;
  }

  .special-overlay p {
    display: none; /* Hide description on mobile to see more of the banner */
  }

  .special-buttons {
    gap: 6px !important;
    margin-top: 5px;
  }

  .btn-buy, 
  .btn-contact {
    padding: 8px 12px !important; /* Smaller buttons */
    font-size: 10px !important;    /* Smaller font */
    min-width: 90px !important;    /* Thinner buttons */
    border-radius: 4px !important; /* Square-ish looks cleaner when tiny */
  }
  /* HIDES THE NAVIGATION DOTS ON MOBILE */
  .special-dots {
    display: none !important;
  }
  /* BUTTON CONTAINER FIX */
  .special-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important; /* Smaller gap */
    margin-top: 5px !important;
    width: 100% !important;
  }

  /* FORCE BUTTONS TO BE SMALL */
  .special-buttons a.btn-buy, 
  .special-buttons a.btn-contact {
    padding: 6px 14px !important;   /* Very small padding */
    font-size: 10px !important;      /* Tiny text */
    min-width: 80px !important;     /* Compact width */
    height: auto !important;
    line-height: 1.2 !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 0px !important;
  }

  /* Ensure text in the banner doesn't push buttons off-screen */
  .special-overlay h2 {
    font-size: 16px !important;
    margin-bottom: 2px !important;
  }
}

/* =========================================
   SPECIAL BANNER BUTTONS (UI FIX)
   ========================================= */

.special-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  z-index: 5;
  position: relative;
}

/* Base style for both buttons */
.btn-buy, 
.btn-contact {
  padding: 14px 30px;
  border-radius: 50px; /* Makes them pill-shaped */
  font-family: 'Google Sans Flex', sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important; /* Removes the link underline */
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* White Button (Buy Now) */
.btn-buy {
  background-color: #ffffff;
  color: #000000 !important;
  border: 2px solid #ffffff;
}

.btn-buy:hover {
  background-color: transparent;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Outline Button (Contact Us) */
.btn-contact {
  background-color: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
}

.btn-contact:hover {
  background-color: #ffffff;
  color: #000000 !important;
  transform: translateY(-3px);
}


/* explore new space */
.space-category-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Section Heading */

.space-heading {
  text-align: center;
  margin-bottom: 36px;
}

.space-heading h2 {
  font-size: 38px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
  margin-bottom: 12px;
  color: #25D366;
}

.space-heading p {
  font-size: 20px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 400;
  color: #dbdbdb;
  max-width: 580px;
  margin: auto;
}

/* Grid Layout */

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */

.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  display: block;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image */

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

/* Dark Overlay */

.space-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 26px;
}

.space-overlay h3 {
  color: #f5c67b;
  font-size: 22px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 600;
}

/* Hover Effects */

.space-card:hover img {
  transform: scale(1.1);
}

.space-card:hover .space-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
}

/* ✅ Responsive */

@media (max-width: 991px) {
  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .space-heading h2 {
    font-size: 28px;
  }
}

/* Floating Chat Bot Button */
.chat-bot {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2s infinite;
}

.chat-bot img {
  width: 34px;
}

.chat-bot:hover {
  transform: scale(1.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Size Adjustment */
@media (max-width: 600px) {
  .chat-bot {
    width: 56px;
    height: 56px;
    bottom: 18px;
    right: 18px;
  }

  .chat-bot img {
    width: 28px;
  }
}


/* === STORE VISIT BANNER === */

.store-banner {
  width: 100%;
  background: #131313;
  padding: 100px 20px;
}

.store-banner-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

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

.store-content {
  flex: 1;
  color: #fff;
}

.store-tag {
  display: inline-block;
  font-size: 42px;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Modernline Script", cursive;
  color: #f5c67b;
}

.store-title span img {
width: 100%;
height: auto;
}

.store-desc {
  color: #d1d1d1;
  margin-bottom: 15px;
  font-size: 15px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
}

.store-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: white;
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #f5c67b;
}

/* === RIGHT VIDEO BOX === */

.store-video-box {
  width: 800px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  flex-shrink: 0;
  background: #111;
}

.store-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

@media (max-width: 900px) {
.store-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px; /* Reduced gap for mobile */
  }

.store-title span img {
    width: 80%; /* 50% was a bit too small, 80% looks better on phones */
    height: auto;
  }
.store-video-box {
    width: 260px !important;
    max-width: 100% !important; /* Prevents it from being wider than small phones */
    height: 460px;
    margin: 0 auto !important; /* Ensures it stays centered */
  }

  /* THE FIX: Changing from Portrait (260x460) to Landscape */
  .store-video-box {
    width: 100% !important;     /* Takes full width of the container */
    max-width: 500px !important; /* Prevents it from getting too huge on tablets */
    height: auto !important;     /* Reset fixed height */
    aspect-ratio: 16 / 9;        /* Forces professional landscape shape */
    margin: 0 auto !important;
    border-radius: 12px;
  }
  /* .store-video-box {
    width: 260px;
    height: 460px;
  } */
}




/* cart drawer hide */
/* --- Cart Drawer Styles --- */
.cart-drawer {
  position: fixed;
  top: 0;
  /* Use -400px instead of -100% to ensure the shadow is also hidden */
  right: -450px; 
  width: 350px;
  /* For small phones, make sure drawer isn't wider than the screen */
  max-width: 100%; 
  height: 100vh; /* Changed from 80vh to full height to prevent floating white boxes */
  background: #fff;
  color: #000;
  /* Remove shadow when closed, add it when open */
  box-shadow: none; 
  z-index: 100000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Add the shadow only when the drawer is actually open */
.cart-drawer.open {
  right: 0;
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  font-size: 18px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px 0;
}

.cart-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 10px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
}




/* ============================= */
/* MODERN FOOTER STYLES */
/* ============================= */

.site-footer {
  background: #0e0e0e;
  color: #ccc;
  padding: 80px 40px 0;
  font-size: 14px;
  width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Brand */
.footer-brand h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 22px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 600;
}

.footer-brand p {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
}

.footer-brand address {
  color: #aaa;
  font-size: 10px;
  letter-spacing: 1px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* Links */
.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 15px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 500;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #888;
}

.footer-bottom small p{
  text-align: left;
}

.footer-brand span img{
  height: auto;
  width: 50%;
  margin: 15px 0px 5px;
}


/* Modern Store Page Styling */
/* ✅ Global Page Setup */
.store-page { 
    background: #000; 
    color: #fff; 
    font-family: 'Satoshi', sans-serif; 
    margin: 0;
    padding: 0;
}

/* ✅ Modern Hero Window Styling */
.store-hero {
    padding: 60px 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-window {
    position: relative;
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto;
    height: 500px; 
    border-radius: 30px; 
    overflow: hidden; 
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(245, 198, 123, 0.1);
}

.video-window video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.6); /* Ensures text is readable */
}

.video-overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    text-align: center;
    padding: 20px;
    margin-top: 100px;
}
.hero-title {
    font-size: clamp(18px, 6vw, 36px);
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 600px;
}

/* ✅ Highlighting Buttons */
.hero-actions { 
    display: flex; 
    gap: 15px; 
    justify-content: center; 
    flex-wrap: wrap;
}

.btn-gold {
    background: #f5c67b;
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* ✅ Outlets Section */
.outlets-section { padding: 80px 0; }

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.outlet-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.outlet-card:hover {
    border-color: #f5c67b;
    transform: translateY(-10px);
}

.outlet-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.outlet-info { padding: 25px; }

.outlet-info h3 { 
    color: #f5c67b; 
    margin-bottom: 10px; 
    font-family: "Google Sans Flex";
}

.btn-primary {
    background: #ffffff;
    border: 1px solid #f5c67b;
    color: #2c2c2c !important;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #f5c67b;
    color: #000 !important;
}

/* ✅ PAN India Banner */
.pan-india-banner {
    background: #0a0a0a;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #111;
}

/* ✅ Mobile Adjustments */
@media (max-width: 768px) {
    .video-window {
        height: 400px;
        width: 95%;
    }
    .hero-title { font-size: 28px; }
}
/* ============================= */
/* RESPONSIVE FOOTER */
/* ============================= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product Card Title (Name) */
/* Update the main card container */
/* Update the main card container */
.card {
    background-color: #000000 !important; /* Force black background */
    border: 1px solid #333 !important;    /* Subtle dark border */
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

/* Adjust the Product Name (h4) */
.card h4 {
    color: #cecece !important;            /* Force white text */
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 18px !important;
    font-weight: 100 !important;
    margin-top: 12px;
}

/* Adjust the Model Text (small) */
.card small {
    color: #bbbbbb !important;            /* Light grey model text */
    display: block;
    margin-bottom: 8px;
}

/* Adjust the Price (p) */
.card p {
    color: #f7b03f !important;            /* Vantra Gold for the price */
    font-weight: 600;
}

.card .add-cart {
    background-color: #ffffff !important; /* White button */
    color: #f7b03f !important;            /* Black text */
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Specifically targeting the View button inside the product card */
.card .btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #f7b03f !important; /* White border */
    color: #f7b03f !important;           /* White text */
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

/* Hover effect for the View button */
.card .btn-outline:hover {
    background: #ffffff !important;      /* Fill with white */
    color: #000000 !important;           /* Text turns black */
}

.card img {
    /* Adjust these values to match your preferred theme */
    filter: brightness(0.9) contrast(1.1) saturate(1) sepia(0.2);
    
    /* Ensure the transition is smooth when hovering */
    transition: filter 0.3s ease, transform 0.5s ease;
    
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Optional: Remove the filter on hover to show the true product colors */
.card:hover img {
    filter: brightness(1) contrast(1) saturate(1.5) sepia(0);
    transform: scale(1.05);
}

.nav-icon {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    margin-left: 15px;
    display: inline-block;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff4757; /* Nice red */
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none; /* Hidden by default via JS */
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


/* admin user dropdown */
/* Show dropdown on hover */
.user-dropdown-container:hover .dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute;
    right: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.user-dropdown-container .dropdown {
    display: none; /* Hidden by default */
}

.user-dropdown-container .dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.user-dropdown-container .dropdown a:hover {
    background: #f8f8f8;
}

/* Specific Urgency Pulse for "Few Items Left" */
@keyframes pulse-red {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); 
  }
  70% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); 
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); 
  }
}

/* popupform */
/* popupform - Enhanced for Mobile */
/* popupform - Mobile Overrides */
@media (max-width: 768px) {
  #lead-popup {
    padding: 10px !important; /* Less padding around the whole screen */
  }

  #lead-popup > div {
    flex-direction: column !important; /* Stack banner and form */
    width: 95% !important;
    max-width: 400px !important;
    height: auto !important;
    display: block !important; /* Switch from flex to block for easier layout */
  }

  .popup-hide-mobile {
    display: none !important; /* Removes the image side */
  }

  /* Target the form container DIV specifically */
  #lead-popup div[style*="padding:40px"] {
    padding: 30px 20px !important; /* Smaller padding */
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  #lead-popup h2 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  /* Make inputs bigger for mobile thumbs */
  #lead-popup input, 
  #lead-popup select, 
  #lead-popup button {
    height: 45px !important;
    margin-bottom: 12px !important;
  }
}

/* --- Mobile Specific Fixes --- */
/* 1. BASE DESKTOP STYLES (Always Put First) */
/* ======================
 /* =========================================
   VANTRA CATEGORY GRID (FINAL WITH HOVER)
   ========================================= */

/* =========================================
   VANTRA CATEGORY GRID (FIXED & RESPONSIVE)
   ========================================= */

/* =========================================
   GLOBAL RESET FOR CONTAINERS
   ========================================= */
/* main {
  width: 100%;
  overflow-x: hidden;
  display: block;
} */

/* =========================================
   VANTRA CATEGORY GRID (FULL PROOF FIX)
   ========================================= */
/* --- NEW CATEGORY SECTION STYLES (UNIQUE CLASSES) --- */
.v-shop-section {
  width: 100% !important;
  max-width: 100vw !important;
  background: #000;
  padding: 60px 0;
  overflow: hidden !important; /* Kills horizontal overflow */
  box-sizing: border-box !important;
}

.v-shop-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box !important;
}

.v-shop-main-title {
  text-align: center;
  color: #fff;
  font-family: 'Google Sans Flex', sans-serif !important;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 40px;
}

.v-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop */
  gap: 25px;
  width: 100%;
}

.v-shop-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.v-shop-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.v-shop-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v-shop-label {
  margin-top: 12px;
  color: #ccc;
  font-family: 'Google Sans Flex', sans-serif !important;
  font-size: 14px;
  text-align: center;
}

/* --- MOBILE SPECIFIC FIX --- */
@media (max-width: 768px) {
  .v-shop-section {
    padding: 40px 0;
  }
  
  .v-shop-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 items per row on mobile */
    gap: 15px !important;
    padding: 0 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .v-shop-main-title {
    font-size: 24px;
  }
  
  /* THIS LINE IS CRITICAL: Stops any item from pushing the grid wide */
  .v-shop-item {
    width: 100% !important;
    max-width: calc(50vw - 20px) !important;
  }
}