/* 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: 78px;
  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: 10;
}


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

/* 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;
}

/* this is global thing */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Main Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #000000d3;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}


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

.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; /* Moves it exactly below the black navbar */
    right: -10px;
    width: 280px;
    background: #1a1a1a; /* Solid dark background */
    border: 1px solid #b8964b; /* Vantra Gold accent */
    padding: 15px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    
    /* Animation Initial State */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    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: translateY(0);
    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;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.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;
}

/* 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;
}

.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: 22px;
  padding-left: 40px;
  width: max-content;
  animation: newSlide 35s linear infinite;
  will-change: transform;
}

/* AUTO LEFT → RIGHT */
@keyframes newSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HOVER = PAUSE */
.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;
}

/* MOBILE */
@media (max-width: 768px) {
  .new-product-card {
    width: 170px;
  }

  .new-arrivals-header h2 {
    font-size: 26px;
  }
}


/* ===== CATEGORY GRID ===== */

/* ======================
   VANTRA CATEGORY GRID
   ====================== */

.vantra-category {
  width: 100%;
  background: #0a0a0a;
  padding: 60px 0;
}

.vantra-category .container {
  max-width: 1400px;   /* You can increase/decrease */
  margin: 0 auto;      /* Centers grid perfectly */
  padding: 0 20px;     /* Equal left + right padding */
}


/* Title */
.vantra-cat-title {
  text-align: center;
  color: #f0f0f0;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  font-family: "Google Sans Flex", sans-serif;
}

/* GRID 5×5 */
.vantra-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* CARD */
.vantra-cat-card {
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
  width: 70%;
}

/* Animation apply */
.vantra-cat-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Image Box */
.vantra-cat-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 90px;
  background: #000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.vantra-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover */
.vantra-cat-card:hover .vantra-cat-img img {
  transform: scale(1.08);
}

.vantra-cat-card:hover .vantra-cat-img {
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* Name BELOW Box */
.vantra-cat-name {
  margin-top: 12px;
  text-align: center;
  color: #e7e7e7;
  font-size: 15px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1200px) {
  .vantra-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .vantra-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .vantra-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .vantra-cat-title {
    font-size: 26px;
  }

  .vantra-cat-name {
    font-size: 14px;
  }
}


/* ✅ Fixed Special Product Banner */
.special-banner-section {
  width: 95%;            /* Increased width for better look */
  max-width: 1400px;     /* Prevents it from getting too wide on huge screens */
  height: 600px;         /* Balanced height */
  position: relative;
  overflow: hidden;
  background: #000;
  margin: 40px auto;     /* AUTO centers the div perfectly */
  border-radius: 25px;
}

.special-slider {
  position: relative;
  width: 100%;
  height: 100%;          /* Follows parent height */
}

.special-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s ease-out, opacity 0.6s ease;
}

.special-slide.active {
  opacity: 1;
  transform: translateX(0%);
  z-index: 2;
}

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

.special-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Ensures image fills space without stretching */
  object-position: center;
}

/* ✅ Fixed Overlay Content - No more cropping */
.special-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Pushes text to the bottom naturally */
  padding: 0 0 60px 80px;    /* Top, Right, Bottom, Left */
}

.special-overlay h2 {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px); /* Responsive font size */
  background: linear-gradient(90deg, #b68d40, #f1e0c3, #a17432);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  max-width: 800px;
}

.special-overlay p {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  color: #f1e0c3; /* Simplified for better readability */
  margin-bottom: 25px;
  max-width: 600px;
}

/* ✅ Buttons Group */
.special-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap; /* Prevents buttons from overlapping on small screens */
}

.btn-buy,
.btn-contact {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-buy {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.btn-buy:hover {
  background: transparent;
  color: #fff;
}

.btn-contact {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

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

/* ✅ Mobile Optimizations */
/* ✅ Optimized Mobile View for Banner */
@media (max-width: 768px) {
.special-banner-section {
    height: auto !important; /* Let aspect ratio decide height */
    aspect-ratio: 16 / 9;    /* Keeps the box in a standard video/photo shape */
    width: 95%;
    margin: 15px auto;
  }

  .special-slider {
    height: auto !important;
    aspect-ratio: 16 / 9;
  }

  .special-slide img {
    object-fit: contain;     /* Shows 100% of the image */
    background: #000;        /* Adds black bars if the image is weirdly shaped */
  }

.special-overlay {
    padding: 10px;           /* Reduce padding so content has more room */
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  }

.special-overlay h2 {
    font-size: 18px;         /* Significant reduction for small screens */
    margin-bottom: 4px;
  }
  
.special-overlay p {
    font-size: 12px;         /* Smaller text for smaller height */
    margin-bottom: 12px;
    line-height: 1.2;
  }

/* ✅ Resizing Buttons to be proportional */
  .special-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .btn-buy, .btn-contact {
    padding: 6px 12px;    /* Much smaller padding for "Contain" view */
    font-size: 11px;      /* Small, sharp text */
    min-width: 80px;      /* Prevents them from being too wide */
    border-radius: 15px;
    font-weight: 500;
    flex: 0 1 auto;       /* Important: stops buttons from growing to fill width */
  }
}

/* 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;
  }

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

  .store-video-box {
    width: 260px;
    height: 460px;
  }
}




/* cart drawer hide */
/* --- Cart Drawer Styles --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%; /* Hides the drawer off-screen to the right */
  width: 350px;
  height: 80vh;
  background: #fff;
  color: #000;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  z-index: 100000; /* Ensure it is above the WhatsApp button */
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.cart-drawer.open {
  right: 0; /* Slides the drawer into view */
}

.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;
}

.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 */
@media (max-width: 768px) {
  .popup-hide-mobile {
    display: none !important;
  }
  #lead-popup > div {
    flex-direction: column;
    max-width: 90%;
  }
}