/* 
 * BongMart.ca - Premium Stylesheet
 * Custom CSS for a professional, adult-only ecommerce experience.
 * Uses vanilla CSS and Bootstrap 5.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary-accent: #F26622;
  --secondary-accent: #FF6000;
  --primary-border: rgba(208, 208, 208, 0.7);
  --subtle-border: rgba(232, 232, 232, 0.3);
  --focus-border: #F26622;
  --deep-charcoal: #151515;
  --soft-black: #202020;
  --warm-white: #FFFFFF;
  --light-grey-bg: #F7F7F7;
  --muted-text: #666666;
  --success-green: #198754;
  --warning-amber: #FFC107;

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* General Reset & Typography */
body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--soft-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--deep-charcoal);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--light-grey-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Animations */
@keyframes shine {
  0% { left: -50%; }
  100% { left: 125%; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes float-gentle {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(242, 102, 34, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(242, 102, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 102, 34, 0); }
}

@keyframes pulse-glow-white {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes text-shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Accessibility Focus States */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--focus-border) !important;
  outline-offset: 2px;
}

/* Age Verification Overlay */
.age-gate-active {
  overflow: hidden !important;
  height: 100vh !important;
}

#ageGateModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(21, 21, 21, 0.85);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#ageGateModal.show {
  opacity: 1;
  visibility: visible;
}

.age-gate-card {
  background: var(--soft-black);
  border: 1px solid var(--primary-border);
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  padding: 3rem 2rem;
  color: var(--warm-white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#ageGateModal.show .age-gate-card {
  transform: scale(1);
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

.age-gate-badge {
  width: 70px;
  height: 70px;
  background-color: rgba(242, 102, 34, 0.1);
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: pulse-glow 2.5s infinite;
}

.age-gate-btn {
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.age-gate-btn-primary {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  border: none;
}

.age-gate-btn-primary:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-2px);
}

.age-gate-btn-secondary {
  background-color: transparent;
  color: #aaaaaa;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-gate-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--warm-white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Age Gate Denied Mode */
.age-gate-denied {
  display: none;
}

.age-gate-denied.show {
  display: block;
}

.age-gate-verify.hide {
  display: none;
}

/* Cookie Consent Banner */
#cookieConsentBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--soft-black);
  border-top: 1px solid var(--primary-border);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

#cookieConsentBanner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-consent-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent-text {
  flex: 1 1 320px;
  color: var(--warm-white);
}

.cookie-consent-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  color: var(--warm-white);
}

.cookie-consent-desc {
  font-size: 0.875rem;
  color: #cccccc;
}

.cookie-consent-link {
  color: var(--primary-accent);
  text-decoration: underline;
}

.cookie-consent-link:hover {
  color: var(--secondary-accent);
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent-btn {
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cookie-consent-btn-primary {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  border: none;
}

.cookie-consent-btn-primary:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-2px);
}

.cookie-consent-btn-secondary {
  background-color: transparent;
  color: #aaaaaa;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--warm-white);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 575.98px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-consent-actions {
    justify-content: center;
  }
}

/* Top Announcement Bar */
.announcement-bar {
  background-color: var(--deep-charcoal);
  color: var(--warm-white);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1040;
}

.announcement-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 4.5s infinite ease-in-out;
}

.announcement-cta {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--primary-accent);
  transition: all 0.2s ease;
}

.announcement-cta:hover {
  color: var(--secondary-accent);
  border-bottom-color: var(--secondary-accent);
}

/* Header & Sticky Navbar */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208, 208, 208, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.9);
}

.nav-link {
  font-weight: 500;
  color: var(--deep-charcoal);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--primary-accent);
  color: var(--warm-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--warm-white);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
  transform: scale(1.4);
}

.btn-premium-accent {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-premium-accent:hover {
  background-color: var(--secondary-accent);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 102, 34, 0.2);
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 102, 34, 0.2);
}

/* Amazon-Style Search Category Bar */
.search-strip {
  background-color: var(--light-grey-bg);
  border-bottom: 1px solid rgba(208, 208, 208, 0.4);
  padding: 0.75rem 0;
}

.search-input-group {
  border: 1px solid rgba(208, 208, 208, 0.7);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--warm-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input-group:focus-within {
  border-color: var(--focus-border);
  box-shadow: 0 0 0 4px rgba(242, 102, 34, 0.15);
}

.search-category-select {
  border: none;
  background-color: #ededed;
  color: var(--deep-charcoal);
  font-weight: 500;
  padding-left: 1rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(208, 208, 208, 0.7);
  cursor: pointer;
  max-width: 160px;
}

.search-category-select:focus {
  outline: none !important;
}

.search-main-input {
  border: none;
  padding-left: 1rem;
}

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

.search-btn {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  border: none;
  padding: 0.5rem 1.75rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.search-btn:hover {
  background-color: var(--secondary-accent);
}

.quick-category-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-pill {
  background-color: var(--warm-white);
  border: 1px solid rgba(208, 208, 208, 0.5);
  color: var(--muted-text);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-pill:hover {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  border-color: var(--primary-accent);
}

.category-pill.active {
  background-color: var(--deep-charcoal);
  color: var(--warm-white);
  border-color: var(--deep-charcoal);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(242, 102, 34, 0.08) 0%, transparent 50%), var(--warm-white);
  padding: 5rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(208, 208, 208, 0.3);
}

.hero-glow {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 102, 34, 0.12) 0%, rgba(242, 102, 34, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-wrapper {
  position: relative;
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
}

.hero-fallback-image {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, #151515 0%, #2a2a2a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(242, 102, 34, 0.3);
  color: var(--warm-white);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
  text-align: center;
  padding: 2rem;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary-border);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 700;
  color: var(--deep-charcoal);
  animation: float-gentle 4s ease-in-out infinite;
}

.fc-1 { top: 10%; left: -20px; animation-delay: 0.2s; }
.fc-2 { bottom: 15%; left: 0px; animation-delay: 0.8s; }
.fc-3 { top: 40%; right: -10px; animation-delay: 0.5s; }
.fc-4 { bottom: 5%; right: 20px; animation-delay: 1.2s; }

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--light-grey-bg);
  border: 1px solid rgba(208, 208, 208, 0.4);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-charcoal);
}

/* Category Section */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 380px;
  cursor: pointer;
  border: 1px solid rgba(208, 208, 208, 0.4);
  background-color: var(--deep-charcoal);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-fallback-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--soft-black) 0%, var(--deep-charcoal) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--warm-white);
  padding: 2rem;
  text-align: center;
}

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.9) 0%, rgba(21, 21, 21, 0.4) 60%, rgba(242, 102, 34, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(21, 21, 21, 0.95) 0%, rgba(21, 21, 21, 0.5) 60%, rgba(242, 102, 34, 0.3) 100%);
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--warm-white);
  color: var(--deep-charcoal);
  margin-top: 1rem;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-arrow {
  transform: translateX(0);
  opacity: 1;
  background-color: var(--primary-accent);
  color: var(--warm-white);
}

/* Product Cards */
.product-card {
  background-color: var(--warm-white);
  border: 1px solid rgba(232, 232, 232, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--primary-accent);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  padding: 1rem;
}

.product-fallback-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey-bg);
  color: var(--muted-text);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-accent);
  color: var(--warm-white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  z-index: 2;
}

.product-action-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.product-card:hover .product-action-overlay {
  bottom: 0;
}

.color-swatch-group {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.color-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.color-swatch:hover, .color-swatch.active {
  transform: scale(1.2);
  border-color: var(--primary-accent);
}

.color-swatch[data-color="Blue"] { background-color: #0d6efd; }
.color-swatch[data-color="Green"] { background-color: #198754; }
.color-swatch[data-color="Yellow"] { background-color: #ffc107; }
.color-swatch[data-color="White"] { background-color: #ffffff; }
.color-swatch[data-color="Mix Color"] { background: linear-gradient(45deg, red, orange, yellow, green, blue, purple); }
.color-swatch[data-color="Clear"] { background-color: rgba(255, 255, 255, 0.5); backdrop-filter: blur(2px); border-style: dashed; }
.color-swatch[data-color="Amber"] { background-color: #fd7e14; }
.color-swatch[data-color="Charcoal"] { background-color: #343a40; }
.color-swatch[data-color="Black"] { background-color: #000000; }
.color-swatch[data-color="Dark Navy Blue"] { background-color: #001f54; }
.color-swatch[data-color="Light Blue"] { background-color: #89cff0; }
.color-swatch[data-color="Pink/Rose"] { background-color: #ff69b4; }
.color-swatch[data-color="White/Milk (Yellow Accent)"] { background: linear-gradient(90deg, #ffffff 50%, #ffc107 50%); }

.product-note {
  font-size: 0.72rem;
  color: var(--muted-text);
  line-height: 1.3;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--deep-charcoal);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8rem;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: var(--primary-accent);
}

.product-sku {
  font-size: 0.75rem;
  color: var(--muted-text);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

/* Stepper Customization */
.qty-stepper {
  display: flex;
  border: 1px solid var(--primary-border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 100px;
}

.qty-stepper button {
  background-color: var(--light-grey-bg);
  border: none;
  width: 30px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.qty-stepper button:hover {
  background-color: #e0e0e0;
}

.qty-stepper input {
  border: none;
  width: 40px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: var(--warm-white);
}

.qty-stepper input:focus {
  outline: none !important;
}

/* Order Offer Strip & Deal Cards */
.deal-strip {
  background-color: var(--deep-charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.deal-card {
  background: var(--soft-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.deal-card:hover {
  border-color: var(--primary-accent);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(242, 102, 34, 0.15);
}

.coupon-box {
  background-color: rgba(242, 102, 34, 0.08);
  border: 1px dashed var(--primary-accent);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.coupon-box:hover {
  background-color: rgba(242, 102, 34, 0.15);
}

.coupon-code {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-accent);
}

/* Why Choose Us Cards */
.why-card {
  background-color: var(--warm-white);
  border: 1px solid rgba(208, 208, 208, 0.3);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(242, 102, 34, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  transform: scale(1.1);
}

/* Philosophy Section */
.philosophy-section {
  background-color: var(--light-grey-bg);
  padding: 5rem 0;
  border-top: 1px solid rgba(208, 208, 208, 0.4);
  border-bottom: 1px solid rgba(208, 208, 208, 0.4);
}

.philosophy-card {
  background: var(--warm-white);
  border: 1px solid rgba(208, 208, 208, 0.4);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  border-color: var(--primary-border);
}

.philosophy-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.philosophy-fallback-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--soft-black) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--warm-white);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Custom Multi-Item Carousel Slider */
.new-arrivals-carousel {
  position: relative;
}

.carousel-inner-custom {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0.25rem 2rem;
  scrollbar-width: none; /* Firefox */
}

.carousel-inner-custom::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.carousel-inner-custom .product-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 270px;
}

@media (max-width: 991px) {
  .carousel-inner-custom .product-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 575px) {
  .carousel-inner-custom .product-card {
    flex: 0 0 100%;
  }
}

.carousel-control-btn {
  width: 44px;
  height: 44px;
  background-color: var(--warm-white);
  border: 1px solid var(--primary-border);
  color: var(--deep-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-control-btn:hover {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  border-color: var(--primary-accent);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-btn.prev {
  left: -22px;
}

.carousel-control-btn.next {
  right: -22px;
}

@media (max-width: 768px) {
  .carousel-control-btn {
    display: none;
  }
}

/* Easy Ordering Process Section */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 3px;
  background-color: rgba(208, 208, 208, 0.4);
  z-index: 0;
}

.process-timeline-bar {
  position: absolute;
  top: 40px;
  left: 5%;
  width: 0%;
  height: 3px;
  background-color: var(--primary-accent);
  z-index: 1;
  transition: width 1.5s ease-out;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: var(--warm-white);
  border: 3px solid rgba(208, 208, 208, 0.7);
  color: var(--muted-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step.active .process-icon {
  border-color: var(--primary-accent);
  background-color: var(--primary-accent);
  color: var(--warm-white);
  box-shadow: 0 0 0 8px rgba(242, 102, 34, 0.15);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    gap: 2.5rem;
  }
  .process-timeline::before {
    left: 40px;
    top: 5%;
    width: 3px;
    height: 90%;
  }
  .process-timeline-bar {
    left: 40px;
    top: 5%;
    width: 3px;
    height: 0%;
    transition: height 1.5s ease-out;
  }
  .process-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }
  .process-icon {
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
  }
}

/* Trust Counters Strip */
.counter-strip {
  background-color: var(--light-grey-bg);
  border-top: 1px solid rgba(208, 208, 208, 0.4);
  border-bottom: 1px solid rgba(208, 208, 208, 0.4);
  padding: 3rem 0;
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-accent);
  font-family: var(--font-headings);
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
  border: 1px solid rgba(208, 208, 208, 0.4);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: var(--warm-white);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--deep-charcoal);
  padding: 1.25rem;
  background-color: var(--warm-white);
  transition: all 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-accent);
  background-color: rgba(242, 102, 34, 0.02);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-accent);
}

.faq-accordion .accordion-button::after {
  background-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-accordion .accordion-body {
  padding: 1.25rem;
  color: var(--muted-text);
  line-height: 1.6;
  background-color: var(--warm-white);
}

/* Newsletter block */
.newsletter-block {
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--soft-black) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3.5rem;
  color: var(--warm-white);
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--warm-white) !important;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #888888;
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 4px rgba(242, 102, 34, 0.2) !important;
}

/* Final CTA Section */
.final-cta {
  background: radial-gradient(circle at 10% 90%, rgba(242, 102, 34, 0.1) 0%, transparent 40%), var(--deep-charcoal);
  color: var(--warm-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 20px 20px;
}

.final-cta h2 {
  color: var(--warm-white);
}

/* Footer Section */
footer {
  background-color: var(--deep-charcoal);
  color: #b0b0b0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--primary-accent);
}

footer .footer-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 1.25rem;
}

footer .legal-text {
  font-size: 0.8rem;
  color: #777777;
  line-height: 1.5;
}

/* Mobile Sticky Bottom Navigation */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--primary-border);
  z-index: 1020;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 60px; /* offset for sticky footer */
  }
}

.mobile-bar-btn {
  background-color: var(--primary-accent);
  color: var(--warm-white);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-bar-btn:hover {
  background-color: var(--secondary-accent);
  color: var(--warm-white);
}

.mobile-cart-badge {
  background-color: var(--warm-white);
  color: var(--primary-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
}

/* Toast Notification Styles */
.custom-toast-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .custom-toast-container {
    bottom: 90px;
    left: 20px;
    right: 20px;
  }
}

.custom-toast {
  background-color: var(--deep-charcoal);
  color: var(--warm-white);
  border-left: 4px solid var(--primary-accent);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
}

.custom-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Animation Reveal Classes */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay Utilites */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  .reveal-fade-up,
  .reveal-slide-in-left,
  .reveal-slide-in-right,
  .hero-main-img,
  .hero-fallback-image,
  .floating-card,
  .category-img,
  .category-arrow,
  .process-timeline-bar,
  .process-icon,
  .announcement-shine {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================
 * CATEGORY PAGE STYLES
 * ========================================== */

.sticky-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.sticky-sidebar::-webkit-scrollbar {
  width: 4px;
}
.sticky-sidebar::-webkit-scrollbar-thumb {
  background: rgba(208, 208, 208, 0.5);
  border-radius: 2px;
}

.form-check-input {
  cursor: pointer;
  border-color: rgba(208, 208, 208, 0.8);
}

.form-check-input:checked {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
}

.form-check-input:focus {
  border-color: var(--focus-border);
  box-shadow: 0 0 0 0.25rem rgba(242, 102, 34, 0.25);
}

.form-check-label {
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted-text);
  transition: color 0.2s ease;
}

.form-check-input:hover + .form-check-label,
.form-check-input:checked + .form-check-label {
  color: var(--deep-charcoal);
  font-weight: 500;
}

.filter-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--deep-charcoal);
  margin-bottom: 0.75rem;
}

.control-bar {
  background-color: var(--warm-white);
  border: 1px solid rgba(208, 208, 208, 0.4);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.view-toggle-btn {
  color: var(--muted-text);
  border: none;
  background: transparent;
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.view-toggle-btn.active, .view-toggle-btn:hover {
  color: var(--primary-accent);
}

.breadcrumb-item a {
  color: var(--muted-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-accent);
}

.breadcrumb-item.active {
  color: var(--deep-charcoal);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary-accent);
}

.compact-trust-strip {
  background-color: var(--warm-white);
  border-bottom: 1px solid rgba(208, 208, 208, 0.3);
  padding: 0.85rem 0;
}

.compact-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-charcoal);
}

.category-hero {
  background: radial-gradient(circle at 90% 10%, rgba(242, 102, 34, 0.07) 0%, transparent 60%), var(--light-grey-bg);
  border-bottom: 1px solid rgba(208, 208, 208, 0.4);
  padding: 3rem 0;
}

/* Grid/List Dynamic Layout Override */
.product-info-column, .product-action-column {
  width: 100%;
}

.view-list .product-card-col {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.view-list .product-card {
  flex-direction: row;
  align-items: stretch;
  height: auto;
  min-height: 220px;
}

.view-list .product-img-wrapper {
  width: 240px;
  flex-shrink: 0;
  height: auto;
  border-right: 1px solid rgba(208, 208, 208, 0.2);
}

.view-list .product-body {
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
}

.view-list .product-info-column {
  width: 65% !important;
  padding-right: 2rem;
}

.view-list .product-action-column {
  width: 30% !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.85rem;
  border-left: 1px dashed rgba(208, 208, 208, 0.4);
  padding-left: 1.5rem;
  height: 100%;
}

.view-list .product-action-overlay {
  position: static !important;
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  width: auto !important;
}

.view-list .product-card:hover .product-action-overlay {
  bottom: auto;
}

@media (max-width: 768px) {
  .view-list .product-card {
    flex-direction: column;
  }
  .view-list .product-img-wrapper {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(208, 208, 208, 0.2);
  }
  .view-list .product-body {
    flex-direction: column !important;
    align-items: flex-start;
    padding: 1.25rem;
  }
  .view-list .product-info-column {
    width: 100% !important;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .view-list .product-action-column {
    width: 100% !important;
    align-items: flex-start !important;
    border-left: none;
    padding-left: 0;
    margin-top: 1rem;
    border-top: 1px dashed rgba(208, 208, 208, 0.4);
    padding-top: 1rem;
  }
}

/* ==========================================
 * HEADER UPGRADE & SEARCH OVERLAY STYLES
 * ========================================== */

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu-animate {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.categories-dropdown-menu {
  background-color: var(--warm-white) !important;
  border: 1px solid var(--primary-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 0.75rem 0 !important;
  min-width: 250px !important;
  border-top: 4px solid var(--primary-accent) !important;
}

.categories-dropdown-item {
  padding: 0.65rem 1.5rem !important;
  font-weight: 500 !important;
  color: var(--soft-black) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  transition: all 0.2s ease !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
}

.categories-dropdown-item i {
  color: var(--muted-text);
  font-size: 1.1rem;
  transition: color 0.2s ease;
  width: 20px;
  text-align: center;
}

.categories-dropdown-item:hover {
  background-color: rgba(242, 102, 34, 0.05) !important;
  color: var(--primary-accent) !important;
  padding-left: 1.75rem !important;
}

.categories-dropdown-item:hover i {
  color: var(--primary-accent);
}

.nav-link.active-highlight {
  color: var(--primary-accent) !important;
  font-weight: 700 !important;
}

.nav-link.active-highlight::after {
  width: 100% !important;
}

/* Header Slide-down Search Overlay */
.header-search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(208, 208, 208, 0.7);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  z-index: 1020;
  padding: 1.5rem 0;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-search-overlay.show-search {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header-search-input {
  border: 1px solid var(--primary-border) !important;
  border-radius: 8px !important;
  padding: 0.85rem 1.25rem !important;
  font-size: 1.1rem !important;
  width: 100%;
  background-color: var(--warm-white) !important;
  transition: all 0.3s ease !important;
}

.header-search-input:focus {
  border-color: var(--focus-border) !important;
  box-shadow: 0 0 0 4px rgba(242, 102, 34, 0.15) !important;
  outline: none !important;
}

/* Mobile accordion adjustments */
.mobile-categories-accordion {
  border: none !important;
}

.mobile-categories-accordion .accordion-item {
  border: none !important;
  background: transparent !important;
}

.mobile-categories-accordion .accordion-button {
  font-weight: 500 !important;
  color: var(--deep-charcoal) !important;
  padding: 0.5rem 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1rem !important;
}

.mobile-categories-accordion .accordion-button::after {
  margin-left: 0.5rem;
}

.mobile-categories-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-accent) !important;
}

.mobile-categories-accordion .accordion-body {
  padding: 0.25rem 0 0.5rem 1rem !important;
}

.mobile-categories-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-categories-link:hover,
.mobile-categories-link.active-highlight {
  color: var(--primary-accent) !important;
}

/* ==========================================
 * CINEMATIC LUXURY PRODUCT DETAIL PAGE STYLES
 * ========================================== */

.cinematic-hero-section {
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(242, 102, 34, 0.12) 0%, #111 80%);
  overflow: hidden;
  color: var(--warm-white);
  padding: 5rem 0 6rem 0;
  z-index: 1;
}

.cinematic-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.cinematic-stage-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.cinematic-spotlight-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(242, 102, 34, 0.28) 0%, rgba(242, 102, 34, 0) 75%);
  filter: blur(25px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spotlightPulse 6s infinite ease-in-out alternate;
}

@keyframes spotlightPulse {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.cinematic-stage-image {
  max-width: 100%;
  max-height: 430px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
  animation: floatMotion 5s infinite ease-in-out alternate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

@keyframes floatMotion {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(1deg); }
}

.cinematic-reflection-floor {
  position: absolute;
  bottom: 0px;
  width: 280px;
  height: 25px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: shadowPulse 5s infinite ease-in-out alternate;
}

@keyframes shadowPulse {
  0% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  100% { transform: translateX(-50%) scale(0.85); opacity: 0.5; }
}

.floating-chip {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--warm-white);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.floating-chip:hover {
  background: rgba(242, 102, 34, 0.18);
  border-color: var(--primary-accent);
  transform: translateY(-2px);
}

.concierge-buy-panel {
  background-color: var(--warm-white);
  border: 1px solid var(--primary-border);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  padding: 2.25rem;
  position: sticky;
  top: 100px;
  z-index: 100;
}

.product-showcase-gallery {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(242, 102, 34, 0.05) 0%, rgba(255, 255, 255, 0) 80%);
  border: 1px solid var(--primary-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #FAFAFA;
}

.main-gallery-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  cursor: zoom-in;
}

.main-gallery-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.zoom-lens-magnifier {
  position: absolute;
  border: 2px solid var(--primary-accent);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  pointer-events: none;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
  background-color: #FFF;
}

.thumbnail-gallery-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumbnail-card {
  width: 70px;
  height: 70px;
  border: 1px solid var(--primary-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0.25rem;
  background-color: var(--warm-white);
}

.thumbnail-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail-card.active, .thumbnail-card:hover {
  opacity: 1;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(242, 102, 34, 0.15);
}

.vibe-color-card {
  background-color: var(--warm-white);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vibe-color-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.vibe-color-card.active {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(242, 102, 34, 0.15), 0 8px 25px rgba(242, 102, 34, 0.12);
  background-color: rgba(242, 102, 34, 0.02);
}

.vibe-preview-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.vibe-color-card:hover .vibe-preview-dot {
  transform: scale(1.1);
}

.savings-progress-track {
  height: 12px;
  background-color: #E8E8E8;
  border-radius: 50px;
  position: relative;
  margin: 3.5rem 0 2.5rem 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.savings-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary-accent) 0%, var(--primary-accent) 100%);
  border-radius: 50px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(242, 102, 34, 0.3);
}

.progress-milestone {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.milestone-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFF;
  border: 4px solid var(--primary-border);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.progress-milestone.active .milestone-dot {
  border-color: var(--primary-accent);
  background-color: var(--primary-accent);
  box-shadow: 0 0 12px rgba(242, 102, 34, 0.6);
}

.milestone-label {
  position: absolute;
  top: 28px;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted-text);
  transition: all 0.3s ease;
}

.progress-milestone.active .milestone-label {
  color: var(--primary-accent);
}

.storytelling-block {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--primary-border);
  background-color: var(--warm-white);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.storytelling-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.storytelling-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--light-grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.storytelling-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.storytelling-block:hover .storytelling-img-wrapper img {
  transform: scale(1.06);
}

.glass-card-info {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.tab-dashboard-btn {
  border: 0;
  background: transparent;
  padding: 1rem 1.5rem;
  color: var(--muted-text);
  font-weight: 700;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-dashboard-btn.active {
  color: var(--primary-accent);
  border-bottom-color: var(--primary-accent);
  background: rgba(242, 102, 34, 0.03);
}

.bundle-addon-card {
  background-color: var(--warm-white);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  padding: 1.15rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bundle-addon-card:hover {
  border-color: var(--primary-accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.bundle-addon-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--primary-border);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.bundle-addon-checkbox:checked {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  box-shadow: 0 0 8px rgba(242, 102, 34, 0.3);
}

.bundle-addon-checkbox:checked::after {
  content: "\F26B";
  font-family: "bootstrap-icons";
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
}

.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(208, 208, 208, 0.8);
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0.95rem 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.sticky-buy-bar.show-bar {
  transform: translateY(0);
  opacity: 1;
}

.sticky-buy-bar-thumbnail {
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-border);
  border-radius: 6px;
  overflow: hidden;
  padding: 0.15rem;
  background: var(--warm-white);
}

.sticky-buy-bar-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticky-buy-bar-info {
  min-width: 0;
  flex-shrink: 1;
}

.sticky-buy-bar-name {
  max-width: 140px;
}

@media (min-width: 576px) {
  .sticky-buy-bar-name {
    max-width: 250px;
  }
}

.sticky-buy-bar-actions {
  flex-shrink: 0;
}

.variant-table-row {
  transition: all 0.2s ease;
  cursor: pointer;
}

.variant-table-row:hover {
  background-color: rgba(242, 102, 34, 0.02) !important;
}

.variant-table-row.active-row {
  background-color: rgba(242, 102, 34, 0.08) !important;
  border-left: 4px solid var(--primary-accent);
  font-weight: 600;
}

@media (max-width: 991px) {
  .concierge-buy-panel {
    position: static !important;
    margin-top: 2rem;
  }
}

/* ==========================================
 * www.bongmart.ca CUSTOM REDESIGN CLASSES
 * ========================================== */

/* Logo styles */
.brand-logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
}

.brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-text);
  font-weight: 600;
}

/* Header hover animation */
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-accent);
  transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-highlight::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-accent) !important;
}

/* Cart badge bounce animation */
@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.cart-badge-bounce {
  animation: badgeBounce 0.4s ease-out;
}

/* Cart Page Styles */
.cart-item-row {
  border-bottom: 1px solid rgba(208, 208, 208, 0.4);
  padding: 1.5rem 0;
  transition: background-color 0.2s ease;
}

.cart-item-row:hover {
  background-color: rgba(242, 102, 34, 0.01);
}

.cart-item-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  border: 1px solid rgba(208, 208, 208, 0.4);
  border-radius: 8px;
  padding: 0.25rem;
  background-color: var(--warm-white);
}

.cart-summary-card {
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  background-color: var(--warm-white);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* Checkout Page Styles */
.checkout-billing-card {
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  background-color: var(--warm-white);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.payment-method-placeholder {
  background-color: var(--light-grey-bg);
  border: 2px dashed var(--primary-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
}

.payment-method-placeholder:hover {
  border-color: var(--primary-accent);
  background-color: rgba(242, 102, 34, 0.01);
}

/* Coupon Validation States */
.coupon-input-group .form-control.is-valid {
  border-color: var(--success-green) !important;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15) !important;
}

.coupon-input-group .form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.coupon-badge-success {
  background-color: rgba(25, 135, 84, 0.1);
  color: var(--success-green);
  border: 1px solid var(--success-green);
  padding: 0.35em 0.65em;
  font-size: 0.8rem;
  border-radius: 4px;
}

/* Premium micro-interactions */
.btn-premium-accent {
  background-color: var(--primary-accent);
  color: var(--warm-white) !important;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
}

.btn-premium-accent:hover {
  background-color: var(--secondary-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 102, 34, 0.25);
}

/* Bootstrap's .btn:disabled rule sets background-color from a --bs-btn-disabled-bg
   custom property that real Bootstrap button variants (.btn-primary etc.) define,
   but this custom class never sets it - so on a disabled button, Bootstrap's own
   (higher-specificity) transparent default wins over the orange background above,
   while the !important white text color here still applies, leaving invisible
   white-on-transparent text. Restore a dimmed-but-visible disabled look instead. */
.btn-premium-accent:disabled,
.btn-premium-accent.disabled {
  background-color: var(--primary-accent);
  color: var(--warm-white) !important;
  opacity: 0.5;
}

.product-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-accent);
}

/* Image zoom hover effect */
.image-zoom-container {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.image-zoom-container img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-zoom-container:hover img {
  transform: scale(1.08);
}

/* ==========================================
 * SMOKE CARTEL & CANNABOX STYLE ADDTIONS
 * ========================================== */

/* Abstract atmospheric smoke & vapor effect */
.smoke-container-wrapper {
  position: relative;
  overflow: hidden;
}

.smoke-vapor-overlay {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(ellipse at 80% 40%, rgba(242, 102, 34, 0.04) 0%, rgba(242, 102, 34, 0) 60%),
    radial-gradient(ellipse at 40% 70%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 2;
  animation: smokeSlowDrift 30s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes smokeSlowDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -3%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .smoke-vapor-overlay {
    animation: none !important;
    transform: none !important;
  }
}

/* Announcement Bar Marquee Styles */
.announcement-bar {
  background-color: var(--soft-black);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.announcement-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScrolling 25s linear infinite;
  color: #FFFFFF;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.announcement-marquee span {
  display: inline-block;
  padding-right: 4rem;
}

@keyframes marqueeScrolling {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-marquee {
    animation: none !important;
    white-space: normal;
    text-align: center;
  }
  .announcement-marquee span {
    padding-right: 1.5rem;
    display: inline;
  }
}

/* Editorial rounded hero modifications */
.hero-banner-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: var(--deep-charcoal);
  min-height: 480px;
}

.hero-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 12s ease-out;
  opacity: 0.45;
}

.hero-banner-card:hover .hero-img-bg {
  transform: scale(1.05);
}

.hero-content-layer {
  position: relative;
  z-index: 3;
  padding: 4.5rem 3.5rem;
  max-width: 650px;
}

/* Shine effect for premium buttons */
.btn-shine-effect {
  position: relative;
  overflow: hidden;
}

.btn-shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
  animation: buttonShineAnim 6s ease-in-out infinite;
}

@keyframes buttonShineAnim {
  0% { left: -60%; }
  15% { left: 130%; }
  100% { left: 130%; }
}

/* Horizontal Track list styling */
.horizontal-scroll-track {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-accent) transparent;
}

.horizontal-scroll-track::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll-track::-webkit-scrollbar-thumb {
  background-color: var(--primary-accent);
  border-radius: 3px;
}

.category-track-card {
  flex: 0 0 260px;
  background-color: var(--warm-white);
  border: 1px solid var(--primary-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  color: inherit !important;
}

.category-track-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
  box-shadow: 0 8px 24px rgba(242, 102, 34, 0.08);
}

.category-track-img-wrapper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey-bg);
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.category-track-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-track-card:hover .category-track-img-wrapper img {
  transform: scale(1.06);
}

.category-track-arrow {
  color: var(--muted-text);
  transition: transform 0.25s ease, color 0.25s ease;
}

.category-track-card:hover .category-track-arrow {
  transform: translateX(4px);
  color: var(--primary-accent);
}

/* Category Mosaic Grid style matching Cannabox */
.mosaic-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mosaic-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 250px;
  text-decoration: none !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background-color: var(--deep-charcoal);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.mosaic-tile-full {
  grid-column: span 4;
  min-height: 280px;
}

.mosaic-tile-half {
  grid-column: span 2;
}

.mosaic-tile-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.75;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-tile:hover .mosaic-tile-img {
  transform: scale(1.04);
}

.mosaic-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(20,20,20,0.85) 100%);
  z-index: 2;
}

.mosaic-tile-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.mosaic-tile-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.mosaic-tile-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-accent) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.mosaic-tile:hover .mosaic-tile-link {
  gap: 0.4rem;
}

@media (max-width: 767px) {
  .mosaic-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .mosaic-tile-full, .mosaic-tile-half {
    grid-column: span 1;
  }
}

/* Coupon Copy anim */
.coupon-badge-card {
  border: 2px dashed var(--primary-border);
  border-radius: 12px;
  padding: 1.25rem;
  background-color: #ffffff;
  transition: all 0.25s ease;
  position: relative;
}

.coupon-badge-card:hover {
  border-color: var(--primary-accent);
  box-shadow: 0 4px 15px rgba(242,102,34,0.05);
}

.coupon-btn-copy {
  border: 1px solid var(--primary-accent);
  color: var(--primary-accent);
  background-color: transparent;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  transition: all 0.2s ease;
}

.coupon-btn-copy:hover {
  background-color: var(--primary-accent);
  color: #ffffff;
}

.coupon-badge-code {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--soft-black);
}

/* Trust checklist styling */
.trust-checklist-strip {
  background-color: var(--soft-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-checklist-item {
  color: #CCCCCC;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.trust-checklist-item:hover {
  color: var(--primary-accent);
}

/* Social Grid Square tiles */
.social-square-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--light-grey-bg);
}

.social-square-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-square-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-square-tile:hover img {
  transform: scale(1.05);
}

.social-square-tile:hover .social-square-tile-overlay {
  opacity: 1;
}

/* Sticky Header Shrink */
.main-header.scrolled {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
}

/* ==========================================
   SHOP RACK STYLE LAYOUT STYLING
   ========================================== */

/* 2. Realistic Showroom Rack Backdrop */
.rack-showroom {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #151515 100%);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.85);
  border-radius: 12px;
  padding: 35px 15px 15px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 3. Retail Horizontal Shelves */
.store-shelf {
  position: relative;
  margin-bottom: 45px;
  z-index: 2;
}
.store-shelf:last-child {
  margin-bottom: 20px;
}
.shelf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 10px;
}
.shelf-title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.shelf-title i {
  color: var(--primary-accent);
}

/* Standalone Shelf Plank */
.shelf-base-plank {
  height: 14px;
  width: 100%;
  background: linear-gradient(to bottom, #444444 0%, #1f1f1f 40%, #111111 100%);
  border-bottom: 3.5px solid var(--primary-accent); /* Orange shelf highlight edge */
  box-shadow: 0 6px 14px rgba(0,0,0,0.7), inset 0 1px 1px rgba(255,255,255,0.15);
  position: relative;
  z-index: 5;
  border-radius: 2px;
}

/* Flex row holding bottom-aligned products */
.shelf-products-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  align-items: flex-end; /* stand vertically on shelf */
  gap: 20px;
  padding: 10px 15px;
  scrollbar-width: none;
  position: relative;
  z-index: 6;
  min-height: 235px;
}
.shelf-products-row::-webkit-scrollbar {
  display: none;
}

/* 4. Cutout Product Shelf Item (No Cards) */
.rack-product-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  position: relative !important;
  width: 140px;
  min-height: 195px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10 !important;
}

.rack-img-container {
  position: relative !important;
  height: 155px;
  width: 100%;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  z-index: 11 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.rack-cutout-img {
  height: 140px;
  max-width: 110px;
  object-fit: contain;
  transition: transform 0.28s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 12 !important;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.35));
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ground shadow directly on board */
.rack-floor-shadow {
  width: 60px;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, transparent 70%);
  margin: -3px auto 0 auto;
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

/* Under product glow backer */
.rack-glow-backdrop {
  position: absolute;
  width: 105px;
  height: 105px;
  background: radial-gradient(circle, rgba(242, 102, 34, 0.22) 0%, transparent 68%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 0;
  pointer-events: none;
}

/* Simple hover view pill tag overlay */
.rack-view-tag {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background-color: var(--primary-accent);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 3;
  letter-spacing: 0.5px;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(242,102,34,0.4);
}

/* Item shelf labels */
.rack-product-details {
  width: 100%;
  z-index: 6;
  padding-top: 5px;
}
.rack-item-name {
  font-size: 0.76rem;
  font-weight: 500;
  color: #dddddd;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5em; /* fixed height maintains baseline price align */
  margin: 0 auto;
  transition: color 0.2s ease;
}
.rack-item-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-top: 2px;
}
.rack-item-dots {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 4px;
  height: 6px;
}
.rack-item-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

/* Hover/Focus Actions */
.rack-product-item:hover .rack-cutout-img,
.rack-product-item:focus .rack-cutout-img {
  transform: translateY(-8px) scale(1.05);
}
.rack-product-item:hover .rack-glow-backdrop,
.rack-product-item:focus .rack-glow-backdrop {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.rack-product-item:hover .rack-view-tag,
.rack-product-item:focus .rack-view-tag {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.rack-product-item:hover .rack-floor-shadow,
.rack-product-item:focus .rack-floor-shadow {
  transform: scale(1.2);
  opacity: 0.5;
}
.rack-product-item:hover .rack-item-name,
.rack-product-item:focus .rack-item-name {
  color: #ffffff;
}

/* Accessibility outline */
.rack-product-item:focus {
  outline: none;
}
.rack-product-item:focus .rack-img-container {
  border: 1px dashed var(--primary-accent);
  border-radius: 8px;
}

/* 5. Sleek Compact Desktop Hover Details Panel (Right side) */
.rack-info-card-wrap {
  position: sticky;
  top: 100px;
  background-color: var(--deep-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  color: #eeeeee;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rack-info-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rack-info-card-header h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-accent);
}
.panel-close-btn {
  background: transparent;
  border: none;
  color: #aaaaaa;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}
.panel-close-btn:hover {
  color: #ffffff;
}

/* Hover Help State */
.panel-help-pill {
  text-align: center;
  padding: 2rem 1rem;
}
.panel-help-pill i {
  color: var(--primary-accent);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.panel-help-pill p {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.4;
}

/* Hover Active Card State */
.panel-active-card {
  display: none;
  animation: panel-card-reveal 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes panel-card-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-card-img-wrap {
  height: 130px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.panel-card-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}

.panel-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.panel-card-meta {
  font-size: 0.72rem;
  color: #999999;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.panel-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.panel-card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-accent);
}
.panel-card-stock {
  font-size: 0.75rem;
  font-weight: 600;
}

.panel-card-swatches-title {
  font-size: 0.72rem;
  color: #aaaaaa;
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.panel-card-stepper-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 0.65rem;
}
.panel-btn-add {
  background-color: var(--primary-accent);
  color: #ffffff;
  font-weight: 700;
  border: none;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: background-color 0.2s ease;
}
.panel-btn-add:hover {
  background-color: var(--secondary-accent);
}
.panel-btn-buy {
  background: linear-gradient(135deg, #ff6000 0%, #d34e00 100%);
  color: #ffffff;
  font-weight: 800;
  border: none;
  font-size: 0.85rem;
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255,96,0,0.25);
  transition: opacity 0.2s ease;
}
.panel-btn-buy:hover {
  opacity: 0.95;
}

.panel-card-details-link {
  display: inline-block;
  font-size: 0.75rem;
  color: #aaaaaa;
  text-decoration: underline !important;
  margin-bottom: 0.85rem;
  transition: color 0.2s ease;
}
.panel-card-details-link:hover {
  color: #ffffff;
}

/* Collapsible note styling */
.panel-card-collapse-note {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.65rem;
}
.panel-card-note-toggle {
  font-size: 0.68rem;
  color: #888888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.panel-card-note-toggle:hover {
  color: #bbbbbb;
}
.panel-card-note-body {
  font-size: 0.65rem;
  color: #777777;
  line-height: 1.35;
  margin-top: 0.25rem;
  display: none;
}
.panel-card-note-body.show {
  display: block;
}

/* 6. Cleaned Top Category Sign Navigation */
.aisle-navigation {
  background-color: #1a1a1a;
  border-bottom: 2px solid var(--primary-accent);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  margin-bottom: 25px;
}
.aisle-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  gap: 8px;
  padding: 8px 0;
}
.aisle-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.aisle-sign-pill {
  color: #cccccc;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.aisle-sign-pill:hover,
.aisle-sign-pill.active {
  color: #ffffff !important;
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  box-shadow: 0 3px 8px rgba(242, 102, 34, 0.35);
}

/* View switcher triggers */
.view-toggle-btn {
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  color: #555555;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  transition: all 0.18s ease;
}
.view-toggle-btn.active,
.view-toggle-btn:hover {
  background-color: var(--deep-charcoal);
  color: #ffffff;
  border-color: var(--deep-charcoal);
}

/* Active Filter Chips Styling */
.filter-chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0 5px;
}
.filter-chip {
  background-color: rgba(242, 102, 34, 0.08);
  color: var(--primary-accent);
  border: 1px solid rgba(242, 102, 34, 0.18);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.filter-chip .chip-remove {
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
}
.filter-chip .chip-remove:hover {
  color: var(--secondary-accent);
}
.btn-clear-chips {
  background: transparent;
  border: none;
  color: #888888;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  padding: 0;
  margin-left: 5px;
}
.btn-clear-chips:hover {
  color: var(--primary-accent);
}

/* Hidden Offcanvas filters drawer styles (mobile drawer only) */
@media (max-width: 991.98px) {
  #offcanvasFilters {
    box-shadow: 8px 0 25px rgba(0,0,0,0.15);
    border-right: 3px solid var(--primary-accent);
  }
}
#offcanvasFilters .form-check-input:checked {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
}

/* 7. Mobile View Specific Shelf Styling */
@media (max-width: 991px) {
  body.category-page-flag {
    padding-bottom: 70px !important; /* spacing for sticky mobile bar */
  }
  .rack-showroom {
    padding: 20px 5px 5px 5px;
    border-radius: 8px;
  }
  .store-shelf {
    margin-bottom: 30px;
  }
  .shelf-products-row {
    min-height: 195px;
    gap: 12px;
    padding: 5px 10px;
  }
  .rack-product-item {
    width: 105px;
  }
  .rack-img-container {
    height: 120px; /* target mobile size: 110-140px tall */
    padding-bottom: 2px;
  }
  .rack-cutout-img {
    max-height: 100%;
    max-width: 85px;
  }
  .rack-floor-shadow {
    width: 48px;
    height: 6px;
  }
  .rack-item-name {
    font-size: 0.68rem;
    max-width: 95px;
    height: 2.6em;
  }
  .rack-item-price {
    font-size: 0.74rem;
  }
  .rack-glow-backdrop, .rack-view-tag {
    display: none !important; /* disable hover overlays on mobile */
  }
}

/* 8. Mobile Offcanvas Bottom Sheet */
.mobile-bottom-sheet {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  max-height: 70vh !important;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.3);
  border-top: 3.5px solid var(--primary-accent);
  background-color: var(--deep-charcoal) !important;
  color: #eeeeee;
}
.bottom-sheet-handle {
  width: 42px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 2.5px;
  margin: 8px auto 14px auto;
}
.mobile-bottom-sheet .offcanvas-title {
  color: #ffffff !important;
  font-size: 1.05rem;
}
.mobile-bottom-sheet .btn-close {
  filter: invert(1);
}
.mobile-bottom-sheet-body-content {
  overflow-y: auto;
  max-height: calc(70vh - 80px);
}

/* Sticky Bottom Mobile Console Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--deep-charcoal);
  border-top: 2px solid var(--primary-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.45rem 0;
  z-index: 1040;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.28);
}
.mobile-sticky-item {
  color: #999999;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1.25;
  transition: color 0.18s ease;
}
.mobile-sticky-item i {
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
}
.mobile-sticky-item:hover,
.mobile-sticky-item.active {
  color: var(--primary-accent);
}
.mobile-sticky-item .cart-badge {
  font-size: 0.58rem;
  padding: 2px 5px;
  top: -3px;
  right: -5px;
}


/* ==========================================
 * PREMIUM ECOMMERCE PRODUCT GRID STYLES
 * ========================================== */

/* Body override for clean white style */
body.category-page-flag {
  background-color: #ffffff !important;
  color: #151515 !important;
}

/* Category pills design */
#categoryNavPills {
  scrollbar-width: none; /* Firefox */
}
#categoryNavPills::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
#categoryNavPills .btn-outline-dark {
  border-color: #E8E8E8;
  color: #151515;
  font-weight: 500;
  transition: all 0.2s ease;
}
#categoryNavPills .btn-outline-dark:hover {
  background-color: #F7F7F7;
  color: #151515;
  border-color: #151515;
}
#categoryNavPills .btn-outline-dark.active {
  background-color: #F26622 !important;
  border-color: #F26622 !important;
  color: #ffffff !important;
  font-weight: bold;
}

/* Sidebar filter items */
#filterCategoryList .list-group-item {
  color: #666666;
  font-size: 0.92rem;
  transition: color 0.15s ease;
  cursor: pointer;
}
#filterCategoryList .list-group-item:hover {
  color: #151515;
}
#filterCategoryList .list-group-item.active {
  color: #F26622 !important;
  font-weight: 700;
}

/* Responsive sidebar border for large screens */
@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid #E8E8E8 !important;
  }
}

/* Premium Product Card */
.product-grid-card {
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
  background: #fff;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img-wrapper img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-grid-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.card-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.card-badge-wrap .badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
}

.card-badge-primary {
  background-color: #F26622;
  color: #ffffff;
}

.card-body-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #999999;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.card-title-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #151515;
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.card-sku {
  font-size: 0.7rem;
  color: #888888;
  margin-bottom: 12px;
}

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

.card-price-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #F26622;
}

.card-color-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.card-color-swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #E8E8E8;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

.card-color-swatch-dot:hover {
  transform: scale(1.2);
}

.card-color-swatch-dot.active {
  box-shadow: 0 0 0 1.5px #ffffff, 0 0 0 3px #F26622;
}

/* Card buttons row */
.card-actions-wrapper {
  margin-top: auto;
}

.card-stepper-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.card-btn-add {
  background-color: #F26622;
  border: 1px solid #F26622;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.card-btn-add:hover {
  background-color: #FF6000;
  border-color: #FF6000;
  color: #ffffff;
}

.card-btn-quickview {
  background-color: #ffffff;
  border: 1px solid #E8E8E8;
  color: #151515;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.card-btn-quickview:hover {
  background-color: #F7F7F7;
  border-color: #151515;
  color: #151515;
}

.card-warning-note {
  font-size: 0.62rem;
  line-height: 1.3;
  color: #999999;
  margin-top: 12px;
  border-top: 1px dashed #E8E8E8;
  padding-top: 8px;
}

/* Modal quantity stepper customizations */
.qty-stepper {
  background-color: #F7F7F7;
  border-radius: 8px;
}

.qty-stepper .qty-btn-minus,
.qty-stepper .qty-btn-plus {
  font-size: 1.1rem;
  transition: color 0.15s ease;
}

.qty-stepper .qty-btn-minus:hover,
.qty-stepper .qty-btn-plus:hover {
  color: #F26622;
}

/* Toast layout updates */
.toast-body-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Copy coupon animations */
.btn-copy-coupon {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-copy-coupon.copied {
  background-color: #198754 !important;
  border-color: #198754 !important;
  color: #ffffff !important;
}

/* Color swatch in modals */
.modal-swatch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #ddd;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.modal-swatch-dot:hover {
  transform: scale(1.15);
}

.modal-swatch-dot.active {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #F26622;
}

/* Admin-editable policy page content (Privacy / Shipping / Refund policies) */
.policy-content h1,
.policy-content h2,
.policy-content h3 {
  font-weight: 700;
  color: var(--soft-black);
  margin-top: 2rem;
  margin-bottom: 0.9rem;
}

.policy-content h1:first-child,
.policy-content h2:first-child,
.policy-content h3:first-child {
  margin-top: 0;
}

.policy-content h2 {
  font-size: 1.5rem;
}

.policy-content h3 {
  font-size: 1.15rem;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.25rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content strong {
  color: var(--soft-black);
}

.policy-content a {
  color: var(--primary-accent);
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-inquiry {
  background-color: #075e54;
  border-color: #075e54;
  color: #fff;
}

.btn-whatsapp-inquiry:hover,
.btn-whatsapp-inquiry:focus {
  background-color: #054c44;
  border-color: #054c44;
  color: #fff;
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }
}

/* ==========================================
 * MOBILE BOTTOM FOOTER NAVIGATION
 * ========================================== */
:root {
  --mobile-footer-nav-height: 62px;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(var(--mobile-footer-nav-height) + env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    bottom: calc(var(--mobile-footer-nav-height) + 16px + env(safe-area-inset-bottom));
  }
}

.mobile-footer-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--mobile-footer-nav-height);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #ffffff;
  border-top: 1px solid #ececec;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1035;
}

.mobile-footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 0;
  height: 100%;
  background: transparent;
  border: none;
  color: #8a8a8a;
  text-decoration: none !important;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.18s ease;
}

.mobile-footer-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 1px;
}

.mobile-footer-nav-item.active,
.mobile-footer-nav-item:hover {
  color: var(--primary-accent);
}

.mobile-footer-nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.mobile-footer-nav-badge {
  position: absolute;
  top: -4px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background-color: var(--primary-accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile "Categories" bottom sheet, launched from the footer nav */
.mobile-cats-sheet {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  max-height: 70vh !important;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.15);
  border-top: 3.5px solid var(--primary-accent);
}

.mobile-cats-sheet-handle {
  width: 42px;
  height: 5px;
  background-color: #e0e0e0;
  border-radius: 2.5px;
  margin: 10px auto 6px auto;
}

.mobile-cats-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.25rem;
  color: var(--soft-black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-cats-link i {
  color: var(--muted-text);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mobile-cats-link:hover {
  color: var(--primary-accent);
}

.mobile-cats-link:hover i {
  color: var(--primary-accent);
}
