/* 
   Apex Supply Co. - Global Design System & Component Library Stylesheet
   Design Motif: Minimalist Botanical Luxury (Warm Ivory backgrounds, forest green & primary emerald accents, elegant serifs)
   Fonts: Cormorant Garamond (Headings), Inter (Body & UI)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Botanical Color System */
  --color-forest: #0F3D2E;
  --color-emerald: #177A50;
  --color-botanical: #4E9A72;
  --color-sage: #DDE9DF;
  --color-ivory: #F7F5EF;
  --color-white: #FFFFFF;
  --color-charcoal: #1D2521;
  --color-muted: #667069;
  --color-border: rgba(15, 61, 46, 0.14);
  
  /* Text overlays & status colors */
  --color-sale-red: #D9463E;
  --color-status-green: #2E7D32;
  --color-bg-overlay: rgba(15, 61, 46, 0.4);

  /* Typography Pairing */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Spacing Gutters */
  --max-content-width: 1400px;
  --gutter-mobile: 20px;
  --gutter-tablet: 32px;
  --gutter-desktop: 64px;
  
  --section-spacing-mobile: 4.5rem;
  --section-spacing-desktop: 8rem;

  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 61, 46, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 61, 46, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 61, 46, 0.12);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  color: var(--color-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Containers */
.container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--gutter-tablet);
    padding-right: var(--gutter-tablet);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--gutter-desktop);
    padding-right: var(--gutter-desktop);
  }
}

/* Accessibility settings */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus indicator styling for interactive hover controls */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-emerald);
  outline-offset: 4px;
}

/* Announcement Bar Component */
announcement-bar {
  display: block;
}

.announcement-bar-container {
  background-color: var(--color-forest);
  color: var(--color-white);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1rem;
}

.announcement-link {
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-link:hover {
  color: var(--color-sage);
}

/* Site Header Outer Wrapper and Scrolling Sticky behaviors */
site-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-outer-wrapper {
  background-color: rgba(247, 245, 239, 0.94); /* warm-ivory 94% opacity over hero at top */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-outer-wrapper.scrolled {
  background-color: var(--color-ivory); /* solid warm ivory on scroll/other pages */
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 82px; /* Desktop Height: 78-86px */
  position: relative; /* Anchor mega menu */
  transition: height 0.2s ease;
}

@media (max-width: 1023px) {
  .header-container {
    height: 72px; /* Tablet Height: 70-76px */
  }
}

@media (max-width: 767px) {
  .header-container {
    height: 64px; /* Mobile Height: 62-68px */
  }
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.header-logo span {
  font-weight: 300;
  font-style: italic;
  color: var(--color-emerald);
}

@media (max-width: 767px) {
  .header-logo {
    font-size: 1.6rem;
  }
}

/* Desktop Primary Megamenu */
desktop-mega-menu {
  display: block;
}

.menu-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-links > li {
  position: static;
}

.menu-links .nav-link {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.menu-links .nav-link:hover,
.menu-links .nav-link:focus-visible {
  color: var(--color-emerald);
}

.menu-links .nav-link:focus-visible {
  outline: 2px solid var(--color-emerald);
  outline-offset: 4px;
}

/* Active page navigation indicator style */
.menu-links .nav-link.active {
  border-bottom-color: var(--color-emerald);
  color: var(--color-emerald);
}

.has-megamenu {
  position: static !important;
}

.has-megamenu:hover .nav-link,
.has-megamenu:focus-within .nav-link {
  color: var(--color-emerald);
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.has-megamenu:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Unified panel below the header */
.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-ivory); /* solid warm ivory background */
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 3.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100; /* High z-index */
}

.megamenu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.megamenu-inner-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.megamenu-column {
  display: flex;
  flex-direction: column;
}

.megamenu-column h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.megamenu-column h4 a {
  color: var(--color-forest);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 0;
}

.megamenu-column h4 a:hover {
  color: var(--color-emerald);
}

.megamenu-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.megamenu-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--color-border);
}

.megamenu-column a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
  padding: 0;
}

.megamenu-column a:hover {
  color: var(--color-forest);
  transform: translateX(3px);
}

.megamenu-column .megamenu-bold-link {
  font-weight: 700;
  color: var(--color-emerald);
}

.megamenu-column .megamenu-bold-link:hover {
  color: var(--color-forest);
}

/* Featured card */
.megamenu-featured-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.35;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.megamenu-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.megamenu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.megamenu-featured-card:hover .megamenu-img-wrap img {
  transform: scale(1.04);
}

.megamenu-featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 46, 0.85) 10%, rgba(15, 61, 46, 0.2) 60%, transparent 100%);
  z-index: 2;
}

.megamenu-featured-content {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.megamenu-featured-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage);
  margin-bottom: 0.25rem;
}

.megamenu-featured-content h5 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.megamenu-shop-all-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.megamenu-shop-all-link:hover {
  color: var(--color-sage);
}

/* Action buttons on header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-action-btn {
  background: none;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.header-action-btn:hover {
  background-color: var(--color-sage);
  color: var(--color-forest);
}

.cart-bubble {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-forest);
  color: var(--color-ivory);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger toggle for mobile */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: var(--transition-fast);
}

/* Base Drawer styling (MobileMenu, Search, Cart) */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(15, 61, 46, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: var(--color-ivory);
  box-shadow: var(--shadow-lg);
  z-index: 10001;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.drawer-panel-right {
  right: 0;
  width: 100%;
  max-width: 440px;
  transform: translateX(100%);
}

.drawer-panel-left {
  left: 0;
  width: 100%;
  max-width: 320px;
  transform: translateX(-100%);
}

.drawer-panel-top {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100svh;
  transform: translateY(-100%);
}

.drawer-overlay.open .drawer-panel {
  transform: none;
}

.drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h2 {
  font-size: 1.5rem;
  font-weight: 500;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-muted);
}

.drawer-close:hover {
  color: var(--color-forest);
}

/* Mobile Menu Drawer */
mobile-menu-drawer {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 65px); /* viewport offset drawer header */
  overflow-y: auto;
}

.mobile-menu-links {
  list-style: none;
  padding: 2.5rem 2rem;
}

.mobile-menu-links li {
  margin-bottom: 1.5rem;
}

.mobile-menu-links a {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  display: block;
  padding: 0.65rem 0; /* ensures min 44px touch targets */
}

.mobile-menu-links a:hover {
  color: var(--color-emerald);
}

/* Mobile Accordion dropdown */
.mobile-accordion-trigger {
  background: none;
  border: none;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.65rem 0; /* ensures min 44px touch targets */
  outline: none;
}

.mobile-accordion-panel {
  padding: 0.5rem 0 0 1rem;
}

.mobile-accordion-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-accordion-panel a {
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--color-muted);
  display: block;
  padding: 0.6rem 0; /* ensures min 44px touch targets */
}

.mobile-accordion-panel a:hover {
  color: var(--color-emerald);
}

.acc-indicator {
  font-size: 1.2rem;
  color: var(--color-emerald);
}

.mobile-menu-policies {
  margin-top: auto;
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-ivory);
}

.mobile-menu-policies h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-forest);
  margin-bottom: 1rem;
}

.mobile-menu-policies a {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.mobile-menu-policies a:hover {
  color: var(--color-forest);
}
}

/* Search Drawer / Modal */
search-drawer {
  display: block;
}

.search-input-wrap {
  padding: 2.5rem;
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-ivory);
}

.search-input-field {
  width: 100%;
  font-size: 1.5rem;
  border: none;
  background: none;
  border-bottom: 2px solid var(--color-forest);
  padding: 0.5rem 0;
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  outline: none;
}

.search-results-area {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
}

/* Product Card Grid elements */
product-card {
  display: block;
  height: 100%;
}

.card-wrapper {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); /* soft premium border radius */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

.card-wrapper:hover {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-md);
}

.card-image-container {
  aspect-ratio: 1.2; /* wider proportions to fit reformers and long equipment */
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* displays full equipment/reformers without crop */
  padding: 1.5rem; /* provides breathing room around the product imagery */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--color-white);
}

.card-wrapper:hover .card-image {
  transform: scale(1.05); /* subtle hover zoom */
}

.card-details {
  padding: 1.5rem;
  background-color: var(--color-ivory); /* warm ivory bottom details surface */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid var(--color-border);
}

.card-vendor {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-body);
  font-size: 16px; /* standard 16px as requested */
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--color-emerald);
}

.card-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-price-row price-display {
  font-size: 1.1rem; /* clear price hierarchy */
  font-weight: 600;
  color: var(--color-forest);
}

/* Price Display Component */
price-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.price-regular {
  color: var(--color-charcoal);
}

.price-sale {
  color: var(--color-sale-red);
  font-weight: 600;
}

.price-compare {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Sale Badge Component */
sale-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-sale-red);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

/* Stock Status Component */
stock-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-instock {
  color: var(--color-status-green);
}

.status-instock .status-dot {
  background-color: var(--color-status-green);
}

.status-outofstock {
  color: var(--color-muted);
}

.status-outofstock .status-dot {
  background-color: var(--color-muted);
}

/* Quantity Selector */
quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-white);
  height: 44px;
}

.qty-control-btn {
  background: none;
  border: none;
  width: 38px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
  font-size: 1rem;
}

.qty-control-btn:hover {
  background-color: var(--color-ivory);
}

.qty-number-input {
  width: 38px;
  height: 100%;
  border: none;
  background: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  outline: none;
}

/* Add to Cart Button */
add-to-cart-button {
  display: inline-block;
}

.add-btn {
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.add-btn:hover:not(:disabled) {
  background-color: var(--color-emerald);
}

.add-btn:disabled {
  background-color: var(--color-sage);
  color: var(--color-muted);
  cursor: not-allowed;
}

/* Cart Drawer */
cart-drawer {
  display: block;
}

.cart-drawer-itemlist {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
}

.drawer-cart-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}

.drawer-cart-item img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  object-fit: cover;
  background-color: var(--color-ivory);
}

.drawer-cart-item-details {
  flex-grow: 1;
}

.drawer-cart-item-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.drawer-cart-item-variant {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.drawer-cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-cart-remove {
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
  padding: 0.25rem 0;
}

.drawer-cart-remove:hover {
  color: var(--color-sale-red);
}

.cart-drawer-subtotal-panel {
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-ivory);
}

/* Trust Strip Component */
trust-strip {
  display: block;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.trust-card h3 {
  font-size: 1.3rem;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Breadcrumbs Component */
breadcrumbs-nav {
  display: block;
  padding: 2rem 0 1rem;
}

.breadcrumbs-list {
  display: flex;
  list-style: none;
  font-size: 0.8rem;
  color: var(--color-muted);
  gap: 0.5rem;
}

.breadcrumbs-list li::after {
  content: '/';
  margin-left: 0.5rem;
}

.breadcrumbs-list li:last-child::after {
  content: '';
}

.breadcrumbs-list a:hover {
  color: var(--color-forest);
}

/* Redesigned Newsletter Section */
newsletter-section {
  display: block;
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .newsletter-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
}

.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-sage);
  line-height: 1.6;
  max-width: 580px;
}

.newsletter-form-container {
  display: flex;
  flex-direction: column;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.newsletter-input-group input[type="email"] {
  flex-grow: 1;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input-group input[type="email"]:focus {
  border-color: var(--color-sage);
  background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-input-group input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group button {
  background-color: var(--color-sage);
  color: var(--color-forest);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 2rem;
  border: 1px solid var(--color-sage);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.85rem;
}

.newsletter-input-group button:hover:not(:disabled) {
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.newsletter-input-group button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.newsletter-feedback-msg {
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.5;
}

.error-state-msg {
  color: var(--color-sale-red);
}

.success-state-msg {
  color: var(--color-sage);
}

.newsletter-consent {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.25rem;
  line-height: 1.4;
}

/* Empty State / Loading Skeleton / Error State */
empty-state {
  display: block;
  text-align: center;
  padding: 4rem 2rem;
}

loading-skeleton {
  display: block;
}

.skeleton-box {
  background: linear-gradient(90deg, var(--color-sage) 25%, var(--color-ivory) 50%, var(--color-sage) 75%);
  background-size: 200% 100%;
  animation: skeleton-glow 1.5s infinite linear;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-glow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

error-state {
  display: block;
  background-color: rgba(217, 70, 62, 0.05);
  border: 1px solid rgba(217, 70, 62, 0.2);
  color: var(--color-sale-red);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hamburger-toggle {
    display: flex;
  }
  
  desktop-mega-menu {
    display: none;
  }
  
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .trust-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
}

/* Rebuilt Cinematic Hero Section */
.hero {
  position: relative;
  height: 780px; /* Desktop Height: 740-820px */
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-forest);
}

@media (max-width: 1023px) {
  .hero {
    height: 710px; /* Tablet Height: 680-740px */
  }
}

@media (max-width: 767px) {
  .hero {
    height: 700px; /* Mobile Height: 680-760px */
  }
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-media-wrapper picture,
.hero-media-wrapper img,
.hero-media-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media-wrapper video {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 45, 34, 0.82) 0%,
    rgba(9, 45, 34, 0.60) 32%,
    rgba(9, 45, 34, 0.25) 58%,
    rgba(9, 45, 34, 0.04) 82%,
    rgba(9, 45, 34, 0) 100%
  );
  z-index: 3;
}

@media (max-width: 767px) {
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(9, 45, 34, 0.92) 0%,
      rgba(9, 45, 34, 0.70) 50%,
      rgba(9, 45, 34, 0.35) 100%
    );
  }
}

.hero-container-overlay {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-content {
  max-width: 580px; /* desktop: 560-620px copy boundary */
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px; /* 12-14px eyebrow text size */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 62px; /* standard desktop: 58-68px */
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 72px; /* large desktop: 68-80px */
  }
}

@media (max-width: 1023px) {
  .hero-title {
    font-size: 52px; /* tablet: 48-56px */
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 42px; /* mobile: 40-46px */
  }
}

.hero-para {
  font-family: var(--font-body);
  font-size: 18px; /* desktop: 17-19px */
  color: var(--color-ivory);
  line-height: 1.65; /* 1.55-1.7 */
  margin-bottom: 2.5rem;
  max-width: 540px;
}

@media (max-width: 767px) {
  .hero-para {
    font-size: 16px; /* mobile: 16-17px */
    margin-bottom: 2rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-cta-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px; /* height 50-54px */
  padding: 0 2.2rem;
  font-family: var(--font-body);
  font-size: 14px; /* font 13-15px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.hero-cta-group .btn-primary {
  background-color: var(--color-ivory);
  color: var(--color-forest);
  border: 1px solid var(--color-ivory);
}

.hero-cta-group .btn-primary:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-charcoal);
}

.hero-cta-group .btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.hero-cta-group .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 540px) {
  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-cta-group .btn {
    width: 100%;
    height: 48px; /* mobile target height */
  }
}

/* Reassurance Trust Strip Styles */
.trust-strip-sec {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 2.2rem 0;
}

.trust-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 250px;
}

.trust-strip-icon {
  color: var(--color-emerald);
  flex-shrink: 0;
}

.trust-strip-text h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-strip-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .trust-strip-sec {
    padding: 2.5rem 0;
  }
  .trust-strip-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .trust-strip-item {
    width: 100%;
  }
}

/* Animations */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Shop by Collection Bento Grid styling */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .bento-featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px; /* substantial grid height: 580px */
    gap: 2rem;
  }
  
  .bento-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

.collection-card-anchor {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 100%;
  min-height: 340px; /* mobile height: 300-380px */
  border-radius: 20px; /* premium curved corners */
  overflow: hidden;
  border: 1px solid var(--color-border);
  padding: 2rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

@media (min-width: 768px) {
  .collection-card-anchor {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .collection-card-anchor {
    min-height: auto; /* grid-template-rows handles desktop height */
  }
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.collection-card-anchor::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 45, 34, 0.92) 0%,   /* strong forest-green at bottom for contrast */
    rgba(9, 45, 34, 0.50) 45%,
    rgba(9, 45, 34, 0) 100%
  );
  z-index: 2;
  transition: opacity var(--transition-fast);
}

.collection-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.collection-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.collection-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.bento-featured .collection-name {
  font-size: 2.2rem;
}

@media (max-width: 767px) {
  .collection-name {
    font-size: 1.45rem;
  }
  .bento-featured .collection-name {
    font-size: 1.8rem;
  }
}

.collection-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sage);
  margin-left: 1rem;
}

.collection-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 440px;
}

.bento-featured .collection-desc {
  font-size: 0.95rem;
  max-width: 520px;
}

.collection-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.collection-link .arrow {
  transition: transform var(--transition-fast);
}

/* Hover and Keyboard accessibility states */
.collection-card-anchor:hover .collection-card-bg {
  transform: scale(1.05); /* subtle image zoom */
}

.collection-card-anchor:hover .collection-link .arrow {
  transform: translateX(4px); /* arrow shift */
}

.collection-card-anchor:focus-visible {
  outline: 3px solid var(--color-emerald);
  outline-offset: 4px;
}

/* Featured Equipment Digital Shelf Carousel styling */
.sec-header-shelf {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.shelf-view-all {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-forest);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.25rem;
  transition: var(--transition-fast);
}

.shelf-view-all:hover {
  color: var(--color-emerald);
  border-color: var(--color-emerald);
}

.carousel-wrapper-shelf {
  position: relative;
  width: 100%;
}

/* Nav arrows on top right of track */
.carousel-nav-controls {
  position: absolute;
  top: -6rem;
  right: 0;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

@media (max-width: 768px) {
  .carousel-nav-controls {
    display: none; /* Hide navigation arrows on mobile as touch swipe is primary */
  }
}

.carousel-arrow-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-arrow-btn:hover:not(:disabled) {
  background-color: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}

.carousel-arrow-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Carousel scroll track */
.shelf-carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  scrollbar-width: none; /* Firefox */
}

.shelf-carousel-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.shelf-carousel-container product-card {
  flex: 0 0 85%; /* Mobile: approx 1.15 cards visible */
  scroll-snap-align: start;
}

@media (min-width: 600px) {
  .shelf-carousel-container product-card {
    flex: 0 0 calc(50% - 0.75rem); /* Tablet: 2 cards visible */
  }
}

@media (min-width: 1024px) {
  .shelf-carousel-container product-card {
    flex: 0 0 calc(25% - 1.125rem); /* Desktop: 4 cards visible */
  }
}

/* Card details and full width button styling */
.card-action-btn {
  display: block;
  text-align: center;
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
  transition: var(--transition-fast);
  border: 1px solid var(--color-forest);
}

.card-action-btn:hover {
  background-color: var(--color-emerald);
  border-color: var(--color-emerald);
}

/* Bottom shelf CTA */
.shelf-bottom-cta {
  text-align: center;
  margin-top: 4.5rem;
}

/* Product Spotlight Section styling */
.spotlight-sec {
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 8rem 0;
  overflow: hidden;
}

/* Rebuilt Flagship Product Spotlight styling */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: 52fr 48fr; /* exact 52/48 visual balance */
    gap: 4.5rem; /* tight gap to expand gallery footprint */
  }
}

/* Gallery styling */
.spotlight-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spotlight-main-wrap {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 1.5rem; /* minimal padding to make product image larger */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.4; /* widescreen layout */
  overflow: hidden;
}

.spotlight-main-wrap img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain; /* prevents distortion */
  transition: transform 0.4s ease;
}

.spotlight-main-wrap:hover img {
  transform: scale(1.02); /* subtle premium zoom */
}

.spotlight-thumbs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.spotlight-thumb-btn {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  border: 2px solid transparent;
  background-color: var(--color-white);
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.spotlight-thumb-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spotlight-thumb-btn.active {
  border-color: var(--color-sage);
}

.spotlight-thumb-btn:hover {
  border-color: rgba(220, 233, 223, 0.6);
  transform: translateY(-2px);
}

.spotlight-thumb-btn:focus-visible {
  outline: 3px solid var(--color-sage);
  outline-offset: 2px;
}

/* Info content styling */
.spotlight-info {
  display: flex;
  flex-direction: column;
}

.spotlight-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sage);
  margin-bottom: 1.25rem;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .spotlight-title {
    font-size: 3rem;
  }
}

.spotlight-price-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.spotlight-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
}

.spotlight-compare {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.spotlight-save-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--color-sage);
  color: var(--color-forest);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.spotlight-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* Factual specs highlights styling */
.spotlight-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 600px) {
  .spotlight-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.highlight-item {
  display: flex;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 12px;
}

.highlight-icon {
  color: var(--color-sage);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.highlight-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.highlight-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Action buttons */
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-spotlight-primary {
  background-color: var(--color-sage);
  color: var(--color-forest);
  border: 1px solid var(--color-sage);
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-spotlight-primary:hover:not(:disabled) {
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.btn-spotlight-primary:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.btn-spotlight-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-spotlight-secondary:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Spinner */
.loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  margin-right: 0.5rem;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* Scroll reveal trigger properties */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggering highlights */
.reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active .reveal-stagger:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-active .reveal-stagger:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-active .reveal-stagger:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-active .reveal-stagger:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Global Reassurance Strip Styles */
.reassurance-bar {
  background-color: #EDF2EE; /* Soft Sage Background */
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
  width: 100%;
}

.reassurance-grid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 600px) {
  .reassurance-grid-row {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablet */
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .reassurance-grid-row {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 2.5rem;
  }
}

.reassurance-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 0.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .reassurance-grid-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -1.25rem;
    height: 70%;
    width: 1px;
    background-color: rgba(15, 61, 46, 0.15); /* Thin separator */
  }
}

.reassurance-grid-icon {
  color: var(--color-forest); /* Forest Green Icons */
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.reassurance-grid-text h3 {
  font-family: var(--font-body);
  font-size: 15px; /* heading around 14-16px */
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reassurance-grid-text p {
  font-family: var(--font-body);
  font-size: 13.5px; /* supporting text around 13-14px */
  color: var(--color-charcoal);
  line-height: 1.45;
  opacity: 0.85;
}

/* Homepage Brand Story Section styling */
.about-sec {
  background-color: var(--color-ivory);
  padding: 8rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 48fr 52fr; /* 48/52 visual balance split */
    gap: 5rem;
  }
}

.about-visuals {
  position: relative;
  width: 100%;
}

.about-main-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1.4; /* widescreen layout */
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visuals:hover .about-main-img-wrap img {
  transform: scale(1.03); /* subtle premium scale zoom */
}

.about-sub-img-wrap {
  display: none; /* remove overlapping collage image */
}

/* Copy Column styles */
.about-text {
  display: flex;
  flex-direction: column;
  max-width: 580px; /* controlled content width */
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .about-text h2 {
    font-size: 2.8rem;
  }
}

.about-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-charcoal);
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Equipment Guide Widget styling */
.guide-sec {
  background-color: var(--color-white);
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.guide-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .guide-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* Steps and options */
.guide-step {
  margin-bottom: 3.5rem;
  transition: opacity var(--transition-normal);
}

.guide-step:last-child {
  margin-bottom: 0;
}

.guide-step-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-emerald);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.guide-step h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-forest);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.guide-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.guide-opt-btn {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.guide-opt-btn:hover {
  border-color: var(--color-forest);
  background-color: rgba(15, 61, 46, 0.02);
}

.guide-opt-btn.active {
  background-color: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}

/* Recommendation Panel */
.guide-recommendation-panel {
  background-color: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rec-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-emerald);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.rec-img-wrap {
  width: 100%;
  aspect-ratio: 1.5;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.rec-img-wrap img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.rec-info {
  display: flex;
  flex-direction: column;
}

.rec-vendor {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.rec-info h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.rec-info p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.rec-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rec-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-forest);
}

.guide-reset-wrap {
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.guide-reset-btn {
  background: none;
  border: none;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guide-reset-btn:hover {
  color: var(--color-emerald);
}

.guide-reset-btn svg {
  transition: transform var(--transition-normal);
}

.guide-reset-btn:hover svg {
  transform: rotate(-180deg);
}

/* FAQ Section styling */
.faq-sec {
  background-color: var(--color-ivory);
  padding: 8rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
  }
}

.faq-intro-col {
  display: flex;
  flex-direction: column;
}

.faq-intro-col h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-forest);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-intro-col p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.faq-contact-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
  border: 1px solid var(--color-forest);
}

.faq-contact-btn:hover {
  background-color: var(--color-emerald);
  border-color: var(--color-emerald);
}

/* Accordion triggers and wrappers */
.faq-wrapper {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-forest);
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-emerald);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--color-emerald);
  outline-offset: 4px;
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-muted);
  transition: transform 0.2s ease;
  margin-left: 1.5rem;
}

.faq-answer {
  overflow: hidden;
  transition: height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.faq-answer-inner a {
  color: var(--color-emerald);
  text-decoration: underline;
  font-weight: 600;
}

.faq-answer-inner a:hover {
  color: var(--color-forest);
}

/* Redesigned Footer Section */
site-footer {
  display: block;
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 6rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 5rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--color-sage);
  font-style: italic;
}

.footer-statement {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-sage);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-white);
  padding-left: 2px;
}

/* Footer Bottom Row */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.footer-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.payment-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

/* Standardized Section Spacing */
.collections-sec,
.products-sec,
.spotlight-sec,
.guide-sec,
.faq-sec,
.about-sec {
  padding: 3.5rem 0; /* content gap of 112px on desktop */
}

@media (max-width: 1023px) {
  .collections-sec,
  .products-sec,
  .spotlight-sec,
  .guide-sec,
  .faq-sec,
  .about-sec {
    padding: 2.75rem 0; /* content gap of 88px on tablet */
  }
}

@media (max-width: 767px) {
  .collections-sec,
  .products-sec,
  .spotlight-sec,
  .guide-sec,
  .faq-sec,
  .about-sec {
    padding: 2.25rem 0; /* content gap of 72px on mobile */
  }
}

/* Catalog & Collections Layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 8rem;
}

@media (min-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 260px 1fr;
  }
}

/* Sidebar Filters */
.sidebar-filters {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  align-self: start;
  position: sticky;
  top: 100px;
  z-index: 10;
}

.mobile-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

@media (max-width: 1023px) {
  .sidebar-filters {
    position: fixed;
    top: 0;
    left: -320px; /* Hide off-canvas */
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 2rem;
    border-radius: 0;
    border: none;
  }
  .sidebar-filters.open {
    transform: translateX(320px); /* Slide in */
  }
  .mobile-close-btn {
    display: block;
  }
}

/* Mobile Filter Bar & Toggles */
.mobile-filter-bar {
  display: none;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
  .mobile-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.mobile-filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-white);
  color: var(--color-forest);
  border: 1px solid var(--color-border);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-filter-toggle-btn:hover {
  border-color: var(--color-forest);
}

/* Mobile Filter Overlay Background */
.filters-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 45, 34, 0.4);
  backdrop-filter: blur(4px);
  z-index: 990;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.filters-overlay-bg.open {
  display: block;
  opacity: 1;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.sidebar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-forest);
  margin: 0;
}

.clear-filters-btn {
  background: none;
  border: none;
  color: var(--color-emerald);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.clear-filters-btn:hover {
  color: var(--color-forest);
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  cursor: pointer;
  user-select: none;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--color-emerald);
}

.filter-price-inputs {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.price-input-field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.price-input-field span {
  position: absolute;
  left: 0.75rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.price-input-field input {
  width: 100%;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  outline: none;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  transition: var(--transition-fast);
}

.price-input-field input:focus {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 2px rgba(78, 128, 103, 0.1);
}

/* Main Catalog Area */
.catalog-main {
  display: flex;
  flex-direction: column;
}

.catalog-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .catalog-header-row {
    flex-direction: row;
    align-items: flex-end;
  }
}

.catalog-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.product-count-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
}

.catalog-sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
}

.sort-select-dropdown {
  width: auto;
  padding: 0.6rem 2.2rem 0.6rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%234A4A4A' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  transition: var(--transition-fast);
}

.sort-select-dropdown:focus {
  border-color: var(--color-emerald);
}

/* Active Chips */
.active-chips-container {
  margin-bottom: 2rem;
}

.active-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.filter-chip-remove {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.filter-chip-remove:hover {
  color: var(--color-sale-red);
}

/* Catalog Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Load More Button Wrapper */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.load-more-btn {
  background-color: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.load-more-btn:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Empty State Catalog */
.empty-state-catalog {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--color-ivory);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.empty-state-catalog h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

}

/* Product Detail Page Layout */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main {
  aspect-ratio: 1.1;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-thumb {
  width: 76px;
  height: 76px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.65;
  transition: var(--transition-fast);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--color-emerald);
  opacity: 1;
}

.gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product Info */
.product-info-wrap {
  display: flex;
  flex-direction: column;
}

.product-info-vendor {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.product-info-price-row {
  margin: 1.5rem 0 2rem;
  display: flex;
  align-items: center;
}

.product-info-price-row price-display {
  font-size: 1.75rem;
  font-weight: 600;
}

.product-info-desc {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  margin-bottom: 2.5rem;
}

/* Variant selectors */
.product-options-row {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.option-selector-wrap label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  display: block;
  margin-bottom: 0.75rem;
}

.option-values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-value-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.option-value-btn:hover {
  border-color: var(--color-forest);
}

.option-value-btn.selected {
  background-color: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-white);
}

/* Quantity and Purchase wrapper */
.qty-purchase-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}

.qty-purchase-wrap quantity-selector {
  flex-shrink: 0;
}

.qty-purchase-wrap add-to-cart-button {
  flex-grow: 1;
}

.qty-purchase-wrap .add-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-forest);
  color: var(--color-white);
  border: 1px solid var(--color-forest);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-purchase-wrap .add-btn:hover:not(:disabled) {
  background-color: var(--color-emerald);
  border-color: var(--color-emerald);
}

.qty-purchase-wrap .add-btn:disabled {
  background-color: var(--color-border);
  border-color: var(--color-border);
  color: var(--color-muted);
  cursor: not-allowed;
}

/* Specifications Table styling */
.product-specs-card {
  background-color: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 5rem 0;
}

.product-specs-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.product-specs-table tr:last-child td {
  border-bottom: none;
}

.product-specs-table td:first-child {
  font-weight: 700;
  color: var(--color-charcoal);
  width: 30%;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.product-specs-table td:last-child {
  color: var(--color-muted);
}

/* Related products digital shelf */
.related-products-sec {
  border-top: 1px solid var(--color-border);
  padding: 6rem 0 8rem;
}

.related-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-forest);
  margin-bottom: 3.5rem;
  text-align: center;
}

/* Contact Page Layout & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  margin-bottom: 8rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-info-wrap h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-forest);
  margin-bottom: 1.5rem;
}

.contact-info-wrap p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 3.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-sage);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  margin-bottom: 0.65rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 2px rgba(78, 128, 103, 0.1);
}

}

/* Footer Accordion styling */
.footer-col-trigger {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  color: inherit;
}

.footer-col-trigger:focus-visible {
  outline: none;
}

.footer-trigger-icon {
  display: none; /* Hide icon on desktop */
}

.footer-col-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: none !important; /* Keep visible on desktop */
  overflow: visible;
  transition: max-height 0.25s ease-out;
}

/* Mobile specific overrides */
@media (max-width: 767px) {
  .footer-grid {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .footer-accordion-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
  }
  
  .footer-col-trigger {
    cursor: pointer;
    min-height: 44px;
    padding: 0.75rem 0;
  }
  
  .footer-trigger-icon {
    display: block; /* Show icon on mobile */
    font-size: 1.25rem;
    color: var(--color-sage);
    font-weight: 400;
  }
  
  .footer-col-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding-left: 0.5rem;
    gap: 0.75rem;
  }

  .footer-col-content li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}









/* REVEAL-ON-SCROLL FORCE VISIBILITY FIX */
.reveal-on-scroll,
.reveal-stagger,
.reveal-active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

/* CUSTOM ELEMENT WRAPPERS DISPLAY FIX */
newsletter-section,
site-footer,
reassurance-strip,
equipment-guide,
product-spotlight,
product-shelf,
desktop-mega-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  height: auto !important;
}

site-footer {
  background-color: var(--color-forest) !important;
  color: var(--color-ivory) !important;
  padding: 5rem 0 3rem 0 !important;
}

newsletter-section {
  background-color: var(--color-forest) !important;
  color: var(--color-white) !important;
  padding: 5rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-col h4,
.footer-logo,
.footer-statement,
.footer-copy {
  color: var(--color-ivory) !important;
}

.footer-col-content li a {
  color: rgba(247, 245, 239, 0.8) !important;
}

.footer-col-content li a:hover {
  color: var(--color-sage) !important;
}


/* WORDMARK SINGLE-LINE UNBREAKABLE WRAPPER RULES */
.header-logo,
.footer-logo,
.brand-logo,
.site-logo {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  line-height: 1 !important;
}


/* ==========================================================================
   REBUILT 3-ZONE HEADER ARCHITECTURE (DESKTOP & MOBILE GRID)
   ========================================================================== */

.header-outer-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-ivory);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.header-outer-wrapper.scrolled {
  background-color: var(--color-ivory);
  box-shadow: var(--shadow-sm);
}

/* 3-ZONE DESKTOP GRID LAYOUT */
.header-grid-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  height: 82px;
  width: 100%;
  position: relative;
}

/* ZONE 1: LEFT BRAND LOGO */
.header-zone-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 240px;
  z-index: 2;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: opacity 0.2s ease;
}

.header-logo span {
  font-weight: 300;
  font-style: italic;
  color: var(--color-emerald);
}

.header-logo:hover {
  opacity: 0.9;
}

/* ZONE 2: CENTER PRIMARY NAVIGATION */
.header-zone-center {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.desktop-nav {
  display: block;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 2.75rem; /* 44px gap between navigation items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-links > li {
  position: static;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  padding: 0.5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-emerald);
}

.shop-chevron {
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.has-megamenu:hover .shop-chevron,
.has-megamenu .nav-link[aria-expanded="true"] .shop-chevron {
  transform: rotate(180deg);
}

/* ZONE 3: RIGHT UTILITY CONTROLS */
.header-zone-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 240px;
  z-index: 2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-action-btn {
  background: transparent;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.header-action-btn:hover,
.header-action-btn:focus {
  background-color: var(--color-sage);
  color: var(--color-forest);
}

.cart-count-bubble {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--color-emerald);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-charcoal);
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}

.mobile-menu-btn:hover {
  background-color: var(--color-sage);
}

/* MEGA MENU PANEL POSITIONING */
.megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-ivory);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 3.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100;
}

.megamenu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* RESPONSIVE TABLET & MOBILE HEADER */
@media (max-width: 1023px) {
  .header-grid-layout {
    grid-template-columns: 44px 1fr auto;
    height: 72px;
    gap: 0.5rem;
  }

  .mobile-menu-btn {
    display: inline-flex;
    grid-column: 1;
  }

  .header-zone-left {
    grid-column: 2;
    justify-content: center;
    min-width: auto;
  }

  .header-logo {
    font-size: 1.6rem;
  }

  .header-zone-center {
    display: none;
  }

  .header-zone-right {
    grid-column: 3;
    min-width: auto;
  }

  .account-action-btn {
    display: none; /* Hide account button on mobile header to conserve target space */
  }
}

@media (max-width: 767px) {
  .header-grid-layout {
    height: 64px;
  }
  .header-logo {
    font-size: 1.45rem;
  }
}



/* ==========================================================================
   STRICT 3-ZONE HEADER OVERRIDES (SOLVES CO.HOME TOUCHING BUG)
   ========================================================================== */

.header-outer-wrapper {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background-color: var(--color-ivory) !important;
  border-bottom: 1px solid var(--color-border) !important;
  width: 100% !important;
}

.header-grid-layout {
  display: grid !important;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr) !important;
  align-items: center !important;
  height: 82px !important;
  width: 100% !important;
  position: relative !important;
}

.header-zone-left {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 260px !important;
  z-index: 2 !important;
}

.header-logo {
  font-family: var(--font-heading) !important;
  font-size: 2.1rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--color-charcoal) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin-right: 2rem !important;
}

.header-logo span {
  font-weight: 300 !important;
  font-style: italic !important;
  color: var(--color-emerald) !important;
}

.header-zone-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
}

.desktop-nav {
  display: block !important;
}

.menu-links {
  display: flex !important;
  align-items: center !important;
  gap: 2.75rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.menu-links > li {
  position: static !important;
}

.nav-link {
  font-family: var(--font-body) !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--color-charcoal) !important;
  padding: 0.5rem 0 !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-emerald) !important;
}

.header-zone-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-width: 260px !important;
  z-index: 2 !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.header-action-btn {
  background: transparent !important;
  border: none !important;
  color: var(--color-charcoal) !important;
  cursor: pointer !important;
  min-width: 44px !important;
  min-height: 44px !important;
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  position: relative !important;
  text-decoration: none !important;
}

.header-action-btn:hover {
  background-color: var(--color-sage) !important;
  color: var(--color-forest) !important;
}

.mobile-menu-btn {
  display: none !important;
}

@media (max-width: 1023px) {
  .header-grid-layout {
    grid-template-columns: 44px 1fr auto !important;
    height: 72px !important;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
  }
  .header-zone-left {
    justify-content: center !important;
    min-width: auto !important;
  }
  .header-zone-center {
    display: none !important;
  }
  .header-zone-right {
    min-width: auto !important;
  }
  .account-action-btn {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-grid-layout {
    height: 64px !important;
  }
}



/* ==========================================================================
   REBUILT FOOTER ARCHITECTURE (DIRECT HTML STYLES)
   ========================================================================== */

footer.site-footer,
.site-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  background-color: var(--color-forest) !important;
  color: var(--color-ivory) !important;
  width: 100% !important;
  margin-top: auto !important;
}

/* NEWSLETTER SECTION */
.newsletter-section {
  padding: 4.5rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  background-color: var(--color-forest) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.newsletter-wrapper {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2.5rem !important;
  align-items: center !important;
}

@media (min-width: 1024px) {
  .newsletter-wrapper {
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 5rem !important;
  }
}

.newsletter-heading {
  font-family: var(--font-heading) !important;
  font-size: 2.4rem !important;
  font-weight: 400 !important;
  color: var(--color-ivory) !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.2 !important;
}

.newsletter-desc {
  font-family: var(--font-body) !important;
  font-size: 0.98rem !important;
  color: var(--color-sage) !important;
  line-height: 1.6 !important;
  max-width: 540px !important;
}

.newsletter-form-container {
  display: flex !important;
  flex-direction: column !important;
}

.newsletter-input-group {
  display: flex !important;
  gap: 0.75rem !important;
  width: 100% !important;
}

.newsletter-input {
  flex-grow: 1 !important;
  padding: 0.9rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: var(--color-white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  min-height: 48px !important;
}

.newsletter-input:focus {
  outline: none !important;
  border-color: var(--color-sage) !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
}

.newsletter-btn {
  background-color: var(--color-sage) !important;
  color: var(--color-forest) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.85rem !important;
  padding: 0.9rem 1.75rem !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
  min-height: 48px !important;
  white-space: nowrap !important;
  transition: background-color 0.2s ease !important;
}

.newsletter-btn:hover {
  background-color: var(--color-white) !important;
}

.newsletter-privacy-note {
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 1rem !important;
}

.newsletter-privacy-note a {
  color: var(--color-sage) !important;
  text-decoration: underline !important;
}

.newsletter-feedback-msg {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  margin-top: 0.75rem !important;
  color: var(--color-sage) !important;
}

/* FOOTER NAVIGATION */
.footer-navigation {
  padding: 4.5rem 0 4rem 0 !important;
  background-color: var(--color-forest) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 3rem !important;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr) !important;
    gap: 3.5rem !important;
  }
}

.footer-logo {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem !important;
  font-weight: 500 !important;
  color: var(--color-white) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  text-decoration: none !important;
  margin-bottom: 1.25rem !important;
  white-space: nowrap !important;
}

.footer-logo span {
  font-style: italic !important;
  color: var(--color-sage) !important;
}

.footer-brand-desc {
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  color: var(--color-sage) !important;
  line-height: 1.6 !important;
  max-width: 340px !important;
}

.footer-col-title {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--color-white) !important;
  margin-bottom: 1.5rem !important;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.footer-links a {
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  color: var(--color-sage) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  min-height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-white) !important;
}

/* FOOTER BOTTOM ROW */
.footer-bottom {
  padding: 2rem 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(0, 0, 0, 0.15) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-bottom-flex {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem !important;
  text-align: center !important;
}

@media (min-width: 768px) {
  .footer-bottom-flex {
    flex-direction: row !important;
    text-align: left !important;
  }
}

.footer-copyright {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-payment-badges {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  flex-wrap: wrap !important;
}

.payment-badge {
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 4px !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--color-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
