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

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: 20px;
 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: relative !important;
  }

  .mega-dropdown:hover .mega-menu {
    display: block;
    margin-top: 0;
  }

  /* THIS IS THE KEY FIX - overrides Bootstrap dropdown-menu */
  .navbar .mega-dropdown .dropdown-menu.mega-menu {
    width: 600px !important;
    min-width: 600px !important;
    max-width: 600px !important;
    left: 0 !important;
    right: auto !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: 20px !important;
    background-color: var(--bg-white) !important;
  }

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

  .mega-menu .dropdown-item:hover {
    color: var(--accent-pink) !important;
    padding-left: 4px !important;
  }

  .mega-menu-img {
    border-radius: 8px;
    width: 100%;
    height: 130px;
    object-fit: cover;
  }

}

@media (max-width: 991px) {
  .mega-menu {
    display: none;
  }

  .mega-menu.show {
    display: block;
  }
}
/* --- MOBILE SPECIFIC STYLES --- */
@media (max-width: 991.98px) {
 .site-header {
  padding-bottom: 10px;
 }

 .mobile-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
 }

 .navbar-toggler {
  border: none;
  padding-left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
 }

 /* On mobile, center logo and hide tagline */
 .navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  /* Center horizontally */
 }

 .tagline-text {
  display: none;
  /* Hide tagline on smaller screens */
 }

 /* Mobile Search visible below header */
 .mobile-search-bar {
  padding: 10px 15px;
  background-color: var(--bg-body);
 }

 /* Offcanvas styling to match theme */
 .offcanvas {
  background-color: var(--bg-white);
 }

 .offcanvas-header {
  border-bottom: 1px solid #eee;
 }

 /* Adjust mega menu for mobile (standard collapse) */
 .mega-menu {
  box-shadow: none;
  border: none;
  padding-left: 15px;
  background-color: #f9f9f9;
  /* Slightly different BG for nested menu */
 }

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

 /* Keep the top row (Logo/Hamburger) and search bar tight together */
 .header-top-row {
  background-color: #ffffff;
  padding-top: 10px !important;
  padding-bottom: 5px !important;
 }

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

/* --- LOGIN DROPDOWN STYLING --- */
.user-dropdown-menu {
 border: none;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 border-radius: 8px;
 padding: 15px;
 min-width: 250px;
 margin-top: 15px !important;
 /* 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 */
}

.brand-ethos {
    font-weight: 300;
    line-height: 1.8;
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

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

/* Desktop Only: Limits height to prevent excessive scrolling */
@media (min-width: 992px) {
    .hero-main-img {
        max-height: 520px;
    }
}

/* 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: 25px;
  padding: 20px 10px;
  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%;
    height: 220px;
    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: 280px;
    /* 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: 5%;
    }
    .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.8rem;
}

/* 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) {

    /* 1. Container: Add side padding to center the main card */
    /* .product-scroll-container {
        padding-left: 30px !important;
    
        padding-right: 30px !important;
    
        gap: 15px;
    
        scroll-snap-type: x mandatory;
        
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    } */

    /* 2. Card: Width must be LESS than 100% to show neighbors */
    .lightning-card,
    .product-card-item {
        flex: 0 0 100% !important;
        /* Card takes 75% of screen width */
        min-width: 75% !important;
        scroll-snap-align: center;
        /* Centers the card on swipe */
        margin-bottom: 10px;
    }

    /* 3. Hide desktop arrows on mobile (standard e-commerce practice) */
    
}
/* 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-slider-wrapper {
        overflow-x: auto;
    }

    .testimonial-track {
        transform: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    /* Optional: hide dots on mobile */
    .testimonial-dots {
        display: none;
    }
}

.category-bg {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("images/image2.png"); /* change image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
}
/* ===== 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 {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: #fff;

  display: flex;
  flex-direction: column;

  transition: right 0.35s ease;
  z-index: 2000; /* ✅ higher than .site-header */
}

.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: #000;
  color: #fff;
}
/* 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;
}

/* REMOVE */
.remove-item {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: none;
  font-size: 18px;
  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;
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.login-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

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

.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 */
@media (max-width: 480px) {
  .login-popup {
    padding: 25px 20px;
  }
}
 /* ===============================
       ACCOUNT PAGE – NIVIOMA
             Date: 2026-01-10
    =============================== */

    body {
      background: #f7f7f7;
    }

    .account-wrapper {
      max-width: 1200px;
      margin: 30px auto;
      background: #fff;
      border-radius: 12px;
      padding: 30px;
    }

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

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

/* PAYMENT */
.payment-icons img {
  height: 28px;
}

/* ================= 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: 28px;
  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-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: 8px;
}

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

/* Ensure images respect rounded edges */
.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
}

/* Desktop height control */
@media (min-width: 992px) {
  .hero-main-img {
    max-height: 520px;
  }
}

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