/* style.css */
:root {
  /* --- COLOR PALETTE (Renee Cosmetics Inspired) --- */
  --primary-color: #000000;
  /* Main text/Logo black */
  --secondary-color: #ffffff;
  /* White text/backgrounds */

  /* Backgrounds */
  /* --bg-body: #FFF5F7; */
  --bg-body: #fefefe;
  /* Milky Pink Body Background */
  --bg-white: #ffffff;
  /* Card/Section White Background */

  /* Buttons & Accents */
  --btn-primary-bg: #000000;
  /* Primary button (Add to cart) */
  --btn-primary-text: #ffffff;
  --btn-hover-bg: #333333;

  --accent-pink: #F8B7D2;
  /* Soft Pink accent */
  --accent-red: #D32F2F;
  /* Sale/Discount Red */
  --accent-green: #2E7D32;
  /* Eco/Safe Green */

  /* --- TYPOGRAPHY --- */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --black: #111111;
  --mid: #555555;
  --light: #888888;
  --border: #e0e0e0;
  --bg-grey: #f2f2f2;
  --white: #ffffff;

  --pink: #e8a0b4;
  --pink-deep: #c9607e;
  --pink-light: #fce8ef;
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --off-white: #f4f0ee;
  --grey: #888;
}

body {
  background-color: var(--bg-body);
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin: 0;
  padding: 0;
}

/* Helper Class for the White Cards (Product cards, sections) */
.bg-white-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Primary Button Style */
.btn-nivioma {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
}

.btn-nivioma:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-primary-text);
}

/* style.css - CONTINUED */

/* --- HEADER & NAVIGATION --- */

.site-header {
  background-color: var(--bg-body);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* padding-top: 10px; */
}

/* Top Bar Elements */
.logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  line-height: 1;
}

.tagline-text {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: #666;
  /* Slightly lighter black for tagline */
  letter-spacing: 1px;
}

/* --- UPDATED SEARCH BAR STYLING --- */
.search-form {
  flex-grow: 1;
  /* Increased width to 750px as requested */
  max-width: 650px;
  /* Spacing to prevent crashing into Logo or Cart */
  margin: 0 30px;
  transition: all 0.3s ease;
}

.search-form .input-group {
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  /* Perfect pill shape */
  overflow: hidden;
  background-color: var(--bg-white);
  width: 100%;
  /* Slightly taller for premium look */
  height: 48px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focused state (when user clicks to type) */
.search-form .input-group:focus-within {
  border-color: var(--accent-pink);
  box-shadow: 0 0 10px rgba(248, 183, 210, 0.2);
}

.search-form .input-group-text {
  background-color: transparent;
  border: none;
  color: #888;
  padding-left: 20px;
  /* Better alignment for the icon */
}

.search-form .form-control {
  border: none;
  box-shadow: none !important;
  background-color: transparent;
  font-size: 0.95rem;
  padding-left: 10px;
}

/* Typable Placeholder Color */
.search-form .form-control::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* The Search Button inside the bar */
.btn-search {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 0 50px 50px 0 !important;
  padding: 0 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn-search:hover {
  background-color: #333;
  color: #fff;
}

/* Responsive adjustment for tablets */
@media (max-width: 1200px) {
  .search-form {
    max-width: 550px;
    margin: 0 1px;
  }
}

/* Right Icons & Links */
.top-nav-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.top-nav-link i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.made-safe-link {
  font-weight: 600;
  /* Example: If you wanted to highlight it later like Renee */
  /* color: var(--accent-red); */
}


/* --- MAIN NAVIGATION (BOTTOM ROW) --- */
.main-nav-bar {
  /*padding: 0;*/
  /* Minimal border between top and bottom nav rows */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 20px !important;
  font-size: 0.9rem;
  transition: 0.3s;
}

.main-navbar-nav .nav-link:hover {
  color: var(--accent-pink) !important;
  /* Use pink on hover */
}

/* --- MEGA MENU STYLES (Desktop) --- */
@media (min-width: 992px) {

  .mega-dropdown {
    position: static !important;
  }

  /* Fade in: always rendered, hidden via opacity/visibility so transition works */
  .navbar .mega-dropdown .dropdown-menu.mega-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 375px !important;
    min-width: 375px !important;
    max-width: 100vw !important;
    position: absolute !important;
    left: 0 !important;
    top: 100% !important;
    z-index: 9999 !important;
    margin-top: 0 !important;
    border-radius: 0 0 12px 12px !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 24px !important;
    background-color: var(--bg-white) !important;
    border-top: 3px solid var(--accent-pink) !important;
    transform: translateY(6px) !important;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease !important;
  }

  .mega-dropdown:hover .mega-menu,
  .mega-dropdown .mega-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Vertical divider between Explore and subcategory columns */
  .mega-menu .col-lg-6:first-child {
    border-right: 1px solid #eee;
    padding-right: 20px !important;
  }
  .mega-menu .col-lg-6:last-child {
    padding-left: 20px !important;
  }

  /* Scrollable list columns */
  .mega-menu .col-lg-6 ul.list-unstyled {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #e0a0b83b transparent;
  }
  .mega-menu .col-lg-6 ul.list-unstyled::-webkit-scrollbar {
    width: 3px;
  }
  .mega-menu .col-lg-6 ul.list-unstyled::-webkit-scrollbar-track {
    background: transparent;
  }
  .mega-menu .col-lg-6 ul.list-unstyled::-webkit-scrollbar-thumb {
    background: #e0a0b83b;
    border-radius: 2px;
  }

  .dropdown:hover .user-dropdown-menu {
    display: block !important;
    margin-top: 0 !important;
  }

  .dropdown:hover .dropdown-toggle {
    transform: rotate(-90deg);
  }

  .mega-menu .col-lg-3 {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }

  .mega-menu .col-lg-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .mega-menu h6 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: var(--primary-color);
  }

  .mega-menu .dropdown-item {
    padding: 4px 0 !important;
    color: #555 !important;
    font-size: 0.78rem !important;
    background-color: transparent !important;
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .mega-menu .dropdown-item:hover {
    color: var(--accent-pink) !important;
    padding-left: 4px !important;
  }

  .mega-menu-img,
  .dropdown-menu.mega-menu .col-lg-6 img {
    border-radius: 8px !important;
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

}

@media (max-width: 991.98px) {
  .mega-menu {
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    background-color: #f9f9f9;
    /* Slightly different BG for nested menu */
  }

  .mega-menu.show {
    display: block;
  }

  .mega-menu .row {
    /* Stack columns on mobile */
    flex-direction: column;
  }

  .mega-menu [class*="col-"] {
    margin-bottom: 20px;
  }
}

/* --- MOBILE STICKY HEADER FIX --- */
@media (max-width: 991px) {
  .site-header.sticky-top {
    background-color: #ffffff !important;
    /* Ensures the header isn't transparent */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Adds separation from content */
    position: sticky;
    top: 0;
    z-index: 1030;
    /* Stays above body content */
  }

  .mobile-search-bar {
    background-color: #ffffff;
    padding-bottom: 12px !important;
  }
}

/* Ensure the Offcanvas (Sidebar) is not hidden behind the sticky header */
.offcanvas {
  z-index: 1050 !important;
}

/* Show tagline again on slightly larger tablets/small desktops if needed */
@media (min-width: 768px) and (max-width: 991.98px) {
  .tagline-text {
    display: block;
  }
}

/* --- ANNOUNCEMENT BAR (Top Dark Strip) --- */
.announcement-bar {
  background-color: var(--primary-color);
  /* Black */
  color: var(--secondary-color);
  /* White */
  font-size: 0.8rem;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1031;
  /* Above sticky header */
}

.announcement-bar a {
  color: var(--secondary-color);
  text-decoration: underline;
  margin-left: 5px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.alignmob {
  max-width: 100dvw !important;
}

@media (min-width: 1024px) {
  .alignmob {
    max-width: 86dvw !important;
  }
}

/* --- LOGIN DROPDOWN STYLING --- */
.user-dropdown-menu {
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  padding: 15px !important;
  min-width: 250px !important;
  margin-top: 15px !important;
  right: -60% !important;
  left: auto !important;
  max-width: 100dvw;
  /* Spacing from icon */
}

/* The arrow pointing up (Optional visual flair) */
.user-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background-color: white;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.user-profile-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.user-profile-header h6 {
  font-weight: 700;
  margin-bottom: 2px;
}

.user-profile-header span {
  font-size: 0.8rem;
  color: #777;
}

.user-dropdown-item {
  padding: 8px 0;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: 0.2s;
  display: flex;
  align-items: center;
}

.user-dropdown-item:hover {
  color: var(--accent-pink);
  background: transparent;
}

.user-dropdown-item i {
  width: 25px;
  /* Fixed width for icons alignment */
  color: #999;
}

.tracking-wider {
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-pink);
  display: block;
  margin-top: 10px;
}

/* --- MOBILE OFFCANVAS FIXES --- */

/* Fix for the Close Button visibility */
.offcanvas-header .btn-close {
  padding: 1.2rem;
  opacity: 1;
  background-size: 1rem;
  margin-right: 0.1rem;
}

/* Ensure Logo and X are aligned */
.offcanvas-header {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
}

/* Sub-menu styling for mobile */
.offcanvas .dropdown-menu {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.offcanvas .dropdown-item {
  padding: 10px 15px;
  font-size: 0.9rem;
  border-left: 2px solid transparent;
}

.offcanvas .dropdown-item:active {
  background-color: var(--accent-pink);
  color: var(--primary-color);
}

/* Section headers in mobile menu */
.offcanvas .dropdown-header {
  padding-left: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500&display=swap');

.luxury-footer {
  background-color: #0a0a0a;
  /* Deeper black than standard */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid #2a2a2a;
}

/* Ensure even distribution on desktop */
@media (min-width: 992px) {
  .luxury-footer .row {
    display: flex;
    justify-content: space-between;
  }
}

/* Mobile Adjustments (One by One) */
@media (max-width: 991.98px) {
  .luxury-footer {
    text-align: center;
    /* Centering text often looks more "royal" on mobile stacks */
    padding-top: 50px;
  }

  .elegant-heading {
    margin-top: 20px;
    display: block;
    width: 100%;
  }

  .elegant-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: #333;
    margin: 10px auto 0;
    /* Centered underline for mobile titles */
  }

  .app-badges {
    justify-content: center;
  }

  .contact-luxury li {
    justify-content: center;
  }

  .legal-links {
    flex-wrap: wrap;
    font-size: 0.7rem;
  }
}

/* Base Link Spacing */
.luxury-links li {
  padding: 5px 0;
  /* Even vertical clickable area */
}

.royal-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 4px;
  color: #d4af37;
  /* Metallic Gold */
}


.elegant-heading {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  /* Gold headings */
  font-size: 1rem;
}

.luxury-links li {
  margin-bottom: 12px;
}

.luxury-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.luxury-links a:hover {
  color: #d4af37;
  /* Gold hover */
  padding-left: 5px;
}

.gold-icon {
  color: #d4af37;
  font-size: 1.1rem;
}

.luxury-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  opacity: 0.3;
}

.copyright-text,
.legal-links a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
  letter-spacing: 1px;
}

.legal-links a {
  margin-left: 20px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #d4af37;
}

.luxury-badge img {
  height: 35px;
  /* filter: grayscale(1) brightness(2); 
    transition: filter 0.3s ease; */
}

/* .luxury-badge:hover img {
    filter: none;
}@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@200;400;600&display=swap'); */

.luxury-footer {
  background-color: #000000;
  /* Pure Black */
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  padding-top: 80px;
  padding-bottom: 40px;
}

.royal-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 6px;
  /* Increased letter spacing for "Royal" feel */
  color: #ffffff;
  text-transform: uppercase;
}

.brand-ethos {
  font-weight: 200;
  /* Light weight for elegance */
  line-height: 2;
  color: #a0a0a0;
  /* Silver-grey body text */
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: justify
}

.content-para-sub-heading {
  color: #646464 !important;
  font-weight: 600;
  transition: 0.3s ease;
}
.content-para-sub-heading:hover{
  color: #000000 !important;
}

.elegant-heading {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  /* Lighter weight is more modern */
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  font-size: 0.85rem;
  border-bottom: 1px solid #333;
  /* Subtle underline */
  padding-bottom: 10px;
  display: inline-block;
}

.luxury-links li {
  margin-bottom: 15px;
}

.luxury-links a {
  color: #d1d1d1;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.luxury-links a:hover {
  color: #ffffff;
  letter-spacing: 2px;
  /* Elegant hover effect */
}

.mono-icon {
  color: #ffffff;
  font-size: 1rem;
}

.luxury-divider {
  height: 1px;
  background: #333;
  /* Solid dark grey line */
  width: 100%;
}

.copyright-text,
.legal-links a {
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
}

.legal-links a {
  margin-left: 25px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

.luxury-badge img {
  height: 32px;
  filter: invert(1) brightness(2);
  /* Forces black badges to show as white */
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.luxury-badge:hover img {
  opacity: 1;
}

/* ==========================================================
   HERO BANNER CUSTOM STYLES
   ========================================================== */

/* Container Setup: Full width edge-to-edge */
.hero-slider-container {
  width: 100%;
  background-color: #000;
  /* Dark background matches Nivioma theme */
  overflow: hidden;
}

/* Image behavior: Responsive height */
.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s ease;
  /* Transition for hover effect */
}

/* Subtle Zoom effect when hovering over the clickable banner */
.carousel-item a:hover .hero-main-img {
  transform: scale(1.03);
}

/* --- SLIDER NAVIGATION STYLES --- */

/* Customizing the Dots at the bottom */
.carousel-indicators [button] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* Rounded dots for premium look */
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
}

.carousel-indicators .active {
  background-color: #ffffff;
  /* White dot for current slide */
}

/* ==========================================================
   WIDER SPACING FOR BOLD WHITE ARROWS
   ========================================================== */

/* 1. Push the control containers to the absolute edges */
.carousel-control-prev {
  left: 0;
  width: 5%;
  /* Smaller width pushes the icon closer to the edge */
  justify-content: flex-start;
  /* Aligns arrow to the far left of its container */
  padding-left: 20px;
  /* Optional: adds a small gap so it's not touching the glass */
}

.carousel-control-next {
  right: 0;
  width: 5%;
  /* Smaller width pushes the icon closer to the edge */
  justify-content: flex-end;
  /* Aligns arrow to the far right of its container */
  padding-right: 20px;
  /* Optional: adds a small gap so it's not touching the glass */
}

/* 2. Bold White Arrow SVG (Same as before) */
.carousel-control-prev-icon.custom-bold-arrow {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z' stroke='%23fff' stroke-width='1.5'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon.custom-bold-arrow {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' stroke='%23fff' stroke-width='1.5'/%3e%3c/svg%3e") !important;
}

/* 3. Icon Sizing & Shadow */
.custom-bold-arrow {
  width: 2rem !important;
  height: 2rem !important;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.7));
  /* Stronger shadow for clean white look */
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* 4. Mobile Refinement: Reduce padding on small screens */
@media (max-width: 767px) {
  .carousel-control-prev {
    padding-left: 10px;
  }

  .carousel-control-next {
    padding-right: 10px;
  }

  .custom-bold-arrow {
    width: 2rem !important;
    height: 2rem !important;
  }
}

/* --- SECTION HEADERS --- */
.section-main-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.8rem;
}

.btn-view-all {
  background: #00AEEF;
  color: #fff;
  padding: 6px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
}

/* --- THE SCROLL LOGIC --- */
.product-slider-wrapper {
  position: relative;
  width: 100%;
  /* display: flex; */
  align-items: center;
}

.product-scroll-container {
  display: flex;
  gap: 20px;
  padding: 20px 20px 20px 0px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-scroll-container::-webkit-scrollbar {
  display: none;
}

.product-card-item {
  min-width: 280px;
  flex-shrink: 0;
}

.scroll-arrow {
  position: absolute;
  z-index: 50;
  cursor: pointer;
}

/* ==========================================================
   REFINED BEST SELLERS: EDGE TAGS & PINK GRADIENT
   ========================================================== */

/* 1. PRODUCT CARD: Ensure relative positioning for tags */
.product-card-item {
  position: relative;
  /* Essential for the edge tags */
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 0;
  /* Remove padding here so tags can touch the edge */
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* 2. EDGE-TO-EDGE TAGS: Sitting flush with the corner */
.badge-tag {
  position: absolute;
  top: 0;
  /* Touch top edge */
  left: 0;
  /* Touch left edge */
  padding: 5px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  z-index: 10;
  text-transform: uppercase;
  border-bottom-right-radius: 4px;
  /* Optional: Slight curve only on the inner corner */
}

/* Tag Color Variations from Image */
.bg-trending {
  background: #FF9800;
}

/* Orange */
.bg-low-stock {
  background: #7ED321;
}

/* Light Green */
.bg-bestseller {
  background: #FF5E62;
}

/* Pinkish Red */
.bg-loved {
  background: #8BC34A;
}

/* Green */

/* 3. PRODUCT IMAGE SPACING */
.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 30px 15px 10px 15px;
  /* Padding for the image to not overlap tags */
}

/* 4. PRODUCT DETAILS CONTAINER */
/* ==========================================================
   MAMAEARTH STYLE: LARGE TEXT & INTERNAL SPACING
   ========================================================== */

.product-details {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-height: 150px;
  /* Ensures all cards stay the same height */
}

/* 1. TITLE: Increased size and line-height */
.product-title {
  font-size: 1.1rem;
  /* Much larger, like Mamaearth */
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-bottom: 12px;
  height: 3.3rem;
  /* Allows for 2 lines of text */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 2. BENEFIT: Vivid color and clear separation */
.product-benefit {
  color: #7ED321;
  /* Mamaearth Green or use your Pink #ff0080 */
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  /* Large gap after benefit */
}

/* 3. META AREA: Grouping Size, Rating, and Price */
.product-meta-area {
  margin-top: auto;
  /* Pushes this group to the bottom */
  margin-bottom: 20px;
  /* Space before the button */
}

.product-size-text {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 8px;
}

.product-rating {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
}

.product-rating .stars {
  color: #f39c12;
  /* Gold stars */
  font-weight: 700;
}

/* 4. PRICE: Bold and Large */
.product-price {
  font-size: 1.4rem;
  /* Prominent price */
  font-weight: 900;
  color: #000;
}

/* 5. ADD TO CART BUTTON: Matches your Gradient request */
.btn-add-to-cart {
  width: 100%;
  background: linear-gradient(90deg, #ed427e 0%, #f268b0 100%);
  color: #fff;
  border: none;
  padding: 12px 0;
  /* Taller button */
  font-weight: 700;
  font-size: 1rem;
  /* Larger button text */
  border-radius: 5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-add-to-cart:hover {
  background: #000;
  /* Solid black on hover as requested earlier */
  transform: translateY(-2px);
}

/* 6. DESKTOP VIEW: FIXED 4 COLUMN */
@media (min-width: 992px) {
  .product-card-item {
    flex: 0 0 calc(25% - 15px);
    /* Exactly 4 cards across */
  }
}

/* --- BOLD NAVIGATION ARROWS --- */
.scroll-arrow {
  position: absolute;
  top: 40%;
  z-index: 10;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Desktop (default) */
.left-arrow {
  left: -30px;
}

.right-arrow {
  right: -30px;
}

/* Tablet */
@media (max-width: 992px) {
  .left-arrow {
    left: -15px;
  }

  .right-arrow {
    right: -15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .left-arrow {
    left: 5px;
  }

  .right-arrow {
    right: 5px;
  }
}

.custom-bold-arrow-icon {
  font-size: 2.5rem;
  color: #000;
  /* Visible black arrow for product section */
  font-weight: bold;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
  .product-card-item {
    flex: 0 0 90%;
    /* Shows one single product almost full width */
    margin-left: 2%;
  }

  .scroll-arrow {
    display: none;
  }

  /* Hide arrows on mobile as users swipe with touch */
}

/* ==========================================================
   UPDATED COLOR PALETTE: BLACK & GRADIENT PINK
   ========================================================== */

/* 1. VIEW ALL BUTTON - Gradient Pink Background */
.btn-view-all {
  background: linear-gradient(90deg, #ff0080 0%, #ff5c8a 100%);
  /* Renee-inspired Pink Gradient */
  color: #fff;
  padding: 6px 18px;
  /* Slightly reduced padding */
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  transition: 0.4s ease;
  border: none;
}

.btn-view-all:hover {
  filter: brightness(1.1);
  /* Subtle glow effect on hover */
  transform: translateY(-1px);
}

/* 2. ADD TO CART BUTTON - Solid Black to Gradient Pink Hover */
.btn-add-to-cart {
  width: 100%;
  background: #000000;
  /* Solid Black base */
  color: #fff;
  border: 1px solid #000000;
  /* REDUCED PADDING: Changed from 12px to 8px for a sleeker look */
  padding: 8px;
  font-weight: 700;
  border-radius: 0;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  cursor: pointer;
}

/* HOVER EFFECT: Smooth transition to Pink Gradient */
.btn-add-to-cart:hover {
  /* Pinkish Gradient Hover */
  background: linear-gradient(90deg, #ff0080 0%, #ff5c8a 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 128, 0.3);
  /* Adds a soft luxury glow */
}

/* 3. PRODUCT DESCRIPTION TEXT */
.product-benefit {
  color: #ff0080;
  /* Matching the vibrant pink from the gradient */
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* 4. ARROW COLOR */
.custom-bold-arrow-icon {
  font-size: 2.5rem;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Optional: Arrow also turns pink on hover to match the theme */
.scroll-arrow:hover .custom-bold-arrow-icon {
  color: #ff0080;
}

/* --- TIMER BAR STYLE --- */
/* --- TIMER AS A TAG (NOT FULL WIDTH) --- */
.timer-bar {
  background: #9b59b6;
  /* Purple theme */
  color: #fff;
  display: flex;
  align-items: center;
  /* gap: 6px; */
  /* padding: 4px 10px; */
  /* Smaller padding for tag look */
  /* font-size: 0.75rem;
  font-weight: 700;
  width: fit-content; */
  /* Only as wide as the text */
  /* position: absolute; */
  /* top: 12px; */
  /* Floating from top */
  /* left: 12px; */
  /* Floating from left */
  /* z-index: 10;
  border-radius: 4px; */
  /* Tag shape */
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); */
}

.timer-icon {
  font-size: 0.6rem;
}

@media (max-width: 375px) {
  .timer-icon, .timer-1 {
    font-size: 0.5rem;
  }
}
/* Adjust image padding since the bar is gone */
.sale-card .product-img-wrap,
.lightning-card .product-img-wrap {
  padding: 40px 15px 10px;
  /* Reduced top padding */
  text-align: center;
}

/* Ensure the card stays relative for the tag positioning */
.lightning-card {
  position: relative;
  overflow: hidden;
}

/* --- PRICE SECTION (STRIKE-THROUGH & BADGE) --- */
.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}

.current-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
}

.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  /* Strike-through price */
}

.discount-badge {
  background: #7ED321;
  /* Green badge */
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
}

/* Adjust image padding to make room for the timer bar */
.sale-card .product-img-wrap {
  padding: 50px 20px 10px;
}

/* SUB-TEXT UNDER SECTION TITLE */
.section-sub-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: -10px;
  margin-bottom: 20px;
}

/* ==========================================================
   MOBILE VIEW: SINGLE CARD + VISIBLE ARROWS
   ========================================================== */

@media (max-width: 991px) {

  /* 1. Show the arrows (they are often hidden on mobile by default) */
  .scroll-arrow {
    display: flex !important;
    z-index: 10;
    /* background: rgba(255, 255, 255, 0.9); */
    /* Make them pop against images */
    width: 35px;
    height: 35px;
    top: 40%;
    /* Position them near the product image area */
  }

  /* 2. Force exactly one card to fill the container */
  /* .product-scroll-container {
        display: flex;
        gap: 0;
             scroll-snap-type: x mandatory;
        padding: 10px 0;
    } */

  .product-card-item {
    flex: 0 0 100% !important;
    /* Exactly 100% width of the slider */
    min-width: 100% !important;
    scroll-snap-align: center;
    /* Snap card to center */
    border: none;
    /* Optional: remove border for cleaner mobile look */
  }

  /* 3. Adjust Internal Padding for Mobile */
  .product-details {
    padding: 0 20px 20px;
  }
}

/* Ensure the wrapper is relative so arrows stay inside it */
.product-slider-wrapper {
  position: relative;
}

/* ==========================================================
   MOBILE VIEW: PEEK EFFECT (SHOW PREVIOUS/NEXT CARDS)
   ========================================================== */
@media (max-width: 991px) {

  /* Container */
  .product-scroll-container {
    gap: 15px;
    padding: 10px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Each card snaps nicely */
  .product-card-item {
    min-width: 85%;
    scroll-snap-align: center;
  }

  /* Arrows visible & usable */
  .scroll-arrow {
    display: flex;
    width: 35px;
    height: 35px;
    top: 45%;
    z-index: 10;
  }
}

@media (max-width: 991px) {
  .lightning-card,
  .product-card-item {
    flex: 0 0 calc(50% - 6px) !important;
    min-width: calc(50% - 6px) !important;
    scroll-snap-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .lightning-card,
  .product-card-item {
    flex: 0 0 calc(50% - 5px) !important;
    min-width: calc(50% - 5px) !important;
    padding: 6px !important;
    border-radius: 12px !important;
  }

  .product-scroll-container {
    gap: 10px !important;
    padding: 10px 10px 10px 0 !important;
  }

  .product-img {
    aspect-ratio: 1 / 1 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    width: 90% !important;
    left: 5% !important;
    border-radius: 8px !important;
  }

  .product-title {
    font-size: 11px !important;
    height: 2.8em !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
  }

  .product-benefit {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  .product-price {
    font-size: 13px !important;
  }

  .original-price {
    font-size: 11px !important;
  }

  .btn-add-to-cart, .btn-notify-me {
    padding: 6px !important;
    font-size: 10px !important;
  }
  
  .badge-tag {
    font-size: 9px !important;
    padding: 4px 6px !important;
  }

  .product-rating {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }

  .product-size-text {
    font-size: 10px !important;
    margin-bottom: 2px !important;
  }

  .product-meta-area {
    margin-bottom: 8px !important;
  }
}

@media (max-width: 420px) {
  .product-benefit, .original-price, .discount-badge {
    display: none !important;
  }
}


/* SECTION LEFT RIGHT PADDING */
.section-container-gap .container-fluid {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Large desktops (optional – slightly wider feel) */
@media (min-width: 1440px) {
  .section-container-gap .container-fluid {
    max-width: 1320px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .section-container-gap .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-container-gap .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* SAFETY STANDARDS STYLE */
.standard-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 768px) {

  .border-start,
  .border-end {
    border: none !important;
    padding: 0 !important;
  }
}

.testimonials-section {
  background: linear-gradient(180deg, #fff 70%, #e8f5e9 100%);
}

.testimonial-slider-wrapper {
  overflow: hidden;
}

/* Track */
.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(33.33% - 14px);
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/*  MOBILE – ENABLE SCROLL */
@media (max-width: 576px) {
  .testimonial-track {
    transform: none !important;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* Optional: hide dots on mobile */
  .testimonial-track::-webkit-scrollbar {
    display: none;
  }
}

/* ===== FILTER ASIDE STYLES ===== */

aside {
  position: relative;
}

.filter-group {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
}

.filter-group:not(:last-child) {
  margin-bottom: 24px;
}

/* Filter headings */
.filter-group h6 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #222;
}

/* Category links */
.filter-group ul li a {
  font-size: 0.9rem;
  color: #444;
  transition: color 0.2s ease;
}

.filter-group ul li a:hover {
  color: var(--primary-color);
}

/* Checkbox styling */
.filter-group .form-check {
  padding-left: 1.6em;
}

.filter-group .form-check-input {
  cursor: pointer;
  accent-color: var(--primary-color);
}

.filter-group .form-check-label {
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
}

/* SIDE CART  */
/* OVERLAY */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1999;
  /* below side cart */
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}


.side-cart.show {
  right: 0;
}


/* HEADER */
.cart-header {
  position: sticky;
  top: 0;
  background: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px;
  border-bottom: 1px solid #eee;
  z-index: 2;
  /* inside cart */
}

.cart-header h4 {
  margin: 0;
}

.cart-close {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* BODY */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;

}

/* REMOVE BUTTON */
.remove-item {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #555;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-item:hover {
  background: none;
  color: #ff7070;
}

/* ITEM */
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 32px 12px 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.cart-item img {
  width: 100px;
  height: fit-content;
  height: auto;
  border-radius: 10px;
}

.cart-details h6 {
  font-size: 14px;
  margin-bottom: 4px;
}

.variant {
  font-size: 13px;
  color: #777;
}

.price {
  font-size: 14px;
}

.price del {
  color: #aaa;
  margin-right: 6px;
}

.price span {
  color: #d62828;
  font-weight: 600;
}

/* QTY */
.qty-control {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.qty-control button {
  width: 26px;
  height: 26px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* FOOTER */
.cart-footer {
  padding: 16px;
  border-top: 1px solid #eee;
  background: #fff;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.tax-note {
  font-size: 12px;
  color: #777;
  margin: 8px 0;
}

.terms {
  font-size: 13px;
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  /* border-radius: 6px; */
  font-weight: 600;
  cursor: pointer;
}

.checkout-btn:hover {
  background: #222;
}

/* .checkout-btn.enabled {
  background: #000;
  cursor: pointer;
} */
.view-cart-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  background: #fff;
}

/* MOBILE */
@media (max-width: 576px) {
  .side-cart {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .side-cart {
    width: 100%;
    right: -100%;
  }

  .side-cart.show {
    right: 0;
  }
}

/* MOBILE LOGIN OVERLAY 10-1-2026*/
.mobile-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1999;
}

/* DROPDOWN PANEL */
.mobile-login-dropdown {
  position: fixed;
  top: 96px;
  right: 12px;
  width: calc(100% - 24px);
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  padding: 16px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 2000;
}

/* SHOW STATE */
.mobile-login-overlay.show,
.mobile-login-dropdown.show {
  opacity: 1;
  visibility: visible;
}

.mobile-login-dropdown.show {
  transform: translateY(0);
}

/* HEADER */
.mobile-login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-login-header button {
  background: #f1f1f1;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.login-subtext {
  font-size: 13px;
  color: #666;
  margin: 6px 0 12px;
}

/* LIST */
.mobile-login-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-login-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
}

.mobile-login-list li a:hover {
  background: #f7f7f7;
}

/* DESKTOP HIDE */
@media (min-width: 992px) {

  .mobile-login-dropdown,
  .mobile-login-overlay {
    display: none;
  }
}

/* =========================================================
 LOGIN / SIGNUP POPUP STYLES
 Date: 10-Jan-2026
========================================================= */

.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9998;
}

.login-overlay.show {
  opacity: 1;
  visibility: visible;
}

.login-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 420px;
  max-height: 96dvh;
  /* Safely keep it within screen height */
  overflow-y: auto;
  /* Allow scrolling if content is taller than screen */
  scrollbar-width: thin;
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  /* Reduced padding to fit more content */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.login-popup::-webkit-scrollbar {
  width: 6px;
}

.login-popup::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.login-popup {
  scrollbar-width: none;
}

.login-popup::-webkit-scrollbar {
  display: none;
}

.login-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.fp-step p {
  font-size: 13px;
  line-height: 1.4;
  color: #666;
  margin-bottom: 12px;
}

.signup-otp-box {
  height: 44px;
  font-size: 18px;
  border-radius: 8px;
}

.login-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f2f2f2;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.login-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
}

.login-field label {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.mobile-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.country-code {
  padding: 10px 12px;
  background: #f5f5f5;
  font-size: 14px;
}

.mobile-input input {
  border: none;
  padding: 10px;
  width: 100%;
  outline: none;
}

.login-terms {
  font-size: 12px;
  color: #666;
  margin: 15px 0 20px;
  text-align: center;
}

.login-terms a {
  color: #0d6efd;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  background: #00a6ff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.login-btn:hover {
  background: #008ee0;
}

/* MOBILE ADJUSTMENTS — bottom sheet */
@media (max-width: 480px) {
  .login-popup {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(110%) scale(1) !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 22px 22px 0 0 !important;
    padding: 24px 20px 36px !important;
    max-height: 85dvh;
    /* Lowered from 92dvh so it doesn't get clipped by mobile browsers */
    overflow-y: auto;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18) !important;
  }

  .login-popup.show {
    transform: translateY(0) scale(1) !important;
  }
}

/* ===============================
       ACCOUNT PAGE – NIVIOMA
             Date: 2026-01-10
    =============================== */

body {
  background: #f7f7f7;
}

.account-wrapper {
  max-width: 100dvw;
  background: #fff;
  border-radius: 12px;
  margin: 30px 22px;
  padding: 36px 26px;
  padding-right: 55px;
  padding-left: 35px;
}

.account-header h2 {
  font-weight: 600;
}

.account-meta {
  font-size: 14px;
  color: #666;
}

.account-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.2s ease;
  cursor: pointer;
  background: #fff;
}

.account-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.account-card i {
  font-size: 26px;
  color: #000;
  margin-bottom: 10px;
}

.account-card h6 {
  font-weight: 500;
  margin-bottom: 4px;
}

.account-card small {
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .account-wrapper {
    margin: 0;
    border-radius: 0;
    padding: 20px 16px;
  }

  .account-header h2 {
    font-size: 20px;
  }
}

/* ================= ACCOUNT BENEFITS ================= */
.account-benefits {
  background: #ffffff;
}

/* APP DOWNLOAD CARD */
.app-download-card {
  background: #eef7df;
  border-radius: 14px;
  padding: 20px;
  gap: 20px;
}

/* LEFT */
.plant-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.app-text h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.app-text p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.app-download-buttons img {
  height: 100px;
  margin-right: 8px;
  cursor: pointer;
}

/* RIGHT */
.app-right {
  min-width: 220px;
}

.download-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-benefits li {
  font-size: 13px;
  margin-bottom: 6px;
}

.download-benefits i {
  color: #000000;
  margin-right: 6px;
}

/* INFO ROW */
.info-row {
  gap: 16px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  padding: 12px 14px;
  border-radius: 10px;
  flex: 1;
  min-width: 220px;
}

.info-box i {
  font-size: 20px;
  color: #000000;

}

.info-box small {
  display: block;
  font-size: 12px;
  color: #777;
}

/* CONTACT BOX */
/* ===============================
   CONTACT INFO BOX – NIVIOMA THEME
   Date: 2026-01-10
   =============================== */

.contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background-color: var(--bg-white);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--primary-color);
}

/* Text */
.contact-box span {
  font-weight: 500;
  color: #555;
}

/* Button – Override Bootstrap primary */
.contact-box .btn-outline-primary {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

/* Hover */
.contact-box .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Mobile friendly */
@media (max-width: 576px) {
  .contact-box {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
  }
}


.btn-theme-outline {
  border: 1px solid #000;
  color: #000;
  background: transparent;
  font-weight: 600;
}

.btn-theme-outline:hover {
  background: #000;
  color: #fff;
}


/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .app-download-card {
    flex-direction: column;
  }

  .app-right {
    width: 100%;
  }

  .info-row {
    flex-direction: column;
  }

  .contact-box {
    align-items: flex-start;
    gap: 8px;
  }

  .app-download-buttons {
    display: flex;
    flex-direction: row;
    /* FORCE INLINE */
    align-items: center;
    gap: 10px;
    /* space between buttons */
    flex-wrap: nowrap;
    /* prevent wrapping */
  }

  .app-download-buttons img {
    height: 34px;
    /* consistent mobile size */
    width: auto;
  }
}

/*
=================================================
NIVIOMA - Your Orders Page Styles
Theme: Black & White
=================================================
*/

.orders-page {
  max-width: 1100px;
}

/* HEADER */
.page-title {
  font-weight: 700;
}

.filter-btn {
  border: 1px solid #000;
  background: #fff;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
}

/* EMPTY STATE */
.orders-empty {
  padding: 40px 0;
}

.empty-img {
  max-width: 120px;
  margin-bottom: 15px;
}

.empty-text {
  color: #777;
}

/* TRACK ORDER */
.track-order-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.track-header h5 {
  margin: 0;
  font-weight: 600;
}

.track-options {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.track-input {
  width: 60%;
  padding: 12px;
  border: 1px solid #ddd;
  margin: 15px 0;
  border-radius: 6px;
}

.btn-track {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 6px;
}

/* INFO STRIP */
.order-info-strip {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-box i {
  font-size: 20px;
}

/* CONTACT */
/* .contact-box {
  text-align: right;
} */

.btn-contact {
  background: #fff;
  border: 1px solid #000;
  padding: 6px 16px;
  margin-top: 6px;
  cursor: pointer;
}

/* PAYMENT */
.payment-note {
  font-size: 13px;
  color: #555;
}

.payment-icons img {
  height: auto;
  margin-right: 10px;
}

/* MOBILE FIXES */
@media (max-width: 768px) {

  .orders-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .order-info-strip {
    flex-direction: column;
  }

  /* .contact-box {
    text-align: left;
  } */

  .payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .track-input {
    width: 100%;

  }
}

/* ===============================
   CONTACT US – NIVIOMA THEME
   =============================== */

.contact-title {
  font-weight: 700;
  color: #000;
}

.contact-subtitle {
  font-size: 14px;
  color: #666;
  max-width: 720px;
  margin: auto;
}

/* LEFT SECTION */
.support-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.support-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.btn-theme-outline {
  border: 1px solid #000;
  background: transparent;
  color: #000;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
}

.btn-theme-outline:hover {
  background: #000;
  color: #fff;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #000;
}

.icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background-color: #f0dfed;
  /* soft cream like reference */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
}

.support-list span {
  line-height: 1.5;
}

.support-list small {
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .icon-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 13px;
  }

  .support-list li {
    font-size: 13px;
  }
}

.contact-page .container {
  max-width: 1320px;
  padding-left: 24px;
  padding-right: 24px;
}

.contact-form-wrapper {
  background-color: #F0DFED;
  /* soft blush pink */
  border-radius: 16px;
  padding: 32px;
}

/* FORM CARD */
.contact-form-card {
  background: #fff5f7;
  padding: 30px;
  border-radius: 14px;
}

.contact-form-card .form-control {
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 12px;
}

.btn-theme {
  border: 1px solid #000;
  color: #ffffff;
  background: black;
  font-weight: 600;
}

.btn-theme:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000;


}


/* NEWSLETTER */
.newsletter-section h6 {
  font-weight: 600;
}

.newsletter-box {
  display: flex;
  max-width: 380px;
  margin: auto;
  background: #f5f5f5;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-box input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  font-size: 14px;
}

.newsletter-box input:focus {
  outline: none;
  box-shadow: none;
  border-color: #000;
}

.newsletter-box button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 16px;
}

.newsletter-note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

.newsletter-note a {
  color: #000;
  text-decoration: underline;
}

.social-icons a {
  margin: 0 8px;
  color: #000;
  font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 576px) {
  .contact-form-card {
    padding: 20px;
  }

  .btn-theme {
    width: 100%;
  }

  .newsletter-box {
    max-width: 100%;
  }
}

/* ===============================
   CONTACT PAGE – MOBILE ORDER FIX
   =============================== */

@media (max-width: 768px) {

  /* Make form come first */
  .contact-form-wrapper {
    order: 1;
  }

  /* Support info below form */
  .contact-page .col-lg-5 {
    order: 2;
    margin-top: 32px;
  }

  /* Center titles nicely */
  .contact-title {
    font-size: 22px;
  }

  .contact-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Button full width on mobile */
  .btn-theme,
  .btn-theme-outline {
    width: 100%;
  }
}

/* =================================================
   SHOP PAGE – RESPONSIVE STYLES
   PROJECT: NIVIOMA
   UPDATED: 2026-01-10
================================================= */

/* ---------- TOP BAR ---------- */
.shop-top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- TABS ---------- */
.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-tabs button {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.shop-tabs button.active {
  background: #000;
  color: #fff;
}

/* ---------- SORT ---------- */
.sort-select {
  padding: 6px 12px;
  font-size: 13px;
}

/* ---------- PRODUCT GRID ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  border: 1px solid #eee;
  padding: 14px;
  background: #fff;
  position: relative;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-card h6 {
  font-size: 14px;
  margin: 10px 0 4px;
}

.product-card .benefit {
  font-size: 12px;
  color: #666;
}

.product-card .price {
  font-weight: 600;
  margin-top: 6px;
}

/* ---------- BADGES ---------- */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  padding: 3px 6px;
  color: #fff;
  border-radius: 3px;
}

.hot-deal {
  background: #28a745;
}

.value-pack {
  background: #17a2b8;
}

.trending {
  background: #ff9800;
}

.timer {
  background: #7b3fe4;
}

/* =================================================
   TABLET VIEW (≤ 1199px)
================================================= */
@media (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =================================================
   MOBILE VIEW (≤ 767px)
================================================= */
@media (max-width: 767px) {

  /* Tabs scroll */
  .shop-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .shop-tabs::-webkit-scrollbar {
    display: none;
  }

  /* One product per row */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Card spacing */
  .product-card {
    padding: 16px;
  }

  .product-card h6 {
    font-size: 15px;
  }

  /* Sort full width */
  .sort-select {
    width: 100%;
  }
}

/* =========================================
GLAM IN ACTION – STYLES
========================================= */

.glam-section {
  padding: 60px 0;
  /* background: linear-gradient(135deg, #eef3ff, #f9f0ff);
   */
  background-color: #F0DFED;
}

.glam-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.glam-header span {
  color: #000000;
}

/* Slider */
.glam-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.glam-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.glam-card {
  min-width: 220px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: #000;
}

.glam-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.glam-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.glam-overlay p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* Hover (Desktop only) */
@media (hover: hover) {
  .glam-card:hover video {
    transform: scale(1.05);
    transition: transform 0.4s ease;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .glam-header h2 {
    font-size: 22px;
  }

  .glam-card {
    min-width: 180px;
    height: 300px;
  }
}

/* ================================
   SITE LOGO STYLING
   Project: NIVIOMA
   Updated: 2026-01-12
================================ */

.site-logo {
  height: 70px;
  /* desktop */
  width: auto;
}

@media (max-width: 768px) {
  .site-logo {
    /* height: 54px;    */
    /* mobile */
  }
}

/* =================================================
   HERO SLIDER – ROUNDED CARD STYLE
   Project: NIVIOMA
   Updated: 2026-01-12
================================================= */

/* Outer section spacing */
.hero-slider-container {
  padding: 30px 16px 40px;
  background: #fff;
}

/* Make carousel behave like a card */
#niviomaHeroCarousel {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  /* IMPORTANT */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #f8f8f8;
}


/* Mobile height control */
@media (max-width: 768px) {
  .hero-slider-container {
    padding: 16px 12px 28px;
  }

  #niviomaHeroCarousel {
    border-radius: 16px;
  }

  .hero-main-img {
    border-radius: 16px;
  }
}

/* =========================================
   INDICATORS – CENTERED & CLEAN
========================================= */

.carousel-indicators {
  bottom: 12px;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
}

.carousel-indicators .active {
  background-color: #000;
  width: 18px;
  border-radius: 20px;
}

/* =========================================
   ARROWS – INSIDE CARD
========================================= */

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
}

.custom-bold-arrow {
  filter: invert(1);
  opacity: 0.9;
}

/* =========================================
   SMOOTH SECTION FLOW BELOW HERO
========================================= */

.hero-slider-container+section {
  margin-top: 30px;
}

/* =================================================
   DISABLE HERO BANNER ZOOM ON HOVER
   Project: NIVIOMA
   Updated: 2026-01-12
================================================= */



/* In case hover is applied on link or picture */
.hero-slider-container a:hover img,
.hero-slider-container picture:hover img {
  transform: none !important;
  scale: 1 !important;
}

/* ===============================
   NIVIOMA – SIGNUP PAGE
================================ */

body.signup-page {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f6f6f6;
}

/* Center Wrapper */
.signup-wrapper {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.signup-card {
  margin: 10px;
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header */
.signup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.signup-header h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.back-btn {
  color: #000;
  font-size: 16px;
}

/* Form */
.signup-form .form-group {
  margin-bottom: 14px;
}

.signup-form label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.signup-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.signup-form input:focus {
  outline: none;
  border-color: #000;
}

/* Gender */
.gender-group {
  display: flex;
  gap: 15px;
  font-size: 13px;
}

.gender-group input {
  margin-right: 4px;
}

/* Button */
.btn-signup {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-signup:hover {
  background: #111;
}

/* Mobile */
@media (max-width: 480px) {
  .signup-card {
    border-radius: 0;
    /* height: 100vh; */
    max-width: 100%;
  }
}

/* ===============================
   NIVIOMA – SIGNUP PAGE
================================ */

body.signup-page {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f6f6f6;
}

/* Center Wrapper */
.signup-wrapper {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.signup-card {
  margin: 10px;
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header */
.signup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.signup-header h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.back-btn {
  color: #000;
  font-size: 16px;
}

/* Form */
.signup-form .form-group {
  margin-bottom: 14px;
}

.signup-form label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.signup-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.signup-form input:focus {
  outline: none;
  border-color: #000;
}

/* Gender */
.gender-group {
  display: flex;
  gap: 15px;
  font-size: 13px;
}

.gender-group input {
  margin-right: 4px;
}

/* Button */
.btn-signup {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-signup:hover {
  background: #111;
}

/* Mobile */
@media (max-width: 480px) {
  .signup-card {
    border-radius: 0;
    /* height: 100vh; */
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .main-navbar-nav {
    position: relative !important;
    white-space: noWrap;
  }

}

/* Overlay background */
.nav-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  /* Adds a premium blurred effect */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

/* Active state for overlay */
.nav-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* The Popup Box */
.nav-choice-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animation when box opens */
.nav-popup-overlay.active .nav-choice-box {
  transform: translateY(0);
}

.nav-choice-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #000;
  font-weight: 700;
}

.nav-choice-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* =========================
   VIDEO MODAL
========================= */
.glam-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.glam-video-modal video {
  width: 80%;
  max-height: 80vh;
  border-radius: 12px;
  background: #000;
}

/* Close button */
.glam-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Navigation arrows */
.glam-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
}

.glam-nav.left {
  left: 30px;
}

.glam-nav.right {
  right: 30px;
}

/* =========================
   MOBILE – EVEN SMALLER
========================= */
@media (max-width: 768px) {
  .glam-nav {
    width: 32px;
    height: 32px;
    font-size: 16px;
    padding: 0;
  }

  .glam-nav.left {
    left: 8px;
  }

  .glam-nav.right {
    right: 8px;
  }
}

/* ===== SEARCH DROPDOWN ===== */
.search-form {
  position: relative !important;
}

.search-dropdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  padding: 20px;
  display: none;
  width: 1050px;
}

.search-dropdown.active {
  display: block;
}

.search-results-title {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
  font-weight: 500;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.search-card {
  border-radius: 20px !important;
  box-shadow: 2px 5px 20px -5px rgba(0, 0, 0, 0.2);
  overflow: visible;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  position: relative;
  padding: 0 !important;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.search-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.search-card.hidden {
  display: none !important;
}

.search-card-img-wrap {
  width: 90%;
  height: 200px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.search-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.search-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 40px 15px 15px;
}

.search-card .product-title {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 4px;
  min-height: 40px;
}

.search-card .product-benefit {
  font-size: 12px;
  color: gray;
  margin: 3px 0 6px;
  min-height: 36px;
}

.search-card .product-size-text {
  font-size: 12px;
  color: #888;
}

.search-card .product-rating {
  font-size: 12px;
  margin: 4px 0;
}

.search-card .product-price-container {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 10px;
  flex-wrap: wrap;
}

.search-card .product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

.search-card .original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.search-card .discount-badge {
  font-size: 0.78rem;
  color: #4caf50;
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.search-card .product-meta-area {
  flex: 1;
}

.search-card .btn-add-to-cart {
  margin-top: auto;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.search-card .btn-add-to-cart:hover {
  background: linear-gradient(177deg, #2a2a2a, #5a2d3a);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* NO RESULTS */
.search-no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.search-no-results.show {
  display: flex;
}

.no-results-emoji {
  font-size: 64px;
  margin-bottom: 16px;
  animation: bounceSearch 1s infinite alternate;
}

@keyframes bounceSearch {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.no-results-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.no-results-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.6;
}

.no-results-suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.no-results-tag {
  background: #f0f0f0;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.no-results-tag:hover {
  background: #000;
  color: #fff;
}

.no-results-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.no-results-btn:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .search-dropdown {
    width: 850px;
  }
}

@media (max-width: 992px) {

  /* .search-dropdown { width: 95vw; } */
  .search-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95vw !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    padding: 12px !important;
  }

  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-search-bar {
    position: relative !important;
  }

  .mobile-search-bar .search-form {
    position: relative !important;
  }

  .search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .search-card {
    min-height: unset !important;
  }

  .search-card-img-wrap {
    height: 120px !important;
    margin-top: 20px !important;
  }

  .search-card-body {
    padding: 10px !important;
  }

  .search-card .product-title {
    font-size: 12px !important;
    min-height: unset !important;
  }

  .search-card .product-benefit {
    min-height: unset !important;
  }

  .search-card .btn-add-to-cart {
    font-size: 10px !important;
    padding: 7px !important;
  }

  .no-results-emoji {
    font-size: 48px;
  }

  .no-results-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.nav-link.active {
  color: var(--accent-pink) !IMPORTANT;
}

.disabled-field {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.nav-collapse-toggle .toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* expanded state */
.nav-collapse-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.offcanvas-open-custom {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mega-menu-banner {
  width: 100%;
  height: 180px;
  background: #F8B7D2;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 500;
  color: #222;
  text-align: center;

  padding: 20px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f7;
  color: #111;
}

/* CONTAINER */
.page-container {
  max-width: 1320px;
  margin: auto;
  padding: 24px;
}

/* OVERLAY (BELOW CONTENT) */
.hero::after:not(.pledge) {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.85));
  z-index: 1;
  /*  FIX */
}

/* HERO CONTENT (ABOVE OVERLAY) */
.hero-content {
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 15px;
  color: #f1f1f1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* COUNTER CLEAR */
.counter {
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 800;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 4px 20px rgba(0, 0, 0, 0.6);
}

/* SECTION */
.section {
  background: #fff;
  margin-top: 22px;
  padding: 28px;
  border-radius: 18px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.section:hover {
  transform: translateY(-4px);
}

/* BUTTON */
.btn-main {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  border: none;
}

.btn-main:hover {
  transform: translateY(-2px);
}

/* PEOPLE */
.person {
  text-align: center;
  padding: 15px;
}

.person img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  filter: grayscale(100%);
}

/* GOODNESS */
.goodness {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.goodness img {
  width: 140px;
}

.goodness-text {
  flex: 1;
}

/* VIDEO */
.video iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
}

/* MOBILE */
@media(max-width:768px) {

  .hero {
    min-height: 300px;
  }

  .goodness {
    flex-direction: column;
    text-align: center;
  }

  .goodness img {
    width: 100px;
  }

  .video iframe {
    height: 220px;
  }
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/*eco friendly*/
.navbar a,
.navbar li {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: inherit !important;
  text-transform: uppercase !important;
  font-size: 15px !important;
}

header a,
header span,
header li,
header button {
  font-weight: 400 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  background: var(--white);
  color: var(--black);

  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

#hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 180, .15);
}

.hero-ring.r1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  animation: spin 40s linear infinite;
}

.hero-ring.r2 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  border-color: rgba(232, 160, 180, .08);
  animation: spin 28s linear infinite reverse;
}

.hero-ring.r3 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  border-color: rgba(232, 160, 180, .12);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(232, 160, 180, .3);
  padding: .35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-headline {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 200;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--pink);
}

.hero-sub {
  font-size: 0.8rem;
  font-weight: 100;
  color: rgba(255, 255, 255, .65);
  max-width: 100%;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

.hero-btns .btn-pink,
.hero-btns .btn-outline-hero {
  flex: 1 1 auto;
  text-align: center;
}

.btn-pink,
.btn-outline-hero,
.btn-outline-pink {
  text-decoration: none !important;
}

.btn-pink {
  background: var(--pink);
  color: var(--black);
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: none;
  border-radius: 0;
  transition: background .3s, color .3s;
}

.btn-pink:hover {
  background: var(--pink-deep);
  color: var(--white);
}

.btn-outline-hero {
  background: transparent;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  transition: border-color .3s, color .3s;
}

.btn-outline-hero:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .3);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint i {
  font-size: .9rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/*ABOUT*/
#about {
  background: var(--off-white);
  padding: 7rem 0;
}

.section-label {
  font-family: 'Lora', serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--pink-deep);
}

.section-body {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.2rem;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), transparent);
  margin: 2rem 0;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid rgba(232, 160, 180, .4);
  padding: .6rem 1.2rem;
  margin: .3rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--charcoal);
  border-radius: 2rem;
  transition: background .3s, border-color .3s;
}

/* .feature-pill:hover {
  background: var(--pink-light);
  border-color: var(--pink);
} */

.feature-pill i {
  color: var(--pink-deep);
  font-size: .85rem;
}

.about-image-block {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e1820 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(232, 160, 180, .25) 0%, transparent 65%);
}

.about-img-placeholder span {
  font-family: 'Lora', serif;
  font-size: 5rem;
  font-style: italic;
  color: rgba(232, 160, 180, .25);
  letter-spacing: -.02em;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--black);
  color: var(--white);
  padding: 1.4rem;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--pink);
}

.about-badge strong {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
}

.about-badge span {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: .2rem;
}

/*PHILOSOPHY*/
#philosophy {
  background: var(--black);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

#philosophy::before {
  content: 'ECO';
  position: absolute;
  font-family: 'Lora', serif;
  font-size: 20vw;
  font-weight: 600;
  color: rgba(255, 255, 255, .02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.philosophy-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: background .35s, border-color .35s, transform .35s;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pink);
  transition: height .4s;
}

.philosophy-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(232, 160, 180, .2);
  transform: translateY(-4px);
}

.philosophy-card:hover::before {
  height: 100%;
}

.phil-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(232, 160, 180, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--pink);
  font-size: 1.2rem;
}

.phil-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .8rem;
}

.phil-text {
  font-size: .87rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

/*CATEGORIES */
#categories {
  background: var(--white);
  padding: 7rem 0;
}

.cat-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  position: relative;
  transition: transform .35s;
}

.cat-card:hover {
  transform: translateY(-6px);
}

.cat-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-visual.hair {
  background: linear-gradient(135deg, #1a1a1a, #2a1018);
}

.cat-visual.skin {
  background: linear-gradient(135deg, #fce8ef, #e8a0b4);
}

.cat-visual.body {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.cat-visual-icon {
  font-size: 4rem;
  opacity: .35;
}

.cat-visual.hair .cat-visual-icon {
  color: var(--pink);
}

.cat-visual.skin .cat-visual-icon {
  color: var(--charcoal);
}

.cat-visual.body .cat-visual-icon {
  color: var(--pink);
}

.cat-number {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 300;
  opacity: .18;
  line-height: 1;
}

.cat-visual.hair .cat-number,
.cat-visual.body .cat-number {
  color: var(--white);
}

.cat-visual.skin .cat-number {
  color: var(--charcoal);
}

.cat-body {
  padding: 1.8rem;
}

.cat-name {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .6rem;
}

.cat-desc {
  font-size: .84rem;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.cat-link {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pink-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap .25s;
}

.cat-link:hover {
  gap: .9rem;
  color: var(--pink-deep);
}

/*WHY CHOOSE*/
#why {
  background: var(--pink-light);
  padding: 7rem 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(201, 96, 126, .12);
  font-size: .92rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.7;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li .check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--pink-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  margin-top: .1rem;
}

.why-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(232, 160, 180, .3);
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-stat .stat-num {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--pink-deep);
  line-height: 1;
  display: block;
}

.why-stat .stat-label {
  font-size: clamp(0.55rem, 1.5vw, 0.72rem);
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #888;
  margin-top: .6rem;
  display: block;
  text-align: center;
}

/*  PLANET PROMISE  */
#planet {
  background: var(--charcoal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.planet-bg-text {
  position: absolute;
  font-family: 'Lora', serif;
  font-size: 18vw;
  font-weight: 600;
  color: rgba(255, 255, 255, .025);
  bottom: -2vw;
  right: -1vw;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.planet-inner {
  border: 1px solid rgba(232, 160, 180, .15);
  padding: 4rem;
  position: relative;
  z-index: 1;
}

.planet-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.planet-title em {
  font-style: italic;
  color: var(--pink);
}

.planet-body {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  line-height: 1.9;
  max-width: 560px;
}

.planet-divider {
  width: 50px;
  height: 1px;
  background: var(--pink);
  margin: 2rem 0;
}

/*  FAQ  */
#faq {
  background: var(--white);
  padding: 7rem 0;
}

.accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  background: var(--off-white);
  border: none;
  padding: 1.4rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, .08) !important;
  margin-bottom: .6rem;
  border-radius: 0 !important;
}

.accordion-body {
  font-size: .9rem;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  padding: 1.2rem 1.5rem;
  background: var(--white);
}

/* CLOSING CTA */
#cta {
  background: var(--black);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 180, .12) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-family: 'Lora', serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
}

.cta-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta-headline em {
  font-style: italic;
  color: var(--pink);
}

.cta-sub {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  font-family: 'Lora', serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border: 1px solid var(--pink);
  border-radius: 0;
  transition: background .3s, color .3s;
}

.btn-outline-pink:hover {
  background: var(--pink);
  color: var(--black);
}

/* REVEAL ANIMATION  */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#about,
#philosophy,
#categories,
#why,
#planet,
#faq,
#cta {
  overflow-x: hidden;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: auto !important;
}

@media (max-width: 991px) {

  #about,
  #philosophy,
  #categories,
  #why,
  #planet,
  #faq,
  #cta {
    padding: 5rem 0;
  }

  .about-img-placeholder {
    aspect-ratio: 16/9;
  }

  .about-badge {
    width: 110px;
    height: 110px;
    left: .5rem;
    bottom: -1rem;
    padding: 1rem;
  }

  .about-badge strong {
    font-size: 1.8rem;
  }

  .planet-inner {
    padding: 2.5rem;
  }

  .planet-body {
    max-width: 100%;
  }

  .why-stat {
    padding: 1.5rem 1rem;
  }

  .why-stat .stat-num {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {

  #about,
  #philosophy,
  #categories,
  #why,
  #planet,
  #faq,
  #cta {
    padding: 3.5rem 0;
  }

  /* Hero */
  #hero {
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    font-size: .88rem;
    margin-bottom: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: .75rem;
  }

  .btn-pink,
  .btn-outline-hero,
  .btn-outline-pink {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .hero-ring.r1 {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -120px;
  }

  .hero-ring.r2 {
    width: 250px;
    height: 250px;
    top: -60px;
    right: -80px;
  }

  .hero-ring.r3 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
  }

  /* Typography */
  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .section-body {
    font-size: .88rem;
  }

  /* About */
  #about .row {
    flex-direction: column-reverse;
  }

  .about-img-placeholder {
    aspect-ratio: 4/3;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    left: .5rem;
    bottom: -.8rem;
    padding: .7rem;
  }

  .about-badge strong {
    font-size: 1.5rem;
  }

  .about-badge span {
    font-size: .56rem;
  }

  .feature-pill {
    font-size: .74rem;
    padding: .5rem .9rem;
    margin: .2rem;
  }

  /* Philosophy */
  .philosophy-card {
    padding: 1.8rem 1.4rem;
  }

  .phil-title {
    font-size: 1.2rem;
  }

  .phil-text {
    font-size: .82rem;
  }

  /* Categories */
  .cat-visual {
    height: 160px;
  }

  .cat-visual-icon {
    font-size: 3rem;
  }

  .cat-number {
    font-size: 2.2rem;
  }

  .cat-name {
    font-size: 1.4rem;
  }

  .cat-body {
    padding: 1.3rem;
  }

  /* Why choose */
  .why-list li {
    font-size: .85rem;
    padding: 1rem 0;
    gap: .75rem;
  }

  .why-stat {
    padding: 1.2rem .8rem;
  }

  .why-stat .stat-num {
    font-size: 2.2rem;
  }

  .why-stat .stat-label {
    font-size: .65rem;
    letter-spacing: .08em;
  }

  #why .row {
    --bs-gutter-y: 2rem;
  }

  /* Planet */
  .planet-inner {
    padding: 1.8rem 1.2rem;
  }

  .planet-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .planet-body {
    font-size: .85rem;
  }

  .planet-bg-text {
    font-size: 28vw;
  }

  #planet .col-md-2 {
    display: none;
  }

  #planet .col-md-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* FAQ */
  .accordion-button {
    font-size: 1rem;
    padding: 1.1rem 1.2rem;
  }

  .accordion-body {
    font-size: .84rem;
    padding: 1rem 1.2rem;
  }

  /* CTA */
  #cta {
    padding: 3.5rem 0;
  }

  .cta-headline {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .cta-sub {
    font-size: .86rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
    padding: 0 1rem;
  }

  .cta-btns .btn-pink,
  .cta-btns .btn-outline-pink {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-eyebrow {
    font-size: .65rem;
    letter-spacing: .2em;
  }

  .hero-ring.r1 {
    width: 280px;
    height: 280px;
  }

  .hero-ring.r2 {
    width: 200px;
    height: 200px;
  }

  .section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .about-badge {
    width: 80px;
    height: 80px;
    left: .3rem;
    bottom: -.6rem;
    padding: .6rem;
  }

  .about-badge strong {
    font-size: 1.3rem;
  }

  .why-stat .stat-num {
    font-size: 2rem;
  }

  .accordion-button {
    font-size: .95rem;
  }
}

/* Reduce hero top/bottom space */
#hero {
  min-height: auto !important;
}

#hero .row {
  min-height: auto !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Tablet */
@media (max-width: 991px) {
  #hero .row {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #hero .row {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* Make all cards in a row equal height */
#categories .row.g-4 {
  align-items: stretch;
}

#categories .col-md-4 {
  display: flex;
}

.cat-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cat-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* takes up remaining height */
}

.cat-desc {
  flex: 1;
  /* pushes the link to the bottom */
}

.cat-link {
  margin-top: auto;
  /* ensures link always sits at the bottom */
}

/*global presence*/

body {
  background: #f7f7fb;
  color: #111;
  overflow-x: hidden;
}

.page-wrap {
  width: 100%;
  padding: 0;
}

/* ====== HERO ====== */
.gp-hero {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 18px;
}

.gp-hero-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #e7d9ec;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 260px;
}

.gp-hero-left {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
}

.gp-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #111;
}

.gp-hero-desc {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.gp-hero-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;

  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 13px;
  transition: 0.25s ease;
}

.gp-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.gp-hero-right {
  position: relative;
  background: linear-gradient(120deg, #6a2f7e, #e06aa8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gp-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  position: absolute;
  inset: 0;
}

.hero-right-overlay {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 82%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

/* ====== MAP SECTION ====== */
.delivery-map-section {
  max-width: 1200px;
  margin: 22px auto 0 auto;
  padding: 0 18px 60px 18px;
}

.delivery-map-card {
  background: #dfe6f6;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  padding: 22px;
}

.delivery-map-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.delivery-map-head h2 {
  font-size: 40px;
  font-weight: 300;
  color: #111;
}

.delivery-map-head select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  min-width: 240px;
  font-weight: 600;
  outline: none;
}

/* Map Box */
.delivery-map-box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 18px;
}

.delivery-map-inner {
  position: relative;
  width: 100%;
  line-height: 0;
}

.world-map-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Dots */
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6a2f7e;
  box-shadow: 0 0 0 6px rgba(106, 47, 126, 0.12);
  animation: pulseDot 1.8s infinite ease-in-out;
  cursor: pointer;
  opacity: 0.95;
  transition: 0.25s ease;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(106, 47, 126, 0.12);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 12px rgba(106, 47, 126, 0.15);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(106, 47, 126, 0.12);
  }
}


.map-dot.usa {
  left: 26.5%;
  top: 44.5%;
}

.map-dot.france {
  left: 46.7%;
  top: 40.8%;
}

.map-dot.uae {
  left: 56.6%;
  top: 50.2%;
}

.map-dot.india {
  left: 60.7%;
  top: 54.8%;
}

.map-dot.singapore {
  left: 66.2%;
  top: 64.2%;
}

/* Active highlight */
.map-dot.active {
  background: #000;
  box-shadow: 0 0 0 9px rgba(0, 0, 0, 0.15);
  transform: scale(1.15);
}

/* Tooltip */
.dot-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.2s ease;
  white-space: nowrap;
}

.dot-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.map-caption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.map-caption span {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 10px;
  border-radius: 999px;
}

/* ====== Bottom ====== */
.nivioma-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 70px 18px;
}

.bottom-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  padding: 28px;
}

.bottom-title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}

.bottom-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 18px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.info-box {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 16px;
}

.info-box h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: left !important;
}

.info-box p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  text-align: left !important;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.price-table th,
.price-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.price-table th {
  font-weight: 900;
  background: #f4f4f4;
}

/* Responsive */
@media (max-width: 992px) {
  .gp-hero-card {
    grid-template-columns: 1fr;
  }

  .gp-hero-right {
    min-height: 220px;
  }

  .gp-hero-title {
    font-size: 30px;
  }

  .delivery-map-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-map-head h2 {
    font-size: 30px;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {

  .delivery-map-box {
    padding: 8px;
  }

  /* 3. Layout Fixes for the rest of the card */
  .delivery-map-card {
    padding: 16px;
  }

  .delivery-map-head {
    flex-direction: column;
    gap: 12px;
  }

  .delivery-map-head h2 {
    font-size: 24px;
  }

  .delivery-map-head select {
    width: 100%;
    font-size: 14px;
  }

  .map-caption {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .delivery-map-head h2 {
    font-size: 24px;
    font-weight: 400;
  }

  .info-box {
    padding: 24px;
    text-align: left;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
  }

  .bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
  }



}


.gp-hero-subtitle {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.2;
}

@media (max-width: 767px) {
  .gp-hero-subtitle {
    font-size: 25px;
  }
}

/* refer n earn*/

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
}


/* Header */
.header {
  background-color: #000000;
  color: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.back-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  margin-right: 16px;
  padding: 0;
}

.header h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Main Content */
.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.title-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.4;
}

.title-section .amount {
  color: rgb(243, 184, 248);
}

.subtitle {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.subtitle .highlight {
  font-weight: 600;
  color: #000000;
}

/* Invite Section */
.invite-section {
  margin-bottom: 24px;
}

.invite-label {
  color: #495057;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 15px;
}

.button-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.whatsapp-btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #333333;
}

.whatsapp-btn i {
  margin-right: 10px;
  font-size: 20px;
}

.more-options-btn {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 16px 24px;
  border-radius: 8px;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-options-btn:hover {
  background-color: #f8f9fa;
}

.more-options-btn i {
  margin-right: 10px;
  font-size: 18px;
}

/* Social Media Tip */
.social-tip {
  color: #0dcaf0;
  font-size: 14px;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  margin-top: 48px;
}

.how-it-works h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.step-icon {
  background-color: #000000;
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-icon i {
  font-size: 22px;
}

.step-text {
  color: #495057;
  font-size: 15px;
  line-height: 1.7;
  padding-top: 12px;
}

/* Floating Chat Button */
.chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #000000;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.2s;
  z-index: 999;
}

.chat-btn:hover {
  background-color: #333333;
  transform: scale(1.05);
}

.chat-btn i {
  font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    padding: 24px 16px;
    max-width: 100%;
  }

  .title-section h2 {
    font-size: 22px;
  }

  .button-row {
    flex-direction: column;
  }

  .whatsapp-btn,
  .more-options-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .content {
    max-width: 700px;
  }
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}

.back-btn:hover {
  color: #f06292;
  text-decoration: none;
}

.back-btn i {
  font-size: 0.85rem;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  display: none;
}

.cart-overlay.active {
  display: block;
}

/* Side Cart */
.side-cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100dvh;
  background: white;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.side-cart.active {
  right: 0;
}

/* Header */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #000;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.cart-close:hover {
  color: #FFC0CB;
}

/* Progress Bar */
.shipping-progress {
  padding: 24px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

.progress-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.progress-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 0 0 auto;
}

.milestone-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 4px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: bold;
  margin-bottom: 8px;
}

.progress-milestone.active .milestone-circle {
  background: #FFC0CB;
}

.milestone-label {
  text-align: center;
}

.milestone-amount {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.milestone-status {
  font-size: 10px;
  color: #0a0a0a;
  font-weight: 500;
}

.progress-milestone:not(.active) .milestone-status {
  color: #999;
}

.progress-line {
  position: absolute;
  top: 16px;
  height: 3px;
  background: #e0e0e0;
  z-index: 1;
}

.progress-line.line-1 {
  left: 15%;
  width: 20%;
}

.progress-line.line-2 {
  left: 50%;
  width: 20%;
}

.progress-line.active {
  background: #FFC0CB;
}

/* Cart Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  background: #fafafa;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}

.cart-item-image-placeholder {
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 4px;
}

.cart-details {
  flex: 1;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0 0 4px 0;
}

.cart-item-variant {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px 0;
}

.item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  background: white;
  border: none;
  padding: 2px 4px;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #FFC0CB;
  color: white;
}

.qty-value {
  padding: 6px 12px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  font-size: 14px;
  min-width: 40px;
  text-align: center;
  color: #000;
}

.item-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-price del {
  font-size: 12px;
  color: #999;
}

.item-price-current {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.remove-item {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  transition: color 0.2s;
}

/* Offers Section */
.offers-section,
.best-offers {
  margin-bottom: 20px;
}

/* .section-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px 0;
} */

.coupons-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff0f5;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid #FFC0CB;
}

.coupon-count {
  margin-left: auto;
  color: #000;
  font-weight: 500;
}

/* Offers Carousel */
.offers-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.offers-carousel::-webkit-scrollbar {
  height: 4px;
}

.offers-carousel::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}

.offer-card {
  flex: 0 0 160px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  background: #fafafa;
}

.offer-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000;
  color: white;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 1;
}

.offer-image {
  width: 100%;
  height: 96px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
}

.offer-image.pink {
  background: #fff0f5;
}

.offer-image-placeholder {
  width: 64px;
  height: 64px;
  background: #e0e0e0;
  border-radius: 4px;
}

.offer-image-placeholder.pink {
  background: #FFC0CB;
}

.offer-title {
  font-size: 11px;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.3;
  height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.offer-price del {
  font-size: 10px;
  color: #999;
}

.offer-price-current {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.add-btn {
  width: 100%;
  padding: 6px;
  border: 1px solid #000;
  background: white;
  color: #000;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  background: #000;
  color: white;
}

.carousel-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background: #FFC0CB;
  color: white;
  border-color: #FFC0CB;
}

/* Newsletter */
.newsletter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-opt input[type="checkbox"] {
  accent-color: #FFC0CB;
  width: 16px;
  height: 16px;
}

.newsletter-opt label {
  font-size: 12px;
  color: #666;
  margin: 0;
  cursor: pointer;
}


/* 1. Main Wrapper - Keeps the badges side-by-side */
.feature-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  /* Adjust distance between the two badges */
  margin: 20px 0 32px 0;
  flex-wrap: wrap;
  /* Allows wrapping on very small phones only */
  width: 100%;
}

/* 2. Individual Badge - THE PILL */
.feature-badge {
  display: flex !important;
  flex-direction: row !important;
  /* Forces side-by-side icon & text */
  align-items: center !important;
  background-color: #000 !important;
  border-radius: 50px !important;
  /* Perfect rounded corners */
  padding: 6px 20px 6px 8px !important;
  /* Keeps icon close to left edge */
  min-height: 54px !important;
  gap: 12px !important;
  flex-shrink: 0;

  /* REMOVES OVERLAP ERRORS */
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
}

/* 3. White Icon Circle - Centers the SVG */
.badge-icon {
  width: 40px !important;
  height: 40px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;

  /* CANCEL OLD POSITIONING */
  position: static !important;
  transform: none !important;
  margin: 0 !important;
}

.badge-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #000 !important;
  fill: none;
}

/* 4. Text Container - Title and Subtitle */
.badge-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
}

.badge-content h3 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.1 !important;
  letter-spacing: normal !important;
}

.badge-content p {
  font-size: 0.75rem !important;
  color: #bfbfbf !important;
  margin: 0 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  /* Keeps text in one line */
}

/* Mobile Adjustments - Ensures it fits on small screens */
@media (max-width: 480px) {
  .feature-badges {
    gap: 8px;
  }

  .feature-badge {
    padding: 5px 12px 5px 6px !important;
    min-height: 48px !important;
  }

  .badge-icon {
    width: 36px !important;
    height: 36px !important;
  }
}

/* Newsletter */
.newsletter-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.terms-text {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.terms-text a {
  color: #6b7280;
  text-decoration: underline;
}

.terms-text a:hover {
  color: #1f2937;
}

/* Social Media */
.social-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}



.social-icon:hover {
  color: #1f2937;
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2rem;
  }

  .feature-badge {
    flex-direction: column;
    text-align: center;
  }

  .social-divider {
    flex-direction: column;
  }

  .divider-line {
    display: none;
  }
}


*:not(i):not([class*="fa-"]):not(.fab):not(.fas):not(.far):not(.fal) {
  font-family: Poppins, sans-serif;
}

.fab {
  font-family: 'Font Awesome 6 Brands' !important;
}

.fas,
.far {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 600 !important;
}

.social-icon {
  color: #4b5563;
  font-size: 1.5rem;
  transition: color 0.2s;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 3rem;

  padding: 0 0.5rem;

}

.social-icon i {
  font-size: 2rem;
  line-height: 1;

}

body {
  margin: 0;
  padding: 0;
}



/* Made Safe Hero Section */
.made-safe-hero {
  background: #ffffff;
  padding: 80px 0;
  color: #212121;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.made-safe-logo {
  width: 250px;
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
}

/* Process Steps Section - 3 per row */
.process-section {
  background: #000;
  padding: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  grid-template-rows: auto;

}

.process-step {
  padding: 10px;
  height: 110px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #000;
  color: #fff;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: #1a1a1a;
}

.process-step.active {
  background: #222;
  border-color: rgba(255, 255, 255, 0.3);
}

.step-icon {
  width: 36px;
  /* Increased from 30px */
  height: 36px;

  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
  margin-right: 0;
}

.process-step.active .step-icon {
  background: #f9c7ef;
  color: #313131;
}

.step-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: normal;
  width: auto;
  text-align: center;
}

/*  Mobile View 3x2 Layout */
@media (max-width: 600px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 per row */
    gap: 0;
    /* optional: adjust spacing if needed */
  }

  .process-step {
    height: 140px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    /* icon on top, text below */
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .step-icon {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .step-title {
    font-size: 12px;
    text-align: center;
  }
}


/* Content Section */
.content-section {
  padding: 60px 0;
  background: #f9f9f9;
  display: none;
}

.content-section.active {
  display: block;
}

.content-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.arrow-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem 0;
}
.arrow-list li {
  position: relative;
  padding: 0.6rem 0.75rem 0.6rem 2rem;
  border-bottom: 1px solid #e8e8e8;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.arrow-list li:last-child {
  border-bottom: none;
}
.arrow-list li::before {
  content: '→';
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
}

.certification-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.badge-item {
  text-align: center;
}

.badge-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 3px solid #000;
}

.badge-label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.btn-contact {
  padding: 15px 50px;
  background: transparent;
  border: 2px solid #000;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #000;
  color: #fff;
}



/* Container Grid */
.info-grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual Cards */
.info-card {
  flex: 1;
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers everything horizontally */
  justify-content: center;
}

.info-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.info-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Specific Contact Card Styles */
.contact-card h4 {
  font-size: 1.3rem;
  /* Matches your image size */
  margin-bottom: 15px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  /* Rounded corners like your CSS snippet */
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #f06292;
  /* Baby Pink Hover */
  color: #fff;
}

/* Payment Section Styling */
.text-pink {
  color: #f06292;
}

.payment-title {
  color: #000;
}

.payment-section img {
  /* Optional: makes icons black/white to match theme */
  opacity: 0.8;
  transition: 0.3s;
}

.payment-section img:hover {
  filter: grayscale(0%);
  opacity: 1;
}



.btn-contact {
  margin-top: 20px;

  text-decoration: none;
}


/* TAB VIEW */
@media (max-width: 1024px) {
  .made-safe-hero {
    height: 60vh;
    background-size: contain;
    /* cut stop */
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .made-safe-hero {
    height: auto;
    min-height: 30vh;
    background-size: contain;
    /* full image */
    background-position: center;
  }
}


/* ===== FIX 2: Process steps — mobile center alignment ===== */
@media (max-width: 600px) {
  .process-step {
    height: 110px !important;
    padding: 8px 6px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px;
  }

  .step-icon {
    width: 36px !important;
    height: 36px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
    /* Fix icon vertical centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .step-title {
    font-size: 10px !important;
    text-align: center !important;
    line-height: 1.3 !important;
    word-break: break-word;
  }

  .content-section .container {
    padding-left: 20px;
    padding-right: 16px;
  }

  .content-section p,
  .content-section li {
    text-align: justify;
  }
}

/* ── ORDER CARD ── */
.order-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  transition: box-shadow .2s;
}

.order-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, .1);
}

/* Meta row */
.order-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 22px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-grey);

}

.order-meta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.order-meta-item label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--light);
  margin-bottom: 2px;
}

.order-meta-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}

.order-meta-actions {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  gap: 7px;
}

.order-meta-actions::-webkit-scrollbar {
  display: none;
}

.btn-view-order {
  background: var(--white);
  border: 1.5px solid var(--black);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-view-order:hover {
  background: var(--black);
  color: var(--white);
}


.order-meta-actions .btn-cancel {
  background: var(--white) !important;
  border: 1.5px solid var(--border);
  color: var(--mid) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  font-family: 'Poppins', sans-serif !important;
  transition: border-color .2s, color .2s !important;
  white-space: nowrap !important;
}

.order-meta-actions .btn-cancel:hover {
  border-color: var(--black) !important;
  color: var(--black) !important;
}

/* Product row */
.order-product {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 22px 16px;
}

.order-product-details{
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

@media (max-width: 425px) {
  .order-product-details{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
  }
  .product-price{
    text-align: start !important;
  }
}

.order-product+.order-product {
  border-top: 1px dashed var(--border);
  margin-top: 0;
}

.product-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;

}

.product-thumb-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 36px;
  margin-top: 20px !important;
}

.product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px; /* Align baseline visually with price */
}

.product-info h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
  margin-top: 4px;
  overflow-wrap: break-word;
}

.product-info .variant {
  font-size: 12.5px;
  color: var(--light);
  margin-bottom: 3px;
}

.product-info .order-id-tag {
  font-size: 11.5px;
  color: var(--mid);
  margin-bottom: 8px;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  text-align: right;
  min-width: 100px;
  padding-top: 3px; /* Align baseline visually with product title */
}

.product-price del {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;

  margin-right: 4px;
}

/* Status + actions */
.order-status-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px !important;
}

.status-progress-wrap {
  flex: 1;
  min-width: 180px;
}

.status-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.status-label.muted {
  color: var(--light);
}

.progress-track {
  height: 5px;
  background: #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--black);
}

.progress-fill.w-100 {
  width: 100%;
}

.progress-fill.w-75 {
  width: 75%;
}

.progress-fill.w-50 {
  width: 50%;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-view-product {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--mid);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: border-color .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.btn-view-product:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-buy-again {
  background: var(--black);
  border: 1.5px solid var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background .2s;
}

.btn-buy-again:hover {
  background: #333;
}

@media (max-width: 600px) {


  .order-status-row {
    flex-direction: column;
    align-items: flex-start;

  }

  .order-product {
    padding: 15px;
    gap: 15px; /* Increased gap to give more visual separation */
  }

  .product-thumb,
  .product-thumb-placeholder {
    width: 75px; /* Slightly smaller thumbnail to give middle grid more room */
    height: 75px;
  }

  .product-info {
    padding-top: 0; /* Reset desktop baseline offset */
  }

  .product-info h6 {
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 2px;
  }

  .product-info .variant {
    font-size: 11px;
  }

  .product-info .order-id-tag {
    font-size: 10.5px;
    margin-bottom: 4px;
  }

  .product-price {
    font-size: 14px;
    white-space: nowrap;
    padding-top: 2px; /* Visual baseline alignment for mobile */
  }

  .product-actions {
    width: 100%;
  }

  .btn-view-product,
  .btn-buy-again {
    flex: 1;
    justify-content: center;
  }
}

.od-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1040;
}

.od-overlay.active {
  display: block;
}

.od-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 50vw;
  height: 100%;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  font-family: 'Poppins', sans-serif;
}

.od-panel.active {
  transform: translateX(0);
}

.od-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.od-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0;
  letter-spacing: .3px;
}

.od-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.od-close:hover {
  color: #111;
}

.od-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.od-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.od-box {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.od-box-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #888;
  margin-bottom: 8px;
}

.od-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.od-box-value {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.od-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: #262626;
  margin-bottom: -8px;
}

.od-info-box {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #333;
}

.od-track-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.od-track-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.od-track-key {
  font-size: 13px;
  color: #555;
}

.od-track-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
}

.od-track-link {
  font-size: 13px;
  color: #1565c0;
  text-decoration: none;
  font-weight: 600;
}

.od-track-link:hover {
  text-decoration: underline;
}

.od-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.od-items-list li {
  font-size: 13.5px;
  font-weight: 600;
  color: #444444;
}

.od-billing {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.od-bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #444;
}

.od-bill-total {
  font-weight: 700;
  font-size: 14px;
  color: #111;
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  margin-top: 2px;
}

@media (max-width: 500px) {
  .od-panel {
    max-width: 100%;
  }

  .od-title {
    font-size: 12.5px;
  }
}

.track-body {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;

}

.track-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 8px;
}

.track-order-num {
  font-size: 1.1rem;
  font-weight: 600;
}

.track-order-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--mid);
}

.track-meta {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.7;
}

.track-meta span {
  font-weight: 500;
  color: var(--black);
}

/* Horizontal steps on wide, vertical on narrow */
.track-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Horizontal connector line */
.track-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
}

.step.animate {
  animation: stepReveal 0.4s ease forwards;
}

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--light);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.step.done .step-dot {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Fill connector between done steps */
.step.done+.step.done .step-dot::before,
.step.done .step-dot::after {
  display: none;
}

.step-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.step.pending .step-name {
  color: var(--light);
}

.step-date {
  font-size: 0.72rem;
  color: var(--light);
  font-weight: 300;
  line-height: 1.4;
}

.step.done .step-date {
  color: var(--mid);
}

.step-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 5px;
}

.badge-done {
  background: var(--black);
  color: var(--white);
}

.badge-expected {
  background: #f0f0ed;
  color: var(--mid);
  border: 1px solid var(--border);
}

/* Progress line fill based on done steps */
.progress-line {
  height: 2px;
  background: var(--black);
  position: absolute;
  top: 18px;
  left: calc(12.5% + 8px);
  z-index: 1;
  transition: width 0.6s ease;
  width: 0%;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .page-header h1 {
    font-size: 1.9rem;
  }

  .page-body {
    padding: 28px 16px 60px;
    gap: 24px;
  }

  .card-body,
  .track-body {
    padding: 20px;
  }

  .card-header {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .refund-options {
    flex-direction: column;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  /* Vertical steps on mobile */
  .track-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .track-steps::before {
    top: calc(12.5% + 8px);
    bottom: calc(12.5% + 8px);
    left: 17px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .progress-line {
    width: 2px !important;
    left: 17px;
    top: calc(12.5% + 8px);
    height: 0%;
    transition: height 0.6s ease;
  }

  .step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
  }

  .step:last-child {
    padding-bottom: 0;
  }

  .step-dot {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-info {
    flex: 1;
  }
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}

.back-btn:hover {
  color: #f06292;
  text-decoration: none;
}

.back-btn i {
  font-size: 0.85rem;
}

@media (max-width: 600px) {



  /* Align product name and price to top of thumbnail */
  .product-info h6 {
    margin-top: 0;
  }

  .product-price {
    margin-top: 0;
  }

}

.product-thumb {
  cursor: pointer;
  transition: opacity .2s;
  margin: 0 !important;
  display: block;
}

.product-thumb:hover {
  opacity: 0.8;
}

@media (max-width: 400px) {

  .btn-view-order,
  .order-meta-actions .btn-cancel,
  .order-meta-actions button,
  .order-meta-actions a {
    font-size: 13px !important;
    padding: 6px 10px !important;
    gap: 8px !important;
  }
}

span.btn-cancel {
  pointer-events: none;
  font-weight: 600;
}

/* 360px and below — 2 buttons, rest scroll */
@media (max-width: 358px) {
  .order-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-meta-actions {
    width: 100%;
    gap: 5px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .btn-view-order,
  .order-meta-actions .btn-cancel,
  .order-meta-actions a,
  .order-meta-actions button,
  .order-meta-actions span {
    flex: 0 0 auto !important;
    width: auto !important;
    font-size: 11px !important;
    padding: 6px 9px !important;
    gap: 4px !important;
    white-space: nowrap;
  }
}

/* 361–430px — 3 buttons fit, rest scroll */
@media (min-width: 359px) and (max-width: 432px) {
  .order-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-meta-actions {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .btn-view-order,
  .order-meta-actions .btn-cancel,
  .order-meta-actions a,
  .order-meta-actions button,
  .order-meta-actions span {
    flex: 0 0 auto !important;
    width: auto !important;
    font-size: 11px !important;
    padding: 6px 8px !important;
    gap: 4px !important;
    white-space: nowrap;
  }
}

/* 431–600px — normal size, all scroll freely */
@media (min-width: 433px) and (max-width: 600px) {
  .order-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-meta-actions {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .btn-view-order,
  .order-meta-actions .btn-cancel,
  .order-meta-actions a,
  .order-meta-actions button,
  .order-meta-actions span {
    flex: 0 0 auto !important;
    width: auto !important;
    white-space: nowrap;
  }
}

.order-meta-actions>* {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 391px) {
  /* .order-meta-group {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4px;
  }

  .order-meta-item {
    flex: 1;
    min-width: 0;
  } */

  .order-meta-item span {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    display: block;
  }

  .order-meta-item label {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    display: block;
  }
}


/* whatsapp fixed floating icon */
.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 55px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Restore toastr success color */
.toast-success {
  background-color: #51A351 !important;
}

/* Restore toastr error color */
.toast-error {
  background-color: #BD362F !important;
}

/* Restore toastr warning color */
.toast-warning {
  background-color: #F89406 !important;
}

/* Restore toastr info color */
.toast-info {
  background-color: #2F96B4 !important;
}

#toast-container {
  z-index: 999999 !important;
}

.category-banner {
  margin: 20px;
  border-radius: 20px;
}

.cart-count-show.zero {
  display: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.category-bg {
  /* change image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
}

#openCart,
#openCartMobile {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-count-show {
  position: absolute;
  top: -8px;
  right: -18px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(135deg, #ff4d4f, #ff7875);
  border-radius: 50px;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

  transition: all 0.25s ease;
}

/* Hide when zero */
.cart-count-show:empty,
.cart-count-show.zero {
  display: none;
}

/* Small animation when count updates */
.cart-bounce {
  animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .header-top-row {
    align-items: center !important;
  }

  .navbar-toggler {
    align-self: center !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .navbar-brand {
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .d-flex.d-lg-none.align-items-center.gap-3 {
    align-self: center !important;
  }
}

@media (max-width: 768px) {
  .announcement-bar .alignmob {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .announcement-bar {
    text-align: center !important;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {

  .navbar a,
  .navbar li {
    font-size: 14px !important;
    letter-spacing: 0 !important;
  }

  .main-navbar-nav .nav-link {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 1401px) {

  .navbar a,
  .navbar li {
    font-size: 15px !important;
  }
}

#pageMain {
  min-height: 50dvh;
}

#pageMain.spa-loading {
  opacity: 0.55;
  pointer-events: none;
}

.cart-progress-box {
  padding: 15px;
  background: #fff0f5;
  border-bottom: 1px solid #eee;
}

.progress-message {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.progress-wrapper {
  position: relative;
  height: 50px;
}

.progress-line-bg {
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 10px;
}

.progress-line-fill {
  position: absolute;
  top: 22px;
  left: 0;
  height: 6px;
  width: 0%;
  background: #e91e63;
  border-radius: 10px;
  transition: width .4s ease;
}

/* START FLAG */

.progress-start {
  position: absolute;
  left: -4px;
  top: 0px;
  font-size: 18px;
}

/* TRUCK */

.progress-truck {
  position: absolute;
  top: 20px;
  left: 0%;
  font-size: 20px;
  transform: translateX(-50%);
  transition: left .4s ease;
}

/* FREE SHIPPING MILESTONE */

.progress-milestone {
  position: absolute;
  right: 0;
  top: -5px;
  text-align: center;
}

.milestone-amount {
  font-size: 14px;
  font-weight: 700;
}

.milestone-text {
  font-size: 12px;
  margin-top: 24px;
}

.cart-no-scroll {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
}

.cart-body {
  overscroll-behavior: contain;
  overflow-y: auto;
}

#sideCart {
  overscroll-behavior: contain;
  position: fixed;
  /* harmless if already fixed; ensures canvas overlay works */
}

/* FREE SHIPPING CELEBRATION — full-screen overlay */
#sideCart>#freeShipCelebrate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 60;
  pointer-events: none;
  display: none;
  overflow: hidden;
}

#sideCart>#freeShipCelebrate.is-active {
  display: block;
}

#sideCart>#freeShipCelebrate #cartCelebrate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Slide-up message card pinned to the bottom of the cart */
#sideCart>#freeShipCelebrate .celebrate-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  top: auto;
  transform: translateY(110%);
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px 16px;
  text-align: center;
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  z-index: 2;
  pointer-events: auto;
  min-width: 0;
  max-width: none;
  overflow: hidden;
}

#sideCart>#freeShipCelebrate.is-active .celebrate-card {
  transform: translateY(0);
  opacity: 1;
}

#sideCart>#freeShipCelebrate .celebrate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9a3c, #ff5e62, #ffce00, #33cc66, #3399ff);
  background-size: 200% 100%;
  animation: celebrateShimmer 2.2s linear infinite;
}

#sideCart>#freeShipCelebrate .celebrate-emoji {
  font-size: 44px;
  line-height: 1;
  margin: 4px 0 8px;
  animation: celebrateBounce 1.2s ease-in-out infinite;
}

@keyframes celebrateBounce {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-4px) rotate(4deg);
  }
}

#sideCart>#freeShipCelebrate .celebrate-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
}

#sideCart>#freeShipCelebrate .celebrate-message {
  background: #d6f0e3;
  color: #1f7a4d;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 999px;
  margin: 0 auto 14px;
  line-height: 1.4;
}

#sideCart>#freeShipCelebrate .celebrate-dismiss {
  background: transparent;
  border: none;
  color: #1f7a4d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  cursor: pointer;
  padding: 8px 18px;
  margin-top: 2px;
}

#sideCart>#freeShipCelebrate .celebrate-dismiss:hover {
  color: #155f3a;
}

/* Core Colors */
.bg-main-color {
  background-color: rgb(229, 229, 229) !important;
}

.text-color-white{
  color: var(--white)
}

.text-pink {
  color: #000000 !important;
}


.border-pink {
  border-color: rgb(255, 154, 235) !important;
}

/* Text Styling */
.content-para {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 1.2rem;
}

/* Link Styling - Pink all the time */
.nivioma-seo-footer a {
  color: #646464 !important;
  /* Forces pink color constantly */
  text-decoration: none;
  font-weight: 600;
  /* Makes links bolder so they are easy to find */
  transition: 0.3s ease;
}

/* Hover effect for a nice user experience */
.nivioma-seo-footer a:hover {
  color: #000000 !important;
  /* Changes to white on hover for contrast */
  text-decoration: underline;
}

/* Product Blocks */
.product-detail {
  border-left: 3px solid #f9c7ef;
  padding-left: 20px;
}

/* Table Styling */
.table-dark {
  background-color: transparent !important;
  font-size: 14px;
}

.table-dark td,
.table-dark th {
  border-color: rgba(255, 255, 255, 0.1);
  padding: 12px;
}

/* referearn page */
/* Match sample.jpeg: flat rows, cyan icons, no filled circle */
.how-it-works--flat h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.how-it-works--flat .step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f3f5;
}

.how-it-works--flat .step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.how-it-works--flat .step-icon {
  background: transparent;
  color: black;
  width: 28px;
  height: 28px;
  border-radius: 0;
  margin-right: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works--flat .step-icon i {
  font-size: 20px;
}

.how-it-works--flat .step-text {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  padding-top: 2px;
  margin: 0;
}

.how-it-works--flat .step-text strong {
  color: #1a1a1a;
}

/* Order History Custom Styles */
.oh-main-container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
}

#orderHistory {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Empty History State - Centered */
.orders-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  flex: 1;
  background: transparent !important;
  border: none !important;
}

.orders-empty-state svg {
  color: #d1d5db;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.02));
}

.orders-empty-state h4 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.orders-empty-state p {
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 24px;
}

/* Loader Styles */
.order-history-loader {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
}

.oh-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(0,0,0,0.08);
  border-top-color: #000;
  border-radius: 50%;
  animation: oh-spin 0.8s linear infinite;
}

@keyframes oh-spin {
  to { transform: rotate(360deg); }
}


/* order history page */
.oh-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 24px;
}
.oh-tab-btn {
  position: relative;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #6c757d;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.oh-tab-btn.active {
  color: #000;
  border-bottom-color: #000;
}
.oh-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  background: #000;
  color: #fff;
  line-height: 1;
}
.oh-tab-panel { display: none; }
.oh-tab-panel.active { display: block; }

.nav-overflow-hidden { display: none !important; }

/* discover page */
/* HERO */
.hero-discover {
  background: url('../images/discoverbanner.jpg') center/cover;
  min-height: 420px;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-discover h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.hero-discover .hero-content {
  color: #fff;
  max-width: 650px;
  padding: 20px 25px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-discover .hero-content {
  display: block !important;
  width: min(580px, calc(100vw - 48px));
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-direction: column;
}

/* Tabular digits — every digit occupies the same horizontal slot */
.hero-discover .counter {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.made-safe-hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .made-safe-hero {
      height: auto;
      aspect-ratio: 16/9; /* match your image's actual ratio */
      min-height: unset;
      padding: 0;
      margin-bottom: 0;
  }
}

/* CART ESTIMATE ACCORDION STYLES */
/* Centering wrapper for the savings chip */
.cart-saved-ticker {
  text-align: center;
  padding: 8px 14px 2px;
  line-height: 1;
}
/* The clip-tag chip itself */
.cart-saved-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #1b5e20;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px 4px 9px;
  border-radius: 20px;
  border: 1.5px solid #a5d6a7;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 4px rgba(46,125,50,.12);
  white-space: nowrap;
}
.cart-saved-chip i {
  font-size: 10px;
  color: #2e7d32;
  transform: rotate(-45deg);
  display: inline-block;
}
.cart-est-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  background: #fff;
  border-top: 1px solid #ebebeb;
  user-select: none;
  gap: 8px;
  transition: background .15s;
}
.cart-est-trigger:hover { background: #f7f7f7; }
.est-trigger-label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #777;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.est-chevron {
  font-size: 9px;
  display: inline-block;
  transition: transform .25s ease;
}
.est-chevron.est-open { transform: rotate(180deg); }
.est-trigger-price {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.est-mrp-del { font-size: 11px; color: #bbb; text-decoration: line-through; }
.est-price-bold { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.est-off-badge {
  font-size: 10px;
  font-weight: 700;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}
.cart-est-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.cart-est-panel.est-open { max-height: 320px; }
.cart-est-inner { padding: 12px 14px 6px; }
.cart-est-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #555;
  padding: 4px 0;
}
.cart-est-row.est-green { color: #2e7d32; font-weight: 600; }
.cart-est-row.est-bold  { font-size: 13.5px; font-weight: 700; color: #1a1a1a; padding: 6px 0 2px; }
.est-free-ship  { color: #2e7d32; font-weight: 700; font-size: 12.5px; }
.est-calc-ship  { color: #888; font-size: 11px; font-style: italic; }
.cart-est-savings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 4px;
}
.cart-est-savings-badge {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  padding: 3px 9px;
}
.cart-est-hr { margin: 8px 0; border-color: #ebebeb; }

.user-name-ellipsis {
  display: inline-block;
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}
