/* 
 * Kawachi Headless WooCommerce - Global Styles
 * Premium Blue & White Marketplace Theme
 * Fully separation-based and clean CSS structures
 */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700;1,800&display=swap');

/* ==========================================================================
   1. Design Tokens & CSS Custom Properties
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #1E3E7A;          /* Sophisticated Premium Blue */
  --color-secondary-blue: #3B82F6;   /* Premium Slate Blue */
  --color-light-blue: #F0F6FF;       /* Light Blue accent */
  --color-primary-light: #3B82F6;
  --color-accent: #e05e3f;           /* Claude-style warm coral-orange */
  --color-accent-light: #ea6c4d;
  --color-accent-soft: rgba(224, 94, 63, 0.06);
  
  --color-bg-main: #FFFFFF;          /* Pure White Main Background */
  --color-bg-white: #FFFFFF;
  --color-bg-alt: #F0F6FF;           /* Clean light blue accent */
  --color-bg-section: #F8FAFC;       /* Off-White Section Background for premium look */
  
  --color-charcoal: #0B1530;         /* Deep Premium Navy (Amazon Style Brand Color) */
  --color-text-main: #0B1530;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  
  --color-success: #22C55E;
  --color-error: #EF4444;
  --color-warning: #1E3E7A;
  
  --color-border: #E5E7EB;           /* Border color */
  --color-border-dark: #CBD5E1;
  
  /* Modern premium layered shadows - CRED / Apple styled */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.06);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.01);
  
  /* Typography Scale */
  --font-display: 'General Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'General Sans', 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Fluid sizing */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
  --text-md: clamp(1.05rem, 0.95rem + 0.4vw, 1.15rem);
  --text-lg: clamp(1.2rem, 1.1rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.4rem, 1.3rem + 0.7vw, 1.75rem);
  --text-2xl: clamp(1.8rem, 1.6rem + 1vw, 2.25rem);
  --text-3xl: clamp(2.2rem, 1.9rem + 1.5vw, 3rem);
  
  /* Redesigned border radii */
  --radius-global: 24px;
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 18px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout constraints */
  --container-max-width: 1440px;
  --header-height: 70px;

  /* Aurora Background Color Tokens */
  --aurora-white: #FFFFFF;
  --aurora-black: #0F172A;
  --aurora-transparent: transparent;
  --aurora-blue-300: #93C5FD;
  --aurora-blue-400: #60A5FA;
  --aurora-blue-500: #3B82F6;
  --aurora-indigo-300: #A5B4FC;
  --aurora-violet-200: #DDD6FE;
}

/* ==========================================================================
   2. Reset & Core Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   3. Layout Grid & Structure Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
}

.flex { display: flex; }
.flex-col, .flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.wrap { flex-wrap: wrap; }

.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ==========================================================================
   4. Header & Navigation Component
   ========================================================================== */
.top-bar {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-header {
  background-color: #d8e9f3;
  border-bottom: 1px solid rgba(16, 24, 40, 0.05);
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 6px 0;
}

/* Stacked rows header styling */
.header-container-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Row 1: Logo & Utilities */
.header-logo-row {
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(16, 24, 40, 0.04);
  padding-bottom: 10px;
  padding-top: 4px;
}

/* Row 2: Options/Category Scrolling chips */
.header-options-row {
  border-bottom: 1.5px solid rgba(16, 24, 40, 0.04);
  padding: 6px 0;
  overflow: hidden;
}

.header-options-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  padding: 4px 2px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for category options scrolling */
.header-options-scroll::-webkit-scrollbar {
  display: none;
}
.header-options-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.option-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  background: transparent !important;
  border: none !important;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: none !important;
}

.option-chip:hover {
  background: transparent !important;
  color: #0066FF;
  transform: translateY(-2px);
}

.option-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #F1F5F9;
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.option-chip:hover .option-icon {
  background-color: #E0F2FE;
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.12);
}

.option-text {
  font-size: 11px;
  color: #475569;
  margin-top: 4px;
}

.option-chip:hover .option-text {
  color: #0066FF;
}

/* Row 3: Location delivery info */
.header-address-row {
  background-color: #F8FAFC;
  padding: 6px 14px;
  border-radius: 8px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  cursor: pointer;
  border: 1px solid rgba(16, 24, 40, 0.03);
  transition: all 0.2s ease;
}

.header-address-row:hover {
  background-color: #F1F5F9;
  border-color: rgba(16, 24, 40, 0.08);
}

.address-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.pin-icon {
  color: #0066FF;
  flex-shrink: 0;
}

.address-details {
  font-size: 12.5px;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.address-prefix {
  font-weight: 700;
  color: #0F172A;
}

.address-location {
  color: #64748B;
}

.arrow-icon {
  color: #64748B;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.header-address-row:hover .arrow-icon {
  transform: translateY(1px);
}

/* Row 4: Search bar with submit button */
.header-search-row {
  padding: 6px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search-row .search-container {
  display: flex !important;
  flex-grow: 1;
  max-width: 100% !important;
  margin: 0 !important;
  position: relative;
}

.search-bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  transition: all 0.2s ease;
  width: 100%;
}

.search-bar-inner:focus-within {
  border-color: #0066FF;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.search-inside-icon {
  position: absolute;
  left: 14px;
  color: #94A3B8;
  pointer-events: none;
}

.mic-inside-icon {
  position: absolute;
  right: 14px;
  color: #94A3B8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mic-inside-icon:hover {
  color: #0066FF;
}

.header-search-row .search-input {
  width: 100% !important;
  height: 44px !important;
  border: none !important;
  background: transparent !important;
  padding-left: 42px !important;
  padding-right: 16px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  color: #0F172A !important;
  box-shadow: none !important;
}

.header-search-row .search-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.search-submit-btn {
  background-color: #0066FF;
  color: #FFFFFF;
  border: none;
  padding: 0 20px;
  height: 44px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 102, 255, 0.12);
  flex-shrink: 0;
}

.search-submit-btn:hover {
  background-color: #0052CC;
  box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2);
  transform: translateY(-1px);
}

/* ——— Flipkart-Style Sticky Search Row (Sticks Natively to Top) ——— */
.header-search-row {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1.5px solid rgba(16, 24, 40, 0.06);
  padding: 8px 0;
  width: 100%;
  transition: 
    padding 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-bottom-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-search-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

/* Default state: hide scroll-only elements */
.header-search-row .island-logo-k,
.header-search-row .island-cart-trigger {
  display: none !important;
}

/* Stuck state: when scrolled down */
.header-search-row.stuck {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08) !important;
  border-bottom-color: transparent;
  padding: 6px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-search-row.stuck .island-logo-k {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #0066FF;
  color: #FFFFFF !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.15);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.header-search-row.stuck .island-logo-k:hover {
  background-color: #0052CC;
  transform: scale(1.05);
}

.header-search-row.stuck .island-cart-trigger {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  color: #0F172A;
  padding: 0;
  flex-shrink: 0;
}

.header-search-row.stuck .island-cart-trigger:hover {
  background-color: #0066FF;
  border-color: #0066FF;
  color: #FFFFFF;
  transform: scale(1.05);
}

.header-search-row.stuck .island-cart-trigger .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #FF3B30;
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.header-search-row.stuck .search-container {
  max-width: 100% !important;
  margin: 0 !important;
  flex-grow: 1;
}

.header-search-row.stuck .search-bar-inner {
  border-radius: 999px !important;
  background-color: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
}

.header-search-row.stuck .search-bar-inner:focus-within {
  background-color: #FFFFFF !important;
  border-color: #0066FF !important;
}

.header-search-row.stuck .search-input {
  height: 38px !important;
  font-size: 13px !important;
  border-radius: 999px !important;
}

.header-search-row.stuck .search-submit-btn {
  display: none !important; /* Hide submit button inside sticky state */
}

/* Mobile sticky header and layout override */
@media (max-width: 767px) {
  .main-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #d8e9f3 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    padding: 8px 0 !important;
    height: auto !important;
  }
  
  .header-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    row-gap: 8px !important;
    padding: 0 16px !important;
    height: auto !important;
  }

  .logo-group {
    order: 1 !important;
  }

  .header-utilities {
    order: 2 !important;
    gap: 16px !important;
  }

  .search-container {
    order: 3 !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .search-submit-btn {
    background-color: transparent !important;
    color: #4b5563 !important;
    box-shadow: none !important;
    padding: 0 12px !important;
    height: 100% !important;
    border-radius: 0 12px 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  .search-submit-btn:hover {
    transform: none !important;
  }
  .search-submit-btn svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #334155 !important;
    stroke-width: 2.5px !important;
  }

  .nav-menu {
    display: none !important;
  }
  
  /* Disable transitions on mobile to prevent height jumping and glitches */
  .main-header, 
  .main-header .logo-group, 
  .main-header .brand-logo, 
  .main-header .search-container, 
  .main-header .search-input, 
  .main-header .header-utilities, 
  .main-header .header-utilities svg {
    transition: none !important;
  }
}



/* ——— Core Header Layout & Transitions ——— */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  margin: 0 auto;
  transition: 
    padding-left 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
    padding-right 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
    gap 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo, #site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: flex-start;
}

.logo img, #site-logo img {
  height: 38px;
  width: auto;
  transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo:not(.brand-logo) span:first-child,
#site-logo:not(.brand-logo) span:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #1463FF;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  transition: font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo:not(.brand-logo) span:last-child,
#site-logo:not(.brand-logo) span:last-child {
  font-size: 7.5px;
  font-weight: 600;
  color: #98A2B3;
  letter-spacing: 0.02em;
  margin-top: 1px;
  text-transform: lowercase;
  display: block;
  opacity: 1;
  max-height: 12px;
  overflow: hidden;
  padding-left: 0.55em;
  width: calc(100% - 0.2em);
  text-align: justify;
  text-align-last: justify;
  transition: 
    opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
    max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
    margin-top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ——— Reusable Brand Logo ——— */
.brand-logo {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  position: relative !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  color: #0066FF !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  font-size: 32px !important;
  margin-bottom: 6.5px !important;
  transition: font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1), margin-bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.brand-logo .logo-body {
  position: relative !important;
  display: inline-block !important;
}

.brand-logo .logo-tagline {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -6.5px !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  color: #98A2B3 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  text-align: justify !important;
  text-align-last: justify !important;
  display: block !important;
  white-space: nowrap !important;
  text-transform: lowercase !important;
  opacity: 1 !important;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.brand-logo sup {
  font-size: 8px !important;
  font-weight: 700 !important;
  color: #0066FF !important;
  margin-left: 0.5px !important;
  vertical-align: super !important;
}

/* Scroll Scaling for brand-logo - disabled */
.main-header.scrolled .brand-logo {
  font-size: 28px !important;
  margin-bottom: 6px !important;
}

.main-header.scrolled .brand-logo .logo-tagline {
  opacity: 1 !important;
  pointer-events: auto;
}

/* Footer Specific Brand Logo Overrides */
.footer-logo {
  font-size: 32px !important;
  margin-bottom: 6.5px !important;
}

.footer-logo .logo-tagline {
  font-size: 10px !important;
  bottom: -6.5px !important;
  color: #cbd5e1 !important;
}

.footer-logo sup {
  font-size: 8px !important;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: gap 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.categories-dropdown {
  position: relative;
  display: inline-block;
}

.categories-dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: #FFFFFF;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08), 0 1px 3px rgba(16, 24, 40, 0.04);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 12px;
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.categories-dropdown:hover .categories-dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.categories-dropdown-content a {
  color: var(--color-text-main);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: left;
}

.categories-dropdown-content a:hover {
  background-color: #F7F9FC;
  color: #1463FF;
}

.all-categories-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-border);
  background-color: #F7F9FC;
  padding: 6px 12px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  transition: 
    padding 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    gap 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    border-radius 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.all-categories-btn svg {
  width: 10px;
  height: 10px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-menu {
  display: none;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-main);
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary) !important;
  background-color: rgba(20, 99, 255, 0.06) !important;
}

/* Search Bar styling */
.search-container {
  display: none;
  flex: 1;
  max-width: 480px;
  margin: 0 20px;
  position: relative !important;
  z-index: 1001 !important;
  transition: 
    max-width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (min-width: 768px) {
  .search-container {
    display: block;
  }
}

.search-input {
  width: 100%;
  border-radius: 9999px;
  padding-left: 20px;
  padding-right: 50px;
  height: 40px;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  outline: none;
  background: #F7F9FC;
  color: var(--color-text-main);
  transition: 
    height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    padding-left 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    border-radius 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: var(--color-text-light);
}

.search-input:focus {
  background-color: #FFFFFF;
  border-color: #1463FF;
  box-shadow: 0 0 0 2.5px rgba(20, 99, 255, 0.1);
  outline: none;
}

.search-container button[type="submit"],
.search-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #1463FF;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 
    width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    top 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    right 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.2s ease;
}

.search-container button[type="submit"] svg,
.search-btn svg {
  width: 14px;
  height: 14px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-btn:hover {
  background-color: #2F7DFF;
}

/* Header Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: gap 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-utilities a,
.header-utilities button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  gap: 2px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: 
    font-size 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    gap 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.2s ease;
}

.header-utilities svg {
  width: 20px;
  height: 20px;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.badge {
  position: absolute;
  top: -4px;
  right: -7px;
  background-color: #1463FF;
  color: white;
  font-size: 8px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
  transition: 
    width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    top 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   5. Asymmetric Collage (Mosaic) Grid
   ========================================================================== */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 24px;
  }
}

.mosaic-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--color-bg-white);
  transition: var(--transition-normal);
  z-index: 1;
}

.mosaic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 74, 0.85) 0%, rgba(10, 30, 74, 0.2) 70%, rgba(10, 30, 74, 0.05) 100%);
  z-index: -1;
  transition: var(--transition-normal);
}

.mosaic-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: var(--transition-slow);
}

.mosaic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mosaic-card:hover .mosaic-card-img {
  transform: scale(1.05);
}

.mosaic-card:hover::before {
  background: linear-gradient(to top, rgba(30, 64, 175, 0.9) 0%, rgba(10, 30, 74, 0.3) 75%, rgba(10, 30, 74, 0.1) 100%);
}

.mosaic-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 8px;
}

.mosaic-card-link {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mosaic-card-link svg {
  transition: var(--transition-fast);
}

.mosaic-card:hover .mosaic-card-link svg {
  transform: translateX(4px);
}

/* Asymmetric Grid Spans */
@media (min-width: 1024px) {
  .mosaic-card {
    height: auto; /* Allow grid items to dictate their heights based on span */
  }
  .mosaic-span-2-2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .mosaic-span-2-1 {
    grid-column: span 2;
    grid-row: span 1;
  }
  .mosaic-span-1-2 {
    grid-column: span 1;
    grid-row: span 2;
  }
}

/* ==========================================================================
   6. Premium Product Card & Skeleton Components
   ========================================================================== */
.product-card {
  background-color: #FFFFFF !important;
  border-radius: 4px !important;
  border: 1.5px solid #E2E8F0 !important;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
}

.product-card:hover {
  transform: translateY(-4px) !important;
  border-color: #CBD5E1 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge.sale {
  background-color: var(--color-error);
}

.product-image-container {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-alt);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Product Image Slideshow on Hover ── */
/* All gallery images are stacked; only .gallery-active is visible */
.product-gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.97);
}
.product-gallery-img.gallery-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* When hovering and slideshow is active, fade out the main image */
.product-card.slideshow-active .product-image:not(.product-gallery-img) {
  opacity: 0;
  transform: scale(0.97);
}

/* Progress dots at the bottom of the image */
.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .gallery-dots {
  opacity: 1;
}
.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
/* Increase tap target size for dots without visual change */
.gallery-dot::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}
.gallery-dot.dot-active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* Fallback: cards without gallery still scale on hover */
.product-card:not(:has(.product-gallery-img)):hover .product-image {
  transform: scale(1.04);
}

/* Sales count badge */
.product-sales-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  color: #475569;
  margin-top: 0;
  margin-bottom: 5px;
}
.product-sales-badge svg {
  width: 12px;
  height: 12px;
  color: #22C55E;
}

.product-card-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-fast);
  z-index: 10;
}

.product-card:hover .product-card-actions {
  transform: scale(1.03);
}

.product-action-btn {
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid var(--color-border);
}

.product-action-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
}

.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 10.5px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--color-text-main);
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto;
  max-height: 36px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 0;
  margin-bottom: 4px;
  color: var(--color-warning);
}
.product-rating svg {
  color: var(--color-warning);
}
.product-rating span {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price-current {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: #003366;
}

/* Pricing text overrides - Deep Blue color theme site-wide */
.price-current,
.deal-price-current,
.cart-item-price,
.split-bestseller-item .item-price,
.discovery-card-price,
.collage-card-price,
.search-trending-price,
.search-autocomplete-price,
.sticky-atc-bar-price,
#sticky-price-display,
#p-price-display,
.purchase-price-value,
#purchase-widget-price,
.small-product-price,
#page-subtotal-val,
#cart-summary-subtotal-val,
#cart-summary-total-val,
.row-item-total,
.summary-item-row > span:last-child,
.order-review-row > span:last-child,
#summary-subtotal,
#summary-tax,
#summary-grand-total,
#checkout-summary-total-val,
#checkout-summary-subtotal-val,
.cart-item-details-right .price-block span,
.cart-summary-row span[id*="total-val"],
.cart-summary-row span[id*="subtotal-val"],
.order-review-row.total span,
.checkout-summary-card span[style*="color-accent"],
.trending-card-price,
.price-now,
.deal-price-line .price-now {
  color: #003366 !important;
}

/* Dynamically injected Amazon-style savings text rules */
.savings-text-dynamic {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #CC0C39 !important;
  margin-top: 3px !important;
  line-height: 1.3 !important;
  display: none !important;
}

.price-old {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* Two-Stage Skeleton Loading Animation */
/* Elegant Skeleton Shimmer loading system */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-card {
  background-color: #FFFFFF !important;
  border-radius: 4px !important;
  border: 1.5px solid #E2E8F0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
  padding: 0 !important; /* Matches product-card exactly */
  box-sizing: border-box !important;
  height: auto !important;
}

.skeleton-spinner-overlay {
  display: none !important;
}

.skeleton-el, .skeleton-image, .skeleton-img, .skeleton-line {
  background-image: linear-gradient(90deg, #f0f4f8 25%, #dbeafe 50%, #f0f4f8 75%) !important;
  background-size: 200% 100% !important;
  animation: shimmer 2.6s infinite linear !important;
  border-radius: 6px !important;
}

.skeleton-img, .skeleton-image {
  aspect-ratio: 1 !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 4px !important;
}

.skeleton-info {
  padding: 0 !important; /* Spaced by parent card gap */
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  flex-grow: 1 !important;
}

.skeleton-text-category, .skeleton-category {
  height: 10px !important;
  width: 35% !important;
}

.skeleton-text-title, .skeleton-title {
  height: 14px !important;
  width: 85% !important;
  margin-bottom: 4px !important;
}

.skeleton-text-rating, .skeleton-rating {
  height: 12px !important;
  width: 50% !important;
  margin-bottom: 4px !important;
}

.skeleton-price-row, .skeleton-price {
  height: 16px !important;
  width: 40% !important;
  margin-top: auto !important;
}

.skeleton-action-btn, .skeleton-button {
  display: none !important; /* Hide action button to match product card styles */
}

/* ==========================================================================
   7. Buttons & Form Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  text-align: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-white);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  border: 1px solid var(--color-border-dark);
}

.btn-secondary:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-text-main);
}

.btn-dark {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.btn-dark:hover {
  background-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: var(--text-sm);
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

/* ==========================================================================
   8. WooCommerce Single Product Layout Features
   ========================================================================== */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Gallery Stack */
.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-gallery-view {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.main-gallery-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-item {
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  background-color: var(--color-bg-white);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-fast);
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--color-accent);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Meta & Variation Selectors */
.product-meta-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-title-detail {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
}

.product-review-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.stars {
  color: var(--color-warning);
  display: flex;
  gap: 2px;
}

.variation-section {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variation-pill {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-dark);
  transition: var(--transition-fast);
}

.variation-pill.active,
.variation-pill:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent-soft);
  color: var(--color-accent);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg-white);
  box-shadow: 0 0 0 1px var(--color-border-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.color-swatch.active,
.color-swatch:hover {
  box-shadow: 0 0 0 2px var(--color-accent);
}

/* Add to Cart Actions */
.cart-actions-wrapper {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
  margin: 8px 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: var(--transition-fast);
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  outline: none !important;
}

.qty-btn:hover {
  background-color: var(--color-bg-alt);
}

.qty-input {
  width: 44px;
  text-align: center;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Sticky Add to Cart Bar (Responsive Mobile View) */
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.sticky-atc-bar.visible {
  transform: translateY(0);
}

.sticky-atc-left {
  display: none;
}

@media (min-width: 640px) {
  .sticky-atc-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.sticky-atc-bar-title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-main);
}

.sticky-atc-bar-price {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
}

/* Product Info Tabs */
.tabs-container {
  margin-top: 64px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.tab-nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.tab-trigger {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  padding-bottom: 12px;
  position: relative;
}

.tab-trigger.active {
  color: var(--color-primary);
}

.tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   9. Modern Popover Sliding Drawer & Backdrop (Side-Drawer Cart)
   ========================================================================== */
.drawer-wrapper {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  transition: visibility var(--transition-normal);
}

.drawer-wrapper.open {
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 30, 74, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.drawer-wrapper.open .drawer-backdrop {
  opacity: 1;
}

.drawer-sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.drawer-wrapper.open .drawer-sheet {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-primary);
}

.drawer-close-btn {
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-text-main);
}

.drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  overscroll-behavior: contain;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-main);
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-item-price {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: var(--text-sm);
}

.cart-summary-total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-primary);
  margin-top: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

/* ==========================================================================
   10. Cart Page & Checkout Column Wrapper Layout
   ========================================================================== */
.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .cart-page-grid {
    grid-template-columns: 1.6fr 0.9fr;
  }
}

.cart-table-wrapper {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th, 
.cart-table td {
  padding: 16px 24px;
  text-align: left;
}

.cart-table th {
  background-color: var(--color-bg-main);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.cart-table td {
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.checkout-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-primary);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.sticky-order-review {
  position: sticky;
  top: 100px;
}

.order-review-table {
  width: 100%;
  margin-bottom: 20px;
}

.order-review-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.order-review-row.total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-primary);
  border-bottom: none;
}

.payment-gateways {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gateway-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gateway-item:hover,
.gateway-item.active {
  border-color: var(--color-accent);
  background-color: var(--color-accent-soft);
}

.gateway-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: var(--text-sm);
}

.gateway-description {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 8px;
  display: none;
}

.gateway-item.active .gateway-description {
  display: block;
}

/* ==========================================================================
   11. Footer Components
   ========================================================================== */
.main-footer {
  background-color: var(--color-charcoal);
  color: var(--color-bg-white);
  margin-top: auto;
  border-top: 4px solid var(--color-accent);
}

.footer-top {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
}

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

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.footer-links a:hover {
  color: var(--color-bg-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: var(--text-xs);
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   12. Multi-Category Marketplace UI Upgrades
   ========================================================================== */

/* Category badges scroll bar */
.category-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}

.category-scroll-container::-webkit-scrollbar {
  display: none;
}

.category-badge-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.category-badge-item span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.category-badge-item.active span,
.category-badge-item:hover span {
  color: var(--color-accent);
}

.category-divider {
  display: inline-block;
  align-self: center;
  width: 16px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Hero Section Split Layout (70% Carousel, 30% Deals) */
.hero-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .hero-grid-wrapper {
    grid-template-columns: 7fr 3fr;
  }
}

.hero-carousel-container {
  position: relative;
  background-color: var(--color-charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 40px;
  color: var(--color-bg-white);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 44, 44, 0.9) 0%, rgba(44, 44, 44, 0.4) 60%, rgba(44, 44, 44, 0.1) 100%);
  z-index: -1;
}

.carousel-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.carousel-tag {
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.carousel-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.carousel-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-nav .dot.active {
  background-color: var(--color-bg-white);
  transform: scale(1.2);
}

.hero-sidebar-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.flash-deal-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  flex-grow: 1;
}

.flash-deal-box:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deal-badge {
  background-color: var(--color-error);
  color: var(--color-bg-white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.deal-timer {
  font-family: monospace;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-accent);
  background-color: var(--color-accent-soft);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.deal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  margin-top: 4px;
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.deal-price-current {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--color-accent);
}

.deal-price-old {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-decoration: line-through;
}

.deal-btn {
  padding: 8px 16px;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-top: auto;
}

/* Buzzing Live Tabs Layout */
.buzzing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.buzzing-tab-trigger {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.buzzing-tab-trigger.active,
.buzzing-tab-trigger:hover {
  background-color: var(--color-accent-soft);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Mobile viewport adjustments for low-friction Cart actions */
@media (max-width: 767px) {
  .product-card-actions {
    opacity: 1;
    transform: translateY(0);
    bottom: 8px;
    right: 8px;
  }
}

/* ==========================================================================
   13. Autoplay Product Slider & Carousel Layouts
   ========================================================================== */
.product-slider-section {
  position: relative;
  background-color: var(--color-bg-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.slider-container-outer {
  position: relative;
  display: flex;
  align-items: center;
}

.product-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 12px 4px;
}

.product-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  min-height: 280px;
}

/* Responsive slide dimensions — skeleton-card inherits the same sizing */
.product-slide-card,
.product-slider-track .skeleton-card {
  flex: 0 0 calc((100% - 24px) / 2) !important;
  width: calc((100% - 24px) / 2) !important;
}

@media (min-width: 768px) {
  .product-slide-card,
  .product-slider-track .skeleton-card {
    flex: 0 0 calc((100% - 24px * 2) / 3) !important;
    width: calc((100% - 24px * 2) / 3) !important;
  }
}

@media (min-width: 1024px) {
  .product-slide-card,
  .product-slider-track .skeleton-card {
    flex: 0 0 calc((100% - 24px * 4) / 5) !important;
    width: calc((100% - 24px * 4) / 5) !important;
  }
}

@media (min-width: 1440px) {
  .product-slide-card,
  .product-slider-track .skeleton-card {
    flex: 0 0 calc((100% - 24px * 5) / 6) !important;
    width: calc((100% - 24px * 5) / 6) !important;
  }
}

/* Slider Buttons */
.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.slider-arrow-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-btn.prev {
  left: -22px;
}

.slider-arrow-btn.next {
  right: -22px;
}

/* Hide navigation arrows on smaller touch screens where swiping is natural */
@media (max-width: 767px) {
  .slider-arrow-btn {
    display: none;
  }
}

/* Slider navigation dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot-item {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-border-dark);
  transition: var(--transition-normal);
}

.slider-dot-item.active {
  background-color: var(--color-primary);
  width: 20px;
}

/* ==========================================================================
   14. Premium Navigation Dropdown & Autocomplete Search Styles
   ========================================================================== */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-wrapper .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: var(--color-bg-white);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 0;
  z-index: 150;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-wrapper:hover .nav-dropdown-content {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
  color: var(--color-text-main);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: left;
  transition: var(--transition-fast);
}

.nav-dropdown-content a:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  padding-left: 20px;
}

/* Autocomplete search results list panel styling */
.search-autocomplete-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 320px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  text-align: left;
}

.search-autocomplete-item:last-child {
  border-bottom: none;
}

.search-autocomplete-item:hover {
  background-color: var(--color-bg-alt);
}

.search-autocomplete-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.search-autocomplete-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.search-autocomplete-title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.search-autocomplete-category {
  font-size: 10px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-autocomplete-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* ==========================================================================
   15. Redesigned Premium Corporate Footer Styles
   ========================================================================== */
.main-footer-redesign {
  position: relative;
  background-color: #0b1a30; /* Premium deep navy background */
  color: #e2e8f0;
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.main-footer-redesign .container {
  max-width: var(--container-max-width);
  width: 100%;
}

/* Background Glowing Blobs */
.main-footer-redesign::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.main-footer-redesign::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, rgba(0, 102, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.footer-features-strip,
.footer-main-layout,
.footer-meta-sections,
.footer-bottom-bar {
  position: relative;
  z-index: 1;
}

.footer-features-container {
  max-width: var(--container-max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.footer-features-inner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 16px auto 32px;
  border-top: none;
}

@media (min-width: 768px) {
  .footer-features-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .features-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.feature-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #FFFFFF;
  transition: transform 0.3s ease;
}

.feature-strip-item:hover {
  transform: translateY(-2px);
}

.feature-strip-icon-circle {
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
  padding: 0;
  transition: color 0.3s ease;
}

.feature-strip-item:hover .feature-strip-icon-circle {
  color: #FFFFFF;
}

.feature-strip-content h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 4px;
  margin-top: 2px;
}

.feature-strip-content p {
  font-size: var(--text-xs);
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.feature-strip-content p + p {
  margin-top: 2px;
}

.feature-strip-item:hover .feature-strip-content p {
  color: #cbd5e1;
}

.feature-strip-content a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-strip-content a:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

.feature-strip-content a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.feature-strip-content a:hover {
  color: var(--color-primary-light);
}

.footer-main-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 48px 32px;
  margin-top: 40px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
  .footer-main-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
  }
  .footer-brand-column {
    width: 320px;
    flex-shrink: 0;
  }
}

.footer-brand-column {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: fit-content;
}

.footer-brand-text {
  font-size: var(--text-sm);
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: #cbd5e1;
  line-height: 1.5;
  text-align: left;
}

.footer-contact-item svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

@media (min-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 160px);
    max-width: none;
    width: auto;
    justify-self: auto;
    gap: 48px;
  }
}

.footer-column-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  text-align: left;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-link-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-items a {
  color: #94a3b8;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: var(--transition-fast);
  display: block;
  text-align: left;
}

.footer-link-items a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-desc {
  font-size: var(--text-xs);
  color: #94a3b8;
  line-height: 1.5;
  text-align: left;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.footer-newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: var(--text-xs);
  color: #FFFFFF;
  flex-grow: 1;
  outline: none;
  min-height: 44px;
}

.footer-newsletter-input:focus {
  border-color: var(--color-primary-light);
  background-color: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-btn {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  min-height: 44px;
}

.footer-newsletter-btn:hover {
  background-color: var(--color-primary-light);
}

.footer-meta-sections {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-meta-sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-meta-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-align: left;
}

.footer-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-pill {
  font-size: 10px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-pill:hover {
  border-color: var(--color-primary);
  color: #FFFFFF;
  background-color: rgba(0, 102, 255, 0.1);
}

.google-play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition-fast);
}

.google-play-store-btn:hover {
  border-color: #FFFFFF;
  background-color: #111111;
  transform: translateY(-2px);
}

.google-play-store-btn svg {
  color: #3bccff;
}

.play-store-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.play-store-sub {
  font-size: 8px;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.play-store-main {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.2;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  background-color: #081222;
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--text-xs);
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-bottom-flex {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   Partner Brands Logo Cloud (Infinite Scroll - Single Strip)
   ========================================================================== */

.partner-brands-section {
  background-color: #f8f9fc;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.partner-brands-section .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.partner-cloud-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #101828;
  text-align: center;
  margin-bottom: 32px;
}

.logo-scroll-track {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 8px 0;
  pointer-events: none;
}

.logo-scroll-inner {
  display: flex;
  width: max-content;
  animation: scrollLogos 75s linear infinite;
  align-items: center;
  gap: 20px;
  will-change: transform;
}

.logo-scroll-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-white);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  user-select: none;
  cursor: default;
  width: 190px;
  height: 120px;
  box-sizing: border-box;
  pointer-events: none;
}

.partner-logo-item img,
.partner-logo-item svg {
  height: 58px;
  width: auto;
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  opacity: 0.45 !important;
  filter: grayscale(100%) !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none;
}
.partner-logo-item:hover img,
.partner-logo-item:hover svg {
  opacity: 0.7 !important;
}

.partner-logo-item span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Kiwachi 2026 Premium Homepage Styles
   ========================================================================== */

/* Typography & Cleanliness defaults */
.kawachi-sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.kawachi-sec-desc {
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-top: 8px;
  max-width: 480px;
  margin-left: 0;
  margin-right: auto;
  font-weight: 500;
  text-align: left;
}

#faq .kawachi-sec-desc {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 1. Hero Section Layout */
.hero-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  min-height: 650px;
  padding: 60px 0;
  align-items: center;
  overflow: hidden;
  background-color: #FFFFFF;
}

@media (min-width: 1024px) {
  .hero-asymmetric {
    grid-template-columns: 4fr 6fr;
    gap: 64px;
  }
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.hero-badge {
  background-color: var(--color-accent-soft);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(20, 99, 255, 0.1);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline span {
  color: var(--color-primary);
}

.hero-subheading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-trust-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
}

.hero-trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid #FFFFFF;
  margin-right: -10px;
  object-fit: cover;
  background-color: #E2E8F0;
}

.hero-trust-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  font-family: var(--font-body);
}

/* Floating Discovery Wall */
.hero-right-wall {
  position: relative;
  height: 520px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-right-wall {
    height: 480px;
  }
}

.discovery-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 32px -4px rgba(16, 24, 40, 0.05), 0 4px 12px rgba(16, 24, 40, 0.02);
  width: 190px;
  padding: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  cursor: pointer;
}

@media (max-width: 640px) {
  .discovery-card {
    width: 140px;
    padding: 8px;
  }
}

.discovery-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 20px 48px -6px rgba(16, 24, 40, 0.08);
  z-index: 10;
  border-color: rgba(20, 99, 255, 0.15);
}

.discovery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  background-color: var(--color-bg-alt);
  margin-bottom: 10px;
}

.discovery-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-error);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.discovery-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.discovery-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.discovery-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
}

.discovery-card-oldprice {
  font-size: 10px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.discovery-card-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-warning);
  font-size: 10px;
  font-weight: 700;
}

/* Asymmetric coordinates for discovery wall elements */
.d-card-1 { top: 4%; left: 4%; transform: rotate(-3deg); animation: float-slow-1 8s ease-in-out infinite; }
.d-card-2 { top: 8%; left: 45%; transform: rotate(2deg); animation: float-slow-2 9s ease-in-out infinite; }
.d-card-3 { top: 22%; left: 70%; transform: rotate(-1deg); animation: float-slow-3 7s ease-in-out infinite; }
.d-card-4 { top: 48%; left: 8%; transform: rotate(1deg); animation: float-slow-2 8.5s ease-in-out infinite; }
.d-card-5 { top: 54%; left: 42%; transform: rotate(-2deg); animation: float-slow-3 7.5s ease-in-out infinite; }
.d-card-6 { top: 56%; left: 74%; transform: rotate(3deg); animation: float-slow-1 9.5s ease-in-out infinite; }

@media (max-width: 640px) {
  .d-card-1 { top: 4%; left: 2%; }
  .d-card-2 { top: 6%; left: 52%; }
  .d-card-3 { top: 24%; left: 35%; }
  .d-card-4 { top: 48%; left: 4%; }
  .d-card-5 { top: 52%; left: 54%; }
  .d-card-6 { display: none; }
}

@keyframes float-slow-1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes float-slow-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}
@keyframes float-slow-3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}

/* 2. Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #FFFFFF;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.trust-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* 3. Shop By Category */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.category-card:hover {
  background-color: #FFFFFF;
  border-color: rgba(20, 99, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.category-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-charcoal);
  text-align: center;
}

/* 4. Flash Deals Layout */
.flash-deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .flash-deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flash-deal-premium-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.flash-deal-premium-card:hover {
  border-color: rgba(20, 99, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.deal-header-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.deal-badge-premium {
  background: var(--color-error);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-box {
  display: flex;
  gap: 4px;
  align-items: center;
}

.countdown-unit {
  background: var(--color-bg-alt);
  color: var(--color-charcoal);
  font-family: monospace;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

.countdown-colon {
  font-weight: 700;
  color: var(--color-text-muted);
}

.deal-img-wrapper {
  aspect-ratio: 1.1;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.deal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.flash-deal-premium-card:hover .deal-img-wrapper img {
  transform: scale(1.05);
}

.deal-stock-bar-wrapper {
  margin-top: 16px;
  margin-bottom: 24px;
}

.deal-stock-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.deal-stock-progress-bg {
  height: 6px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.deal-stock-progress-bar {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

/* 5. Value Proposition / Feature Grid */
.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .value-prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-prop-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-prop-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.value-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.v-blue { background-color: #F0F5FF; }
.v-green { background-color: #EDFDF4; }
.v-amber { background-color: #FEF6E6; }
.v-purple { background-color: #F8F5FE; }

.value-prop-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.v-blue .value-prop-icon { color: var(--color-primary); }
.v-green .value-prop-icon { color: var(--color-success); }
.v-amber .value-prop-icon { color: var(--color-warning); }
.v-purple .value-prop-icon { color: #8F59FA; }

.value-prop-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.value-prop-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* 6. Statistics / Social Proof */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.stat-card {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 7. Premium Newsletter Gradient Section */
.newsletter-gradient-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #004ecc 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .newsletter-gradient-card {
    padding: 48px 24px;
  }
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.newsletter-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form-wrapper {
    flex-direction: row;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.newsletter-input-field {
  width: 100%;
  background: #FFFFFF;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  outline: none;
}

@media (min-width: 640px) {
  .newsletter-input-field {
    background: transparent;
    color: #FFFFFF;
  }
  .newsletter-input-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
}

.newsletter-submit-btn {
  background-color: #FFFFFF;
  color: var(--color-primary);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.newsletter-submit-btn:hover {
  background-color: var(--color-bg-alt);
  transform: scale(1.02);
}

@media (min-width: 640px) {
  .newsletter-submit-btn {
    background-color: #FFFFFF;
    color: var(--color-primary);
  }
}

/* Redesigned Search autocomplete results */
.search-autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  margin-top: 8px;
  z-index: 200;
  overflow: hidden;
  display: none;
}

.search-autocomplete-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.2s ease;
}

.search-autocomplete-item:last-child {
  border-bottom: none;
}

.search-autocomplete-item:hover {
  background-color: var(--color-bg-alt);
}

.search-autocomplete-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-autocomplete-info {
  flex-grow: 1;
  min-width: 0;
}

.search-autocomplete-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-autocomplete-category {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
}

.search-autocomplete-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-left: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   2026 Redesign Layout Styles
   ========================================================================== */

/* Top bar solid blue */
.top-bar-gradient {
  background: #1463FF;
  color: #FFFFFF;
  font-size: 11px;
  font-family: var(--font-body);
  text-align: center;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Header style adjustments — overridden by main-header above */
/* height is now controlled by --header-height: 64px */

/* Blue gradient text */
.gradient-text {
  background: linear-gradient(90deg, #1463FF, #4D8CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Pill badge styling */
.hero-badge-pill {
  background-color: #EEF5FF;
  color: #1463FF;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}



.hero-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-right-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Premium Card Showcase Collage */
.hero-collage-wrapper {
  position: relative;
  width: 100%;
  max-width: 780px;
  padding: 40px 20px;
  z-index: 2;
}

.hero-collage-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
  width: 100%;
}

.hero-collage-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 640px) {
  .hero-collage-row {
    grid-template-columns: 1fr;
  }
  .hero-collage-grid {
    grid-template-rows: none;
    gap: 20px;
  }
}

/* Premium Product Cards in Hero */
.hero-product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.03), 0 1px 3px rgba(16, 24, 40, 0.01);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(16, 24, 40, 0.02);
  min-height: 250px;
}

.hero-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(16, 24, 40, 0.06), 0 1px 4px rgba(16, 24, 40, 0.02);
}

.hero-card-img-container {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12px;
}

.hero-card-img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.hero-product-card:hover .hero-card-img {
  transform: scale(1.04);
}

.hero-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667085;
  transition: all 0.2s ease;
  z-index: 5;
}

.hero-card-wishlist:hover {
  background: #fff0f2;
  color: #f04438;
}

.hero-card-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #101828;
  line-height: 1.3;
  margin-top: auto;
  text-align: center;
}

/* Center Floating Badge in Hero Bottom Row */
.hero-floating-badge {
  background: linear-gradient(135deg, #1463FF 0%, #4D8CFF 100%);
  border-radius: 24px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(20, 99, 255, 0.15);
  min-height: 250px;
}

.hero-floating-badge-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-floating-badge-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Abstract Background Shape behind Cards */
.hero-abstract-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(20, 99, 255, 0.04) 0%, rgba(20, 99, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Category Showcase Section */
.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .category-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-showcase-card {
  height: 320px;
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 24, 40, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.category-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cat-showcase-blue { background-color: #EEF5FF; }
.cat-showcase-neutral { background-color: #F7F9FC; }
.cat-showcase-blush { background-color: #FFF0F2; }
.cat-showcase-warm { background-color: #FAF4EE; }

.category-info-wrap h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.category-info-wrap a {
  font-size: 12px;
  font-weight: 700;
  color: #1463FF;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.category-showcase-card:hover .category-info-wrap a {
  transform: translateX(4px);
}

.category-showcase-card img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-showcase-card:hover img {
  transform: scale(1.05);
}

.category-circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #1463FF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: all 0.3s ease;
}

.category-showcase-card:hover .category-circle-icon {
  background-color: #1463FF;
  color: #FFFFFF;
}

/* Horizontal sliders Arrow Customizations */
.slider-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--color-charcoal);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 15;
}

.slider-arrow-btn:hover {
  background-color: #1463FF;
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-btn.prev {
  left: -26px;
}

.slider-arrow-btn.next {
  right: -26px;
}

/* Deal of the Day Banner - 280px Height */
.deal-podium-banner {
  background: linear-gradient(135deg, #1463FF 0%, #4D8CFF 100%);
  border-radius: 32px;
  height: 280px;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}

.deal-banner-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 35%;
  z-index: 10;
}

.deal-tagline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.deal-title-2026 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Floating White Podium Renders */
.deal-podium-rendering {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.podium-platform {
  width: 380px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.1);
  position: absolute;
  bottom: 16px;
  z-index: 1;
}

.podium-products {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: absolute;
  bottom: 32px;
  width: 100%;
  z-index: 2;
}

.podium-products img {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(16, 24, 40, 0.15));
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background-color: #FFFFFF;
  padding: 8px;
}

.podium-prod-1 {
  width: 140px;
  transform: translateX(20px) rotate(-5deg);
}

.podium-prod-2 {
  width: 170px;
  z-index: 5;
  transform: translateY(10px) scale(1.05);
}

.podium-prod-3 {
  width: 130px;
  transform: translateX(-20px) rotate(5deg);
}

/* Countdown Timer Right */
.deal-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 30%;
  z-index: 10;
}

.countdown-label-premium {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.countdown-timer-2026 {
  display: flex;
  gap: 8px;
  align-items: center;
}

.countdown-card-2026 {
  background-color: #FFFFFF;
  color: var(--color-charcoal);
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.countdown-card-2026 span.val {
  font-family: monospace;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.countdown-card-2026 span.lbl {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Stats Bar - 120px Height */
.stats-bar-gradient {
  background: linear-gradient(90deg, #1463FF 0%, #4D8CFF 100%);
  color: #FFFFFF;
  height: 120px;
  display: flex;
  align-items: center;
  border-radius: 0; /* Full Width section */
}

.stats-grid-2026 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  align-items: center;
}

@media (min-width: 768px) {
  .stats-grid-2026 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-item-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
}

.stat-item-2026 svg {
  color: #FFFFFF;
  flex-shrink: 0;
}

.stat-item-info-2026 h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.stat-item-info-2026 p {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

/* General spacing adjustment for section titles */
.kawachi-sec-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-charcoal);
  letter-spacing: -0.03em;
}

.kawachi-sec-desc {
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-top: 4px;
  margin-left: 0;
  margin-right: auto;
  font-weight: 500;
  text-align: left;
}

/* Product Slide Card 24px border-radius override */
.product-slide-card {
  border-radius: 24px !important;
}

/* Wishlist Button Overlay styling */
.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}

.product-wishlist-btn:hover {
  background-color: #FFFFFF;
  color: #F04438; /* Red heart on hover */
  transform: scale(1.08);
}

/* Category Cards Row Redesign */
.category-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .category-grid-2026 {
    grid-template-columns: 1fr;
  }
}

.category-card-2026 {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 40, 0.05);
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.02);
  display: flex;
  flex-direction: column;
  height: 380px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.category-card-2026:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  border-color: rgba(20, 99, 255, 0.1);
}

.category-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.category-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef5ff;
  color: #1463FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-count {
  font-size: 11px;
  font-weight: 700;
  color: #667085;
  background: #f8f9fc;
  padding: 4px 8px;
  border-radius: 100px;
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
}

.category-card-explore {
  font-size: 12px;
  font-weight: 700;
  color: #1463FF;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.category-card-explore svg {
  transition: transform 0.2s ease;
}

.category-card-2026:hover .category-card-explore svg {
  transform: translateX(4px);
}

.category-card-products {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  height: 140px;
  align-items: center;
  justify-content: center;
}

.category-card-product-img {
  width: 45%;
  height: 100%;
  object-fit: contain;
  background: #f8f9fc;
  border-radius: 12px;
  padding: 8px;
  transition: transform 0.3s ease;
}

.category-card-2026:hover .category-card-product-img {
  transform: scale(1.03);
}

/* Service Features Row */
.features-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .features-grid-2026 {
    grid-template-columns: 1fr;
  }
}

.feature-box-2026 {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(16, 24, 40, 0.05);
  box-shadow: 0 4px 15px rgba(16, 24, 40, 0.02);
  transition: all 0.25s ease;
}

.feature-box-2026:hover {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  transform: translateY(-2px);
}

.feature-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef5ff;
  color: #1463FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box-icon svg {
  width: 26px;
  height: 26px;
}

.feature-box-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #101828;
}

.feature-box-desc {
  font-size: 12.5px;
  color: #667085;
  margin-top: 3px;
}

/* Testimonials Scrolling Marquee Styling */
.testimonials-scroll-track {
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials-scroll-inner {
  display: flex;
  width: max-content;
  animation: scrollTestimonials 70s linear infinite;
  will-change: transform;
}

.testimonials-scroll-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.testimonials-scroll-inner:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card-2026 {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  width: 320px;
  flex-shrink: 0;
}

.testimonial-card-2026:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-header-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background-color: rgba(20, 99, 255, 0.06); /* Brand light blue background */
  border-bottom: 1px solid rgba(20, 99, 255, 0.05);
}

.testimonial-body-content {
  padding: 12px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--color-warning); /* Premium warm orange star color */
  margin-bottom: 8px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #4b5563; /* gray-600 */
  line-height: 1.6;
  margin-bottom: 4px;
  flex: 1;
}

.testimonial-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-user-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #1f2937; /* gray-800 */
  display: block;
}

.testimonial-user-role {
  font-size: 12px;
  color: #4b5563; /* gray-600 */
  display: block;
  margin-top: 1px;
}

.testimonial-readmore-link {
  color: #FF532E; /* matching orange-red from demo.tsx */
  text-decoration: underline;
  font-size: 13.5px;
  font-weight: 600;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.testimonial-readmore-link:hover {
  opacity: 0.8;
}

/* FAQ Accordion Styling */
.faq-list-2026 {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-2026 {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
}

.faq-item-2026.open {
  border-color: rgba(15, 23, 42, 0.16) !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
}

.faq-item-2026:hover:not(.open) {
  border-color: rgba(15, 23, 42, 0.16) !important;
  background: #fafafa !important;
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.faq-item-2026.open .faq-question-btn {
  background: transparent;
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04) !important;
}

.faq-question-btn:hover {
  color: #1a365d;
}

.faq-item-2026.open .faq-question-btn:hover {
  color: #0f172a;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff !important;
}

.faq-answer-content {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

.faq-icon-svg {
  transition: all 0.3s ease;
  color: #64748b !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-sizing: content-box !important;
  padding: 0 !important;
  display: inline-block !important;
}

.faq-question-btn:hover .faq-icon-svg {
  color: #0f172a !important;
  background-color: transparent !important;
}

.faq-item-2026.open .faq-icon-svg {
  transform: rotate(45deg);
  color: #0f172a !important;
  background-color: transparent !important;
}


/* ==========================================================================
   20. Redesign & Mockup Upgrades (temp17.png Layout)
   ========================================================================== */

/* Header & Logo Redesign */
#site-header {
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.logo-group {
  gap: 20px;
}

#site-logo:not(.brand-logo) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

#site-logo:not(.brand-logo) span:first-child {
  font-size: 24px;
  color: #1463FF;
}

#site-logo:not(.brand-logo) span:last-child {
  margin-top: 1px;
  font-size: 8px;
  color: #98A2B3;
  text-transform: lowercase;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-left: 0.55em;
  width: calc(100% - 0.2em);
  text-align: justify;
  text-align-last: justify;
  opacity: 1;
}

/* Custom Search in Header */
.search-container {
  max-width: 520px;
}

.search-input {
  border: 1.5px solid #E4E7EC;
  background-color: #F8F9FC;
  height: 44px;
  border-radius: 9999px;
  padding-left: 20px;
  font-size: 13.5px;
}

.search-input:focus {
  border-color: #1463FF;
  background-color: #FFFFFF;
}

.search-container button[type="submit"] {
  background-color: #1463FF;
  width: 38px;
  height: 38px;
  top: 3px;
  right: 3px;
  border-radius: 50%;
}

.header-utilities {
  gap: 24px;
}

.header-utilities a,
.header-utilities button {
  font-size: 11px;
  color: #344054;
  gap: 4px;
}

.header-utilities svg {
  width: 22px;
  height: 22px;
  color: #344054;
}

/* Redesigned Announcement Bar */
.top-bar-redesign {
  background-color: #1463FF;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.top-bar-redesign .arrow-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-redesign .arrow-btn:hover {
  color: #FFFFFF;
}

/* Hero Box Layout */
.hero-box-section {
  background-color: #F8F9FC;
  padding: 40px 0;
  border-bottom: 1px solid #EAECF0;
}

.hero-box-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #EAECF0;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(16, 24, 40, 0.03);
}

@media (min-width: 1024px) {
  .hero-box-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-box-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-box-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #101828;
  letter-spacing: -0.03em;
}

.hero-box-left p {
  font-size: var(--text-md);
  color: #667085;
  margin-bottom: 8px;
}

/* Hero Search Input Wrapper */
.hero-search-wrapper {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.hero-search-input {
  width: 100%;
  height: 52px;
  border-radius: 9999px;
  border: 1.5px solid #D0D5DD;
  background-color: #FFFFFF;
  padding-left: 24px;
  padding-right: 60px;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.hero-search-input:focus {
  border-color: #1463FF;
  box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.1);
}

.hero-search-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 44px;
  height: 44px;
  background-color: #1463FF;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero-search-btn:hover {
  background-color: #2F7DFF;
}

/* Popular tags */
.hero-popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #667085;
}

.hero-tag-pill {
  background-color: #F2F4F7;
  color: #344054;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero-tag-pill:hover {
  background-color: #E4E7EC;
  color: #101828;
}

/* Hero features */
.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 12px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #344054;
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #EEF5FF;
  color: #1463FF;
  border-radius: 50%;
}

.hero-box-right {
  display: flex;
  justify-content: center;
}

/* App Download Promo Card */
.app-promo-card {
  width: 100%;
  max-width: 320px;
  background: linear-gradient(135deg, #EEF2F6 0%, #FFFFFF 100%);
  border-radius: 20px;
  border: 1px solid #E4E7EC;
  padding: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.app-promo-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: #101828;
}

.app-promo-desc {
  font-size: 12px;
  color: #667085;
}

.app-phone-wrapper {
  position: relative;
  width: 120px;
  height: 140px;
  margin-top: 8px;
}

.app-phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-download-btn {
  background-color: #1463FF;
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.app-download-btn:hover {
  background-color: #2F7DFF;
}

/* Shop by Department Grid */
.department-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAECF0;
}

.dept-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.dept-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #101828;
}

.dept-link {
  font-size: 14px;
  font-weight: 700;
  color: #1463FF;
  display: flex;
  align-items: center;
  gap: 4px;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .department-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .department-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.department-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.department-card:hover {
  border-color: #1463FF;
  box-shadow: 0 4px 12px rgba(20, 99, 255, 0.05);
  transform: translateY(-2px);
}

.department-icon {
  width: 44px;
  height: 44px;
  background-color: #F8F9FC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1463FF;
  transition: background-color 0.2s ease;
}

.department-card:hover .department-icon {
  background-color: #EEF5FF;
}

.department-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #344054;
  line-height: 1.3;
}

/* Trending right now & sliders updates */
.trending-right-now-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAECF0;
}

.product-card {
  border: 1px solid #E4E7EC !important;
  border-radius: 4px !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.02);
  transition: all 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.06);
  border-color: #D0D5DD;
}

.card-trending-badge {
  background-color: #1463FF;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

/* Flash Deals Section */
.flash-deals-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAECF0;
}

.deal-card {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E4E7EC;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
}

.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.06);
  border-color: #D0D5DD;
}

.deal-discount-badge {
  background-color: #F04438;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.deal-timer-container {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background-color: #EEF5FF;
  color: #1463FF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(20, 99, 255, 0.1);
}

.deal-progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.deal-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  color: #667085;
}

.deal-progress-bg {
  height: 6px;
  background-color: #F2F4F7;
  border-radius: 9999px;
  overflow: hidden;
  width: 100%;
}

.deal-progress-fill {
  height: 100%;
  background-color: #1463FF;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* Explore Collections Pastel Theme */
.explore-collections-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAECF0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.collection-card {
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  height: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.collection-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.collection-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.collection-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: #101828;
}

.collection-desc {
  font-size: 11px;
  color: #667085;
  line-height: 1.3;
}

/* Pastel Themes background colors */
.theme-pastel-red {
  background-color: #FDF2F2;
  border: 1px solid #FBD5D5;
}
.theme-pastel-red .collection-icon { color: #E02424; }

.theme-pastel-orange {
  background-color: #FFF8F1;
  border: 1px solid #FFE4D0;
}
.theme-pastel-orange .collection-icon { color: #DD6B20; }

.theme-pastel-blue {
  background-color: #F0F5FF;
  border: 1px solid #D1E2FF;
}
.theme-pastel-blue .collection-icon { color: #1C64F2; }

.theme-pastel-yellow {
  background-color: #FDFDEA;
  border: 1px solid #FDF6B2;
}
.theme-pastel-yellow .collection-icon { color: #B45309; }

.theme-pastel-purple {
  background-color: #FAF5FF;
  border: 1px solid #EBF8FF; /* light border */
  border-color: #E8D5C8; /* soft brown tint */
  background-color: #F3EAE8;
}
.theme-pastel-purple .collection-icon { color: #9B2C2C; }

.theme-pastel-pink {
  background-color: #FFF5F5;
  border: 1px solid #FED7D7;
}
.theme-pastel-pink .collection-icon { color: #E02424; }

/* Sub sliders / rows layout */
.bottom-sections-wrapper {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAECF0;
}

.bottom-grids-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .bottom-grids-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bottom-row-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bottom-row-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1.5px solid #F2F4F7;
  padding-bottom: 12px;
}

.bottom-row-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #101828;
}

.bottom-row-link {
  font-size: 12px;
  font-weight: 700;
  color: #1463FF;
}

.bottom-products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small-product-item {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.small-product-item:hover {
  transform: translateX(4px);
}

.small-product-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid #E4E7EC;
  object-fit: cover;
  background-color: #F9FAFB;
}

.small-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.small-product-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #101828;
  line-height: 1.3;
}

.small-product-price {
  font-size: 13.5px;
  font-weight: 700;
  color: #1463FF;
}

/* Trust Bar / Statistics bar solid blue theme */
.stats-bar-solid {
  background-color: #1463FF;
  padding: 24px 0;
  color: #FFFFFF;
}

.stats-grid-solid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .stats-grid-solid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat-icon-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.stat-info-solid {
  display: flex;
  flex-direction: column;
}

.stat-info-solid h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.stat-info-solid p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Newsletter section redesign */
.newsletter-signup-redesign {
  background-color: #F8F9FC;
  padding: 60px 0;
  border-top: 1px solid #EAECF0;
  border-bottom: 1px solid #EAECF0;
  text-align: center;
}

.newsletter-content {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #101828;
}

.newsletter-desc {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
  margin-top: -12px;
}

.newsletter-form-redesign {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter-form-redesign {
    flex-direction: row;
    align-items: center;
    background-color: #FFFFFF;
    border: 1.5px solid #D0D5DD;
    border-radius: 9999px;
    padding: 4px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  }
  
  .newsletter-form-redesign:focus-within {
    border-color: #1463FF;
    box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.1);
  }
}

.newsletter-input-redesign {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-size: 13.5px;
  background: transparent;
  outline: none;
  border: 1.5px solid #D0D5DD;
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .newsletter-input-redesign {
    border: none;
    height: 44px;
  }
}

.newsletter-submit-redesign {
  background-color: #1463FF;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 28px;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  height: 48px;
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter-submit-redesign {
    width: auto;
    height: 40px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.newsletter-submit-redesign:hover {
  background-color: #2F7DFF;
}

.newsletter-subtext {
  font-size: 12px;
  color: #667085;
}

/* ==========================================================================
   KAWACHI HOMEPAGE REDESIGN 2026 CUSTOM STYLES
   ========================================================================== */

/* 1. Header & Announcement Bar */
.top-bar-redesign {
  background-color: #2563FF;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  z-index: 60;
}
.top-bar-redesign .close-bar-btn {
  position: absolute;
  right: 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.top-bar-redesign .close-bar-btn:hover {
  opacity: 1;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #d8e9f3;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.all-categories-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F1F5F9;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  transition: background-color 0.2s;
}
.all-categories-btn:hover {
  background: #E2E8F0;
}

.search-input {
  border-radius: 99px;
  border: 1px solid var(--color-border);
  height: 44px;
  padding: 0 54px 0 20px;
  font-size: 13.5px;
  font-weight: 500;
  width: 100%;
  background: #FFFFFF;
}
.search-container form button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.search-container form button:hover {
  background-color: #1D4ED8;
}

/* 2. Partner Brand Row Below Navigation */
.partner-logos-container {
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}
.partner-logos-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.partner-logos-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.partner-logos-scroll::-webkit-scrollbar {
  display: none;
}
.partner-brand-pill {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}
.partner-brand-pill:hover {
  color: var(--color-primary);
  border-color: rgba(37, 99, 255, 0.2);
  background: rgba(37, 99, 255, 0.02);
  transform: translateY(-1px);
}
.partner-chevron-right {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  cursor: pointer;
}

/* 3. Hero Layout (Split & Dynamic Collage) */
.hero-section-2026 {
  background: transparent !important;
  min-height: 600px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 60px 0 !important;
  border-bottom: 1px solid var(--color-border) !important;
}

@media (max-width: 1023px) {
  .hero-section-2026 {
    min-height: auto !important;
    padding: 60px 0 !important;
  }
}

.hero-grid-2026 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 48px !important;
  align-items: center !important;
  width: 100% !important;
}

@media (min-width: 1024px) {
  .hero-grid-2026 {
    grid-template-columns: 45fr 55fr !important;
    gap: 60px !important;
  }
}

.hero-badge-pill-2026 {
  background-color: var(--color-accent-soft);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 255, 0.1);
  margin-bottom: 24px;
}

.hero-headline-2026 {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-headline-2026 span.blue-text {
  color: var(--color-primary);
}

.hero-subheadline-2026 {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  height: 52px;
  padding: 0 32px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 255, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}
.hero-btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 255, 0.25);
}

.hero-btn-secondary {
  background: #FFFFFF;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  height: 52px;
  padding: 0 32px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}
.hero-btn-secondary:hover {
  background: var(--color-accent-soft);
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.overlapping-avatars {
  display: flex;
  align-items: center;
}
.overlapping-avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-right: -10px;
  object-fit: cover;
}
.social-proof-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.3;
}
.social-proof-text span.count {
  font-weight: 800;
  display: block;
}

.hero-trust-list-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.hero-trust-item-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-main);
}
.hero-trust-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-accent-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 4. Overlapping Collage Area (Right Side) */
.hero-collage-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 auto;
}

.collage-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 16px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.collage-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  z-index: 15;
}

.collage-card-img-wrap {
  aspect-ratio: 1.1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12px;
  background: #F8FAFC;
  border-radius: 16px;
  overflow: hidden;
}
.collage-card-img-wrap img {
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
}

.collage-badge-red {
  background: #EF4444;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  left: 10px;
}
.collage-badge-blue {
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  left: 10px;
}
.collage-wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.2s;
}
.collage-wishlist-icon:hover {
  color: #EF4444;
  transform: scale(1.1);
}

.collage-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 34px;
}

.collage-card-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-warning);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
}
.collage-card-rating span.count {
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: 2px;
}

.collage-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}
.collage-card-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-main);
}
.collage-card-oldprice {
  font-size: 11px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* Position mapping for Collage */
.collage-center-card {
  width: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 18px;
}
.collage-card.collage-center-card:hover {
  transform: translate(-50%, calc(-50% - 6px)) scale(1.02);
}
.collage-center-card .collage-card-img-wrap {
  aspect-ratio: 1.15;
}
.collage-center-card .collage-card-title {
  font-size: 14px;
  height: 38px;
}
.collage-center-card .green-badge-bottom {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  margin-top: 8px;
  align-self: flex-start;
}

.collage-tl-card { width: 175px; top: 3%; left: 3%; z-index: 5; }
.collage-bl-card { width: 175px; bottom: 3%; left: 3%; z-index: 5; }
.collage-tr-card { width: 175px; top: 3%; right: 3%; z-index: 5; }
.collage-br-card { width: 175px; bottom: 3%; right: 3%; z-index: 5; }

@media (max-width: 640px) {
  .hero-collage-container {
    height: 480px;
  }
  .collage-center-card { width: 190px; }
  .collage-tl-card { width: 130px; top: 1%; left: 1%; }
  .collage-bl-card { width: 130px; bottom: 1%; left: 1%; }
  .collage-tr-card { width: 130px; top: 1%; right: 1%; }
  .collage-br-card { width: 130px; bottom: 1%; right: 1%; }
}

/* Category Filter Bar */
.category-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 0;
  flex-wrap: wrap;
  width: 100%;
}
.filter-pill {
  background: #F1F5F9;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.filter-pill:hover {
  background: #E2E8F0;
  color: var(--color-text-main);
}
.filter-pill.active {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 99, 255, 0.15);
}

/* 5. 4 Category Cards Grid Section */
.category-grid-2026 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  width: 100%;
}
@media (min-width: 640px) {
  .category-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .category-grid-2026 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card-2026 {
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
}
.category-card-2026.gradient-blue { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }
.category-card-2026.gradient-orange { background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); }
.category-card-2026.gradient-pink { background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%); }
.category-card-2026.gradient-green { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); }

.category-card-2026:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.category-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.category-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.category-card-count {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-text-muted);
}
.category-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 4px;
}
.category-card-explore {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.category-card-products {
  position: relative;
  height: 180px;
  width: 100%;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-card-product-img {
  width: 125px;
  height: 125px;
  border-radius: 20px;
  background: #FFFFFF;
  padding: 10px;
  object-fit: contain;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
/* Left image - tilted and placed behind */
.category-card-product-img:first-child {
  transform: translateX(-35px) translateY(12px) rotate(-10deg) scale(0.92);
  z-index: 1;
  opacity: 0.92;
}
/* Right image - tilted and placed in front */
.category-card-product-img:last-child {
  transform: translateX(35px) translateY(0px) rotate(8deg) scale(1.08);
  z-index: 2;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

/* Hover effect: spread and tilt dynamically */
.category-card-2026:hover .category-card-product-img:first-child {
  transform: translateX(-52px) translateY(0px) rotate(-16deg) scale(1.02);
  opacity: 1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}
.category-card-2026:hover .category-card-product-img:last-child {
  transform: translateX(52px) translateY(-12px) rotate(14deg) scale(1.15);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

/* 6. Benefits Strip CSS */
.features-grid-2026 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 640px) {
  .features-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid-2026 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-box-2026 {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.feature-box-2026.theme-blue {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid rgba(37, 99, 255, 0.08);
}
.feature-box-2026.theme-blue .feature-box-icon {
  background: #FFFFFF;
  color: #1463FF;
  box-shadow: 0 4px 12px rgba(37, 99, 255, 0.1);
}
.feature-box-2026.theme-green {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid rgba(34, 197, 94, 0.08);
}
.feature-box-2026.theme-green .feature-box-icon {
  background: #FFFFFF;
  color: #16A34A;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}
.feature-box-2026.theme-purple {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
  border: 1px solid rgba(139, 92, 246, 0.08);
}
.feature-box-2026.theme-purple .feature-box-icon {
  background: #FFFFFF;
  color: #7C3AED;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}
.feature-box-2026.theme-orange {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1px solid rgba(249, 115, 22, 0.08);
}
.feature-box-2026.theme-orange .feature-box-icon {
  background: #FFFFFF;
  color: #EA580C;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.feature-box-2026:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}
.feature-box-2026:hover .feature-box-icon {
  transform: scale(1.08) rotate(4deg);
}

.feature-box-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-box-icon svg {
  width: 20px;
  height: 20px;
}
.feature-box-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text-main);
}
.feature-box-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* 7. Stats Blue Gradient Strip */
.stats-bar-solid {
  background: linear-gradient(135deg, #2563FF 0%, #1D4ED8 100%);
}

/* Utility Animations */
.animate-fade-in {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(4px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==========================================
   Expandable Search Overlay & Inner Pages Redesign
   ========================================== */

/* 1. Re-enable & Style Centered Search Bar */
@media (min-width: 768px) {
  .search-container {
    display: block !important;
  }
}

.search-input {
  background-color: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 99px !important;
  padding-left: 20px !important;
  padding-right: 48px !important;
  height: 44px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.search-input:focus {
  background-color: #FFFFFF !important;
  border-color: #2563FF !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

/* 2. Page backdrop for search focus */
.search-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: transparent !important; /* Fully transparent, no overlay */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 90 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.search-backdrop.active {
  opacity: 0 !important;
  pointer-events: auto !important; /* Retains click-outside to close functionality */
}

/* 3. Scrolled Header Capsule adjustments to fit search */
@media (min-width: 768px) {
  .main-header.scrolled {
    max-width: 100% !important;
  }
  /* Fluid expansion of capsule when focused on search - disabled */
  .main-header.scrolled:has(.search-input:focus) {
    max-width: 100% !important;
  }
  .main-header.scrolled .search-container {
    max-width: 480px !important;
  }
  /* Fluid expansion of search box within the capsule - disabled */
  .main-header.scrolled .search-container:focus-within {
    max-width: 480px !important;
  }
  
  /* Liquid glass search input styling inside capsule */
  .main-header.scrolled .search-input {
    background-color: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: var(--color-text-main) !important;
    transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1) !important;
  }
  .main-header.scrolled .search-input:focus {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(20, 99, 255, 0.5) !important;
    box-shadow: 
      inset 0 1px 1px rgba(255, 255, 255, 0.8),
      0 0 0 3px rgba(20, 99, 255, 0.15) !important;
  }

  /* Liquid glass suggestions dropdown inside scrolled capsule */
  .main-header.scrolled .search-autocomplete-results {
    top: calc(100% + 12px) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(30px) saturate(210%) brightness(102%) contrast(98%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(210%) brightness(102%) contrast(98%) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 28px !important;
    box-shadow: 
      inset 0 1px 1px rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(0, 0, 0, 0.03),
      0 20px 50px -10px rgba(15, 23, 42, 0.18) !important;
    padding: 24px !important;
    animation: dynamicIslandLiquid 0.45s cubic-bezier(0.19, 1, 0.22, 1) forwards !important;
  }

  /* Liquid glass elements styling */
  .main-header.scrolled .search-dropdown-title {
    color: #475569 !important;
    font-weight: 800 !important;
    font-size: 10.5px !important;
  }
  .main-header.scrolled .search-tag-link {
    background: rgba(241, 245, 249, 0.8) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    color: #334155 !important;
    padding: 6px 14px !important;
    border-radius: 99px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  }
  .main-header.scrolled .search-tag-link:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(20, 99, 255, 0.3) !important;
    color: #1463FF !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 4px 12px rgba(20, 99, 255, 0.08) !important;
  }
  .main-header.scrolled .search-trending-item {
    background: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 8px !important;
    border-radius: 16px !important;
    padding: 10px 16px !important;
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
  }
  .main-header.scrolled .search-trending-item:hover {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(20, 99, 255, 0.3) !important;
    transform: translateX(4px) translateY(-1px) !important;
    box-shadow: 
      0 8px 20px -6px rgba(15, 23, 42, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  }
  .main-header.scrolled .search-trending-img {
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  }
  .main-header.scrolled .search-trending-name {
    color: #0F172A !important;
  }
  .main-header.scrolled .search-trending-category {
    color: #475569 !important;
  }
  .main-header.scrolled .search-trending-price {
    color: #1463FF !important;
  }
  .main-header.scrolled .search-autocomplete-item {
    border-bottom: 1px solid transparent !important;
  }
}

@keyframes dynamicIslandLiquid {
  0% {
    opacity: 0;
    transform: translateY(-12px) scaleY(0.92) scaleX(0.96);
    filter: blur(4px);
    transform-origin: top center;
  }
  60% {
    transform: translateY(2px) scaleY(1.02) scaleX(1.01);
    filter: blur(0);
    transform-origin: top center;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: top center;
  }
}

.search-container,
.unified-search-wrapper {
  position: relative !important;
}

.search-autocomplete-results {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: #FFFFFF !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  max-height: 280px !important; /* Reduced length/height */
  overflow-y: auto !important;
  z-index: 10000 !important;
  display: none;
  padding: 0 !important; /* Edge-to-edge styling */
  margin-top: 4px !important;
  box-sizing: border-box !important;
}

/* Mobile responsive constraints to match search bar pill */
@media (max-width: 767px) {
  .search-autocomplete-results {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
  }
}

.search-autocomplete-title,
.search-trending-name {
  color: #000000 !important; /* Pure black text */
  font-weight: 700 !important;
}

.search-autocomplete-price,
.search-trending-price {
  color: #1e3e7a !important; /* Sophisticated Brand Blue */
  font-weight: 850 !important;
}

/* Suggestions content structures */
.search-dropdown-title {
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #64748B !important;
  margin-bottom: 12px !important;
  margin-top: 14px !important;
}
.search-dropdown-title:first-of-type {
  margin-top: 4px !important;
}

.search-dropdown-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
}

.search-tag-link {
  background: #F1F5F9 !important;
  color: #475569 !important;
  padding: 8px 16px !important;
  border-radius: 99px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}
.search-tag-link:hover {
  background: #E2E8F0 !important;
  color: #0F172A !important;
  transform: translateY(-1px) !important;
}

/* Trending items list layout */
.search-trending-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.search-trending-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  color: var(--color-text-main) !important;
  border: 1px solid transparent !important;
}
.search-trending-item:hover {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  transform: translateX(4px) !important;
}

.search-trending-img {
  width: 44px !important;
  height: 44px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid #E2E8F0 !important;
}

.search-trending-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.search-trending-name {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  line-height: 1.3 !important;
}

.search-trending-category {
  font-size: 11px !important;
  color: #64748B !important;
  margin-top: 1px !important;
}

.search-trending-price {
  font-size: 13.5px !important;
  font-weight: 750 !important;
  color: #2563FF !important;
}

/* Custom styling for standard predictive items inside results */
.search-autocomplete-item {
  border-bottom: 1px solid #F1F5F9 !important;
  border-radius: 12px !important;
  margin-bottom: 4px !important;
}
.search-autocomplete-item:hover {
  background-color: #F8FAFC !important;
}

/* 4. Unified Inner Content Pages Redesign — Premium 2026 */
main.static-page-card {
  background-color: #FAFBFE !important;
  padding: 0 0 80px 0 !important;
}

/* Page hero banner strip */
main.static-page-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #EEF4FF 0%, #E0ECFF 40%, #F0F4FF 100%);
  margin-bottom: -120px;
}

main.static-page-card > .container {
  max-width: 1100px !important;
  background: #FFFFFF !important;
  padding: 52px 60px 56px !important;
  border-radius: 28px !important;
  box-shadow:
    0 1px 3px rgba(16, 24, 40, 0.04),
    0 8px 24px -4px rgba(37, 99, 255, 0.06),
    0 20px 48px -8px rgba(16, 24, 40, 0.04) !important;
  border: 1px solid rgba(37, 99, 255, 0.08) !important;
  line-height: 1.85 !important;
  position: relative;
  z-index: 1;
}

/* Page Main Title (h1) — Partner Brands style */
main.static-page-card h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(32px, 5vw, 44px) !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #0F172A 0%, #2563FF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
  margin-bottom: 25px !important; /* space for pseudo-element accent bar */
  line-height: 1.2 !important;
  text-align: left !important;
  padding-bottom: 0 !important;
  border-bottom: none !important; /* removed grey border line */
  display: inline-block !important;
  position: relative !important;
}

main.static-page-card h1::after {
  content: "" !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 0 !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #be123c 0%, #fbbf24 100%) !important;
  border-radius: 2px !important;
}

/* Page Subtitle (first paragraph after h1) */
main.static-page-card h1 + p {
  font-family: var(--font-body) !important;
  font-size: 18px !important;
  color: #475569 !important;
  font-weight: 500 !important;
  margin-top: 16px !important;
  margin-bottom: 36px !important;
  line-height: 1.8 !important;
  text-align: left !important;
}

/* Horizontal Rule — subtle with spacing */
main.static-page-card hr {
  border: 0 !important;
  border-top: 1px solid #E8EDF5 !important;
  margin: 40px 0 !important;
}

/* Section Headings (h2) — Large accent headings */
main.static-page-card h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(20px, 3.5vw, 24px) !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  letter-spacing: -0.02em !important;
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

/* Section Headings (h3) — Partner Brands style */
main.static-page-card h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(20px, 3vw, 24px) !important;
  font-weight: 850 !important;
  color: #0F1E36 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin-top: 48px !important;
  margin-bottom: 16px !important;
  position: relative !important;
  padding-left: 18px !important;
  line-height: 1.25 !important;
}
main.static-page-card h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  bottom: 4px !important;
  width: 4.5px !important;
  border-radius: 4px !important;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%) !important;
}

/* Sub-headings (h4) */
main.static-page-card h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1E293B !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  margin-top: 28px !important;
  margin-bottom: 10px !important;
}

/* Paragraphs & Text */
main.static-page-card p {
  font-family: var(--font-body) !important;
  font-size: 14.5px !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
  line-height: 1.85 !important;
}

main.static-page-card strong {
  color: #0F172A !important;
  font-weight: 650 !important;
}

/* Links */
main.static-page-card a {
  color: #2563FF !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease, text-decoration 0.2s ease !important;
}
main.static-page-card a:hover {
  color: #1D4ED8 !important;
  text-decoration: underline !important;
}

/* Lists — premium styled */
main.static-page-card ul,
main.static-page-card ol {
  padding-left: 0 !important;
  margin-bottom: 24px !important;
  list-style: none !important;
}
main.static-page-card li {
  position: relative !important;
  padding-left: 24px !important;
  margin-bottom: 10px !important;
  font-size: 14.5px !important;
  color: #475569 !important;
  line-height: 1.75 !important;
}
main.static-page-card li::before {
  content: "" !important;
  position: absolute !important;
  left: 4px !important;
  top: 9px !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #2563FF, #60A5FA) !important;
}
main.static-page-card ol li {
  counter-increment: list-counter !important;
}
main.static-page-card ol li::before {
  content: counter(list-counter) !important;
  position: absolute !important;
  left: 0 !important;
  top: 1px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: rgba(37, 99, 255, 0.1) !important;
  color: #2563FF !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Blockquotes — glassmorphic accent */
main.static-page-card blockquote {
  background: linear-gradient(135deg, rgba(37, 99, 255, 0.03) 0%, rgba(37, 99, 255, 0.06) 100%) !important;
  border-left: 3px solid #2563FF !important;
  border-radius: 0 12px 12px 0 !important;
  padding: 20px 24px !important;
  margin: 24px 0 !important;
  font-style: italic !important;
  color: #334155 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  main.static-page-card::before {
    height: 140px;
    margin-bottom: -80px;
  }
  main.static-page-card > .container {
    padding: 32px 20px 36px !important;
    border-radius: 20px !important;
    margin: 0 auto !important;
    width: calc(100% - 32px) !important;
  }
  main.static-page-card h1 {
    font-size: 28px !important;
  }
  main.static-page-card h1 + p {
    font-size: 16px !important;
    margin-bottom: 24px !important;
  }
}

/* Marquee Scrolling Product Strip Styles */
.static-marquee-section {
  width: 100% !important;
  background-color: #FFFFFF !important;
  padding: 45px 0 !important;
  border-top: 1px solid var(--color-border) !important;
  border-bottom: 1px solid var(--color-border) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.static-marquee-title {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 3vw, 24px) !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  text-align: center !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  position: relative !important;
  padding-left: 0 !important;
}

.static-marquee-title::before {
  display: none !important;
}

.static-marquee-container {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 12px 0 !important;
  box-sizing: border-box !important;
}

/* Success Alert Box styling */
.success-alert {
  display: none;
  background-color: #ECFDF5 !important;
  color: #065F46 !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  margin-bottom: 24px !important;
  border: 1px solid #A7F3D0 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  text-align: left !important;
  line-height: 1.5 !important;
}

.static-marquee-track {
  display: flex !important;
  gap: 24px !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  width: max-content !important;
  animation: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.static-marquee-track .skeleton-card {
  width: 230px !important;
  flex: 0 0 230px !important;
  flex-shrink: 0 !important;
  border-radius: 16px !important;
}

/* Amazon-style vertical rectangular arrows for static sliders */
.static-slider-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 120px !important;
  background-color: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  color: #0F172A !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 20 !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15) !important;
  transition: all 0.2s ease !important;
}

.static-slider-arrow svg {
  width: 24px !important;
  height: 24px !important;
  color: #0F172A !important;
}

.static-slider-arrow:hover {
  background-color: #0F172A !important;
  color: #FFFFFF !important;
  border-color: #0F172A !important;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.25) !important;
}

.static-slider-arrow:hover svg {
  color: #FFFFFF !important;
}

.static-slider-arrow.prev {
  left: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.static-slider-arrow.next {
  right: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.static-slider-arrow:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

/* Product Card for Marquee */
.marquee-product-card {
  display: flex !important;
  flex-direction: column !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(37, 99, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.02) !important;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  width: 230px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.marquee-product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 28px rgba(37, 99, 255, 0.1) !important;
  border-color: rgba(37, 99, 255, 0.2) !important;
}

.marquee-product-card .product-image-container {
  aspect-ratio: 1 !important;
  width: 100% !important;
  background-color: #F8FAFC !important;
  padding: 0 !important;
}

.marquee-product-card .product-image {
  padding: 12px !important;
  object-fit: contain !important;
}

.marquee-product-card .product-info {
  padding: 10px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.marquee-product-card .product-category {
  font-size: 10px !important;
  margin-bottom: 3px !important;
}

.marquee-product-card .product-title {
  font-size: 13px !important;
  line-height: 1.35 !important;
  height: auto !important;
  max-height: 36px !important;
  margin-bottom: 5px !important;
  color: #1E293B !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.marquee-product-card .price-current {
  font-size: 14.5px !important;
  font-weight: 700 !important;
}

.marquee-product-card .price-old {
  font-size: 11px !important;
}



/* ==========================================================================
   Aurora Background - Premium Animated Gradient Background
   Adapted from Aceternity UI aurora-background React component
   into pure vanilla CSS for the Kawachi static site.
   ========================================================================== */

@keyframes aurora-shift {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}

/* Aurora wrapper — place this on a container that should have the animated background */
.aurora-bg {
  position: relative;
  overflow: hidden;
  background-color: #F0F4FF; /* very light blue base */
}

/* The aurora gradient layer (pseudo-element) */
.aurora-bg::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.50;
  will-change: transform;
  filter: blur(10px);

  /* Repeating white-gap gradient + aurora color gradient */
  background-image:
    repeating-linear-gradient(
      100deg,
      var(--aurora-white) 0%,
      var(--aurora-white) 7%,
      var(--aurora-transparent) 10%,
      var(--aurora-transparent) 12%,
      var(--aurora-white) 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--aurora-blue-500) 10%,
      var(--aurora-indigo-300) 15%,
      var(--aurora-blue-300) 20%,
      var(--aurora-violet-200) 25%,
      var(--aurora-blue-400) 30%
    );
  background-size: 300% 200%;
  background-position: 50% 50%;

  /* Radial mask — fades out toward bottom-left, concentrated at top-right */
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

/* The "after" layer — second pass with mix-blend-difference for the curtain depth */
.aurora-bg::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: difference;
  opacity: 0.45;

  background-image:
    repeating-linear-gradient(
      100deg,
      var(--aurora-white) 0%,
      var(--aurora-white) 7%,
      var(--aurora-transparent) 10%,
      var(--aurora-transparent) 12%,
      var(--aurora-white) 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--aurora-blue-500) 10%,
      var(--aurora-indigo-300) 15%,
      var(--aurora-blue-300) 20%,
      var(--aurora-violet-200) 25%,
      var(--aurora-blue-400) 30%
    );
  background-size: 200% 100%;
  background-attachment: fixed;
  animation: aurora-shift 60s linear infinite;

  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

/* Ensure all content inside the aurora wrapper sits above the aurora layers */
.aurora-bg > * {
  position: relative;
  z-index: 1;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .aurora-bg::after {
    animation: none;
  }
}

/* 5. Custom styles for Order Summary item lists, Trending Marquee, Banner Ads, and Payment Aggregators */
.summary-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: var(--text-xs);
}
.summary-item-row:last-of-type {
  border-bottom: none;
}

.trending-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px 0;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}
.trending-marquee-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.trending-marquee-inner:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trending-card {
  width: 200px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
  text-decoration: none;
  color: var(--color-text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}
.trending-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.trending-card-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.trending-card:hover .trending-card-img {
  border-color: var(--color-accent);
  transform: scale(1.03);
}
.trending-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.trending-card-category {
  font-size: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.trending-card-price {
  font-weight: 800;
  color: var(--color-accent);
  font-size: var(--text-xs);
}

.custom-banner-container {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, #060e1d 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  transition: all 0.4s ease;
  cursor: pointer;
}
.custom-banner-container:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
.custom-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.custom-banner-container:hover .custom-banner-bg-img {
  opacity: 0.75;
}
.custom-banner-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  color: #FFFFFF;
  text-align: left;
}
.custom-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.custom-banner-subtitle {
  font-size: var(--text-xs);
  opacity: 0.9;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  line-height: 1.5;
}
.custom-banner-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
}
.custom-banner-btn-upload {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.custom-banner-btn-upload:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}
.custom-banner-btn-reset {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 20px;
  border-radius: 99px;
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.custom-banner-btn-reset:hover {
  border-color: var(--color-error);
  color: var(--color-error);
}

/* Modal styling for banner settings */
.banner-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.banner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
}
.banner-modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.92);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  z-index: 2;
  text-align: left;
}
.banner-modal.open .banner-modal-content {
  transform: scale(1);
}
.banner-modal-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 850;
  color: var(--color-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}
.banner-modal-close:hover {
  color: var(--color-error);
}

/* Payment Aggregators Checkout Styling */
.payment-aggregators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .payment-aggregators-grid {
    grid-template-columns: 1fr;
  }
}
.payment-aggregator-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
  text-align: left;
  box-sizing: border-box;
}
.payment-aggregator-card:hover {
  border-color: var(--color-border-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.payment-aggregator-card.active {
  border-color: var(--color-accent);
  background: rgba(30, 41, 59, 0.01);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.payment-aggregator-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent var(--color-accent) transparent transparent;
}
.payment-aggregator-card.active::after {
  content: "✓";
  position: absolute;
  top: 2px;
  right: 6px;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: bold;
}
.aggregator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.aggregator-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 750;
  color: var(--color-primary);
}
.aggregator-logo-row {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 24px;
}
.aggregator-logo-row img {
  height: 18px;
  object-fit: contain;
  opacity: 0.85;
}
.aggregator-description {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}
.aggregator-form-container {
  display: none;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-top: 8px;
  animation: slideDownFade 0.3s ease;
}
.aggregator-form-container.active {
  display: block;
}

/* ==========================================================================
   Shopify-Style Checkout Layout and Form Inputs Override
   ========================================================================== */
.shopify-checkout-body {
  background-color: #ffffff;
  font-family: var(--font-body);
  color: #333333;
  min-height: 100vh;
}
@media (min-width: 1000px) {
  .shopify-checkout-body {
    background: linear-gradient(to right, #ffffff 57%, #f5f5f5 57%) !important;
  }
}
.shopify-checkout-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  box-sizing: border-box;
}
@media (min-width: 1000px) {
  .shopify-checkout-wrapper {
    grid-template-columns: 57% 43%;
  }
}
.shopify-checkout-left {
  padding: 40px 40px 60px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.shopify-checkout-right {
  padding: 40px 20px 60px 40px;
  background-color: #f5f5f5;
  box-sizing: border-box;
}
@media (max-width: 999px) {
  .shopify-checkout-left {
    padding: 20px 16px;
  }
  .shopify-checkout-right {
    padding: 24px 16px;
    border-top: 1px solid #e1e1e1;
    background-color: #fafafa;
  }
}

.checkout-minimal-header {
  margin-bottom: 24px;
  text-align: left;
}

/* Form Styles */
.shopify-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 16px;
  margin-top: 24px;
}
.shopify-section-subtitle {
  font-size: 13px;
  color: #737373;
  margin-bottom: 12px;
  display: block;
}

.shopify-input-wrapper {
  position: relative;
  margin-bottom: 12px;
}
.shopify-input-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.shopify-input-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 600px) {
  .shopify-input-row-2,
  .shopify-input-row-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.shopify-input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 12px 14px;
  font-size: 14px;
  background-color: #ffffff;
  color: #333333;
  box-sizing: border-box;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.shopify-input:focus {
  outline: none;
  border-color: #1773b0;
  box-shadow: 0 0 0 1px #1773b0;
}
.shopify-input-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #737373;
  margin-bottom: 4px;
}

/* User Account Summary Block */
.shopify-user-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background-color: #ffffff;
  margin-bottom: 24px;
  font-size: 14px;
}
.shopify-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shopify-user-icon {
  width: 20px;
  height: 20px;
  background-color: #e1e1e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #737373;
  font-weight: bold;
}

/* Shopify Radio Boxes Group */
.shopify-box-group {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ffffff;
  margin-bottom: 24px;
}
.shopify-box-row {
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
}
.shopify-box-row:last-child {
  border-bottom: none;
}
.shopify-box-row-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}
.shopify-box-row.active .shopify-box-row-header {
  background-color: #f4f8fa;
}
.shopify-box-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shopify-box-radio {
  width: 18px;
  height: 18px;
  accent-color: #1773b0;
  cursor: pointer;
}
.shopify-box-row-title {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.shopify-box-logos {
  display: flex;
  gap: 6px;
  align-items: center;
}
.shopify-box-logos img {
  height: 16px;
  object-fit: contain;
}
.shopify-box-logos-count {
  font-size: 11px;
  color: #737373;
  background-color: #f1f1f1;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}
.shopify-box-row-content {
  display: none;
  padding: 16px;
  background-color: #fafafa;
  border-top: 1px solid #e1e1e1;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}
.shopify-box-row.active .shopify-box-row-content {
  display: block;
}

/* Shopify Alert Box */
.shopify-alert-box {
  background-color: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 16px;
  font-size: 13px;
  color: #737373;
  margin-bottom: 24px;
  text-align: center;
}

/* Pay Now Button */
.shopify-pay-btn {
  width: 100%;
  background-color: #1773b0;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.shopify-pay-btn:hover {
  background-color: #125d90;
}
.shopify-pay-btn:active {
  transform: scale(0.99);
}

/* Footer Policies */
.shopify-checkout-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e1e1e1;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #737373;
}
.shopify-checkout-footer a {
  text-decoration: none;
  color: #1773b0;
}
.shopify-checkout-footer a:hover {
  text-decoration: underline;
}

/* Sidebar Elements */
.shopify-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.shopify-thumbnail-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shopify-thumbnail-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.shopify-thumbnail-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background-color: #737373;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.shopify-sidebar-item-info {
  flex-grow: 1;
}
.shopify-sidebar-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}
.shopify-sidebar-item-meta {
  font-size: 12px;
  color: #737373;
  margin-top: 2px;
}
.shopify-sidebar-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.shopify-discount-row {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  margin: 16px 0;
}
.shopify-discount-input {
  flex-grow: 1;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 14px;
  box-sizing: border-box;
  font-family: var(--font-body);
}
.shopify-discount-btn {
  background-color: #e1e1e1;
  color: #333333;
  border: none;
  border-radius: 5px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: var(--font-body);
}
.shopify-discount-btn:hover {
  background-color: #d1d1d1;
}

.shopify-sidebar-calc {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555555;
  margin-bottom: 10px;
}
.shopify-sidebar-calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e1e1e1;
}
.shopify-sidebar-calc-tax {
  font-size: 12px;
  color: #737373;
  margin-top: 4px;
  text-align: right;
}

/* ==========================================================================
   Unified Aurora Background & Premium Card/Checkout Redesign
   ========================================================================== */

/* Fixed Animated Aurora Background for body */
.aurora-body-bg {
  position: relative;
  background-color: #f8fafc !important;
  min-height: 100vh;
  overflow-x: hidden;
}

.aurora-body-bg::before,
.aurora-body-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.45;
  filter: blur(15px);
  will-change: transform;
}

.aurora-body-bg::before {
  background-image:
    repeating-linear-gradient(
      100deg,
      #ffffff 0%,
      #ffffff 7%,
      transparent 10%,
      transparent 12%,
      #ffffff 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--color-primary) 10%,
      #818CF8 15%,
      #93C5FD 20%,
      #C084FC 25%,
      #60A5FA 30%
    );
  background-size: 300% 200%;
  background-position: 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse at 80% 0%, black 15%, transparent 75%);
  mask-image: radial-gradient(ellipse at 80% 0%, black 15%, transparent 75%);
}

.aurora-body-bg::after {
  background-image:
    repeating-linear-gradient(
      100deg,
      #ffffff 0%,
      #ffffff 7%,
      transparent 10%,
      transparent 12%,
      #ffffff 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--color-primary) 10%,
      #818CF8 15%,
      #93C5FD 20%,
      #C084FC 25%,
      #60A5FA 30%
    );
  background-size: 200% 100%;
  animation: aurora-shift 60s linear infinite;
  mix-blend-mode: difference;
  -webkit-mask-image: radial-gradient(ellipse at 80% 0%, black 15%, transparent 75%);
  mask-image: radial-gradient(ellipse at 80% 0%, black 15%, transparent 75%);
}

/* Override Shopify body style */
body.checkout-page.aurora-body-bg {
  background: #f8fafc !important;
}

@media (min-width: 1000px) {
  body.checkout-page.aurora-body-bg {
    background: #f8fafc !important;
  }
  .shopify-checkout-wrapper {
    grid-template-columns: 58% 42%;
    gap: 30px;
    padding: 40px 20px;
    align-items: start;
  }
}

/* Glassmorphic floating panels for checkout */
.shopify-checkout-left {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

.shopify-checkout-right {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

@media (max-width: 999px) {
  .shopify-checkout-left,
  .shopify-checkout-right {
    margin: 16px;
    padding: 20px;
  }
}

/* Premium typography implementation matching home page */
.shopify-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  margin-top: 28px;
  margin-bottom: 16px;
}

/* Inputs & Forms Design Execution matching Home Page Search */
.shopify-input {
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  padding: 12px 16px;
  font-size: 14px;
  background-color: #FFFFFF;
  color: var(--color-text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shopify-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.15);
}

.shopify-input-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  margin-left: 2px;
}

/* Payment & Billing boxes with modern rounded execution */
.shopify-box-group {
  border-radius: 14px;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: #FFFFFF;
}

.shopify-box-row {
  border-bottom: 1.5px solid var(--color-border);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.shopify-box-row.active {
  border-color: var(--color-primary);
  background: rgba(37, 99, 255, 0.01);
}

.shopify-box-row-header {
  padding: 18px 20px;
}

.shopify-box-row.active .shopify-box-row-header {
  background-color: rgba(37, 99, 255, 0.03);
}

.shopify-box-row-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
}

/* Inline Payment Cards Inputs styling */
.card-fields-container {
  padding: 20px;
  background-color: #FAFCFF;
  border-top: 1px solid var(--color-border);
  animation: slideDownFade 0.25s ease-out;
}

.card-input-wrapper {
  margin-bottom: 16px;
}

.card-input-wrapper:last-child {
  margin-bottom: 0;
}

.card-input-relative {
  position: relative;
}

.card-icon-overlay {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  height: 24px;
}

.card-icon-overlay img {
  height: 20px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.card-input-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.card-cvv-help {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}

/* Pay Now Button Style match */
.shopify-pay-btn {
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 99, 255, 0.25);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.shopify-pay-btn:hover {
  background-color: #1a54df;
  box-shadow: 0 6px 20px rgba(37, 99, 255, 0.35);
}

/* Cart Page Glassmorphic layout overrides */
body.cart-page.aurora-body-bg {
  background-color: #f8fafc !important;
}

body.cart-page #main-content {
  background-color: transparent !important;
}

body.cart-page .cart-table-wrapper {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-md) !important;
  overflow: hidden;
}

body.cart-page .checkout-box {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow-md) !important;
}

/* Hide Announcement Bar site-wide */
.top-bar-redesign {
  display: none !important;
}

/* Boxed Section Layouts - Phlox Style */
body {
  background: #C0C4C8 !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.boxed-section-card {
  background-color: #F8FAFC !important;
  border-radius: 32px !important;
  border: 1px solid rgba(16, 24, 40, 0.05) !important;
  padding: 60px 48px !important;
  box-shadow: 0 16px 32px -12px rgba(16, 24, 40, 0.04) !important;
  margin: 40px auto !important;
  max-width: 1400px;
  width: calc(100% - 48px);
}

/* Hero Card styling inside the boxed container */
.hero-card-container {
  border-radius: 32px;
  border: 1px solid rgba(20, 99, 255, 0.08);
  box-shadow: 0 20px 40px -15px rgba(20, 99, 255, 0.08);
  padding: 80px 48px !important;
  margin: 24px auto !important;
  max-width: 1400px;
  width: calc(100% - 48px);
  overflow: hidden; /* clip aurora gradient at rounded corners */
  background-color: #F0F4FF; /* match aurora base */
}

/* Adjust scrolled header sizes and effects - disabled */
.main-header.scrolled .brand-logo {
  font-size: 28px !important;
}

.main-header.scrolled .header-utilities svg {
  width: 20px !important;
  height: 20px !important;
}

/* Scroll-up subtle blue glow */
.main-header.scrolled.scrolling-up {
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04),
    0 12px 30px -8px rgba(20, 99, 255, 0.22) !important;
  border-color: rgba(20, 99, 255, 0.25) !important;
}

/* New minimalist search bar and transparent submit button style */
.search-container button[type="submit"] {
  background-color: transparent !important;
  color: #1463FF !important;
  box-shadow: none !important;
  right: 8px !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.search-container button[type="submit"]:hover {
  color: #004ecc !important;
  transform: scale(1.1) !important;
  background: transparent !important;
}

.main-header.scrolled .search-container button[type="submit"] {
  right: 6px !important;
  top: 4px !important;
  width: 30px !important;
  height: 30px !important;
}

.main-header.scrolled .search-input {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(20, 99, 255, 0.12) !important;
  padding-right: 40px !important;
}

.main-header.scrolled .search-input:focus {
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.15) !important;
}

/* Ensure transition smoothing */
.main-header, 
.main-header .logo-group, 
.main-header .brand-logo, 
.main-header .search-container, 
.main-header .search-input, 
.main-header .header-utilities, 
.main-header .header-utilities svg {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

/* ========================================================================== 
   INITIALLY TRANSPARENT HEADER — Phlox-inspired clean top fold
   ========================================================================== */

/* Default state: transparent, no background, blends with hero */
.header-initial-transparent:not(.scrolled) {
  background-color: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid rgba(16, 24, 40, 0.05) !important;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04) !important;
}

.header-initial-transparent:not(.scrolled) .brand-logo {
  color: #0044CC !important;
}

.header-initial-transparent:not(.scrolled) .header-utilities a,
.header-initial-transparent:not(.scrolled) .header-utilities button {
  color: #1f2937 !important;
}

.header-initial-transparent:not(.scrolled) .search-input {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
}

.header-initial-transparent:not(.scrolled) .search-input:focus {
  background: #FFFFFF !important;
  border-color: #0066FF !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12) !important;
}

/* Smooth entrance animation when scrolled class is added */
@media (min-width: 768px) {
  .header-initial-transparent.scrolled {
    animation: island-entrance 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}

@keyframes island-entrance {
  from {
    opacity: 0.5;
    transform: translateY(-10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   REALISTIC CHECKOUT STYLES - Stepper, Virtual Card, UPI QR, NetBanking
   ========================================================================== */

/* Progress Stepper */
.checkout-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.checkout-stepper-step {
  font-weight: 500;
  transition: color var(--transition-fast);
}
.checkout-stepper-step.active {
  color: var(--color-primary);
  font-weight: 700;
}
.checkout-stepper-divider {
  color: var(--color-border-dark);
}

/* Shipping Record Summary Card */
.shipping-record-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.shipping-record-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}
.shipping-record-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.shipping-record-label {
  color: var(--color-text-muted);
  width: 80px;
  flex-shrink: 0;
  font-weight: 600;
}
.shipping-record-value {
  color: var(--color-text-main);
  flex-grow: 1;
  padding-right: 12px;
  line-height: 1.4;
}
.shipping-record-action {
  color: var(--color-primary);
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 12px;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.shipping-record-action:hover {
  color: #1a54df;
  text-decoration: underline;
}

/* Stepper Sections Toggle */
.checkout-step-section {
  display: none;
}
.checkout-step-section.active {
  display: block;
}

/* Interactive Virtual Credit Card Container */
.virtual-card-perspective {
  perspective: 1000px;
  width: 100%;
  max-width: 320px;
  height: 190px;
  margin: 10px auto 24px auto;
}
.virtual-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
/* Flip card when user focuses on CVV */
.virtual-card-perspective.flipped .virtual-card-inner {
  transform: rotateY(180deg);
}

.virtual-card-front, .virtual-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  font-family: var(--font-display);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.virtual-card-front {
  background: linear-gradient(135deg, #1e293b, #0f172a); /* Premium midnight dark card matching index.html aesthetics */
  border: 1px solid rgba(255,255,255,0.08);
}
.virtual-card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 255, 0.25) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.virtual-card-front > *, .virtual-card-back > * {
  position: relative;
  z-index: 1;
}

.virtual-card-back {
  background: linear-gradient(135deg, #0f172a, #020617);
  transform: rotateY(180deg);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Card Mockup Elements */
.vcard-chip-sig {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vcard-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.vcard-chip::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 2px;
}
.vcard-logo {
  height: 18px;
  opacity: 0.85;
}
.vcard-number {
  font-size: 18px;
  letter-spacing: 2px;
  font-family: monospace;
  margin: 12px 0;
  color: #f8fafc;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.vcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.vcard-meta-label {
  font-size: 8px;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.vcard-meta-val {
  font-size: 12px;
  font-weight: 500;
  color: #f1f5f9;
  letter-spacing: 0.5px;
}

/* Card Back Elements */
.vcard-strip {
  width: 100%;
  height: 36px;
  background-color: #000000;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 10px;
}
.vcard-signature-area {
  display: flex;
  align-items: center;
  margin: 16px 0;
}
.vcard-signature-strip {
  width: calc(100% - 60px);
  height: 28px;
  background-color: rgba(255,255,255,0.7);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,0.05) 4px, rgba(0,0,0,0.05) 8px);
  border-radius: 4px;
}
.vcard-cvv-box {
  width: 50px;
  height: 24px;
  background-color: #ffffff;
  color: #000000;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
  margin-left: 10px;
}
.vcard-back-text {
  font-size: 7px;
  color: #64748b;
  line-height: 1.3;
}

/* UPI Payment Simulation UI */
.upi-bank-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.upi-bank-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  background-color: #ffffff;
  transition: all var(--transition-fast);
}
.upi-bank-btn:hover {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 255, 0.02);
}
.upi-bank-btn.active {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.1);
}
.upi-bank-btn img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.upi-bank-btn span {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: center;
}

/* QR Code Simulator Box */
.upi-qr-simulator-card {
  border: 1.5px dashed var(--color-primary);
  border-radius: 16px;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  margin: 12px 0;
  animation: slideDownFade 0.25s ease-out;
}
.upi-qr-image-wrapper {
  background-color: #f8fafc;
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
  margin: 10px auto;
  border: 1px solid var(--color-border);
}
.upi-qr-image-wrapper svg {
  width: 140px;
  height: 140px;
}
.upi-qr-timer {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-error);
  font-weight: 700;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* NetBanking Bank Grid */
.netbanking-bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.netbanking-bank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  background-color: #ffffff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}
.netbanking-bank-item:hover {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 255, 0.02);
}
.netbanking-bank-item.active {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 255, 0.05);
}
.netbanking-bank-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Secure Badges */
.secured-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1.5px dashed var(--color-border);
}
.secured-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.secured-badge-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

/* ==========================================================================
   2026 Responsive Overrides & Mobile/Tablet Optimization
   ========================================================================== */

/* Prevent logo wrapping */
.brand-logo {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
.logo-group {
  flex-shrink: 0 !important;
}

/* Tablet & Mobile Header Adjustments */
@media (max-width: 767px) {
  .header-utilities a,
  .header-utilities button {
    font-size: 0 !important;
    gap: 0 !important;
  }
  .header-utilities {
    gap: 12px !important;
  }
}

/* Responsive Container Padding & Boxed Sections */
@media (max-width: 768px) {
  .boxed-section-card,
  .hero-card-container {
    padding: 30px 16px !important;
    border-radius: 16px !important;
    width: calc(100% - 24px) !important;
    margin: 20px auto !important;
  }
}

/* Responsive Cart Table */
@media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-table tr {
    position: relative;
    padding: 16px;
    border-bottom: 1.5px solid var(--color-border);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
  .cart-table tr:last-child {
    border-bottom: none;
  }
  .cart-table tr td:first-child {
    grid-row: span 4;
    padding: 0;
    width: 80px !important;
  }
  .cart-table tr td:first-child img {
    width: 80px !important;
    height: 80px !important;
  }
  .cart-table tr td:nth-child(2) {
    grid-column: 2;
    padding: 0;
    margin-bottom: 4px;
  }
  .cart-table tr td:nth-child(3) {
    grid-column: 2;
    padding: 0;
    margin-bottom: 4px;
    font-size: var(--text-sm);
  }
  .cart-table tr td:nth-child(4) {
    grid-column: 2;
    padding: 0;
    margin-bottom: 4px;
  }
  .cart-table tr td:nth-child(5) {
    grid-column: 2;
    padding: 0;
    font-size: var(--text-sm);
  }
  .cart-table tr td:nth-child(6) {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0;
    width: auto;
  }
}

/* Cart Bottom Buttons Stack */
@media (max-width: 480px) {
  body.cart-page .flex.justify-between {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  body.cart-page .flex.justify-between a,
  body.cart-page .flex.justify-between button {
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
}

/* UPI bank selection grid responsive columns */
@media (max-width: 480px) {
  .upi-bank-select-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Glassmorphic Still Need Assistance Card */
.ticket-trigger-banner-premium {
  position: relative !important;
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(37, 99, 255, 0.12) !important;
  border-radius: 24px !important;
  padding: 40px 48px !important;
  margin-top: 52px !important;
  box-shadow: 0 10px 30px rgba(37, 99, 255, 0.04) !important;
  overflow: hidden !important;
}

/* Accent decorative background glow */
.ticket-trigger-banner-premium::before {
  content: "" !important;
  position: absolute !important;
  top: -80px !important;
  right: -80px !important;
  width: 200px !important;
  height: 200px !important;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.15) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.ticket-trigger-banner-premium h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(22px, 3.5vw, 26px) !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.02em !important;
  position: relative !important;
  z-index: 1 !important;
}

.ticket-trigger-banner-premium p {
  font-size: 15px !important;
  color: #475569 !important;
  line-height: 1.7 !important;
  max-width: 600px !important;
  margin-bottom: 28px !important;
  position: relative !important;
  z-index: 1 !important;
}

.assistance-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(37, 99, 255, 0.08) !important;
  color: #2563FF !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 20px !important;
  position: relative !important;
  z-index: 1 !important;
}

.assistance-footer {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  border-top: 1px solid rgba(37, 99, 255, 0.08) !important;
  padding-top: 24px !important;
  position: relative !important;
  z-index: 1 !important;
}

.assistance-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.assistance-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14.5px !important;
  color: #334155 !important;
  font-weight: 600 !important;
}

.assistance-contact-item svg {
  color: #2563FF !important;
}

main.static-page-card .btn-primary-marquee,
.btn-primary-marquee {
  background: #2563FF !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-size: 14.5px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 255, 0.25) !important;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: inline-block !important;
}

main.static-page-card .btn-primary-marquee:hover,
.btn-primary-marquee:hover {
  background: #1D4ED8 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 255, 0.35) !important;
}

@media (max-width: 768px) {
  .ticket-trigger-banner-premium {
    padding: 32px 24px !important;
  }
  .assistance-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .btn-primary-marquee {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   Autocomplete suggestions 2-column layout & custom classes
   ========================================================================== */
.search-suggestions-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  padding: 18px !important;
}
@media (min-width: 768px) {
  .search-suggestions-layout {
    grid-template-columns: 0.95fr 1.05fr !important;
  }
}
.search-category-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  background: #F8FAFC !important;
  border-radius: 12px !important;
  font-size: 13.5px !important;
  font-weight: 650 !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border: 1px solid rgba(0, 0, 0, 0.02) !important;
}
.search-category-row:hover {
  background: rgba(37, 99, 255, 0.04) !important;
  border-color: rgba(37, 99, 255, 0.15) !important;
  color: #2563FF !important;
  transform: translateX(4px) !important;
}

/* ==========================================================================
   Company Highlight Banner Section — Brand Launchers
   ========================================================================== */
.company-highlight-banner {
  border-radius: 32px !important;
  height: 280px !important;
  padding: 40px 60px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  color: #FFFFFF !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-sizing: border-box !important;
}

.banner-content-left {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: 55% !important;
  z-index: 10 !important;
}

.banner-tag {
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 8px !important;
}

.banner-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(22px, 3.5vw, 28px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.25 !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

.banner-desc {
  font-size: 13.5px !important;
  opacity: 0.9 !important;
  margin-bottom: 24px !important;
  line-height: 1.5 !important;
  color: #FFFFFF !important;
}

.banner-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFFFFF !important;
  color: #0F172A !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 12px 28px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

.banner-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
  background: #F8FAFC !important;
}

.banner-content-right {
  position: relative !important;
  width: 35% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
}

.banner-prod-img {
  max-height: 250px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2) !important);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
  transform: translateY(10px) scale(1.05) !important;
}

.company-highlight-banner:hover .banner-prod-img {
  transform: translateY(0px) scale(1.1) !important;
}

@media (max-width: 991px) {
  .company-highlight-banner {
    height: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 32px 24px !important;
    gap: 32px !important;
  }
  .banner-content-left {
    max-width: 100% !important;
  }
  .banner-content-right {
    width: 100% !important;
    height: 200px !important;
  }
  .banner-prod-img {
    max-height: 200px !important;
    transform: none !important;
  }
  .company-highlight-banner:hover .banner-prod-img {
    transform: scale(1.05) !important;
  }
}

/* ==========================================================================
   2026 Marketplace Overhaul CSS (Amazon/Flipkart Redesign)
   ==========/* Blue Glow Premium Marketplace Header styling */
.marketplace-header {
  background-color: #8dbdd8 !important; /* Original light blue */
  color: #0F1E36 !important;
  border-bottom: 1px solid rgba(15, 30, 54, 0.08) !important;
  box-shadow: 0 4px 20px rgba(67, 144, 188, 0.25) !important; /* Premium semi-transparent blue shadow glow */
}

.marketplace-header .header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 8px 16px !important; /* Decreased vertical height/padding of the header strip */
  max-width: 1280px !important; /* Decreased width strip slightly */
  margin: 0 auto !important;
}

/* Logo styling */
.marketplace-header .logo-group {
  margin: 0 !important;
  padding: 0 !important;
}

.marketplace-header .white-logo {
  color: #0F1E36 !important;
}

.marketplace-header .white-logo span:first-child,
.marketplace-header .white-logo span:last-child {
  color: #0F1E36 !important;
}

.marketplace-header .white-logo sup {
  color: #0F1E36 !important;
}

.marketplace-header .white-logo .logo-tagline {
  color: rgba(15, 30, 54, 0.75) !important;
}

/* Unified Search Wrapper (Apple / Modern E-Commerce Style) */
.unified-search-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  flex-grow: 1 !important;
  max-width: 650px !important;
  margin: 0 16px !important;
  background-color: #f1f5f9 !important; /* clean light grey pill */
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
  overflow: visible !important;
  box-shadow: none !important;
  height: 40px !important;
}

.unified-search-wrapper:focus-within {
  border-color: #0052cc !important;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15) !important;
  background-color: #ffffff !important;
}

/* Category select inside Unified Wrapper */
.unified-search-wrapper .category-select-container {
  margin: 0 !important;
  height: 100% !important;
  flex-shrink: 0 !important;
}

.unified-search-wrapper .all-categories-select {
  background-color: transparent !important;
  color: #334155 !important;
  border: none !important;
  border-right: 1px solid #cbd5e1 !important;
  border-radius: 8px 0 0 8px !important;
  padding: 0 32px 0 16px !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  outline: none !important;
  height: 100% !important;
  transition: background-color 0.2s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 12px !important;
}

.unified-search-wrapper .all-categories-select:hover {
  background-color: rgba(0, 0, 0, 0.04) !important;
}

/* Search Container inside Unified Wrapper */
.unified-search-wrapper .search-container {
  flex-grow: 1 !important;
  margin: 0 !important;
  max-width: none !important;
  height: 100% !important;
}

.unified-search-wrapper form {
  height: 100% !important;
}

.unified-search-wrapper .search-bar-inner {
  display: flex !important;
  flex-grow: 1 !important;
  width: auto !important;
  border: none !important;
  border-radius: 0 !important;
  height: 100% !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.unified-search-wrapper .search-input {
  height: 100% !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
}

.unified-search-wrapper .search-submit-btn {
  background-color: transparent !important;
  color: #4b5563 !important;
  height: 100% !important;
  padding: 0 20px !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}

.unified-search-wrapper .search-submit-btn:hover {
  background-color: rgba(0, 0, 0, 0.04) !important;
  transform: none !important;
}

.unified-search-wrapper .search-submit-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #334155 !important;
  stroke-width: 2.5px !important;
}

/* Header utility links */
.marketplace-header .header-utilities {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.marketplace-header .utility-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  color: #0c1c34 !important; /* Brand deep blue */
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  font-family: var(--font-display), sans-serif !important;
  font-size: 13px !important; /* Made text label bigger */
  font-weight: 900 !important; /* Made text label ultra bold and crisp */
  letter-spacing: -0.01em !important;
  text-shadow: none !important;
  position: relative !important;
  outline: none !important;
  transition: none !important; /* Disabled transitions */
}

.marketplace-header .utility-link:hover {
  color: #0c1c34 !important; /* No color change on hover, stays solid deep blue */
  opacity: 1 !important;
  transform: none !important; /* No movement on hover */
}

.marketplace-header .utility-link svg {
  width: 25px !important; /* Made icons bigger */
  height: 25px !important;
  stroke: #0c1c34 !important; /* Match deep blue color */
  stroke-width: 2.3px !important; /* Made icon outlines bolder/thicker */
  filter: none !important;
  shape-rendering: geometricPrecision !important;
  transition: none !important; /* Disabled SVG transformations */
}

.marketplace-header .utility-link:hover svg {
  transform: none !important; /* No scale on hover */
  stroke: #0c1c34 !important;
  filter: none !important;
}

.marketplace-header .utility-link .badge {
  background-color: #e11d48 !important; /* Premium magenta/pink badge instead of orange */
  color: #FFFFFF !important; /* High contrast white text */
  font-size: 9.5px !important;
  font-weight: 800 !important;
  border-radius: 50% !important;
  padding: 2px 5px !important;
  position: absolute !important;
  top: -8px !important;
  right: -4px !important;
  line-height: 1 !important;
  border: 1.5px solid #ffffff !important;
}

/* Redesigned Sub-navbar links rollback */
.sub-navbar-redesign {
  background-color: #b2d3e6 !important; /* Rollback to light blue */
  border-top: 1px solid rgba(15, 30, 54, 0.05) !important;
  border-bottom: 1px solid rgba(15, 30, 54, 0.08) !important;
}

.sub-nav-container {
  max-width: 1280px !important; /* Decreased width strip slightly */
  margin: 0 auto !important;
  padding: 2px 16px !important; /* Narrower vertical width/height */
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.sub-nav-left {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.sub-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #334155 !important;
  text-decoration: none !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
}

.sub-nav-link:hover {
  color: #0052cc !important;
}

.sub-nav-link.highlighted-link {
  color: #ff5e00 !important; /* Bulk orders orange deals highlight */
  font-weight: 700 !important;
}

/* Sub-nav split layout items */
.sub-nav-right {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-shrink: 0 !important;
}

/* Slanted divider line */
.sub-nav-divider {
  color: rgba(15, 30, 54, 0.25) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 12px !important;
  user-select: none !important;
  display: none !important; /* hide slash divider on desktop */
}

/* Premium Exclusive ⭐️ e-com solution Button (Modern glassmorphic / gold outline style) */
.sub-nav-right a[href*="e-com"] {
  background: rgba(251, 191, 36, 0.06) !important;
  color: #c27803 !important; /* Premium dark amber text */
  padding: 9px 24px !important; /* Increased padding */
  border-radius: 50px !important; /* Sleek pill shape */
  font-weight: 900 !important; /* Extra bold font weight */
  border: 1.2px solid rgba(251, 191, 36, 0.45) !important; /* Delicate gold outline */
  box-shadow: 0 2px 10px rgba(251, 191, 36, 0.05) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-transform: uppercase !important;
  font-size: 12px !important; /* Increased font-size */
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.sub-nav-right a[href*="e-com"]:hover {
  background: #fbbf24 !important; /* Gold fill on hover */
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
  transform: translateY(-1.5px) !important;
  border-color: transparent !important;
}

/* Bulk Orders Rounded Pill Crimson Outline Button */
.sub-nav-right a[href*="bulk"] {
  background: rgba(225, 29, 72, 0.06) !important;
  color: #e11d48 !important; /* Premium rose-red text */
  padding: 9px 24px !important; /* Increased padding */
  border-radius: 50px !important; /* Rounded pill style to match */
  font-weight: 900 !important; /* Extra bold font weight */
  border: 1.2px solid rgba(225, 29, 72, 0.45) !important; /* Delicate rose outline */
  box-shadow: 0 2px 10px rgba(225, 29, 72, 0.05) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important; /* Increased font-size */
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.sub-nav-right a[href*="bulk"]:hover {
  background: #e11d48 !important; /* Rose-red fill on hover */
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3) !important;
  transform: translateY(-1.5px) !important;
  border-color: transparent !important;
}

/* Centered Marketplace container layout */
.centered-marketplace-layout {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0px 16px 20px 16px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

/* Hero carousel layout customization */
.hero-carousel-section {
  position: relative !important;
  margin-top: 20px !important;
  margin-bottom: 30px !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

/* Clip box: clips the slide backgrounds with rounded corners */
.carousel-clip-box {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-md) !important;
}

.carousel-container-inner {
  position: relative !important;
  width: 100% !important;
  height: 480px !important;
}

.carousel-slides-track {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  z-index: 1 !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.carousel-slide.slide-active {
  z-index: 2 !important;
}

/* Remove default dark gradient shadow filter on the left-hand side of hero banners */
.hero-carousel-section .carousel-slide::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.carousel-slide .slide-content {
  max-width: 50% !important;
  color: #FFFFFF !important;
}

.carousel-slide .slide-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  padding: 6px 12px !important;
  border-radius: 30px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  display: inline-block !important;
  margin-bottom: 16px !important;
}

.carousel-slide .slide-title {
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin: 0 0 12px 0 !important;
}

.carousel-slide .slide-title .highlight {
  color: #38BDF8 !important;
}

.carousel-slide .slide-subtitle {
  font-size: 15px !important;
  opacity: 0.9 !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
}

.carousel-slide .slide-btn {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #FFFFFF !important;
  color: #0F172A !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 12px 28px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.25s ease !important;
}

.carousel-slide .slide-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
  background-color: #F8FAFC !important;
}

.carousel-slide .slide-images-group {
  position: relative !important;
  width: 40% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.carousel-slide .slide-images-group img {
  position: absolute !important;
  object-fit: contain !important;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25)) !important;
  transition: transform 0.5s ease !important;
  border-radius: 12px !important; /* Rounded corners on product pictures */
}

.carousel-slide .slide-img-1 {
  max-height: 270px !important; /* Increased height */
  z-index: 3 !important;
  transform: scale(1) !important;
}

.carousel-slide .slide-img-2 {
  max-height: 200px !important; /* Increased height */
  z-index: 2 !important;
  transform: translateX(-110px) translateY(20px) scale(0.9) !important;
  opacity: 0.85 !important;
}

.carousel-slide .slide-img-3 {
  max-height: 200px !important; /* Increased height */
  z-index: 2 !important;
  transform: translateX(110px) translateY(20px) scale(0.9) !important;
  opacity: 0.85 !important;
}

.carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 140px !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  opacity: 0.82 !important;
  transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  color: #1e293b !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.carousel-arrow svg {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 2.5 !important;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  color: #1e293b !important;
}

.carousel-arrow:active {
  background: rgba(220,228,240,0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  color: #334155 !important;
}

.carousel-arrow.prev:active {
  transform: translateY(-50%) translateX(-8px) scale(0.97) !important;
}

.carousel-arrow.next:active {
  transform: translateY(-50%) translateX(8px) scale(0.97) !important;
}

.carousel-arrow.prev {
  left: 0 !important;
  border-radius: 0 12px 12px 0 !important;
}

.carousel-arrow.next {
  right: 0 !important;
  border-radius: 12px 0 0 12px !important;
}

/* Responsive fallback to slide arrows inside on narrow desktop viewports */
@media (min-width: 769px) and (max-width: 1560px) {
  .carousel-arrow.prev {
    left: 0 !important;
  }
  .carousel-arrow.next {
    right: 0 !important;
  }
}

.carousel-dots-indicator {
  display: none !important;
}

.carousel-dot-indicator {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  cursor: default !important;
  pointer-events: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.carousel-dot-indicator.dot-active {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  transform: scale(1.15) !important;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8) !important;
}

/* 4-Box Discovery Grid */
.discovery-grid-section {
  margin-bottom: 30px !important;
}

.discovery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.discovery-card {
  position: relative !important;
  width: auto !important;
  background-color: #FFFFFF !important;
  border-radius: 14px !important;
  padding: 16px !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--color-border) !important;
  display: flex !important;
  flex-direction: column !important;
}

.discovery-card-title {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  position: relative !important;
  display: inline-block !important;
  background: linear-gradient(135deg, #0F1E36 0%, #1e40af 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0 !important;
  padding-bottom: 8px !important;
  border-bottom: none !important;
  margin-bottom: 15px !important;
}

.discovery-card-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 40px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #be123c 0%, #fbbf24 100%) !important;
  border-radius: 2px !important;
}

.discovery-card-subtitle {
  display: none !important;
}

.discovery-card-2x2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  flex-grow: 1 !important;
  margin-bottom: 10px !important;
  min-height: 200px !important;
}

.discovery-grid-item {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: inherit !important;
  overflow: hidden !important;
  min-width: 0 !important;
}

.discovery-grid-item img {
  width: 100% !important;
  height: 110px !important;
  max-height: 110px !important;
  object-fit: contain !important;
  background-color: #f8fafc !important;
  border-radius: 8px !important;
  padding: 8px !important;
  box-sizing: border-box !important;
  margin-bottom: 6px !important;
  border: 1px solid rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.25s ease !important;
  display: block !important;
}

.discovery-grid-item:hover img {
  transform: translateY(-2px) !important;
}

.discovery-grid-item span {
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.discovery-card-link {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #1E3E7A !important; /* Dark blue */
  text-decoration: none !important;
  display: inline-block !important;
  transition: opacity 0.2s ease !important;
  text-transform: lowercase !important;
  font-family: var(--font-display) !important;
  letter-spacing: 0.05em !important;
}

.discovery-card-link:hover {
  opacity: 0.8 !important;
}

/* Deals of the Day Redesign styles */
.deals-of-the-day-section {
  background-color: var(--color-bg-section) !important;
  border-radius: 12px !important;
  padding: 24px 20px !important;
  box-shadow: var(--shadow-sm) !important;
  border: 1px solid var(--color-border) !important;
  margin-bottom: 30px !important;
  position: relative !important;
}

.deals-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 20px !important;
  border-bottom: none !important;
  padding-bottom: 4px !important;
}

.deals-title-group {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.deals-heading {
  font-size: 20px !important;
  font-weight: 850 !important;
  color: #0f172a !important;
  margin: 0 !important;
}

.deals-countdown {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.countdown-tag {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--color-text-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.countdown-clock-digits {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

@keyframes pulseUrgent {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes blinkUrgent {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 10px #ef4444, 0 0 4px #ef4444; }
}

.digit-box {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important; /* Rich red background */
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-family: 'SF Mono', Consolas, Monaco, monospace !important; /* Premium crisp monospace font */
  font-weight: 800 !important;
  padding: 4px 8px !important;
  border-radius: 8px !important;
  min-width: 22px !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important; /* Premium subtle inner outline */
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important; /* Premium soft red drop shadow */
  display: inline-block !important;
  letter-spacing: 0.05em !important;
  animation: pulseUrgent 2.5s infinite ease-in-out !important;
}

.deals-countdown .separator {
  font-weight: 850 !important;
  color: rgba(239, 68, 68, 0.85) !important;
  font-size: 13px !important;
  margin: 0 2px !important;
}

.deals-view-all {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #1E3E7A !important;
  text-decoration: none !important;
}

.deals-slider-outer {
  position: relative !important;
  width: 100% !important;
}

.deals-slider-wrapper {
  overflow: hidden !important;
  padding: 10px 4px !important;
}

.deals-slider-track {
  display: flex !important;
  gap: 20px !important;
  transition: transform 0.5s ease !important;
  min-height: 280px !important;
}

.deals-slider-track .skeleton-card {
  flex-shrink: 0 !important;
  width: calc(100% / 6 - 17px) !important;
  flex: 0 0 calc(100% / 6 - 17px) !important;
}

.deals-slider-track .product-card,
.deals-slider-track .marquee-product-card,
.deals-slider-track .product-slide-card {
  flex-shrink: 0 !important;
  width: calc(100% / 6 - 17px) !important;
  flex: 0 0 calc(100% / 6 - 17px) !important;
  min-width: calc(100% / 6 - 17px) !important;
  max-width: 210px !important;
  box-sizing: border-box !important;
}

.deal-discount-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  background-color: #EF4444 !important;
  color: #FFFFFF !important;
  font-size: 9px !important;
  font-weight: 850 !important;
  padding: 3px 6px !important;
  border-radius: 6px !important;
  z-index: 2 !important;
}

.deal-product-image {
  width: 100% !important;
  aspect-ratio: 1 !important;
  object-fit: contain !important;
  margin-bottom: 10px !important;
}

.deal-product-title {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin: 0 0 4px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  line-height: 1.4 !important;
}

.deal-product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  margin-bottom: 6px !important;
}

.deal-product-rating .stars-fill {
  color: #FBBF24 !important;
  font-size: 11px !important;
}

.deal-product-rating .rating-val {
  font-size: 10px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.deal-product-rating .reviews-count {
  font-size: 10px !important;
  color: var(--color-text-muted) !important;
}

.deal-price-line {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.deal-price-line .price-now {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.deal-price-line .price-was {
  font-size: 11px !important;
  text-decoration: line-through !important;
  color: var(--color-text-muted) !important;
}

.deal-price-box-wrapper .product-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.deal-price-box-wrapper .price-current {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #003366 !important;
}

.deal-price-box-wrapper .price-old {
  font-size: 11px !important;
  text-decoration: line-through !important;
  color: #9ca3af !important;
  font-weight: 400 !important;
}

.deals-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 140px !important;
  border-radius: 4px !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 5 !important;
  opacity: 0.82 !important;
  transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  color: #1e293b !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  cursor: pointer !important;
}

.deals-arrow svg {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 2.5 !important;
}

.deals-arrow:hover {
  background: rgba(255,255,255,0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  color: #1e293b !important;
}

.deals-arrow:active {
  background: rgba(220,228,240,0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  transform: translateY(-50%) scale(0.97) !important;
  color: #334155 !important;
}

.deals-arrow:disabled {
  opacity: 0 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  display: none !important;
}

.deals-arrow.prev {
  left: 0 !important;
  border-radius: 0 12px 12px 0 !important;
}

.deals-arrow.next {
  right: 0 !important;
  border-radius: 12px 0 0 12px !important;
}

/* Trust features strip — matches PDP trust badges style */
.marketplace-trust-section {
  display: block !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 8px !important;
  padding: 14px 10px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02) !important;
}

.trust-container-inner {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 12px !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

.trust-item-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 4px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.trust-item-box:hover {
  transform: translateY(-1px) !important;
  background-color: transparent !important;
}

.trust-item-icon {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  color: #1a4a7a !important; /* pdp dark blue/navy stroke color */
}

.trust-item-icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #1a4a7a !important;
}

.trust-item-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.trust-title {
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  line-height: 1.25 !important;
  text-align: center !important;
  margin: 0 !important;
}

.trust-desc {
  display: none !important;
}

/* Shop by Category and Best Sellers Split section */
.split-category-best-sellers-section {
  margin-bottom: 30px !important;
}

.split-grid-row {
  display: grid !important;
  grid-template-columns: 1.25fr 0.75fr !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.bubble-categories-card,
.list-best-sellers-card {
  background-color: var(--color-bg-section) !important;
  border-radius: 12px !important;
  padding: 24px 20px !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: var(--shadow-sm) !important;
  box-sizing: border-box !important;
}

.split-section-title {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 850 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  position: relative !important;
  display: inline-block !important;
  margin-bottom: 25px !important;
  background: linear-gradient(135deg, #0F1E36 0%, #1e40af 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  padding-bottom: 0 !important;
}

.split-section-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 0 !important;
  width: 50px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #be123c 0%, #fbbf24 100%) !important;
  border-radius: 2px !important;
}

.split-section-subtitle {
  font-size: 11.5px !important;
  color: var(--color-text-muted) !important;
  margin: -20px 0 16px 0 !important;
}

/* Sidebar list row item skeleton loading layout */
.skeleton-row-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 12px !important;
  border-radius: 12px !important;
  border: 1px solid transparent !important;
  position: relative;
  overflow: hidden;
  height: 104px;
  box-sizing: border-box;
}

.skeleton-row-img {
  width: 78px !important;
  height: 78px !important;
  border-radius: 10px !important;
  flex-shrink: 0;
}

.skeleton-row-meta {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1;
}

.skeleton-row-name {
  height: 15px;
  width: 85%;
  margin-bottom: 6px;
}

.skeleton-row-category {
  height: 11px;
  width: 45%;
  margin-bottom: 6px;
}

.skeleton-row-rating {
  height: 11px;
  width: 30%;
  margin-bottom: 8px;
}

.skeleton-row-price {
  height: 16px;
  width: 40%;
}

.bubble-categories-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

.bubble-category-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
  color: inherit !important;
  gap: 10px !important;
}

.bubble-image-wrap {
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  background-color: #f1f5f9 !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
}

.bubble-category-item:hover .bubble-image-wrap {
  background-color: #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

.bubble-image-inner {
  width: 82px !important;
  height: 82px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03) !important;
}

.bubble-image-inner img {
  width: 86% !important;
  height: 86% !important;
  object-fit: contain !important;
  transition: transform 0.25s ease !important;
}

.bubble-category-item:hover .bubble-image-inner img {
  transform: scale(1.12) !important;
}

.bubble-name {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  text-align: center !important;
}

/* Right Side List Best Sellers */
.list-best-sellers-card {
  display: flex !important;
  flex-direction: column !important;
}

.list-best-sellers-card .list-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.list-view-all {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #1E3E7A !important;
  text-decoration: none !important;
}

.split-best-sellers-products {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
}

.split-bestseller-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: inherit !important;
  padding: 6px 10px !important; /* tighter padding */
  border-radius: 12px !important;
  border: 1px solid transparent !important;
  transition: all 0.25s ease !important;
}

.split-bestseller-item:hover {
  background-color: #f8fafc !important;
  border-color: rgba(0, 0, 0, 0.02) !important;
  transform: translateY(-2px) !important;
}

.split-bestseller-item img {
  width: 64px !important; /* decreased size */
  height: 64px !important; /* decreased size */
  border-radius: 8px !important;
  object-fit: contain !important;
  background-color: #f8fafc !important;
  padding: 4px !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.split-bestseller-item .item-meta {
  display: flex !important;
  flex-direction: column !important;
}

.split-bestseller-item .item-name {
  font-size: 14.5px !important;
  font-weight: 800 !important;
  color: #1e293b !important;
  margin: 0 !important;
  line-height: 1.35 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.split-bestseller-item .item-category {
  font-size: 11.5px !important;
  color: var(--color-text-muted) !important;
  margin-top: 3px !important;
}

.split-bestseller-item .item-rating-row {
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-top: 3px !important;
}

.split-bestseller-item .item-price {
  font-size: 15px !important;
  font-weight: 850 !important;
  color: #003366 !important;
  margin-top: 4px !important;
}

/* Category list sliders general container customization */
.slider-arrow-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 140px !important;
  border-radius: 4px !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 5 !important;
  opacity: 0.82 !important;
  transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  color: #1e293b !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  cursor: pointer !important;
}

.slider-arrow-btn svg {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 2.5 !important;
}

.slider-arrow-btn:hover {
  background: rgba(255,255,255,0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  color: #1e293b !important;
}

.slider-arrow-btn:active {
  background: rgba(220,228,240,0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  color: #334155 !important;
}

.slider-arrow-btn.prev:active {
  transform: translateY(-50%) translateX(-8px) scale(0.97) !important;
}

.slider-arrow-btn.next:active {
  transform: translateY(-50%) translateX(8px) scale(0.97) !important;
}

.slider-arrow-btn:disabled {
  opacity: 0 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  display: none !important;
}

.slider-arrow-btn.prev {
  left: 0 !important;
  border-radius: 0 12px 12px 0 !important;
}

.slider-arrow-btn.next {
  right: 0 !important;
  border-radius: 12px 0 0 12px !important;
}

/* Triple promo banners styling */
.promo-banners-triple-section {
  margin-bottom: 30px !important;
}

.promo-banners-triple-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

.promo-box-triple {
  border-radius: 12px !important;
  padding: 20px 24px !important;
  height: 180px !important;
  display: grid !important;
  grid-template-columns: 1fr 140px !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  box-sizing: border-box !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden !important;
  position: relative !important;
}

.promo-box-triple .promo-box-left {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: 100% !important;
  z-index: 2 !important;
}

.promo-box-triple .promo-badge-tag {
  display: none !important;
}

.promo-box-triple .promo-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.promo-box-triple .promo-text {
  font-size: 12.5px !important;
  opacity: 0.9 !important;
  margin: 4px 0 0 0 !important;
}

.promo-box-triple .promo-btn-white {
  grid-column: 1 !important;
  grid-row: 2 !important;
  margin-top: 12px !important;
  justify-self: start !important;
  background-color: #FFFFFF !important;
  color: #1e3c72 !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  padding: 8px 24px !important;
  min-width: 110px !important;
  text-align: center !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
  z-index: 2 !important;
}

.promo-box-triple .promo-btn-white:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1) !important;
}

.promo-box-triple .promo-btn-white:active {
  transform: scale(0.97) !important;
}

.promo-box-triple .promo-box-right {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  width: 140px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
  flex-shrink: 0 !important;
}

.promo-box-triple .promo-box-right img {
  width: 140px !important;
  height: 140px !important;
  max-height: 140px !important;
  max-width: 140px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  border: 3.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 8px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) !important;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-sizing: border-box !important;
}

.promo-box-triple:hover .promo-box-right img {
  transform: scale(1.08) rotate(3deg) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Tablet: keep 3 columns, just compress sizing */
@media (min-width: 768px) and (max-width: 1199px) {
  .discovery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .promo-banners-triple-row {
    grid-template-columns: repeat(3, 1fr) !important;  /* STAY in a row */
    gap: 12px !important;
  }
  .promo-box-triple {
    height: auto !important;
    min-height: 150px !important;
    padding: 16px !important;
    flex-direction: column !important;      /* stack text above image */
    align-items: flex-start !important;
  }
  .promo-box-triple .promo-box-left {
    max-width: 100% !important;
  }
  .promo-box-triple .promo-box-right {
    width: 100% !important;
    height: auto !important;
    justify-content: flex-start !important;
    margin-top: 10px !important;
  }
  .promo-box-triple .promo-box-right img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }
  .promo-box-triple .promo-title {
    font-size: 15px !important;
  }
  .promo-box-triple .promo-text {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }
  .split-grid-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  /* Promo banners: Amazon-style vertical snap-scroll gallery */
  .promo-banners-triple-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 15px 24px !important;
    margin: 0 -24px !important;
    width: auto !important;
    max-width: none !important;
    scrollbar-width: none !important;
  }
  .promo-box-triple {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 78% !important;
    width: 78% !important;
    height: 330px !important;
    padding: 20px !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    border-radius: 24px !important;
    scroll-snap-align: center !important;
    position: relative !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .promo-box-triple::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }
  .promo-box-triple .promo-box-left {
    grid-column: auto !important;
    grid-row: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .promo-box-triple .promo-badge-tag {
    font-size: 9px !important;
    padding: 4px 10px !important;
    margin-bottom: 6px !important;
    z-index: 2 !important;
    border-radius: 50px !important;
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
  }
  .promo-box-triple .promo-title {
    font-size: 21px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
    z-index: 2 !important;
  }
  .promo-box-triple .promo-text {
    font-size: 13px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    color: rgba(255,255,255,0.85) !important;
    z-index: 2 !important;
  }
  .promo-box-triple .promo-btn-white {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: stretch !important;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 10px 0 !important;
    border-radius: 10px !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    display: block !important;
    text-decoration: none !important;
    z-index: 2 !important;
    transition: transform 0.2s ease !important;
  }
  .promo-box-triple .promo-box-right {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 14px !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    z-index: 2 !important;
  }
  .promo-box-triple .promo-box-right img {
    width: 100% !important;
    height: 165px !important;
    object-fit: contain !important;
    background-color: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 10px 14px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }
  .promo-box-triple .promo-btn-white:hover {
    transform: scale(1.02) !important;
  }
  .promo-box-triple .promo-btn-white:active {
    transform: scale(0.98) !important;
  }

  .sub-navbar-redesign {
    display: block !important;
    background: #b2d3e6 !important;
    padding: 0 !important;
    overflow: visible !important;
    border-bottom: 1px solid rgba(15, 30, 54, 0.1) !important;
  }
  .sub-nav-container {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
  }
  .sub-nav-left {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    padding: 10px 16px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .sub-nav-left .sub-nav-link {
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0F1E36 !important;
    opacity: 1 !important;
    white-space: nowrap !important;
  }
  .marketplace-header {
    background-color: #8dbdd8 !important;
    background: #8dbdd8 !important;
  }
  .hero-carousel-section {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
  }
  .carousel-clip-box {
    border-radius: 0 !important;
    overflow: hidden !important;
  }
  .carousel-container-inner {
    height: 240px !important;
    overflow: visible !important;
  }
  .carousel-slide {
    display: block !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    min-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  }
  .carousel-slide .slide-content {
    max-width: 58% !important;
    width: 58% !important;
    color: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    z-index: 2 !important;
  }
  .carousel-slide .slide-badge {
    font-size: 7.5px !important;
    padding: 2px 6px !important;
    border-radius: 20px !important;
    margin-bottom: 4px !important;
    display: inline-block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .carousel-slide .slide-title {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 0 3px 0 !important;
    text-align: left !important;
  }
  .carousel-slide .slide-title .highlight {
    font-size: inherit !important;
  }
  .carousel-slide .slide-subtitle {
    font-size: 9px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
    max-width: 100% !important;
    text-align: left !important;
    opacity: 0.95 !important;
  }
  .carousel-slide .slide-btn {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #FFFFFF !important;
    color: #0F172A !important;
    font-weight: 700 !important;
    font-size: 8.5px !important;
    padding: 5px 12px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .carousel-slide .slide-btn:hover {
    background-color: #F8FAFC !important;
    transform: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  }
  .carousel-slide .slide-images-group {
    width: 38% !important;
    height: 100% !important;
    display: flex !important;
    position: relative !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    bottom: auto !important;
    z-index: 2 !important;
  }
  /* Restore the three overlapping images layered on the right on mobile */
  .carousel-slide .slide-images-group img {
    position: absolute !important;
    display: block !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25)) !important;
    border-radius: 8px !important; /* Rounded corners on product pictures */
  }
  .carousel-slide .slide-images-group img:not(.slide-img-1) {
    display: block !important; /* Re-show helper images */
  }
  .carousel-slide .slide-img-1 {
    max-height: 130px !important; /* Increased height */
    z-index: 3 !important;
    transform: scale(1) !important;
  }
  .carousel-slide .slide-img-2 {
    max-height: 95px !important; /* Increased height */
    z-index: 2 !important;
    transform: translateX(-45px) translateY(8px) scale(0.9) !important;
    opacity: 0.85 !important;
  }
  .carousel-slide .slide-img-3 {
    max-height: 95px !important; /* Increased height */
    z-index: 2 !important;
    transform: translateX(45px) translateY(8px) scale(0.9) !important;
    opacity: 0.85 !important;
  }
  /* Hide carousel navigation arrows on mobile viewports */
  .carousel-arrow {
    display: none !important;
  }
  .discovery-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2x2 Category Layout on mobile */
    gap: 10px !important;
  }
  .discovery-card {
    padding: 8px !important;
    border-radius: 12px !important;
  }
  .discovery-card-title {
    font-size: 13px !important;
    margin: 0 !important;
    padding-bottom: 8px !important;
    border-bottom: none !important;
    margin-bottom: 8px !important;
  }
  .discovery-card-subtitle {
    display: none !important;
  }
  .discovery-card-2x2 {
    gap: 6px !important;
    margin-bottom: 8px !important;
  }
  .discovery-grid-item img {
    height: 80px !important;
    max-height: 80px !important;
    padding: 2px !important;
    margin-bottom: 3px !important;
    border-radius: 6px !important;
  }
  .discovery-grid-item span {
    font-size: 9.5px !important;
    font-weight: 600 !important;
  }
  .discovery-card-link {
    font-size: 10px !important;
  }
  .bubble-categories-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* 4 items in a straight row */
    gap: 8px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .bubble-category-item {
    flex: none !important;
    width: 100% !important;
    gap: 6px !important;
  }
  .bubble-image-wrap {
    width: 62px !important;
    height: 62px !important;
    margin: 0 auto !important;
  }
  .bubble-image-inner {
    width: 52px !important;
    height: 52px !important;
  }
  .bubble-name {
    font-size: 10.5px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
  .marketplace-header .search-container {
    display: none !important;
  }
  .all-categories-select {
    display: none !important;
  }
  .unified-search-wrapper {
    display: none !important;
  }

  /* Stacking the split grid row on mobile */
  .split-grid-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Horizontal swipe scrolling for product sliders on mobile */
  .product-slider-wrapper {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 12px 20px !important;
    margin: 0 -20px !important;
    width: auto !important;
  }
  .product-slider-wrapper::-webkit-scrollbar {
    display: none !important;
  }
  .product-slider-track {
    transform: none !important;
    gap: 16px !important;
  }
  .product-slide-card,
  .product-slider-track .skeleton-card {
    flex: 0 0 38% !important;
    width: 38% !important;
    scroll-snap-align: start !important;
    border-radius: 8px !important;
    padding: 8px !important;
  }
  .product-slide-card .product-info,
  .skeleton-card .skeleton-info {
    padding: 0 !important;
  }
  .product-slide-card .product-image,
  .skeleton-card .skeleton-img,
  .skeleton-card .skeleton-image {
    padding: 6px !important;
    border-radius: 6px !important;
  }
  .product-slide-card .product-title {
    font-size: 11px !important;
    height: 30px !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .product-slide-card .product-category {
    font-size: 8px !important;
    margin-bottom: 2px !important;
  }
  .product-slide-card .product-rating {
    margin-bottom: 3px !important;
    gap: 1px !important;
  }
  .product-slide-card .product-rating span {
    font-size: 9px !important;
  }
  .product-slide-card .product-sales-badge {
    padding: 2px 4px !important;
    font-size: 8px !important;
    margin-bottom: 4px !important;
  }
  .product-slide-card .product-sales-badge svg {
    width: 8px !important;
    height: 8px !important;
  }
  .product-slide-card .price-current {
    font-size: 11.5px !important;
  }
  .product-slide-card .price-old {
    font-size: 9px !important;
  }
  .product-slide-card .product-badge {
    font-size: 8px !important;
    padding: 2px 5px !important;
    top: 6px !important;
    left: 6px !important;
  }
  .product-slide-card .product-wishlist-btn {
    top: 6px !important;
    right: 6px !important;
    width: 24px !important;
    height: 24px !important;
  }
  .product-slide-card .product-wishlist-btn svg {
    width: 12px !important;
    height: 12px !important;
  }

  /* Horizontal swipe scrolling for Deals of the Day slider on mobile */
  .deals-of-the-day-section {
    overflow: hidden !important; /* Contain cards within the section box */
  }
  .deals-slider-outer {
    overflow: hidden !important;
  }
  .deals-slider-wrapper {
    overflow: hidden !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .deals-slider-track {
    display: flex !important;
    gap: 12px !important;
    transition: transform 0.5s ease !important;
    min-height: 210px !important;
  }
  .deal-product-item-card,
  .deals-slider-track .product-card,
  .deals-slider-track .marquee-product-card,
  .deals-slider-track .product-slide-card {
    flex: 0 0 calc(38vw - 10px) !important;
    width: calc(38vw - 10px) !important;
    min-width: calc(38vw - 10px) !important;
    max-width: calc(38vw - 10px) !important;
    padding: 0 !important;
    border-radius: 8px !important;
    scroll-snap-align: start !important;
  }
  .deal-product-image {
    margin-bottom: 6px !important;
  }
  .deal-product-title {
    font-size: 11.5px !important;
    margin-bottom: 4px !important;
  }
  .deal-product-rating {
    margin-bottom: 4px !important;
    gap: 1px !important;
  }
  .deal-product-rating .stars-fill {
    font-size: 9px !important;
    color: #FBBF24 !important;
  }
  .deal-product-rating .rating-val, 
  .deal-product-rating .reviews-count {
    font-size: 8.5px !important;
  }
  .deal-price-line {
    font-size: 12px !important;
    gap: 4px !important;
  }
  .deals-arrow {
    display: none !important;
  }
}

/* Amazon-Style Main Image Zoom Container */
.main-image-container {
  position: relative !important;
  overflow: hidden !important;
  cursor: zoom-in !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 16px !important;
  background-color: #FFFFFF !important;
}

#gallery-main-img {
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transform-origin: center center;
}

/* Active Gallery Thumbnail */
.thumb-item {
  border: 2px solid transparent !important;
  border-radius: 8px !important;
  padding: 2px !important;
  cursor: pointer !important;
  transition: border-color 0.2s ease !important;
  flex-shrink: 0 !important;
  width: 64px !important;
  height: 64px !important;
  background-color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: var(--shadow-sm) !important;
}
.thumb-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 6px !important;
}
.thumb-item.active {
  border-color: #2563FF !important;
}

/* Marketplace Action Buttons */
.marketplace-buttons-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  margin-top: 20px !important;
  margin-bottom: 24px !important;
}
.marketplace-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 13px 22px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1.5px solid transparent !important;
}
.btn-amazon {
  background: #FFD814 !important;
  color: #0F1111 !important;
  border-color: #FCD200 !important;
  border-radius: 99px !important;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5) !important;
}
.btn-amazon:hover {
  background: #F7CA00 !important;
  border-color: #F2C200 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(213, 217, 217, 0.8) !important;
}
.btn-flipkart {
  background: #FB641B !important;
  color: #FFFFFF !important;
  border-color: #FB641B !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 6px rgba(251, 100, 27, 0.2) !important;
}
.btn-flipkart:hover {
  background: #E8570F !important;
  border-color: #E8570F !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(251, 100, 27, 0.35) !important;
}

/* Underline Gradient Decorator */
@keyframes loader-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.split-section-underline {
  width: 100px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #FFB020 0%, #2563FF 50%, #FFB020 100%) !important;
  background-size: 200% 100% !important;
  animation: loader-shimmer 2.5s infinite linear !important;
  border-radius: 4px !important;
  display: block !important;
}

/* Shop Category Split Promo Banner */
.split-promo-banner {
  margin-top: 24px !important;
  background: linear-gradient(135deg, #091e3a 0%, #1e3c72 100%) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  aspect-ratio: 2.89 / 1 !important;
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: var(--shadow-sm) !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.split-promo-banner:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.split-promo-banner .banner-content {
  max-width: 60% !important;
  z-index: 2 !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.split-promo-banner .banner-badge {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  font-size: 8.5px !important;
  font-weight: 850 !important;
  padding: 3px 8px !important;
  border-radius: 30px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
}

.split-promo-banner .banner-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: #FFFFFF !important;
  margin: 0 0 6px 0 !important;
}

.split-promo-banner .banner-text {
  font-size: 11.5px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.4 !important;
}

.split-promo-banner .banner-btn {
  background-color: #FFFFFF !important;
  color: #091e3a !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}

.split-promo-banner .banner-btn:hover {
  background-color: #f8fafc !important;
  transform: translateY(-1px) !important;
}

.split-promo-banner .banner-image-wrap {
  width: 35% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
  background: transparent !important;
}

.split-promo-banner .banner-image-wrap img {
  max-height: 80% !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: none !important;
  transform: translateY(10px) scale(1.05) !important;
  transition: transform 0.4s ease !important;
}

.split-promo-banner:hover .banner-image-wrap img {
  transform: translateY(10px) scale(1.1) rotate(-1deg) !important;
}

/* ==========================================================================
   14. Premium 3-Column Product Details Layout (Amazon Style)
   ========================================================================== */
.product-layout-grid-3col {
  display: grid !important;
  grid-template-columns: 1.15fr 1.15fr 0.7fr !important;
  gap: 32px !important;
  align-items: start !important;
}

@media (max-width: 1200px) {
  .product-layout-grid-3col {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .product-purchase-sidebar {
    grid-column: span 2 !important;
  }
}

@media (max-width: 768px) {
  .product-layout-grid-3col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .product-purchase-sidebar {
    grid-column: span 1 !important;
  }
}

/* Column 1: Gallery with Vertical Thumbnails */
.product-gallery-3col {
  display: flex !important;
  gap: 16px !important;
  position: sticky !important;
  top: 100px !important;
}

.product-gallery-3col .thumbnail-vertical-strip {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  overflow-y: auto !important;
  max-height: 480px !important;
  width: 68px !important;
  flex-shrink: 0 !important;
  padding-right: 4px !important;
}

.product-gallery-3col .main-image-wrap {
  flex-grow: 1 !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 4px !important; /* Pointier corner box */
  background: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1.05 !important;
  max-height: 480px !important;
  overflow: hidden !important;
  padding: 16px !important;
}

/* Amazon-style desktop thumbnail hiding & overlay elements */
@media (min-width: 769px) {
  .thumbnail-vertical-strip .extra-hidden-thumb {
    display: none !important;
  }
}

.more-thumb-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display), sans-serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  border-radius: inherit !important;
  z-index: 5 !important;
}

.modal-grid-item {
  position: relative !important;
  aspect-ratio: 1 !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  transition: all 0.2s ease !important;
  padding: 8px !important;
  box-sizing: border-box !important;
}

.modal-grid-item:hover {
  border-color: #ff5e00 !important;
  transform: scale(1.03) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
}

.modal-grid-item img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.product-gallery-3col .main-image-wrap img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

@media (max-width: 768px) {
  .product-gallery-3col {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .product-gallery-3col .thumbnail-vertical-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    max-height: none !important;
    padding-bottom: 8px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 99%, transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 99%, transparent 100%) !important;
  }
  .product-gallery-3col .thumbnail-vertical-strip .thumb-item {
    width: 72px !important;
    height: 72px !important;
    flex: 0 0 72px !important;
  }
  .purchase-widget-card {
    display: none !important;
  }
  #marketplace-links-container > div {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #marketplace-links-container .premium-marketplace-btn {
    margin-top: 0 !important;
    font-size: 12.5px !important;
    padding: 10px 12px !important;
    flex: 1 1 0% !important;
  }
}
#tab-description iframe {
  width: 100% !important;
  max-width: 800px !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  margin: 16px auto !important;
  display: block !important;
}

.desc-video-holder iframe,
.desc-video-holder video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  background: transparent !important;
}

/* Column 2: Center Details */
.product-meta-details-mid {
  display: flex !important;
  flex-direction: column !important;
}

/* Offers Row */
.offers-row {
  display: flex !important;
  gap: 12px !important;
  margin: 20px 0 !important;
  overflow-x: auto !important;
  padding-bottom: 8px !important;
}

.offer-card {
  border: 1px solid rgba(15, 30, 54, 0.06) !important;
  border-radius: 10px !important;
  padding: 12px !important;
  min-width: 110px !important;
  flex: 1 !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFCFD 100%) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
  text-align: left !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  cursor: default !important;
}



.offer-card-tag {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #0F1E36 !important;
  letter-spacing: 0px !important;
  margin-bottom: 4px !important;
  display: block !important;
}

.offer-card-desc {
  font-size: 11px !important;
  color: #6B7280 !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  display: block !important;
}

/* PDP Premium Unified Trust Badges Card */
.pdp-trust-badges-card {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 8px !important;
  padding: 14px 10px !important;
  margin: 16px 0 20px !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02) !important;
}
.pdp-trust-badge {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 4px !important;
  transition: all 0.2s ease !important;
}
.pdp-trust-badge svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  margin-bottom: 2px !important;
}
.pdp-trust-badge .badge-title {
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  line-height: 1.25 !important;
}
.pdp-trust-badge .badge-desc {
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #64748B !important;
  line-height: 1.3 !important;
}
.pdp-trust-badge:hover {
  transform: translateY(-1px) !important;
}

/* Services highlights horizontal strip */
.services-highlights-strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  border-top: 1px solid var(--color-border) !important;
  border-bottom: 1px solid var(--color-border) !important;
  padding: 16px 0 !important;
  margin: 24px 0 !important;
  text-align: center !important;
}

.service-highlight-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
}

.service-highlight-icon {
  color: var(--color-primary) !important;
  background: rgba(37, 99, 255, 0.06) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-highlight-text {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: var(--color-text-main) !important;
  line-height: 1.25 !important;
}

/* Column 3: Purchase Widget Sidebar Card */
.purchase-widget-card {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px 20px !important;
  background-color: #FFFFFF !important;
  box-shadow: var(--shadow-sm) !important;
}

@media (min-width: 1201px) {
  .product-purchase-sidebar {
    position: sticky !important;
    top: 100px !important;
  }
}

.purchase-price-row {
  margin-bottom: 12px !important;
  font-family: var(--font-display) !important;
}

.purchase-price-value {
  font-size: 24px !important;
  font-weight: 850 !important;
  color: var(--color-text-main) !important;
}

.purchase-availability {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #166534 !important; /* Premium subtle forest green */
  background-color: rgba(22, 101, 52, 0.06) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  margin-bottom: 16px !important;
}

.purchase-delivery-text {
  font-size: 13px !important;
  color: #565959 !important;
  line-height: 1.5 !important;
  margin-bottom: 16px !important;
}

.purchase-delivery-location {
  font-size: 12px !important;
  color: var(--color-text-muted) !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.purchase-btn-pill {
  width: 100% !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-size: var(--text-sm) !important;
  font-weight: 750 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  margin-bottom: 12px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--shadow-sm) !important;
}

.purchase-btn-pill.btn-atc {
  background-color: #0B1530 !important; /* Premium Deep Navy instead of cheap yellow */
  color: #FFFFFF !important;
  border: 1px solid #0B1530 !important;
}

.purchase-btn-pill.btn-atc:hover {
  background-color: #1A2E65 !important;
  border-color: #1A2E65 !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Premium Referral Buttons (Moved outside the card box) */
.premium-marketplace-btn {
  width: 100% !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  font-size: 13.5px !important;
  font-weight: 750 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--shadow-sm) !important;
  margin-top: 10px !important;
}

.premium-marketplace-btn.amazon {
  background-color: #000000 !important;
  background-image: none !important;
  color: #FF9900 !important;
  border: 1.5px solid #000000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  border-radius: 100px !important; /* Fully rounded pill like Amazon buttons */
}

.premium-marketplace-btn.amazon:hover {
  background-color: #111111 !important;
  border-color: #FF9900 !important;
  color: #FFB700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35) !important;
}

.premium-marketplace-btn.amazon:active {
  transform: translateY(-1px) scale(0.98) !important;
}

.premium-marketplace-btn.flipkart {
  background-color: #2874F0 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  border: 1.5px solid #2874F0 !important;
  box-shadow: 0 4px 12px rgba(40, 116, 240, 0.2) !important;
  border-radius: 100px !important; /* Fully rounded pill style */
}

.premium-marketplace-btn.flipkart:hover {
  background-color: #1A58C0 !important;
  border-color: #FFE500 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(40, 116, 240, 0.4) !important;
}

.premium-marketplace-btn.flipkart:active {
  transform: translateY(-1px) scale(0.98) !important;
}

.purchase-meta-row {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 11.5px !important;
  color: var(--color-text-muted) !important;
  margin-bottom: 6px !important;
}

.purchase-secure-transaction {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  color: var(--color-text-muted) !important;
  margin-top: 16px !important;
  border-top: 1px solid var(--color-border) !important;
  padding-top: 12px !important;
}

/* Scroll-down-to-hide, scroll-up-to-show header styles */
.main-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transform: translateY(0) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.main-header.header-hidden {
  position: sticky !important;
  top: 0 !important;
  transform: translateY(-100%) !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.main-header.header-at-top {
  position: sticky !important;
  top: 0 !important;
}

.main-header.no-transition {
  transition: none !important;
}

/* Amazon-style Scrollbar: invisible path/track, floating thumb */
html, body {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE */
}

/* Hide website main scrollbars */
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Hide product gallery thumbnail scrollbar */
.product-gallery-3col .thumbnail-vertical-strip {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.product-gallery-3col .thumbnail-vertical-strip::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Custom scrollbars for other internal panels */
::-webkit-scrollbar {
  width: 5px !important;
  height: 5px !important;
}

::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2) !important;
  border-radius: 10px !important;
}

/* Unified Mobile Overrides (v6.10) */
@media (max-width: 767px) {
  /* 1. Header Utilities & Brand Logo layout spacing */
  .marketplace-header .utility-link span {
    display: none !important; /* Hide labels completely on mobile */
  }
  .marketplace-header .utility-link {
    font-size: 0 !important;
    gap: 0 !important;
  }
  .marketplace-header .logo-group {
    margin-right: auto !important; /* Keep logo and search aligned nicely */
  }
  
  /* 2. Sub-navbar: hide completely on mobile */
  .sub-navbar-redesign {
    display: none !important;
  }
  .sub-nav-container {
    padding: 0 12px !important;
  }
  .sub-nav-left {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 8px 0 !important;
    width: max-content !important;
  }
  .sub-nav-left .sub-nav-link {
    display: inline-flex !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
    white-space: nowrap !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 4px 6px !important;
  }
  .sub-nav-left a[href*="bulk"] {
    display: inline-flex !important;
    font-size: 10px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    background-color: #FF5E00 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    margin: 0 !important;
  }

  /* 3. Unified Category Discovery Card Layout (Clean white box with thin separation borders) */
  .discovery-grid-section {
    background-color: #FFFFFF !important;
    border-radius: 10px !important; /* Less rounded corners */
    padding: 12px 10px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: var(--shadow-sm) !important;
    margin-bottom: 24px !important;
  }
  .discovery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important; /* Seamless borders alignment */
    background: transparent !important;
  }
  .discovery-card {
    padding: 12px 8px !important; /* Placement closer to container edges */
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .discovery-card:nth-child(1),
  .discovery-card:nth-child(3) {
    border-right: 1.5px solid #E2E8F0 !important; /* Premium vertical grid division */
  }
  .discovery-card:nth-child(1),
  .discovery-card:nth-child(2) {
    border-bottom: 1.5px solid #E2E8F0 !important; /* Premium horizontal grid division */
  }
  .discovery-card-title {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 8px !important;
  }
  .discovery-card-subtitle {
    display: none !important;
  }
  .discovery-card-2x2 {
    gap: 6px !important;
    margin-bottom: 4px !important;
    min-height: auto !important;
    flex-grow: 0 !important;
  }
  .discovery-grid-item img {
    height: 80px !important;
    max-height: 80px !important;
    padding: 2px !important;
    margin-bottom: 3px !important;
    border-radius: 6px !important;
    background-color: transparent !important;
    border: none !important;
  }
  .discovery-grid-item span {
    font-size: 9.5px !important;
    font-weight: 600 !important;
    color: inherit !important;
  }
  .discovery-card-link {
    font-size: 9.5px !important;
    color: #1E3E7A !important; /* Dark blue */
    font-weight: 700 !important;
    text-transform: lowercase !important;
    margin-top: 4px !important;
    display: inline-block !important;
  }

  /* 4. Deals of the Day Box & Header Sizing on Mobile */
  .deals-of-the-day-section {
    padding: 12px 10px !important;
    border-radius: 10px !important; /* Less rounded corners */
    border: 1px solid #e2e8f0 !important;
    box-shadow: var(--shadow-sm) !important;
    margin-bottom: 24px !important;
    overflow: hidden !important; /* Contain cards within the section box */
  }
  .deals-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 8px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }
  .deals-title-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  .deals-heading {
    font-size: 11.5px !important;
    margin: 0 !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
  .deals-countdown {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    flex-shrink: 0 !important;
  }
  .countdown-tag {
    display: none !important;
  }
  .countdown-clock-digits {
    gap: 1.5px !important;
    display: flex !important;
    align-items: center !important;
  }
  .digit-box {
    font-size: 9px !important;
    padding: 1.5px 3.5px !important;
    min-width: 14px !important;
    border-radius: 3px !important;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.25) !important;
  }
  .deals-countdown .separator {
    font-size: 8px !important;
    margin: 0 1px !important;
  }
  .deals-live-badge {
    display: none !important;
  }
  .deals-view-all {
    font-size: 9.5px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    color: #1E3E7A !important; /* dark blue */
    font-weight: 700 !important;
    text-transform: lowercase !important;
  }

  /* 5. Trust Features single-thread logos alignment (exactly 3 main badges) */
  .marketplace-trust-section {
    background: #F8FAFC !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 8px !important;
    padding: 12px 6px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02) !important;
  }
  .trust-container-inner {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 4px !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }
  .trust-item-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1 !important;
    margin: 0 !important;
    gap: 4px !important;
  }
  .trust-item-box:hover {
    transform: none !important;
    background-color: transparent !important;
  }
  .trust-item-icon {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 2px !important;
  }
  .trust-item-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #1a4a7a !important;
  }
  .trust-item-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .trust-title {
    font-size: 8.5px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
  }
  .trust-desc {
    display: none !important; /* Hide descriptions to save mobile height */
  }

  /* 6. Flatten category cards and best sellers list to remove extra boxes on mobile */
  .bubble-categories-card,
  .list-best-sellers-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 12px 0 !important;
  }
  .bubble-categories-card .split-card-header,
  .list-best-sellers-card .split-card-header {
    padding: 0 0 6px 0 !important;
    background: transparent !important;
    background-color: transparent !important; /* Override inline background-color: #ffffff */
    border-bottom: none !important; /* Remove the white divider line */
  }
  .bubble-categories-card .split-card-body,
  .list-best-sellers-card .split-card-body {
    padding: 12px 0 0 0 !important;
    gap: 14px !important;
  }
  .split-section-title {
    font-size: 16px !important;
    padding-bottom: 6px !important;
  }
  .split-section-title::after {
    width: 80px !important;
    height: 2.5px !important;
  }
  
  /* Bestsellers item scaling */
  .split-bestseller-item {
    padding: 8px !important;
    gap: 12px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 10px !important;
  }
  .split-bestseller-item img {
    width: 64px !important;
    height: 64px !important;
    padding: 4px !important;
  }
  .split-bestseller-item .item-title {
    font-size: 12px !important;
  }
  .split-bestseller-item .item-price {
    font-size: 13px !important;
  }
  .discovery-card-link {
    display: none !important; /* Hide Explore all on mobile to declutter */
  }
  /* Hide subtitle and tighten Best Sellers list spacing */
  .split-section-subtitle {
    display: none !important;
  }
  .split-best-sellers-products {
    gap: 10px !important;
  }
  .split-bestseller-item:hover {
    transform: none !important; /* No hover animation on mobile */
  }
}

/* General Discovery Grid Adjustments (v6.11) */
.discovery-grid-section .discovery-card {
  border-radius: 10px !important; /* Less rounded corners */
  cursor: default !important; /* Remove pointer cursor from outer card container */
}

/* Remove hover grow animation and highlight borders */
.discovery-grid-section .discovery-card:hover {
  transform: none !important;
  box-shadow: var(--shadow-sm) !important;
  border-color: var(--color-border) !important;
  z-index: 1 !important;
}

/* Ensure sub-items remain clickable and show pointer */
.discovery-grid-item {
  cursor: pointer !important;
}

/* Add slight breathing space to Explore all link on desktop */
.discovery-card-link {
  margin-top: 12px !important;
  display: inline-block !important;
}

/* Hide wishlist button globally on both desktop and mobile */
.header-utilities a[href*="wishlist"] {
  display: none !important;
}

/* Make header icons slightly larger and better optimized on desktop */
.header-utilities svg {
  width: 22px !important;
  height: 22px !important;
}

/* Mobile-specific adjustments for larger icons and perfect spacing */
@media (max-width: 767px) {
  .header-utilities {
    gap: 18px !important; /* Proper spacing for 3 utility icons on mobile */
  }
  .header-utilities svg {
    width: 23px !important; /* Slightly bigger on mobile for ease of tap */
    height: 23px !important;
  }
  .header-utilities .badge {
    top: -5px !important;
    right: -8px !important;
  }
}

/* Hide the mobile clone on desktop */
.mobile-only-category-bubbles {
  display: none !important;
}

/* =========================================
   Mobile Layout Reordering (CodeRabbit Request)
   ========================================= */
@media (max-width: 768px) {
  .centered-marketplace-layout {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Default all children to order 5 so they stay in natural DOM order at the bottom */
  .centered-marketplace-layout > * {
    order: 5;
  }
  
  /* Explicitly reorder the top 4 sections */
  .video-spotlight-section {
    order: 1 !important;
  }
  

  
  .mobile-only-category-bubbles {
    display: block !important;
    order: 3 !important;
    margin-bottom: 25px !important;
    background: var(--color-bg-white) !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-sm) !important;
  }
  
  .discovery-grid-section {
    order: 4 !important;
  }
  
  /* Push original split-category containing banners down, and hide the duplicate bubbles inside it */
  .split-category-best-sellers-section {
    order: 5 !important;
  }
  
  .split-category-best-sellers-section .split-card-header,
  .split-category-best-sellers-section .bubble-categories-row {
    display: none !important;
  }

  /* Redundant vertical list is hidden on mobile, as we already have the horizontal slider below it */
  .list-best-sellers-card {
    display: none !important;
  }

  /* Product slider section optimizations on mobile */
  .product-slider-section {
    padding: 20px 0 !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    overflow: visible !important;  /* Allow cards to peek past right edge */
  }

  /* Header and container need horizontal padding */
  .product-slider-section .container {
    padding: 0 16px !important;
    overflow: visible !important;
  }
  
  /* Slider wrapper: override the inline overflow:hidden — key mobile fix */
  .product-slider-section .product-slider-wrapper {
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 8px 0 12px 16px !important;
    margin: 0 -16px 0 0 !important;  /* Extend wrapper into section right edge */
  }
  
  /* Track extends beyond viewport for peeking */
  .product-slider-section .product-slider-track {
    gap: 12px !important;  /* Tighter gap on mobile (inline has 24px) */
    padding-right: 32px !important;  /* Allow last card to not flush the edge */
  }

  /* Compact min-heights for mobile views to prevent empty gaps */
  .product-slider-track {
    min-height: 220px !important;
  }
  .deals-slider-track {
    min-height: 220px !important;
  }
  .deals-slider-track .skeleton-card {
    flex: 0 0 38% !important;
    width: 38% !important;
    border-radius: 8px !important;
    padding: 8px !important;
  }

  /* Mobile optimizations for marquee and slider product cards */
  .marquee-product-card .product-category,
  .product-slide-card .product-category {
    font-size: 8px !important;
    margin-bottom: 2px !important;
  }
  .marquee-product-card .product-title,
  .product-slide-card .product-title {
    font-size: 11px !important;
    height: 30px !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .marquee-product-card .price-current,
  .product-slide-card .price-current {
    font-size: 11.5px !important;
  }
  .marquee-product-card .price-old,
  .product-slide-card .price-old {
    font-size: 9px !important;
  }
  .marquee-product-card .savings-text-dynamic,
  .product-slide-card .savings-text-dynamic,
  .deals-slider-track .savings-text-dynamic {
    font-size: 9.5px !important;
    margin-top: 2px !important;
  }

  /* Mobile responsive rectangular slider arrow buttons */
  .slider-arrow-btn,
  .deals-arrow {
    display: none !important;
  }

  /* Grid alignment of slider section headers on mobile */
  .sec-header-row {
    margin-bottom: 16px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 4px 12px !important;
    align-items: center !important;
  }
  .sec-header-row > div {
    display: contents !important;
  }
  .sec-header-row .kawachi-sec-title {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: 20px !important;
  }
  .sec-header-row > a {
    grid-column: 2 !important;
    grid-row: 1 !important;
    white-space: nowrap !important;
    align-self: center !important;
    font-size: 13px !important;
  }
  .sec-header-row .kawachi-sec-desc {
    grid-column: 1 / span 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  .testimonials-scroll-track {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

/* Base styling for sec-header-row on desktop */
.sec-header-row {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Progress Indicator Bar (Consistent with Checkout) */
.checkout-progress-bar {
  background: #ffffff;
  padding: 24px 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 10px !important;
  font-size: 15px !important;
  font-weight: 700;
  color: #878787;
  text-decoration: none;
}
.progress-step.active {
  color: #1e293b !important;
}
.progress-step.active span {
  font-size: 18px !important;
  font-weight: 800 !important;
}
.progress-step.completed {
  color: #0029FF !important;
}
.progress-step-num {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f1f5f9, #cbd5e1) !important;
  color: #475569 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  box-shadow: inset 0 -3px 0px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.06) !important;
  border: 1px solid #94a3b8 !important;
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.progress-step.active .progress-step-num,
.progress-step.completed .progress-step-num {
  background: linear-gradient(135deg, #3b82f6, #0029FF) !important;
  color: #ffffff !important;
  border: 1px solid #001fc2 !important;
  box-shadow: inset 0 -3px 0px rgba(0,0,0,0.25), 0 4px 10px rgba(0, 41, 255, 0.25) !important;
  text-shadow: 0 -1px 1px rgba(0,0,0,0.3) !important;
}
.progress-line {
  flex: 1;
  height: 3px !important;
  background: #e2e8f0;
  max-width: 120px !important;
}
.progress-line.active,
.progress-line.completed {
  background: #0029FF;
}

/* Premium Header Transitions: fast reveal on scroll up, smooth hide on scroll down */
.main-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transform: translateY(0) !important;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease !important; /* sudden reveal */
}
.main-header.header-hidden {
  transform: translateY(-100%) !important;
  box-shadow: none !important;
  pointer-events: none !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease !important; /* gradual hide */
}

/* Mobile Action Strip: Bulk Orders & E-Commerce Solutions divider */
.mobile-action-strip {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-action-strip {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #d8e9f3 !important; /* Lighter ice blue shade */
    border-top: 1px solid rgba(15, 30, 54, 0.08) !important;
    border-bottom: 1px solid rgba(15, 30, 54, 0.08) !important;
    padding: 10px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 16px !important;
  }
  .mobile-action-link {
    color: #0F1E36 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    white-space: nowrap !important;
    font-family: var(--font-display) !important;
  }
  .mobile-action-divider {
    color: rgba(15, 30, 54, 0.2) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
  }
  .sub-navbar-redesign .sub-nav-right {
    display: none !important;
  }
  .sub-navbar-redesign .sub-nav-divider {
    display: none !important;
  }
}

/* Category Slider Arrow Buttons - Large vertical side cards matching Deals layout */
.slider-arrow-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 140px !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 5 !important;
  opacity: 0.82 !important;
  transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  color: #1e293b !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  cursor: pointer !important;
}

.slider-arrow-btn.prev {
  left: 0 !important;
  border-radius: 0 12px 12px 0 !important;
}

.slider-arrow-btn.next {
  right: 0 !important;
  border-radius: 12px 0 0 12px !important;
}

.slider-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  color: #1e293b !important;
}

.slider-arrow-btn:active {
  background: rgba(220, 228, 240, 0.97) !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  transform: translateY(-50%) scale(0.97) !important;
  color: #334155 !important;
}

.slider-arrow-btn.prev:active {
  transform: translateY(-50%) translateX(-8px) scale(0.97) !important;
}

.slider-arrow-btn.next:active {
  transform: translateY(-50%) translateX(8px) scale(0.97) !important;
}

@media (max-width: 767px) {
  .slider-arrow-btn {
    display: none !important;
    width: 34px !important;
    height: 34px !important;
    opacity: 0.95 !important;
  }
  .slider-arrow-btn.prev {
    left: -12px !important;
  }
  .slider-arrow-btn.next {
    right: -12px !important;
  }
}

/* Premium Bestseller / Section Titles styling */
.kawachi-sec-title,
.deals-heading {
  font-family: var(--font-display) !important;
  font-size: 34px !important;
  font-weight: 850 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  position: relative !important;
  display: inline-block !important;
  background: linear-gradient(135deg, #0F1E36 0%, #1e40af 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.kawachi-sec-title {
  margin-bottom: 25px !important;
}

.deals-heading {
  margin-bottom: 0 !important;
}

.kawachi-sec-title::after,
.deals-heading::after {
  content: "" !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 0 !important;
  width: 60px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #be123c 0%, #fbbf24 100%) !important;
  border-radius: 2px !important;
}

.kawachi-sec-title.centered::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* Product Info Block Spacing & Layout Optimization */
.product-info {
  padding: 12px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}
.product-category {
  font-size: 10px !important;
  color: var(--color-text-muted) !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  letter-spacing: 0.03em !important;
}
.product-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--color-text-main) !important;
  line-height: 1.35 !important;
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  min-height: 36px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.product-rating {
  margin-top: 2px !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}
.product-sales-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background-color: #f1f5f9 !important;
  border-radius: 4px !important;
  padding: 2px 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  width: fit-content !important;
  margin-top: 2px !important;
  margin-bottom: 10px !important;
}
.product-sales-badge svg {
  width: 11px !important;
  height: 11px !important;
  color: #22c55e !important;
}
.product-price-row {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  margin-top: auto !important;
  padding-top: 8px !important;
  border-top: 1px dashed #e2e8f0 !important;
}

/* Premium Search Assistance Box Section */
.search-assistance-section {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 56px auto 48px auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}
.search-assistance-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 40px 32px !important;
  text-align: center !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  box-sizing: border-box !important;
}
.search-assistance-title {
  font-size: 22px !important;
  font-weight: 850 !important;
  color: #0F1E36 !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  font-family: var(--font-display) !important;
}
.search-assistance-form {
  max-width: 600px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  gap: 12px !important;
}
.search-assistance-input {
  flex: 1 !important;
  padding: 14px 20px !important;
  font-size: 14.5px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  background: #ffffff !important;
  color: #0F1E36 !important;
  font-weight: 600 !important;
}
.search-assistance-input:focus {
  border-color: #0066FF !important;
  box-shadow: 0 0 0 4px rgba(0,102,255,0.08) !important;
}
.search-assistance-btn {
  background: #0066FF !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 28px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.search-assistance-btn:hover {
  background: #0052cc !important;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2) !important;
}
.search-assistance-tags {
  margin-top: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}
.search-assistance-tags-label {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
}
.search-assistance-tag-link {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0066FF !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,102,255,0.15) !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.search-assistance-tag-link:hover {
  background: #0066FF !important;
  color: #ffffff !important;
  border-color: #0066FF !important;
}
@media (max-width: 767px) {
  .search-assistance-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }
  .search-assistance-title {
    font-size: 17px !important;
    margin-bottom: 12px !important;
  }
  .search-assistance-form {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .search-assistance-input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    font-size: 13.5px !important;
  }
  .search-assistance-btn {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
  }
  .search-assistance-tags {
    margin-top: 16px !important;
    gap: 8px !important;
  }
  .search-assistance-tags-label {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 4px !important;
  }
}

/* Mobile Header Utilities Override: Hide profile, orders, and cart links on mobile since they are now in the bottom navigation bar */
@media (max-width: 767px) {
  .header-utilities a[href*="account"],
  .header-utilities a[href*="support-center"],
  .header-utilities a[href*="profile"],
  .header-utilities a[href*="orders"],
  .header-utilities a[href*="returns"],
  .header-utilities button[id*="cart-drawer-trigger"],
  .header-utilities #cart-drawer-trigger {
    display: none !important;
  }

  .sub-navbar-redesign {
    display: flex !important;
    background: #d8e9f3 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(15,30,54,0.08) !important;
    min-height: auto !important;
    box-shadow: none !important;
  }

  .sub-navbar-redesign .sub-nav-container {
    display: flex !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .sub-navbar-redesign .sub-nav-left {
    display: none !important; /* Hide category navigation list */
  }

  .sub-navbar-redesign .sub-nav-right,
  .sub-navbar-redesign .sub-nav-divider {
    display: none !important;
  }

  .sub-navbar-redesign .mobile-action-strip {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 8px 16px !important;
    box-sizing: border-box !important;
  }

  .mobile-action-link.bulk-btn {
    background: #ff5e00 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 6px 16px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-align: center !important;
    flex: 1 !important;
    box-shadow: 0 2px 6px rgba(255, 94, 0, 0.2) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-family: var(--font-display) !important;
  }

  .mobile-action-link.ecom-btn {
    background: #1d4ed8 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 6px 16px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-align: center !important;
    flex: 1 !important;
    box-shadow: 0 2px 6px rgba(29, 78, 216, 0.2) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-family: var(--font-display) !important;
  }

  /* Reorder header container items using display contents to allow header flex ordering */
  .marketplace-header .header-container {
    display: contents !important;
  }

  .marketplace-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #8dbdd8 !important;
    padding: 0 !important;
  }

  /* Top row (Row 1): Kawachi logo left-aligned, text links right-aligned */
  .marketplace-header .logo-group {
    order: 1 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 16px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #8dbdd8 !important;
    min-height: 54px !important;
  }
  
  .marketplace-header .logo-group a {
    display: flex !important;
    justify-content: flex-start !important;
    width: auto !important;
  }

  .header-mobile-right-links {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .header-mobile-right-links .mobile-top-link {
    font-size: 11px !important;
    font-weight: 750 !important;
    color: #0c1c34 !important; /* deep navy text */
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border-bottom: 1.5px solid rgba(12, 28, 52, 0.45) !important;
    padding-bottom: 2px !important;
    line-height: 1.2 !important;
    transition: all 0.2s ease !important;
  }

  .header-mobile-right-links .mobile-top-link:active {
    color: #FF5E00 !important;
    border-color: #FF5E00 !important;
  }

  /* Bottom row (Row 3): Lighter blue search bar container with wider Categories Dropdown and rounded corners */
  .unified-search-wrapper {
    order: 3 !important;
    display: flex !important;
    background-color: #d8e9f3 !important; /* lighter blue strip background */
    border-radius: 0 !important;
    border: none !important;
    padding: 2px 16px 6px 16px !important; /* decreased search box strip breadth */
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .unified-search-wrapper form {
    display: flex !important;
    background-color: #ffffff !important; /* white search pill */
    border-radius: 8px !important; /* slightly rounded corners */
    border: 1.5px solid #cbd5e1 !important;
    width: 100% !important;
    height: 35px !important; /* decreased form height for compact look */
    overflow: hidden !important;
    align-items: center !important;
  }

  .unified-search-wrapper .category-select-container {
    display: block !important;
    max-width: 115px !important;
    width: 115px !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .unified-search-wrapper .all-categories-select {
    display: block !important;
    max-width: 115px !important;
    width: 115px !important;
    height: 100% !important;
    padding: 0 20px 0 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border: none !important;
    border-right: 1px solid #cbd5e1 !important;
    background-color: transparent !important;
    color: #475569 !important;
    background-position: right 6px center !important;
    background-size: 10px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .unified-search-wrapper .search-container {
    flex-grow: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .unified-search-wrapper .search-bar-inner {
    display: flex !important;
    height: 100% !important;
    align-items: center;
  }

  .unified-search-wrapper .search-input {
    font-size: 13px !important;
    padding-left: 8px !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    font-weight: 600 !important;
  }

  .unified-search-wrapper .search-input::placeholder {
    font-size: 12.5px !important;
  }

  .unified-search-wrapper .search-submit-btn {
    display: flex !important;
    padding: 0 14px !important;
  }

  /* Scale down all section headers on mobile consistently */
  .kawachi-sec-title,
  .deals-heading {
    font-size: 26px !important;
  }

  /* Hide the redundant empty desktop split cards on mobile view */
  .split-category-best-sellers-section {
    display: none !important;
  }

  /* Ensure tight, optimized spacing between all homepage sections on mobile */
  .deals-of-the-day-section,
  .product-slider-section,
  .discovery-grid-section,
  .marketplace-trust-section {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    padding: 16px 12px !important;
  }
}

/* Mobile Bottom Navigation Bar Styles */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border-top: 1px solid rgba(15, 30, 54, 0.05) !important;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.05) !important;
    justify-content: space-around !important;
    align-items: center !important;
    z-index: 10000 !important;
    padding: 0 12px !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    box-sizing: border-box !important;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .bottom-nav-item {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #94A3B8 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
    gap: 3px !important;
    position: relative !important;
  }

  .bottom-nav-item::after {
    display: none !important;
  }

  .bottom-nav-item:active {
    transform: scale(0.95) !important;
  }

  .bottom-nav-item.active {
    color: #0A1E35 !important;
  }

  .bottom-nav-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 30px !important;
    border-radius: 8px !important; /* Premium rounded squircle instead of circle */
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
  }

  .bottom-nav-item.active .bottom-nav-icon-wrapper {
    background: rgba(12, 28, 52, 0.08) !important; /* Soft deep blue fill */
    box-shadow: inset 0 0 0 1px rgba(12, 28, 52, 0.16) !important; /* Elegant thin border outline */
    animation: bottomNavTap 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }

  @keyframes bottomNavTap {
    0% { transform: scale(0.85) translateY(2px); }
    70% { transform: scale(1.1) translateY(-1px); }
    100% { transform: scale(1) translateY(0); }
  }

  .bottom-nav-item svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #64748b !important;
    stroke-width: 2px !important;
    shape-rendering: geometricPrecision !important;
    transition: all 0.3s ease !important;
  }

  .bottom-nav-item.active svg {
    stroke: #0c1c34 !important; /* Dark shade of blue used for section titles */
    stroke-width: 2px !important;
  }

  .bottom-nav-label {
    font-size: 9.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    color: #64748b !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .bottom-nav-item.active .bottom-nav-label {
    color: #0c1c34 !important; /* Dark shade of blue used for section titles */
    font-weight: 800 !important;
  }

  .bottom-nav-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #ff5e00 !important; /* Keep the 2/1 orange notification badge */
    color: #ffffff !important;
    font-size: 10px !important;
    font-family: var(--font-display), sans-serif !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    min-width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    line-height: 1 !important;
    border: 1.5px solid #ffffff !important;
    box-shadow: 0 3px 8px rgba(255, 94, 0, 0.4) !important;
    z-index: 10 !important;
  }
}

/* Premium 2026-Style Footer Overrides */
.main-footer {
  background: linear-gradient(to bottom, #0F172A 0%, #020617 100%) !important;
  color: #94a3b8 !important;
  border-top: 1px solid #1e293b !important;
  padding: 64px 0 0 0 !important;
  margin-top: 0px !important;
}

.footer-main-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 40px !important;
  padding: 0 16px 48px 16px !important; /* Flat design integration */
  margin: 0 !important;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

@media (min-width: 1024px) {
  .footer-main-layout {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 80px !important;
    padding: 0 24px 64px 24px !important;
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
  }
  
  .footer-brand-column {
    width: 340px !important;
    flex-shrink: 0 !important;
  }
}

.footer-brand-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.footer-brand-text {
  font-size: 13.5px !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-align: left !important;
}

.footer-links-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
  width: 100% !important;
}

@media (min-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.footer-column-title {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 18px !important;
  position: relative !important;
  padding-bottom: 0 !important;
}

.footer-column-title::after {
  display: none !important;
}

.footer-link-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.footer-link-items a {
  color: #94a3b8 !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  text-align: left !important;
  display: inline-block !important;
}

.footer-link-items a:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.footer-bottom-bar {
  border-top: 1px solid #1e293b !important;
  padding: 24px 16px !important;
  background: #020617 !important;
}

.footer-bottom-flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-direction: column !important;
  gap: 12px !important;
  color: #64748b !important;
  font-size: 12.5px !important;
  max-width: var(--container-max-width) !important;
  margin: 0 auto !important;
}

@media (min-width: 640px) {
  .footer-bottom-flex {
    flex-direction: row !important;
    gap: 0 !important;
  }
}

/* Premium Search Assistance Box Section Styling */
.search-assistance-section {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 56px auto 48px auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

.search-assistance-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px) saturate(160%) !important;
  border: 1.5px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 24px !important;
  padding: 48px 36px !important;
  text-align: center !important;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle glow outline overlay inside the card */
.search-assistance-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 6px !important;
  background: linear-gradient(90deg, #be123c, #fbbf24, #0066FF) !important;
}

.search-assistance-title {
  font-family: var(--font-display) !important;
  font-size: 24px !important;
  font-weight: 850 !important;
  letter-spacing: -0.02em !important;
  color: #0F1E36 !important;
  margin-bottom: 24px !important;
  display: inline-block !important;
  position: relative !important;
  text-transform: none !important;
}

.search-assistance-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 50px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #be123c 0%, #fbbf24 100%) !important;
  border-radius: 2px !important;
}

.search-assistance-form {
  max-width: 620px !important;
  margin: 16px auto 0 auto !important;
  display: flex !important;
  gap: 12px !important;
}

.search-assistance-input {
  flex: 1 !important;
  padding: 16px 24px !important;
  font-size: 15px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 30px !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  background: #ffffff !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03) !important;
  font-weight: 600 !important;
  color: #0F1E36 !important;
}

.search-assistance-input:focus {
  border-color: #0066FF !important;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08), inset 0 2px 4px rgba(0, 0, 0, 0.03) !important;
}

.search-assistance-btn {
  background: linear-gradient(135deg, #0066FF 0%, #0052cc 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 16px 36px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.2) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.search-assistance-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3) !important;
}

.search-assistance-btn:active {
  transform: translateY(1px) !important;
}

.search-assistance-tags {
  margin-top: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.search-assistance-tags-label {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  margin-right: 4px !important;
}

.search-assistance-tag-link {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.search-assistance-tag-link:hover {
  background: #ffffff !important;
  color: #0066FF !important;
  border-color: #0066FF !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 12px rgba(0, 102, 255, 0.08) !important;
}

@media (max-width: 767px) {
  .search-assistance-card {
    padding: 32px 20px !important;
    border-radius: 20px !important;
  }
  .search-assistance-title {
    font-size: 20px !important;
  }
  .search-assistance-form {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .search-assistance-btn {
    width: 100% !important;
  }
  .search-assistance-tag-link {
    font-size: 11.5px !important;
    padding: 4px 10px !important;
  }
}

/* Premium PDP Trust Badges Overrides */
.pdp-trust-badges-card {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important; /* 4 columns for desktop */
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(30, 62, 122, 0.08) !important;
  border-radius: 16px !important;
  padding: 16px 12px !important;
  box-shadow: 0 10px 30px -10px rgba(30, 62, 122, 0.04) !important;
}

.pdp-trust-badge {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #fcfdfe 0%, #f4f8fd 100%) !important; /* Premium light blue-ish gradient */
  border: 1px solid #e2eaf4 !important;
  border-radius: 12px !important;
  padding: 14px 8px !important;
  box-shadow: 0 2px 8px rgba(30, 62, 122, 0.02) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pdp-trust-badge:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(30, 62, 122, 0.1) !important;
  border-color: #90c2ff !important;
  background: linear-gradient(135deg, #e0efff 0%, #d0e5ff 100%) !important;
}

.pdp-trust-badge svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #1E3E7A !important; /* Premium navy stroke */
  transition: transform 0.25s ease !important;
}

.pdp-trust-badge:hover svg {
  transform: scale(1.1) !important;
}

.pdp-trust-badge .badge-title {
  font-size: 9.5px !important;
  font-weight: 800 !important;
  color: #1E3E7A !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-top: 4px !important;
}

@media (max-width: 640px) {
  .pdp-trust-badges-card {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    padding: 10px 6px !important;
  }
  .pdp-trust-badge {
    padding: 8px 4px !important;
    gap: 4px !important;
  }
  .pdp-trust-badge svg {
    width: 20px !important;
    height: 20px !important;
  }
  .pdp-trust-badge .badge-title {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }
  .pdp-trust-badge .badge-desc {
    font-size: 8px !important;
    display: none !important;
  }
}

/* Unified Deals heading style mapped globally */

/* Premium Amazon-style 'more >' link button */
.more-link-premium {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #007185 !important; /* Amazon-style teal */
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
}

.more-link-premium:hover {
  text-decoration: underline !important;
  color: #c45500 !important; /* Amazon-style orange hover color */
}

/* Amazon-style active state interaction click shape feedback */
.more-link-premium:active {
  background-color: rgba(0, 113, 133, 0.08) !important; /* Premium light teal splash feedback shape */
  border-radius: 8px !important;
  transform: scale(0.96) !important;
}

/* Hide categories sub-navbar links only in phone view per user request */
@media (max-width: 767px) {
  .sub-nav-left,
  .sub-nav-divider,
  .sub-navbar-redesign {
    display: none !important;
  }
}

/* Premium Gradient Search Button in search assistance boxes */
.search-assistance-btn {
  background: linear-gradient(135deg, #0052cc 0%, #0029ff 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2) !important;
}
.search-assistance-btn:hover {
  background: linear-gradient(135deg, #0043b8 0%, #001fcc 100%) !important;
  box-shadow: 0 6px 16px rgba(0, 82, 204, 0.3) !important;
  transform: translateY(-1px) !important;
}

/* Mobile alignment fix for Deals of the Day slider to keep first card in border */
@media (max-width: 767px) {
  .deals-of-the-day-section .product-slider-wrapper {
    margin: 0 !important;
    padding: 12px 0 !important;
    width: 100% !important;
  }
}

/* View All FAQs Bluish Button Style - Modern glassmorphic style */
.btn-faq-bluish {
  background: rgba(178, 211, 230, 0.15) !important;
  color: #1a4a7a !important;
  border: 1.2px solid rgba(141, 189, 216, 0.45) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(141, 189, 216, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn-faq-bluish:hover {
  background: #8dbdd8 !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(141, 189, 216, 0.4) !important;
}

.header-mobile-right-links {
  display: none !important;
}

/* Skeleton Shimmer CSS */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.skeleton-shimmer {
  background: linear-gradient(90deg, #f1f3f6 25%, #e2e8f0 50%, #f1f3f6 75%) !important;
  background-size: 200% 100% !important;
  animation: shimmer 1.5s infinite linear !important;
}

@keyframes promoTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333%, 0, 0);
  }
}

/* Constant Breathing Neon Glow styling for Bulk & Ecom buttons */
@keyframes breathingGlowBlue {
  0%, 100% {
    box-shadow: 0 0 4px rgba(30, 64, 175, 0.2) !important;
    border-color: rgba(30, 64, 175, 0.35) !important;
  }
  50% {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5) !important;
    border-color: rgba(59, 130, 246, 0.8) !important;
  }
}

@keyframes breathingGlowOrange {
  0%, 100% {
    box-shadow: 0 0 4px rgba(255, 94, 0, 0.2) !important;
    border-color: rgba(255, 94, 0, 0.35) !important;
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 94, 0, 0.5) !important;
    border-color: rgba(255, 94, 0, 0.8) !important;
  }
}

.premium-btn-21 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  border-radius: 6px !important; /* Reduced roundness for a modern block look */
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1.5px solid transparent !important;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

@keyframes ecomPulseGlow {
  0% {
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
  }
  50% {
    box-shadow: 0 2px 14px 4px rgba(37, 99, 235, 0.45) !important;
  }
  100% {
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
  }
}

/* E-commerce button (Blue theme) - Solid state default */
.premium-btn-21.ecom-btn {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
  animation: ecomPulseGlow 3s infinite ease-in-out !important;
}

.premium-btn-21.ecom-btn:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
}

/* Bulk Orders button (Orange theme) - Solid state default */
.premium-btn-21.bulk-btn {
  background: #ff5e00 !important;
  color: #ffffff !important;
  border-color: #ff5e00 !important;
  box-shadow: 0 2px 8px rgba(255, 94, 0, 0.2) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
}

.premium-btn-21.bulk-btn:hover {
  background: #e05300 !important;
  border-color: #e05300 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.35) !important;
}

@media (min-width: 1024px) {
  .header-action-buttons {
    display: none !important;
  }

  /* Desktop-only luxury shine sweep, translate, and shadow transitions */
  .desktop-animate-btn {
    position: relative !important;
    overflow: hidden !important;
  }

  .desktop-animate-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -150% !important;
    width: 50% !important;
    height: 100% !important;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    ) !important;
    transform: skewX(-25deg) !important;
    transition: none !important;
    pointer-events: none !important;
  }

  .desktop-animate-btn:hover::before {
    left: 150% !important;
    transition: left 0.75s ease-in-out !important;
  }

  .desktop-animate-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
    filter: brightness(1.05) !important;
  }
  
  .premium-btn-21.ecom-btn.desktop-animate-btn:hover {
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.35) !important;
  }

  .premium-btn-21.bulk-btn.desktop-animate-btn:hover {
    box-shadow: 0 6px 16px rgba(255, 94, 0, 0.35) !important;
  }

  .desktop-animate-btn:active {
    transform: translateY(0) scale(1) !important;
  }

  /* Specificity override to enforce premium solid layout in desktop sub-nav */
  .sub-nav-right .premium-btn-21.ecom-btn {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    border-radius: 6px !important;
    padding: 5.5px 16px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.03em !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
    animation: ecomPulseGlow 3s infinite ease-in-out !important;
  }

  .sub-nav-right .premium-btn-21.bulk-btn {
    background: #ff5e00 !important;
    color: #ffffff !important;
    border-color: #ff5e00 !important;
    border-radius: 6px !important;
    padding: 5.5px 16px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.03em !important;
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.2) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
  }

  .sub-nav-right .premium-btn-21.ecom-btn:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
  }

  .sub-nav-right .premium-btn-21.bulk-btn:hover {
    background: #e05300 !important;
    border-color: #e05300 !important;
  }
}

@media (max-width: 1023px) {
  .sub-nav-right {
    display: none !important;
  }
}

/* Premium Bouncing Dots Loader Animations */
@keyframes bounceDot {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.bouncing-dot {
  width: 6px !important;
  height: 6px !important;
  background-color: #ff5e00 !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: bounceDot 0.8s infinite ease-in-out !important;
}

.bouncing-dot:nth-child(2) {
  animation-delay: 0.15s !important;
}

.bouncing-dot:nth-child(3) {
  animation-delay: 0.3s !important;
}

/* Pre-selected Autofilled Inputs Highlight */
.form-input.pre-selected,
select.form-input.pre-selected {
  background-color: #f4f8fc !important; /* Very slight aesthetic blue background */
  border-color: #cbd5e1 !important; /* Clean original subtle border */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02) !important; /* Soft depth shadow, no stark outline */
  color: #1e293b !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

/* Maintain active glow on focus */
.form-input.pre-selected:focus,
select.form-input.pre-selected:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}

/* Custom About Us Page Layout Adjustments */
.about-sec-title {
  padding-left: 0 !important;
}
.about-sec-title::before {
  content: none !important;
  display: none !important;
}

.about-img-container {
  overflow: hidden !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.about-img-container img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

/* About Us Timeline Styles (Unified Left Track & Right Cards) */
.about-timeline {
  position: relative !important;
  max-width: 850px !important;
  margin: 60px auto !important;
  padding: 20px 0 !important;
}

.about-timeline::before {
  content: '' !important;
  position: absolute !important;
  left: 45px !important; /* Fixed left-hand vertical track */
  top: 0 !important;
  bottom: 0 !important;
  width: 4px !important;
  background: linear-gradient(180deg, #2563ff 0%, #60a5fa 100%) !important;
  transform: none !important;
  border-radius: 2px !important;
}

.timeline-item {
  position: relative !important;
  width: 100% !important; /* Full width cards */
  padding-left: 115px !important; /* Leave room for track and year pill on left */
  padding-right: 15px !important;
  margin-bottom: 40px !important;
  box-sizing: border-box !important;
  text-align: left !important; /* Consistently left-aligned text */
  left: 0 !important;
}

.timeline-dot {
  position: absolute !important;
  top: 20px !important;
  left: 45px !important; /* Centered exactly on the left track */
  transform: translateX(-50%) !important;
  min-width: 90px !important;
  background: linear-gradient(135deg, #2563ff 0%, #0c1c34 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-display), sans-serif !important;
  font-weight: 850 !important;
  font-size: 13px !important;
  padding: 6px 12px !important;
  border-radius: 30px !important;
  border: 2px solid #ffffff !important; /* Inner white border */
  outline: 2px solid rgba(96, 165, 250, 0.5) !important; /* Outer soft bluish outline */
  outline-offset: 1px !important;
  box-shadow: 0 8px 20px rgba(12, 28, 52, 0.2), 0 0 0 4px rgba(37, 99, 255, 0.1) !important; /* Outer shadow and glow ring */
  z-index: 3 !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.timeline-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important; /* soft bluish border */
  padding: 24px !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01) !important; /* soft bluish shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: block !important;
  text-align: left !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.timeline-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(12, 28, 52, 0.04) !important; /* glowing hover shadow */
  border-color: rgba(37, 99, 255, 0.25) !important;
}

.timeline-year {
  display: none !important; /* hidden, already on dot bubble */
}

.timeline-title {
  font-family: var(--font-display) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0c1c34 !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  text-transform: none !important;
}

.timeline-title::before {
  display: none !important;
  content: none !important;
}

.timeline-desc {
  font-size: 13.8px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* Responsive Timeline adjustment */
@media (max-width: 768px) {
  .about-timeline::before {
    left: 20px !important;
  }
  .timeline-item {
    padding-left: 80px !important;
    padding-right: 5px !important;
  }
  .timeline-dot {
    left: 20px !important;
    min-width: 75px !important;
    font-size: 11px !important;
    padding: 4px 8px !important;
  }
}

/* Values Infographic Hover effect */
.value-card-infographic:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 30px rgba(12, 28, 52, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

/* FAQ Mobile Optimization overrides */
@media (max-width: 768px) {
  #faq {
    padding: 30px 16px !important;
  }
  .faq-question-btn {
    padding: 16px 18px !important;
    font-size: 13.8px !important;
  }
  .faq-answer-content {
    padding: 0 18px 18px 18px !important;
    font-size: 12.8px !important;
  }
  .faq-icon-svg {
    padding: 6px !important;
    width: 14px !important;
    height: 14px !important;
  }
}

/* ============================================================
   PDP Tabs — Swipable on Mobile
   ============================================================ */
@media (max-width: 767px) {
  .tabs-container {
    padding: 16px !important;
    border-radius: 12px !important;
    margin-top: 36px !important;
  }
  .tabs-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 4px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
  }
  .tabs-list::-webkit-scrollbar {
    display: none !important;
  }
  .tab-trigger {
    flex-shrink: 0 !important;
    font-size: 13px !important;
    padding: 7px 14px !important;
    white-space: nowrap !important;
  }
}

/* ============================================================
   "See all" Button — Most Loved Products — Fix Placement
   ============================================================ */
@media (max-width: 767px) {
  #detail-trending-strip a[href*="search.html"],
  #most-loved-static-strip a[href*="search.html"] {
    right: 16px !important;
    font-size: 11.5px !important;
  }
  .discovery-card-title {
    font-size: 13px !important;
  }
}

/* ============================================================
   HOMEPAGE PRODUCT STRIP — PHONE VIEW COMPREHENSIVE SIZING
   Targets both .product-slide-card (original HTML) and
   .marquee-product-card (hydrated via createFullCardHtml)
   when inside a .product-slider-track on mobile.
   ============================================================ */
@media (max-width: 767px) {

  /* ── Card Width: matching Deals of the Day ── */
  .product-slider-track .product-card,
  .product-slider-track .marquee-product-card,
  .product-slider-track .product-slide-card {
    flex: 0 0 calc(36vw - 8px) !important;
    width: calc(36vw - 8px) !important;
    min-width: calc(36vw - 8px) !important;
    max-width: calc(36vw - 8px) !important;
    padding: 0 !important;
    border-radius: 12px !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04) !important;
  }

  /* ── Image: square aspect ratio to match Deals of the Day ── */
  .product-slider-track .product-card .product-image-container,
  .product-slider-track .marquee-product-card .product-image-container,
  .product-slider-track .product-slide-card .product-image-container {
    aspect-ratio: 1 !important;
    height: auto !important;
    max-height: none !important;
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
  }

  .product-slider-track .product-card .product-image,
  .product-slider-track .marquee-product-card .product-image,
  .product-slider-track .product-slide-card .product-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  /* ── Product info area ── */
  .product-slider-track .product-card .product-info,
  .product-slider-track .marquee-product-card .product-info,
  .product-slider-track .product-slide-card .product-info {
    padding: 6px 6px 8px 6px !important;
    gap: 1px !important;
  }

  /* ── Category label ── */
  .product-slider-track .product-card .product-category,
  .product-slider-track .marquee-product-card .product-category,
  .product-slider-track .product-slide-card .product-category {
    font-size: 8px !important;
    margin-bottom: 1px !important;
    line-height: 1.2 !important;
  }

  /* ── Product title: matching Deals of the Day sizing ── */
  .product-slider-track .product-card .product-title,
  .product-slider-track .marquee-product-card .product-title,
  .product-slider-track .product-slide-card .product-title {
    font-size: 11px !important;
    line-height: 1.25 !important;
    height: 30px !important;
    max-height: 30px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 2px !important;
    font-weight: 600 !important;
  }

  /* ── Amazon stars: smaller & blue ───────────────────────── */
  .product-slider-track .product-card .product-rating,
  .product-slider-track .marquee-product-card .product-rating,
  .product-slider-track .product-slide-card .product-rating {
    margin-bottom: 2px !important;
    gap: 2px !important;
    align-items: center !important;
  }

  /* Override star rating number color to blue */
  .product-slider-track .product-rating > span:first-child {
    font-size: 10px !important;
    color: #1E3E7A !important;
    font-weight: 700 !important;
  }

  /* Shrink the Amazon star SVGs */
  .product-slider-track .product-rating svg {
    width: 10px !important;
    height: 10px !important;
  }

  /* Review count link */
  .product-slider-track .product-rating > span:last-child {
    font-size: 9px !important;
    color: #007185 !important;
  }

  /* ── Pricing ─────────────────────────────────────────────── */
  .product-slider-track .product-card .price-current,
  .product-slider-track .marquee-product-card .price-current,
  .product-slider-track .product-slide-card .price-current {
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  .product-slider-track .product-card .price-old,
  .product-slider-track .marquee-product-card .price-old,
  .product-slider-track .product-slide-card .price-old {
    font-size: 9px !important;
  }

  /* ── Save/savings text ───────────────────────────────────── */
  .product-slider-track .savings-text-dynamic {
    font-size: 9px !important;
    margin-top: 1px !important;
    line-height: 1.2 !important;
  }

  /* ── Discount badge (% off) ──────────────────────────────── */
  .product-slider-track .product-card .product-badge,
  .product-slider-track .marquee-product-card .product-badge {
    font-size: 8px !important;
    padding: 2px 4px !important;
    top: 5px !important;
    left: 5px !important;
  }

  /* ── Wishlist button ─────────────────────────────────────── */
  .product-slider-track .product-card .product-wishlist-btn,
  .product-slider-track .marquee-product-card .product-wishlist-btn {
    top: 5px !important;
    right: 5px !important;
    width: 22px !important;
    height: 22px !important;
  }

  /* ── Hide add-to-cart actions on mobile strip cards ─────── */
  .product-slider-track .product-card-actions {
    display: none !important;
  }

  /* ── Slider track gap ────────────────────────────────────── */
  .product-slider-track {
    gap: 10px !important;
  }
}

/* ============================================================
   7.18 Premium Homepage Updates
   ============================================================ */

/* Dual-Tone Text Spans */
.title-blue {
  color: #1E3E7A !important;
  background: none !important;
  -webkit-text-fill-color: #1E3E7A !important;
}
.title-black {
  color: #0F172A !important;
  background: none !important;
  -webkit-text-fill-color: #0F172A !important;
}

/* Category Grid Inner Cross Dividers (2x2 Grid) */
.discovery-card-2x2 {
  position: relative !important;
  gap: 12px !important;
}

/* Vertical divider line */
.discovery-card-2x2::before {
  content: "" !important;
  position: absolute !important;
  top: 6px !important;
  bottom: 6px !important;
  left: 50% !important;
  width: 1.5px !important;
  background-color: #E2E8F0 !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
}

/* Horizontal divider line */
.discovery-card-2x2::after {
  content: "" !important;
  position: absolute !important;
  left: 6px !important;
  right: 6px !important;
  top: 50% !important;
  height: 1.5px !important;
  background-color: #E2E8F0 !important;
  transform: translateY(-50%) !important;
  z-index: 1 !important;
}

.discovery-grid-item {
  position: relative !important;
  z-index: 2 !important;
  padding: 4px !important;
  background-color: #FFFFFF !important;
  transition: transform 0.2s ease !important;
}

.discovery-grid-item:hover {
  transform: scale(1.03) !important;
}

/* Compact Desktop Product Cards Height & Sizing */
@media (min-width: 768px) {
  /* Slider arrows alignment and spacing */
  .product-slider-section {
    padding: 30px 24px !important; /* Tighter section paddings */
  }

  .product-slider-track .product-card,
  .product-slider-track .marquee-product-card,
  .product-slider-track .product-slide-card {
    max-width: 210px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
  }

  /* Compact image container height to save vertical page space */
  .product-slider-track .product-card .product-image-container,
  .product-slider-track .marquee-product-card .product-image-container,
  .product-slider-track .product-slide-card .product-image-container {
    height: 165px !important;
    max-height: 165px !important;
    aspect-ratio: unset !important;
    background-color: #F8FAFC !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .product-slider-track .product-card .product-image,
  .product-slider-track .marquee-product-card .product-image,
  .product-slider-track .product-slide-card .product-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
  }

  /* Compact product title font and vertical size */
  .product-slider-track .product-card .product-title,
  .product-slider-track .marquee-product-card .product-title,
  .product-slider-track .product-slide-card .product-title {
    font-size: 12px !important;
    line-height: 1.35 !important;
    height: 33px !important;
    max-height: 33px !important;
    margin-bottom: 4px !important;
  }

  .product-slider-track .product-card .product-info,
  .product-slider-track .marquee-product-card .product-info,
  .product-slider-track .product-slide-card .product-info {
    padding: 8px 10px !important;
  }

  /* Center alignment for rating */
  .product-slider-track .product-rating {
    margin-bottom: 4px !important;
    gap: 3px !important;
  }

  /* Deals of the Day Desktop Sizing Override */
  .deal-product-item-card,
  .deals-slider-track .product-card,
  .deals-slider-track .marquee-product-card,
  .deals-slider-track .product-slide-card {
    max-width: 210px !important;
    border-radius: 12px !important;
    padding: 0 !important; /* Reset padding to look exactly like standard cards */
    overflow: hidden !important;
    border: 1.5px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .deal-product-image {
    height: 115px !important;
    max-height: 115px !important;
    width: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
    background-color: #F8FAFC !important;
  }
  .deal-product-title {
    font-size: 12px !important;
    line-height: 1.35 !important;
    height: 33px !important;
    max-height: 33px !important;
    margin: 8px 10px 4px 10px !important;
  }
  .deal-product-rating {
    margin: 0 10px 6px 10px !important;
  }
  .deal-product-item-card .premium-price-box {
    margin: 0 10px 10px 10px !important;
    width: calc(100% - 20px) !important;
  }
}

/* Force premium price box current price color to match #1E3E7A */
.premium-price-box .price-current,
.premium-price-box .price-now {
  color: #1E3E7A !important;
}

/* ==========================================================================
   v7.19 — Section Polish: Headspace, Gradient Titles, Product Card Borders,
   Discovery Grid Premium Borders, FAQ Styling, Trust Badges Strip, Skeleton Fix
   ========================================================================== */

/* ── 1. Reduce headspace on Best Sellers & Trending Now sections ── */
#best-sellers-section,
#trending-now-section {
  padding-top: 22px !important;
}

/* Home Furniture & Kitchen Storage sections keep their existing top padding */
#home-furniture,
#kitchen-storage {
  padding-top: 32px !important;
}

/* ── 2. Premium drop-shadow on all homepage product slider sections ── */
#best-sellers-section,
#trending-now-section,
#home-furniture,
#kitchen-storage {
  box-shadow: 0 4px 20px rgba(14, 30, 62, 0.08), 0 1px 4px rgba(14, 30, 62, 0.04) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

/* ── 3. sec-header-row: tighten gap between title and slider ── */
#best-sellers-section .sec-header-row,
#trending-now-section .sec-header-row {
  margin-bottom: 8px !important;
}

/* kawachi-sec-title in Best Sellers & Trending Now — reduce bottom margin */
#best-sellers-section .kawachi-sec-title,
#trending-now-section .kawachi-sec-title {
  margin-bottom: 0 !important;
}

/* Desktop: further reduce the space between title row and slider cards */
@media (min-width: 769px) {
  #best-sellers-section .sec-header-row,
  #trending-now-section .sec-header-row {
    margin-bottom: 12px !important;
  }
  #best-sellers-section,
  #trending-now-section {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }
}

/* kawachi-sec-title — fully gradient (no inner span override) */
.kawachi-sec-title span.title-blue,
.kawachi-sec-title span.title-black {
  background: inherit !important;
  -webkit-background-clip: inherit !important;
  -webkit-text-fill-color: inherit !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

/* Discovery card titles — gradient left to right blue→black */
.discovery-card-title span.title-blue,
.discovery-card-title span.title-black {
  background: inherit !important;
  -webkit-background-clip: inherit !important;
  -webkit-text-fill-color: inherit !important;
  color: inherit !important;
}

/* ── 4. Product slide cards — premium borders, shadows, polished look ── */
.product-slide-card {
  border: 1px solid #e8edf5 !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s ease !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.product-slide-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06) !important;
  border-color: #c8d8f0 !important;
  transform: translateY(-4px) !important;
}

/* Product image container inside slider — clean neutral bg */
.product-slide-card .product-image-container {
  background: #f9fafb !important;
  border-bottom: 1px solid #f0f2f7 !important;
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden !important;
}

/* Product info block — cleaner spacing */
.product-slide-card .product-info {
  background: #ffffff !important;
  padding: 8px 10px 10px 10px !important;
}

/* Price box inside slider cards */
.product-slide-card .premium-price-box {
  border-radius: 6px !important;
  background: transparent !important;
  border: none !important;
  padding: 2px 0 !important;
}

/* Bought-in-past-month text — premium flame badge style */
.bought-count-text {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  font-size: 9.5px !important;
  color: #92400e !important;  /* Warm amber-brown */
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
  background: linear-gradient(90deg, #fef3c7, #fde68a) !important;
  border: 1px solid #f59e0b !important;
  border-radius: 20px !important;
  padding: 2px 7px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

/* ── 5. Discovery grid items — add border & hover character ── */
.discovery-grid-item img {
  border: 1px solid #E8EDF5 !important;
  border-radius: 10px !important;
  background-color: #F8FAFD !important;
  transition: box-shadow 0.2s ease, transform 0.22s ease !important;
}

.discovery-grid-item:hover img {
  box-shadow: 0 4px 12px rgba(14, 30, 62, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* Discovery card itself — stronger shadow for premium box feel */
.discovery-grid-section .discovery-card {
  box-shadow: 0 4px 18px rgba(14, 30, 62, 0.08), 0 1px 3px rgba(14, 30, 62, 0.04) !important;
  border: 1px solid #DDE4F0 !important;
  border-radius: 14px !important;
  transition: box-shadow 0.2s ease !important;
}

.discovery-grid-section .discovery-card:hover {
  box-shadow: 0 8px 28px rgba(14, 30, 62, 0.13) !important;
  border-color: #C8D5EB !important;
}

/* ── 6. FAQ items — stronger border, richer shadow, more headspace ── */
#faq {
  padding-top: 40px !important;
}

.faq-item-2026 {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
  background: #ffffff !important;
}

.faq-item-2026.open {
  border-color: rgba(15, 23, 42, 0.16) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
  background: #ffffff !important;
}

.faq-question-btn {
  padding: 16px 20px !important;
}

/* ── 7. Skeleton loader — ensure cards fill correctly, no clipping ── */
/* The track must NOT use width:max-content during skeleton state as it
   makes the skeleton cards invisible-overflow beyond the wrapper */
.product-slider-wrapper {
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Track: flex is fine; width:max-content was causing skeleton overflow clip */
.product-slider-track {
  min-width: 100% !important;
}

/* Skeleton cards: flex-shrink 0 + same sizing formula as real cards */
.product-slider-track .skeleton-card {
  background: linear-gradient(135deg, #F0F4FA 0%, #E8EDF5 100%) !important;
  border: 1.5px solid #DDE4EF !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  min-height: 260px !important;
}

/* ── 8. Homepage Trust Badge Strip (desktop: product-page style) ── */
.homepage-trust-strip {
  display: none; /* hidden on mobile by default */
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #E8EDF5;
  box-shadow: 0 2px 12px rgba(14, 30, 62, 0.06);
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .homepage-trust-strip {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
  }
}

.homepage-trust-badge {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 12px !important;
  text-align: center !important;
  border-right: 1px solid #E8EDF5 !important;
  gap: 6px !important;
}

.homepage-trust-badge:last-child {
  border-right: none !important;
}

.homepage-trust-badge svg {
  width: 26px !important;
  height: 26px !important;
  color: #1a4a7a !important;
  stroke: #1a4a7a !important;
  flex-shrink: 0 !important;
}

.homepage-trust-badge .htb-title {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  color: #0F1E36 !important;
  line-height: 1.3 !important;
}

.homepage-trust-badge .htb-sub {
  font-size: 11px !important;
  color: #64748B !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

/* Responsive tabs container adjustments for mobile screen layouts */
@media (max-width: 767px) {
  .tabs-container {
    padding: 16px 12px !important;
    border-radius: 12px !important;
    margin-top: 32px !important;
  }
  .tabs-list {
    gap: 12px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    display: flex !important;
    padding-bottom: 8px !important;
    margin-bottom: 16px !important;
    -webkit-overflow-scrolling: touch !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  .tab-trigger {
    padding: 6px 10px !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
  }
  /* Ensure review card text and reviews header fit perfectly */
  .tab-content {
    font-size: 13.5px !important;
  }
  .tab-content h3, .tab-content h4 {
    font-size: 14.5px !important;
  }
  .reviews-list p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}

/* Responsive Our Values Grid & Our Mission Box overrides */
@media (max-width: 767px) {
  .our-values-row-mobile {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
  }
  .our-values-row-mobile .pdp-trust-badge {
    padding: 12px 6px !important;
    min-height: auto !important;
  }
  .our-values-row-mobile .badge-title {
    font-size: 8.5px !important;
    letter-spacing: -0.2px !important;
    line-height: 1.2 !important;
  }
  .our-values-row-mobile svg {
    width: 22px !important;
    height: 22px !important;
    margin-bottom: 4px !important;
  }
  .about-mission-box {
    padding: 28px 16px !important;
    border-radius: 16px !important;
    margin: 20px 0 40px 0 !important;
  }
}

/* 📱 Header Mobile B2B Stack in logo-group */
.header-mobile-right-links {
  display: none !important;
}

@media (max-width: 767px) {
  .header-mobile-right-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 4px !important;
    margin-left: auto !important;
  }
  .header-mobile-right-links .mobile-top-btn {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    padding: 5.5px 12px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    text-align: center !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.03em !important;
    min-width: auto !important;
    transition: transform 0.2s ease !important;
  }
  .header-mobile-right-links .mobile-top-btn.bulk-btn {
    background: #ff5e00 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
  }
  .header-mobile-right-links .mobile-top-btn.ecom-btn {
    background: #2563eb !important;
    color: #ffffff !important;
    font-size: 12.5px !important;
    padding: 7px 12px !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
    animation: ecomPulseGlow 3s infinite ease-in-out !important;
  }
  
  /* 🏎️ Enable Smooth Horizontal Swiping / Touch scroll for product sliders */
  .product-slider-wrapper {
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    scroll-snap-type: x mandatory !important;
  }
  .product-slider-wrapper::-webkit-scrollbar {
    display: none !important;
  }
  .product-slider-track {
    scroll-snap-type: x mandatory !important;
  }
  .product-slider-track .product-card,
  .product-slider-track .marquee-product-card,
  .product-slider-track .product-slide-card {
    scroll-snap-align: start !important;
  }
  /* Fix gap between deals-header and products in sliders on mobile */
  .product-slider-section .deals-header {
    margin-bottom: 8px !important;
  }
  /* Hide desktop horizontal arrows on mobile */
  .slider-arrow-btn {
    display: none !important;
  }
}

/* ─── FAQ fade animation classes ─── */
@keyframes faqFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faqFadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes faqItemIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-list-2026.fade-out {
  animation: faqFadeSlideOut 0.35s ease forwards !important;
}

.faq-list-2026.fade-in {
  animation: faqFadeSlideIn 0.4s ease forwards !important;
}
