/* 
 * Theme Styles - Replaces Tailwind CSS
 * All classes use 'hme-' prefix to avoid conflicts
 * No external dependencies required
 */

/* ============================================
   GLOBAL STYLES
   ============================================ */

/* Set Outfit as the default font family */
body,
html {
  font-family: "Outfit", Helvetica, sans-serif;
  margin: 0; padding: 0;
  overflow-x: hidden !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Display */
.hme-flex {
  display: flex;
}

.hme-grid {
  display: grid;
}

.hme-block {
  display: block;
}

.hme-inline-block {
  display: inline-block;
}

.hme-inline-flex {
  display: inline-flex;
}

.hme-hidden {
  display: none;
}

/* Flex Direction */
.hme-flex-col {
  flex-direction: column;
}

.hme-flex-row {
  flex-direction: row;
}

.hme-flex-row-reverse {
  flex-direction: row-reverse;
}

/* Flex Alignment */
.hme-items-center {
  align-items: center;
}

.hme-items-start {
  align-items: flex-start;
}

.hme-items-end {
  align-items: flex-end;
}

.hme-justify-center {
  justify-content: center;
}

.hme-justify-between {
  justify-content: space-between;
}

.hme-justify-start {
  justify-content: flex-start;
}

.hme-justify-end {
  justify-content: flex-end;
}

.hme-self-center {
  align-self: center;
}

/* Flex Grow */
.hme-flex-1 {
  flex: 1 1 0%;
}

/* Grid Columns */
.hme-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hme-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Gap */
.hme-gap-2 {
  gap: 0.5rem;
}

.hme-gap-3 {
  gap: 0.75rem;
}

.hme-gap-4 {
  gap: 1rem;
}

.hme-gap-6 {
  gap: 1.5rem;
}

/* Width */
.hme-w-full {
  width: 100%;
}

.hme-max-w-full {
  max-width: 100%;
}

.hme-max-w-1050 {
  max-width: 1050px;
}

.hme-max-w-1680 {
  max-width: 1680px;
}

.hme-min-w-0 {
  min-width: 0;
}

.hme-min-w-174 {
  min-width: 174px;
}

.hme-min-w-294 {
  min-width: 294px;
}

.hme-min-w-330 {
  min-width: 330px;
}

/* ============================================
   FRONT/ARCHIVE PAGE LOCATION FIELD - NO ARROW
   ============================================ */
.hme-location-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 16px;
  height: 46px;
  border: 1px solid #363346;
  border-radius: 4px;
  position: relative;
  background: #FFFFFF;
}

.hme-location-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #363346;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hme-location-select::-ms-expand {
  display: none;
}

.hme-location-pin-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #363346;
  pointer-events: none;
  z-index: 2;
}

.hme-location-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  pointer-events: none;
  z-index: 2;
  min-width: 0;
}

.hme-location-label {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ACACAC;
}

.hme-location-value {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* ============================================
   DELIVERY ADDRESS FIELDS
   ============================================ */
.hme-delivery-address-fields {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 330px;
}

.hme-delivery-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.hme-delivery-input {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #363346;
  padding: 10px 12px;
  border: 1px solid #363346;
  border-radius: 4px;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease;
  height: 46px;
  text-align: center;
  box-sizing: border-box;
}

.hme-delivery-input:focus {
  border-color: #004B8D;
}

.hme-delivery-input::placeholder {
  color: #ACACAC;
  text-align: center;
}

.hme-delivery-input:first-of-type {
  flex: 2;
  min-width: 150px;
}

.hme-delivery-city {
  flex: 1;
  min-width: 100px;
}

.hme-delivery-postal {
  flex: 0 0 100px;
  max-width: 100px;
}

@media (max-width: 768px) {
  .hme-delivery-address-fields {
    min-width: 100%;
  }
  
  .hme-delivery-address-row {
    flex-wrap: wrap;
  }
  
  .hme-delivery-input:first-of-type {
    flex: 1 1 100%;
  }
  
  .hme-delivery-city,
  .hme-delivery-postal {
    flex: 1;
    min-width: 0;
  }
}

/* Height */
.hme-h-full {
  height: 100%;
}

.hme-h-75 {
  height: 75px;
}

.hme-h-62 {
  height: 62px;
}

.hme-h-86 {
  height: 86px;
}

.hme-h-48 {
  height: 12rem;
}

.hme-h-96 {
  height: 24rem;
}

.hme-min-h-screen {
  min-height: 100vh;
}

.hme-min-h-calc {
  min-height: calc(100vh - 75px);
}

/* Position */
.hme-relative {
  position: relative;
}

.hme-absolute {
  position: absolute;
}

.hme-inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Spacing - Padding */
.hme-p-3 {
  padding: 0.75rem;
}

.hme-p-4 {
  padding: 1rem;
}

.hme-p-6 {
  padding: 1.5rem;
}

.hme-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hme-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hme-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.hme-px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hme-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hme-px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.hme-px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hme-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hme-py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.hme-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hme-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Spacing - Margin */
.hme-mb-2 {
  margin-bottom: 0.5rem;
}

.hme-mb-3 {
  margin-bottom: 0.75rem;
}

.hme-mb-4 {
  margin-bottom: 1rem;
}

.hme-mb-6 {
  margin-bottom: 1.5rem;
}

.hme-mb-8 {
  margin-bottom: 2rem;
}

.hme-mt-6 {
  margin-top: 1.5rem;
}

.hme-mt-8 {
  margin-top: 2rem;
}

.hme-mr-2 {
  margin-right: 0.5rem;
}

.hme-ml-2 {
  margin-left: 0.5rem;
}

.hme-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Background */
.hme-bg-white {
  background-color: #ffffff;
}

.hme-bg-gray-50 {
  background-color: #f9fafb;
}

.hme-bg-gray-200 {
  background-color: #e5e7eb;
}

.hme-bg-black {
  background-color: #000000;
}

.hme-bg-opacity-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.hme-bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.hme-bg-blue-50 {
  background-color: #eff6ff;
}

.hme-bg-blue-600 {
  background-color: #2563eb;
}

.hme-bg-yellow {
  background-color: rgba(249, 157, 27, 1);
}

.hme-bg-yellow-100 {
  background-color: #fef3c7;
}

.hme-bg-gray-100 {
  background-color: #f3f4f6;
}

.hme-bg-header {
  background-color: #f8f8f8;
}

/* Background Image */
.hme-bg-cover {
  background-size: cover;
}

.hme-bg-center {
  background-position: center;
}

.hme-bg-no-repeat {
  background-repeat: no-repeat;
}

/* Text */
.hme-text-white {
  color: #ffffff;
}

.hme-text-gray-700 {
  color: #374151;
}

.hme-text-gray-900 {
  color: #111827;
}

.hme-text-red-600 {
  color: #dc2626;
}

.hme-text-red-800 {
  color: #991b1b;
}

.hme-text-blue-600 {
  color: #2563eb;
}

.hme-text-dark {
  color: rgba(54, 51, 70, 1);
}

.hme-text-gray-light {
  color: rgba(112, 109, 124, 1);
}

.hme-text-yellow {
  color: rgba(249, 157, 27, 1);
}

/* Font Size */
.hme-text-sm {
  font-size: 0.875rem;
}

.hme-text-base {
  font-size: 1rem;
}

.hme-text-lg {
  font-size: 1.125rem;
}

.hme-text-xl {
  font-size: 1.25rem;
}

.hme-text-2xl {
  font-size: 1.5rem;
}

.hme-text-3xl {
  font-size: 1.875rem;
}

.hme-text-4xl {
  font-size: 2.25rem;
}

.hme-text-5xl {
  font-size: 3rem;
}

.hme-text-14 {
  font-size: 14px;
}

.hme-text-16 {
  font-size: 16px;
}

.hme-text-18 {
  font-size: 18px;
}

.hme-text-24 {
  font-size: 24px;
}

.hme-text-32 {
  font-size: 32px;
}

/* Font Weight */
.hme-font-normal {
  font-weight: 400;
}

.hme-font-medium {
  font-weight: 500;
}

.hme-font-semibold {
  font-weight: 600;
}

.hme-font-bold {
  font-weight: 700;
}

/* Font Family */
.hme-font-outfit {
  font-family: "Outfit", Helvetica, sans-serif;
}

/* Line Height */
.hme-leading-15 {
  line-height: 15px;
}

.hme-leading-18 {
  line-height: 18px;
}

.hme-leading-20 {
  line-height: 20px;
}

.hme-leading-27 {
  line-height: 27px;
}

.hme-leading-30 {
  line-height: 30px;
}

.hme-leading-45 {
  line-height: 45px;
}

/* Letter Spacing */
.hme-tracking-16 {
  letter-spacing: 1.6px;
}

/* Text Align */
.hme-text-left {
  text-align: left;
}

.hme-text-center {
  text-align: center;
}

.hme-text-right {
  text-align: right;
}

/* Whitespace */
.hme-whitespace-nowrap {
  white-space: nowrap;
}

/* Border */
.hme-border {
  border-width: 1px;
}

.hme-border-yellow {
  border-color: rgba(249, 157, 27, 1);
}

.hme-border-yellow-400 {
  border-color: #fbbf24;
}

.hme-border-gray-300 {
  border-color: #d1d5db;
}

.hme-border-gray-400 {
  border-color: #9ca3af;
}

.hme-border-blue-200 {
  border-color: #bfdbfe;
}

/* Border Radius */
.hme-rounded {
  border-radius: 0.25rem;
}

.hme-rounded-4 {
  border-radius: 4px;
}

.hme-rounded-5 {
  border-radius: 5px;
}

.hme-rounded-lg {
  border-radius: 0.5rem;
}

.hme-rounded-md {
  border-radius: 0.375rem;
}

/* Shadow */
.hme-shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hme-shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Overflow */
.hme-overflow-hidden {
  overflow: hidden;
}

.hme-overflow-visible {
  overflow: visible;
}

/* Z-Index */
.hme-z-10 {
  z-index: 10;
}

/* Object Fit */
.hme-object-cover {
  object-fit: cover;
}

/* Cursor */
.hme-cursor-pointer {
  cursor: pointer;
}

/* Appearance */
.hme-appearance-none {
  appearance: none;
}

/* ============================================
   COMPONENT CLASSES
   ============================================ */

/* Container */
.hme-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .hme-container {
    max-width: 640px;
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .hme-container {
    max-width: 768px;
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .hme-container {
    max-width: 1024px;
    padding: 0 20px;
  }
}

@media (min-width: 1680px) {
  .hme-container {
    max-width: 1680px;
    padding: 0 20px;
  }
}

.woocommerce .woocommerce-result-count, 
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-pagination {
  display: none;
}



/* ============================================
   HEADER - Modern Flexbox Layout
   S-Tier Industry Standard Responsive Design
   ============================================ */

.hme-header-background {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #f8f8f8;
  padding: 0 clamp(16px, 3vw, 40px);
  box-sizing: border-box;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky Header - appears after 250px scroll */
.hme-header-background.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease forwards;
}

/* Header placeholder - prevents content jump when header becomes fixed */
.hme-header-placeholder {
  display: none;
  height: 72px;
  width: 100%;
}

.hme-header-placeholder.active {
  display: block;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive placeholder heights */
@media (max-width: 1199px) {
  .hme-header-placeholder {
    height: 68px;
  }
}

@media (max-width: 992px) {
  .hme-header-placeholder {
    height: 64px;
  }
}

@media (max-width: 576px) {
  .hme-header-placeholder {
    height: 56px;
  }
}

/* Site Title/Logo */
.hme-header-title {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  font-family: "Outfit", Helvetica, sans-serif;
  font-weight: 700;
  color: #363346;
  font-size: clamp(18px, 2.5vw, 32px);
  letter-spacing: clamp(0.8px, 0.12vw, 1.6px);
  line-height: 1.2;
}

.hme-header-title a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hme-header-title a:hover {
  opacity: 0.8;
}

/* Navigation Container - Flexbox Based */
.hme-header-nav-container {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

/* Phone Link with Icon */
.hme-header-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #706d7c;
  transition: color 0.2s ease;
  padding: 8px 4px;
}

.hme-header-phone-link:hover {
  color: #363346;
}

.hme-header-phone-link:focus-visible {
  outline: 2px solid #F99D1B;
  outline-offset: 2px;
  border-radius: 4px;
}

.hme-header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hme-header-phone-icon svg {
  width: 100%;
  height: 100%;
}

.hme-header-phone-text {
  font-family: "Outfit", Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.5;
  white-space: nowrap;
}

/* CTA Buttons */
.hme-header-book-button,
.hme-header-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 clamp(12px, 1.5vw, 20px);
  background-color: #F99D1B;
  border: 1px solid #F99D1B;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hme-header-book-button:hover,
.hme-header-contact-button:hover {
  background-color: #e88d0a;
  border-color: #e88d0a;
  transform: translateY(-1px);
}

.hme-header-book-button:focus-visible,
.hme-header-contact-button:focus-visible {
  outline: 2px solid #363346;
  outline-offset: 2px;
}

.hme-header-book-button:active,
.hme-header-contact-button:active {
  transform: translateY(0);
}

.hme-header-book-text,
.hme-header-contact-text {
  font-family: "Outfit", Helvetica, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(13px, 1.1vw, 16px);
  white-space: nowrap;
  line-height: 1;
}

/* Cart Button - Desktop */
.hme-header-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #363346;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hme-header-cart-button:hover {
  color: #F99D1B;
  background-color: rgba(249, 157, 27, 0.08);
}

.hme-header-cart-button:focus-visible {
  outline: 2px solid #F99D1B;
  outline-offset: 2px;
}

.hme-header-cart-button svg {
  width: 24px;
  height: 24px;
}

/* Cart Count Badge */
.hme-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #F99D1B;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  display: none;
  box-sizing: border-box;
}

.hme-cart-count.hme-has-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart button text - hidden on desktop */
.hme-cart-button-text {
  display: none;
}

/* ============================================
   HEADER RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1400px+) - Full layout */
@media (min-width: 1400px) {
  .hme-header-background {
    padding: 0 40px;
  }
  
  .hme-header-nav-container {
    gap: 20px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .hme-header-nav-container {
    gap: 12px;
  }
  
  .hme-header-book-button,
  .hme-header-contact-button {
    height: 34px;
    padding: 0 14px;
  }
}

/* Tablet Landscape (1050px - 1199px) - Hide phone */
@media (max-width: 1199px) {
  .hme-header-background {
    height: 68px;
  }
  
  .hme-header-nav-container {
    gap: 10px;
  }
  
  .hme-header-phone-link {
    display: none;
  }
  
  .hme-header-book-text,
  .hme-header-contact-text {
    font-size: 14px;
  }
  
  .hme-header-book-button,
  .hme-header-contact-button {
    height: 32px;
    padding: 0 12px;
  }
  
  .hme-header-cart-button {
    width: 40px;
    height: 40px;
  }
  
  .hme-header-cart-button svg {
    width: 22px;
    height: 22px;
  }
}


/* Top Bar (Front Page) */
.hme-top-bar {
  background-color: #f8f8f8;
  height: 75px;
  position: relative;
  width: 100%;
}

.hme-top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.hme-top-bar-title {
  font-family: "Outfit", Helvetica, sans-serif;
  color: #363346;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 45px;
}

.hme-top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hme-top-bar-phone-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #363346;
}

.hme-top-bar-phone-link {
  font-family: "Outfit", Helvetica, sans-serif;
  color: #706d7c;
  font-size: 18px;
  line-height: 27px;
  text-decoration: none;
  font-weight: 400;
}

.hme-top-bar-phone-link:hover {
  color: #363346;
}

.hme-top-bar-button {
  font-family: "Outfit", Helvetica, sans-serif;
  background-color: #f99d1b;
  border: 1px solid #f99d1b;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 15px;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hme-top-bar-button:hover {
  background-color: #e88d0a;
}

/* Hero Section */
.hme-hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
}

.hme-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hme-hero-content {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  overflow: visible;
}

.hme-hero-search-stack {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
}

.hme-hero-browse-box {
  width: auto;
  padding: 12px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  background-color: #ffffff;
  border-radius: 4px;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.hme-hero-product-search-box {
  width: 100%;
  max-width: 1200px;
  padding: 12px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  background-color: #ffffff;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: visible;
}

.hme-hero-product-search-box .hme-product-search {
  width: 100%;
  max-width: 100%;
}

.hme-hero-search-box {
  width: 100%;
  max-width: 1200px;
  padding: 12px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  background-color: #ffffff;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.hme-browse-products-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  height: 46px;
  padding: 0 24px;
  border: 1px solid #363346;
  border-radius: 5px;
  background: #ffffff;
  color: #363346;
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hme-browse-products-button:hover {
  background-color: #f9fafa;
  border-color: #4a90e2;
}

.hme-browse-products-button:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Location Search Form - Based on Anima Export */
.hme-location-search-form {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 62px;
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.hme-search-field {
  display: flex;
  height: 46px;
  min-height: 62px;
  align-items: center;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 4px;
  background: #FFFFFF;
  border: 1px solid #363346;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.hme-search-field.hme-flex-1 {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  height: 46px;
  min-height: 62px;
}

.hme-search-field.hme-gap-3 {
  gap: 12px;
}

.hme-search-field-icon {
  position: relative;
  flex-shrink: 0;
  color: #363346;
}

.hme-search-field-icon[width="24"] {
  width: 24px;
  height: 24px;
}

.hme-search-field-icon[width="18"] {
  width: 18px;
  height: 18px;
}

.hme-search-field-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #363346;
}

.hme-search-field-select.hme-w-full {
  width: 100%;
}

.hme-search-field-select:focus-visible {
  outline: 2px solid #F99D1B;
  outline-offset: -2px;
}

.hme-search-field-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: -1px;
  font-family: "Outfit", Helvetica, sans-serif;
  font-weight: 400;
  color: #363346;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hme-search-field-value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  font-family: "Outfit", Helvetica, sans-serif;
  font-weight: 500;
  color: #363346;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hme-search-field-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  border: none;
  background: transparent;
}

.hme-search-field-date:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: -2px;
}

.hme-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 32px;
  position: relative;
  flex: 0 0 auto;
  max-width: 100%;
  height: 46px;
  min-height: 62px;
  background-color: #f99d1b;
  border-radius: 5px;
  border: 1px solid #f99d1b;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.hme-search-button span,
.hme-search-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Outfit", Helvetica, sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 30px;
  white-space: nowrap;
}

.hme-search-button:hover {
  background-color: rgba(249, 157, 27, 0.9);
}

.hme-search-button:active {
  background-color: rgba(249, 157, 27, 0.8);
}

.hme-search-button:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Search field hover and focus states */
.hme-search-field:hover {
  background: #F9FAFA;
  border-color: #4a90e2;
}

.hme-search-field:focus-within {
  background: #FFFFFF;
  border-color: #4a90e2;
  box-shadow: 0 0 0 1px #4a90e2;
}

/* Visually Hidden for Accessibility */
.hme-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hide native select and date input UI elements */
select.hme-search-field-select {
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.hme-search-field-select::-ms-expand {
  display: none;
}

input[type="date"].hme-search-field-date::-webkit-calendar-picker-indicator {
  display: none;
}

input[type="date"].hme-search-field-date::-webkit-inner-spin-button,
input[type="date"].hme-search-field-date::-webkit-clear-button {
  display: none;
}

input[type="date"].hme-search-field-date {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Text rendering for better font rendering */
.hme-search-field-label,
.hme-search-field-value,
.hme-search-button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.hme-product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  gap: 38px;
  background: #FFFFFF;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  width: 100%;
  box-sizing: border-box;
  min-width: 763px;
}

/* Product Image Container */
.hme-product-image-container {
  width: 281px;
  height: 262px;
  flex: none;
  order: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hme-product-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

/* Product Details Container */
.hme-product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 38px;
  flex: 1;
  order: 1;
  flex-grow: 1;
}

/* Title and Vendor Section */
.hme-product-title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 13px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hme-product-title {
  width: auto;
  min-height: 20px;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #F99D1B;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 10px 24px 10px 0;
  word-wrap: break-word;
}

.hme-product-title a {
  color: inherit;
  text-decoration: none;
}

.hme-product-title a:hover {
  text-decoration: underline;
}

.hme-product-vendor {
  width: auto;
  height: 23px;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #A5A4A4;
  flex: none;
  order: 1;
  flex-grow: 0;
  align-self: stretch;
}

/* Price and Button Section */
.hme-product-action-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.hme-product-price {
  width: auto;
  height: 24px;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hme-product-price .woocommerce-Price-amount {
  color: #363346;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.hme-product-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 141px;
  height: 44px;
  background: #F99D1B;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 12px;
  color: #F3F3F3;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hme-product-button:hover {
  background-color: #e88a0a;
  color: #F3F3F3;
}

/* Search and Filters Wrapper - Centered */
.hme-search-filters-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 32px;
}

/* Product Filters - Figma Design */
.hme-product-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 16px;
  margin-bottom: 48px;
  justify-content: center;
}

.hme-product-search {
  position: relative;
  width: min(100%, 640px);
  max-width: 640px;
  flex: 1 1 100%;
  min-width: 0;
  overflow: visible;
}

.hme-product-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 62px;
  padding: 8px 12px 8px 44px;
  background: #ECECEC;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: visible;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hme-product-search-input-wrap:focus-within {
  background: #FFFFFF;
  border-color: #F99D1B;
}

.hme-product-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #363346;
  pointer-events: none;
}

.hme-product-search-input {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  outline: none;
}

.hme-product-search-input::placeholder {
  color: #6F6B7F;
}

.hme-product-search-toggle {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #363346;
  border-radius: 4px;
  background: #FFFFFF;
  color: #363346;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hme-product-search-toggle:hover {
  background: #f9fafa;
  border-color: #F99D1B;
}

.hme-product-search-dropdown {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 100%;
  z-index: 1200;
  max-height: 360px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid #dedbe8;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hme-product-search-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hme-product-search-item + .hme-product-search-item {
  border-top: 1px solid #F1EFF7;
}

.hme-product-search-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: #363346;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.hme-product-search-link:hover,
.hme-product-search-link:focus-visible {
  background: #FFF5E6;
  color: #1f1d2a;
  outline: none;
}

.hme-product-search-name {
  font-weight: 500;
}

.hme-product-search-empty {
  margin: 0;
  padding: 14px;
  color: #5f5b70;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.hme-product-filters-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* Filter Dropdown - matches search field style */
.hme-filter-dropdown {
  position: relative;
  display: inline-block;
  height: 62px;
  background: #ECECEC;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
  width: auto;
  min-width: 83px;
}

.hme-filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 100%;
  padding: 8px 40px 8px 8px;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  cursor: pointer;
  outline: none;
  border-radius: 4px;
}

.hme-filter-select::-ms-expand {
  display: none;
}

/* Style dropdown options - Consistent across all dropdowns */
.hme-filter-select option,
.hme-search-field-select option,
.hme-checkout-select option,
.hme-checkout-pickup-select option,
.hme-checkout-location-select option,
.hme-location-select option {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #363346;
  background: #FFFFFF;
  padding: 12px 16px;
  min-height: 44px;
  border: none;
  cursor: pointer;
}

.hme-filter-select option:hover,
.hme-filter-select option:checked,
.hme-filter-select option:focus,
.hme-search-field-select option:hover,
.hme-search-field-select option:checked,
.hme-search-field-select option:focus,
.hme-checkout-select option:hover,
.hme-checkout-select option:checked,
.hme-checkout-select option:focus,
.hme-checkout-pickup-select option:hover,
.hme-checkout-pickup-select option:checked,
.hme-checkout-pickup-select option:focus,
.hme-checkout-location-select option:hover,
.hme-checkout-location-select option:checked,
.hme-checkout-location-select option:focus,
.hme-location-select option:hover,
.hme-location-select option:checked,
.hme-location-select option:focus {
  background: #F99D1B;
  color: #FFFFFF;
}

/* Selected option styling */
.hme-filter-select option[selected],
.hme-search-field-select option[selected],
.hme-checkout-select option[selected],
.hme-checkout-pickup-select option[selected],
.hme-checkout-location-select option[selected],
.hme-location-select option[selected] {
  background: #FFF5E6;
  color: #363346;
  font-weight: 600;
}

/* Dropdown menu container styling (browser-dependent) */
.hme-filter-select:focus,
.hme-search-field-select:focus,
.hme-checkout-select:focus,
.hme-checkout-pickup-select:focus,
.hme-checkout-location-select:focus,
.hme-location-select:focus {
  outline: 2px solid #F99D1B;
  outline-offset: 2px;
}

/* Firefox-specific dropdown styling */
@-moz-document url-prefix() {
  .hme-filter-select option,
  .hme-search-field-select option,
  .hme-checkout-select option,
  .hme-checkout-pickup-select option,
  .hme-checkout-location-select option,
  .hme-location-select option {
    padding: 10px 14px;
  }
}

.hme-filter-display {
  display: none;
}

.hme-filter-text {
  display: none;
}

.hme-filter-chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #363346;
  pointer-events: none;
}

/* Remove Filters Button */
.hme-filter-remove {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  width: 200px;
  height: 62px;
  background: #313131;
  border: 2px solid #F99D1B;
  border-radius: 5px;
  flex: none;
  order: 3;
  flex-grow: 0;
  text-decoration: none;
}

.hme-filter-x-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #F99D1B;
  stroke-width: 2;
}

.hme-filter-remove-text {
  width: 102px;
  height: 20px;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #F99D1B;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Banner */
.hme-banner-section {
  position: relative;
  width: 100%;
  height: 24rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hme-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hme-banner-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hme-banner-text {
  text-align: center;
  color: #ffffff;
}

.hme-banner-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hme-banner-subtitle {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.hme-banner-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hme-banner-button:hover {
  background-color: #1d4ed8;
}

/* Layout Sections */
.hme-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hme-section-content {
  margin: 0 auto;
  padding: 0 1rem;
}

.hme-section-header {
  margin-bottom: 1.5rem;
}

.hme-section-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hme-section-column {
  flex: 1;
}

/* Archive Page */
.hme-archive-header {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.hme-archive-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hme-archive-criteria {
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hme-archive-criteria-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hme-archive-criteria-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.hme-archive-criteria-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.hme-archive-criteria-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hme-archive-criteria-label {
  font-weight: 500;
  color: #374151;
}

.hme-archive-criteria-value {
  color: #111827;
}

.hme-archive-edit-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.hme-archive-edit-button:hover {
  background-color: #1d4ed8;
}

.hme-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(763px, 1fr));
  gap: 31px 31px;
  row-gap: 40px;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.hme-product-card-item {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  width: 100%;
}

/* Products Loading Spinner */
.hme-products-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
}

.hme-loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #ECECEC;
  border-top: 4px solid #F99D1B;
  border-radius: 50%;
  animation: hme-spin 1s linear infinite;
}

@keyframes hme-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hme-loader-text {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  margin: 0;
}

.woocommerce-products-container {
  position: relative;
  min-height: 400px;
}

/* WooCommerce Checkout */
.hme-checkout-field {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
}

.hme-checkout-field-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ============================================
   RESPONSIVE CLASSES
   ============================================ */

/* Mobile First - Default styles above are mobile */

/* Tablet and up */
@media (min-width: 768px) {
  .hme-md-flex-row {
    flex-direction: row;
  }

  .hme-md-items-center {
    align-items: center;
  }

  .hme-md-justify-between {
    justify-content: space-between;
  }

  .hme-md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.hme-md-p-6 {
  padding: 1.5rem;
}

.hme-md-p-4 {
  padding: 1rem;
}

  .hme-md-text-lg {
    font-size: 1.125rem;
  }

  .hme-md-text-xl {
    font-size: 1.25rem;
  }

  .hme-md-text-3xl {
    font-size: 1.875rem;
  }

  .hme-md-text-4xl {
    font-size: 2.25rem;
  }

  .hme-md-text-5xl {
    font-size: 3rem;
  }

  .hme-product-filters-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hme-archive-criteria-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hme-archive-criteria-items {
    font-size: 1rem;
  }
}

/* Desktop and up */
@media (min-width: 1024px) {
  .hme-lg-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Large Desktop and up */
@media (min-width: 1280px) {
  .hme-xl-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================
   TRANSITIONS & HOVER STATES
   ============================================ */

.hme-transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hme-transition-shadow {
  transition: box-shadow 0.2s ease;
}

.hme-transition-opacity {
  transition: opacity 0.2s ease;
}

/* Focus States */
.hme-focus-outline:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* ============================================
   UTILITY OVERRIDES
   ============================================ */

/* Flex Shrink */
.hme-flex-shrink-0 {
  flex-shrink: 0;
}

/* Width & Height Utilities */
.hme-w-4 {
  width: 1rem;
}

.hme-w-5 {
  width: 1.25rem;
}

.hme-h-4 {
  height: 1rem;
}

.hme-h-5 {
  height: 1.25rem;
}

/* Specific Positioning */
.hme-left-calc-251 {
  left: calc(50% - 251px);
}

.hme-left-calc-227 {
  left: calc(50% - 227px);
}

.hme-left-calc-51 {
  left: calc(50% - 51px);
}

.hme-left-calc-114 {
  left: calc(50% + 114px);
}

.hme-top-3 {
  top: 3px;
}

.hme-gap-05 {
  gap: 0.125rem;
}

.hme-gap-678 {
  gap: 678.9px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Overlay */
.hme-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hme-menu-overlay.hme-menu-open {
  display: block;
  opacity: 1;
}

/* ============================================
   HAMBURGER MENU & MOBILE NAVIGATION
   ============================================ */

/* Hamburger Menu Toggle Button */
.hme-header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  transition: background-color 0.2s ease;
}

.hme-header-menu-toggle:hover {
  background-color: rgba(249, 157, 27, 0.1);
}

.hme-header-menu-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #F99D1B;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Animated hamburger to X */
.hme-header-menu-toggle[aria-expanded="true"] .hme-header-menu-toggle-icon:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hme-header-menu-toggle[aria-expanded="true"] .hme-header-menu-toggle-icon:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hme-header-menu-toggle[aria-expanded="true"] .hme-header-menu-toggle-icon:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   TABLET/MOBILE HEADER (992px and below)
   ============================================ */
@media (max-width: 992px) {
  .hme-header-background {
    height: 64px;
    padding: 0 16px;
    overflow: visible;
  }

  .hme-header-title {
    font-size: 20px;
    letter-spacing: 1px;
    flex: 1;
    min-width: 0;
  }

  /* Show hamburger menu */
  .hme-header-menu-toggle {
    display: flex;
    flex-shrink: 0;
    z-index: 3; /* Above overlay and nav */
  }

  /* Hide desktop nav, convert to slide-out panel */
  .hme-header-nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2; /* Above overlay (1) */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hme-header-nav-container.hme-menu-open {
    right: 0;
  }

  /* Mobile Nav Header Spacer */
  .hme-header-nav-container::before {
    content: '';
    display: block;
    height: 80px;
    flex-shrink: 0;
    width: 100%;
  }

  /* Phone in mobile menu */
  .hme-header-phone-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: auto;
    margin: 0;
    padding: 16px 24px;
    border-bottom: 1px solid #ECECEC;
    color: #363346;
    box-sizing: border-box;
  }

  .hme-header-phone-icon {
    display: flex;
    width: 22px;
    height: 22px;
    color: #363346;
    flex-shrink: 0;
  }

  .hme-header-phone-text {
    font-size: 16px;
    font-weight: 500;
  }

  /* CTA Buttons in mobile menu */
  .hme-header-book-button,
  .hme-header-contact-button {
    width: auto;
    margin: 12px 20px;
    padding: 14px 20px;
    height: auto;
    min-height: 48px;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .hme-header-book-text,
  .hme-header-contact-text {
    font-size: 15px;
    font-weight: 600;
  }

  /* Cart Button in mobile menu - show it again */
  .hme-header-cart-button {
    display: flex;
    width: auto;
    height: auto;
    margin: 12px 20px;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid #363346;
    border-radius: 6px;
    color: #363346;
    gap: 10px;
    box-sizing: border-box;
  }

  .hme-header-cart-button:hover {
    background: #363346;
    color: #FFFFFF;
  }

  .hme-header-cart-button:hover .hme-cart-count {
    background: #FFFFFF;
    color: #363346;
  }

  .hme-header-cart-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* Show cart text on mobile */
  .hme-cart-button-text {
    display: inline;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
  }

  /* Cart count in mobile */
  .hme-header-cart-button .hme-cart-count {
    position: static;
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 12px;
    line-height: 22px;
    border-radius: 11px;
    flex-shrink: 0;
  }

  .hme-header-cart-button .hme-cart-count:not(.hme-has-items) {
    display: none;
  }
}

/* ============================================
   SMALL MOBILE (576px and below)
   ============================================ */
@media (max-width: 576px) {
  .hme-header-background {
    height: 56px;
    padding: 0 12px;
  }

  .hme-header-title {
    font-size: 16px;
    letter-spacing: 0.6px;
  }

  .hme-header-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hme-header-nav-container {
    width: 100%;
    max-width: 100%;
  }
  
  .hme-header-nav-container::before {
    height: 70px;
  }

  .hme-header-phone-link {
    padding: 14px 16px;
  }
  
  .hme-header-book-button,
  .hme-header-contact-button,
  .hme-header-cart-button {
    margin: 10px 16px;
    padding: 12px 16px;
    min-height: 44px;
  }

  .hme-header-phone-text,
  .hme-header-book-text,
  .hme-header-contact-text,
  .hme-cart-button-text {
    font-size: 14px;
  }
  
  .hme-header-cart-button svg {
    width: 18px;
    height: 18px;
  }
}

/* Front Page Responsive - 768px and below */
@media (max-width: 768px) {
  /* Top Bar Mobile */
  .hme-top-bar-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    height: auto;
    min-height: 75px;
  }

  .hme-top-bar-title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .hme-top-bar-contact {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hme-top-bar-button {
    width: 100%;
    text-align: center;
  }

  /* Hero Section Mobile */
  .hme-hero-content {
    padding: 0 1rem;
    width: 100%;
  }

  .hme-hero-search-stack {
    max-width: 100%;
    overflow: visible;
  }

  .hme-hero-browse-box {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .hme-hero-product-search-box {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .hme-hero-search-box {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
  }

  /* Search Form Mobile */
  .hme-location-search-form {
    flex-direction: column;
    width: 100%;
    max-width: 1010px;
    height: auto;
    gap: 1rem;
    align-items: stretch;
  }

  .hme-search-field {
    width: calc(100% - 16px);
    max-width: 100%;
    height: 46px;
    min-height: 46px;
  }

  .hme-search-button {
    width: 100%;
    height: 46px;
    min-height: 46px;
  }

  .hme-browse-products-button {
    width: 100%;
    min-height: 46px;
    font-size: 20px;
  }

}

/* Front Page Responsive - 480px and below */
@media (max-width: 480px) {
  .hme-top-bar-title {
    font-size: 20px;
    line-height: 28px;
  }

  .hme-search-field {
    height: 44px;
  }

  .hme-search-button {
    height: 44px;
    font-size: 20px;
  }
}

/* ============================================
   CHECKOUT PAGE STYLES - Figma Export
   ============================================ */

/* Checkout Container */
.hme-checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 20px;
}

/* Checkout Form - 2 Column Layout */
.hme-checkout-form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.hme-checkout-columns {
  display: flex;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}

/* Left Column */
.hme-checkout-left-column {
  max-width: 572px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Delivery Section (Pickup/Delivery + Location) */
.hme-checkout-delivery-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Side by Side Row for Delivery and Location */
.hme-checkout-delivery-location-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

/* White Dropdown Field Styles (matching search function on front page) */
.hme-checkout-dropdown-field-white {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 8px;
  height: 62px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  position: relative;
}

/* ============================================
   CHECKOUT PICKUP/DELIVERY DROPDOWN - FIGMA EXACT
   Arrow on LEFT, 16px gap to text
   ============================================ */
.hme-checkout-pickup-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 16px;
  width: 174px;
  height: 46px;
  border: 1px solid #363346;
  border-radius: 4px;
  position: relative;
  flex: none;
  order: 0;
  flex-grow: 0;
  background: #FFFFFF;
}

.hme-checkout-pickup-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #363346;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hme-checkout-pickup-select::-ms-expand {
  display: none;
}

/* Arrow - order: 0, on LEFT */
.hme-checkout-pickup-arrow {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #363346;
  pointer-events: none;
  z-index: 2;
}

/* Text - order: 1, on RIGHT with 16px gap */
.hme-checkout-pickup-text {
  width: 126px;
  height: 20px;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 1;
  flex-grow: 0;
  pointer-events: none;
  z-index: 2;
}

/* ============================================
   CHECKOUT LOCATION DROPDOWN - NO ARROW
   Only location pin on left + text
   ============================================ */
.hme-checkout-location-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 16px;
  flex: 1;
  height: 46px;
  border: 1px solid #363346;
  border-radius: 4px;
  position: relative;
  background: #FFFFFF;
}

.hme-checkout-location-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #363346;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hme-checkout-location-select::-ms-expand {
  display: none;
}

/* Location pin icon on left */
.hme-checkout-location-pin-icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #363346;
  pointer-events: none;
  z-index: 2;
}

/* Location text container */
.hme-checkout-location-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  pointer-events: none;
  z-index: 2;
  min-width: 0;
}

.hme-checkout-location-label {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ACACAC;
}

.hme-checkout-location-value {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* ============================================
   Sales Rep Dropdown - Full width with chevron on right
   ============================================ */
.hme-checkout-sales-rep-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 40px 8px 16px; /* Extra right padding for chevron */
  gap: 12px;
  width: 100%;
  height: 46px;
  border: 1px solid #363346;
  border-radius: 4px;
  position: relative;
  background: #FFFFFF;
}

.hme-checkout-sales-rep-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  border: none;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #363346;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hme-checkout-sales-rep-select::-ms-expand {
  display: none;
}

.hme-checkout-sales-rep-value {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}

.hme-checkout-sales-rep-chevron {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  flex: none;
  color: #363346;
  pointer-events: none;
  z-index: 2;
}

/* Sales rep dropdown option styling */
.hme-checkout-sales-rep-select option {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #363346;
  background: #FFFFFF;
  padding: 12px 16px;
  min-height: 44px;
  border: none;
  cursor: pointer;
}

.hme-checkout-sales-rep-select option:hover,
.hme-checkout-sales-rep-select option:checked,
.hme-checkout-sales-rep-select option:focus {
  background: #F99D1B;
  color: #FFFFFF;
}

.hme-checkout-sales-rep-select option[selected] {
  background: #FFF5E6;
  color: #363346;
  font-weight: 600;
}

.hme-checkout-sales-rep-select:focus {
  outline: 2px solid #F99D1B;
  outline-offset: 2px;
}

/* Firefox-specific dropdown styling */
@-moz-document url-prefix() {
  .hme-checkout-sales-rep-select option {
    padding: 10px 14px;
  }
}

/* Checkout Delivery Info (shown when delivery is selected) */
.hme-checkout-delivery-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
  flex: 1;
  height: 46px;
  border: 1px solid #004B8D;
  border-radius: 4px;
  background: rgba(0, 75, 141, 0.05);
}

.hme-checkout-delivery-note {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hme-checkout-delivery-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #004B8D;
}

/* Old gray background (keeping for compatibility) */
.hme-checkout-dropdown-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 8px;
  width: 100%;
  height: 62px;
  background: #ECECEC;
  border-radius: 4px;
  position: relative;
}

.hme-checkout-dropdown-with-icon {
  /* Location pin positioning */
}

.hme-checkout-location-pin {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 24px;
  color: #363346;
  pointer-events: none;
}

.hme-checkout-select {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-family: 'Outfit', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #363346;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  padding-left: 8px;
  outline: none;
}

.hme-checkout-select::-ms-expand {
  display: none;
}

.hme-checkout-select-with-icon {
  padding-left: 40px;
}

.hme-checkout-select-icon {
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  color: #363346;
  pointer-events: none;
  z-index: 2;
}

.hme-checkout-select-icon-right {
  right: 8px;
}

.hme-checkout-date-display {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #ACACAC;
  padding-left: 8px;
}

/* MEPP Section */
.hme-checkout-mepp-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hme-checkout-checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.hme-checkout-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #F99D1B;
}

.hme-checkout-checkbox-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #363346;
  cursor: pointer;
  margin: 0;
}

.hme-checkout-mepp-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Input Groups */
.hme-checkout-input-group,
.hme-checkout-field-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Labels - Figma Export */
.hme-checkout-label {
  width: auto;
  height: 22px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

/* Input Fields - Figma Export */
.hme-checkout-input {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px 16px;
  gap: 10px;
  width: 100%;
  max-width: 476px;
  height: 46px;
  border: 1.5px solid #ACACAC;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #363346;
  box-sizing: border-box;
  outline: none;
}

.hme-checkout-input::placeholder {
  color: #ACACAC;
}

.hme-checkout-input:focus {
  border-color: #F99D1B;
}

/* Textarea (Order Notes) */
.hme-checkout-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  border: 1.5px solid #ACACAC;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1e1e1e;
  resize: vertical;
  box-sizing: border-box;
}

.hme-checkout-textarea::placeholder {
  color: #ACACAC;
}

.hme-checkout-textarea:focus {
  outline: none;
  border-color: #F99D1B;
}

/* Order Notes Section */
.hme-checkout-order-notes-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.hme-optional {
  font-weight: 400;
  color: #ACACAC;
  font-size: 14px;
}

/* WooCommerce Fields Integration */
.hme-checkout-wc-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hme-checkout-wc-fields .form-row {
  margin-bottom: 24px;
}

.hme-checkout-wc-fields label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #363346;
  display: block;
  margin-bottom: 16px;
}

.hme-checkout-wc-fields input[type="text"],
.hme-checkout-wc-fields input[type="email"],
.hme-checkout-wc-fields input[type="tel"],
.hme-checkout-wc-fields select,
.hme-checkout-wc-fields textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ACACAC;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #363346;
  box-sizing: border-box;
  outline: none;
}

.hme-checkout-wc-fields input:focus,
.hme-checkout-wc-fields select:focus,
.hme-checkout-wc-fields textarea:focus {
  border-color: #F99D1B;
}

/* Payment Section */
.hme-checkout-payment-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* WooCommerce Payment Section - Transparent Background */
.woocommerce-checkout #payment {
  background: transparent !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  background: transparent !important;
}

/* Complete Payment Button - Figma Export */
.hme-checkout-submit-button,
#place_order,
.woocommerce-checkout #place_order {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  height: 52px;
  background: #F99D1B;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 12px;
  color: #F3F3F3;
  transition: background-color 0.2s ease;
}

.hme-checkout-submit-button:hover,
#place_order:hover,
.woocommerce-checkout #place_order:hover {
  background: #e88d0a;
}

/* Privacy Text - Figma Export */
.hme-checkout-privacy-text,
.woocommerce-privacy-policy-text {
  width: 100%;
  max-width: 475px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #ACACAC;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-top: 24px;
}

/* Hide WooCommerce default terms checkbox (we show privacy text instead) */
.woocommerce-terms-and-conditions-wrapper {
  display: none;
}

/* Hide old WooCommerce pickup/delivery field (we use custom fields at top) */
#pickup_delivery_field {
  display: none !important;
}

/* WooCommerce Shipping Fields */
.woocommerce-shipping-fields {
  margin-top: 24px;
}

.woocommerce-shipping-fields h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.woocommerce-shipping-fields .shipping_address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

/* Ensure shipping fields match billing fields styling */
.woocommerce-shipping-fields input[type="text"],
.woocommerce-shipping-fields input[type="email"],
.woocommerce-shipping-fields input[type="tel"],
.woocommerce-shipping-fields select,
.woocommerce-shipping-fields textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ACACAC;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #363346;
  background: #FFFFFF;
}

.woocommerce-shipping-fields .form-row {
  margin-bottom: 16px;
}

.woocommerce-shipping-fields label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: #363346;
}

/* Ship to different address checkbox */
#ship-to-different-address {
  margin-bottom: 16px;
}

#ship-to-different-address label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

#ship-to-different-address-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Right Column: Order Summary */
.hme-checkout-right-column {
  flex: 1;
  max-width: 720px;
}

/* Order Summary Container - Figma Export */
.hme-order-summary-container {
  width: 100%;
  background: #F9FAFA;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  position: relative;
}

.hme-order-summary-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  gap: 36px;
}

/* Order Summary Header - Figma Export */
.hme-order-summary-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
  max-width: 530px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hme-order-summary-title {
  width: auto;
  height: 48px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  color: #363346;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

.hme-order-summary-separator {
  width: 100%;
  max-width: 530px;
  height: 0px;
  border: 1px solid #ACACAC;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Products List - Figma Export */
.hme-order-products {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 530px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* Product Item - Figma Export */
.hme-order-product-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  position: relative;
  flex: none;
  order: 0;
  flex-grow: 0;
  overflow: hidden;
}

.hme-order-product-image {
  width: 70px;
  height: 70px;
  background: #FFFFFF;
  border: 1px solid #ACACAC;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hme-order-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hme-order-product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 0px;
  width: 412px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Frame 73 - Title and Price Row - Figma Export */
.hme-order-product-name-price {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 125px;
  width: 412px;
  min-height: 44px;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin-bottom: 4px;
}

.hme-order-product-name {
  width: 197px;
  min-height: 44px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: flex-start;
  color: #363346;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hme-order-product-price {
  width: 90px;
  height: 22px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-left: auto;
}

/* Frame 74 - Vendor and Qty Row - Figma Export */
.hme-order-product-variation {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #F99D1B;
  font-weight: 500;
  padding: 2px 6px;
  background: rgba(249, 157, 27, 0.1);
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 4px;
}

.hme-order-product-vendor-qty {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px 8px 0px 1px;
  gap: 148px;
  width: 381px;
  min-height: 25px;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-top: 0;
}

.hme-order-product-vendor {
  width: 173px;
  min-height: 25px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #ACACAC;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.woocommerce-notices-wrapper {
  display: none;
}

.hme-order-product-qty {
  width: 51px;
  min-height: 25px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #ACACAC;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-left: auto;
}

.hme-order-product-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #ACACAC;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hme-order-product-remove:hover {
  color: #363346;
}

/* Discount Section - Figma Export */
.hme-order-discount-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 36px;
  width: 100%;
  max-width: 530px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.hme-order-discount-form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  max-width: 476px;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-wrap: wrap;
}

.hme-order-discount-input {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 14px 16px;
  gap: 10px;
  flex: 1;
  height: 46px;
  background: #FFFFFF;
  border: 1.5px solid #ACACAC;
  border-radius: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #363346;
  box-sizing: border-box;
  outline: none;
  width: 80%;
}

.hme-order-discount-input::placeholder {
  color: #ACACAC;
}

.hme-order-discount-input:focus {
  border-color: #F99D1B;
}

.hme-order-discount-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 23px;
  gap: 10px;
  width: 92px;
  height: 46px;
  background: #ACACAC;
  border: 1.5px solid #ACACAC;
  border-radius: 4px;
  flex: none;
  order: 1;
  flex-grow: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  color: #F3F3F3;
  transition: background-color 0.2s ease;
}

.hme-order-discount-button:hover {
  background: #8c8c8c;
}

.hme-order-discount-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Coupon apply success/error message */
.hme-coupon-message {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
}
.hme-coupon-message.hme-coupon-success {
  color: #2e7d32;
}
.hme-coupon-message.hme-coupon-error {
  color: #c62828;
}

/* Subtotal Section - Figma Export */
.hme-order-subtotal-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  max-width: 530px;
  flex: none;
  order: 3;
  align-self: stretch;
  flex-grow: 0;
}

/* Fees fragment container within subtotal section */
.hme-order-subtotal-section .hme-fees-fragment {
  width: 100%;
  margin-top: 4px;
}

.hme-order-subtotal-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0px;
  width: 100%;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.hme-order-subtotal-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hme-order-subtotal-amount {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Fees Section (BRP Sanitation Fee, Delivery Fee) */
.hme-fees-fragment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 530px;
  margin-top: 24px;
  transition: opacity 0.2s ease-in-out;
}

/* Legacy fees section - kept for compatibility */
.hme-order-fees-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hme-order-fee-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
}

/* New fees list - displayed under subtotal */
.hme-order-fees-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.hme-order-fee-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
}

.hme-order-fee-line.hme-fee-discount {
  background: transparent;
}

.hme-order-fee-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6B6B6B;
  flex: 1;
  text-align: left;
}

.hme-order-fee-value {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #1D1D1D;
  text-align: right;
  white-space: nowrap;
}

.hme-order-fee-value.hme-fee-negative {
  color: #28a745;
}

/* Coupons list */
.hme-order-coupons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
}

/* Tax line items (GST, HST, etc.) */
.hme-order-taxes-fragment {
  width: 100%;
}

.hme-order-taxes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.hme-order-tax-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  min-height: 20px;
}

.hme-order-tax-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6B6B6B;
  flex: 1;
  text-align: left;
}

.hme-order-tax-value {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #1D1D1D;
  text-align: right;
  white-space: nowrap;
}

/* Tax exempt styling */
.hme-order-tax-line.hme-tax-exempt .hme-order-tax-value em {
  color: #2a7a2a;
  font-style: normal;
  font-weight: 600;
}

/* Partial tax exempt styling */
.hme-order-tax-line.hme-tax-partial-exempt {
  margin-top: 4px;
}

.hme-order-tax-line.hme-tax-partial-exempt .hme-order-tax-name {
  color: #666;
}

.hme-order-tax-line.hme-tax-pending .hme-order-tax-value em {
  color: #6B6B6B;
  font-style: italic;
  font-weight: 400;
}

.hme-order-coupon-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
}

.hme-order-coupon-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6B6B6B;
}

.hme-order-coupon-value {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #28a745;
}

.hme-order-fee-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 12px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: 1;
}

.hme-order-fee-amount {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  display: flex;
  align-items: center;
  text-align: right;
  color: #363346;
}

.hme-order-fee-amount .woocommerce-Price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  color: #363346;
}

/* Total Section - Figma Export */
.hme-order-total-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 530px;
  flex: none;
  order: 4;
  align-self: stretch;
  flex-grow: 0;
}

.hme-order-total-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0px;
  width: 100%;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.hme-order-total-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hme-order-total-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hme-order-total-tax {
  display: none !important;
}

.hme-order-total-amount {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: #363346;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Responsive Adjustments for Checkout */
@media (max-width: 1200px) {
  .hme-checkout-columns {
    flex-direction: column;
    gap: 48px;
  }

  .hme-checkout-left-column,
  .hme-checkout-right-column {
    max-width: 100%;
  }

  .hme-order-summary-container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .hme-checkout-container {
    padding: 24px 16px;
  }

  .hme-order-summary-content {
    padding: 24px;
  }

  .hme-checkout-submit-button {
    padding: 20px 32px;
  }
  
  /* Stack delivery and location on mobile */
  .hme-checkout-delivery-location-row {
    flex-direction: column;
  }
  
  .hme-checkout-pickup-dropdown, .hme-search-field {
    width: 100%;
    max-width: 90%;
    min-width: 0;
  }
  
  .hme-checkout-location-dropdown, .hme-location-field, .hme-checkout-sales-rep-dropdown {
    width: 100%;
    max-width: 90%;
    min-width: 0;
  }

  .hme-search-filters-wrapper, .hme-product-filters {
    max-width: calc(100% - 40px);
    margin-left: 0;
    margin-right: 0;
  }

  .hme-product-search {
    max-width: 100%;
  }

  .hme-product-search-input-wrap {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
  }

  .hme-product-search-toggle {
    min-height: 40px;
    padding: 8px 14px;
  }

  .hme-product-filters-form {
    flex-direction: column;
    width: 100%;
  }

  .hme-filter-dropdown,
  .hme-filter-remove {
    width: 100%;
    max-width: 100%;
  }

  .woocommerce-products-container {
    max-width: calc(100% - 40px);
  }

  .hme-products-grid {
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .hme-product-card {
    min-width: 0;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

/* ============================================
   CART DRAWER STYLES
   ============================================ */

/* Cart Overlay */
.hme-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.hme-cart-overlay.hme-cart-overlay-visible {
  opacity: 1;
  visibility: visible;
}

/* Full Page Loading Overlay - Prevents rapid clicking during cart operations */
.hme-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for mobile */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hme-loading-overlay.hme-loading-overlay-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hme-loading-overlay-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: hme-spin 1s linear infinite;
}

@keyframes hme-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cart Drawer */
.hme-cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for mobile */
  background: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow: hidden;
}

.hme-cart-drawer.hme-cart-drawer-open {
  right: 0;
}

/* Prevent body scroll when cart is open */
body.hme-cart-drawer-active {
  overflow: hidden;
}

/* Cart Drawer Header */
.hme-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #ECECEC;
  flex-shrink: 0;
  min-height: 60px;
  box-sizing: border-box;
}

.hme-cart-drawer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #363346;
  margin: 0;
}

.hme-cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ACACAC;
  transition: color 0.2s ease;
  border-radius: 4px;
  flex-shrink: 0;
}

.hme-cart-drawer-close:hover {
  color: #363346;
  background: #F5F5F5;
}

/* Cart Drawer Body (contains content + footer) */
.hme-cart-drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

/* Cart Drawer Content (scrollable items area) */
.hme-cart-drawer-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.hme-cart-drawer-content-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Empty Cart State */
.hme-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  flex: 1;
}

.hme-cart-empty svg {
  margin-bottom: 24px;
  opacity: 0.5;
}

.hme-cart-empty-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #ACACAC;
  margin: 0 0 24px 0;
}

.hme-cart-continue-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #F99D1B;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.hme-cart-continue-shopping:hover {
  background: #e88d0a;
  color: #FFFFFF;
}

/* Cart Items List */
.hme-cart-items {
  padding: 20px;
}

/* Cart button text (hidden on desktop, shown on mobile) */
.hme-cart-button-text {
  display: none;
}

/* Cart Item */
.hme-cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ECECEC;
  position: relative;
  transition: opacity 0.2s ease;
}

.hme-cart-item:last-child {
  border-bottom: none;
}

.hme-cart-item.hme-removing {
  opacity: 0.5;
  pointer-events: none;
}

.hme-cart-item.hme-updating {
  opacity: 0.7;
}

.hme-cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #F9FAFA;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hme-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hme-cart-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hme-cart-item-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #363346;
  margin: 0;
  padding-right: 30px;
  word-wrap: break-word;
}

.hme-cart-item-name a {
  color: inherit;
  text-decoration: none;
}

.hme-cart-item-name a:hover {
  text-decoration: underline;
}

.hme-cart-item-variation {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #F99D1B;
  font-weight: 500;
  margin-top: 2px;
  padding: 2px 6px;
  background: rgba(249, 157, 27, 0.1);
  border-radius: 3px;
  display: inline-block;
}

.hme-cart-item-vendor {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ACACAC;
}

.hme-cart-item-price-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.hme-cart-item-price {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #363346;
}

.hme-cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  background: #F5F5F5;
  border-radius: 4px;
  overflow: hidden;
}

.hme-cart-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #363346;
  transition: background-color 0.2s ease;
}

.hme-cart-qty-btn:hover {
  background: #ECECEC;
}

.hme-cart-qty-value {
  width: 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #363346;
}

.hme-cart-item-subtotal {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #363346;
  margin-top: 4px;
}

.hme-cart-item-remove {
  position: absolute;
  top: 16px;
  right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ACACAC;
  transition: color 0.2s ease;
}

.hme-cart-item-remove:hover {
  color: #dc2626;
}

/* Cart Footer - Fixed at bottom */
.hme-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid #ECECEC;
  background: #F9FAFA;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
}

.hme-cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.hme-cart-subtotal-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #363346;
}

.hme-cart-subtotal-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #363346;
}

.hme-cart-footer-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #ACACAC;
  margin: 0 0 16px 0;
}

.hme-cart-checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: #F99D1B;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.hme-cart-checkout-button:hover {
  background: #e88d0a;
  color: #FFFFFF;
}

.hme-cart-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  background: #F9FAFA;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #363346;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.hme-cart-share-btn svg {
  flex-shrink: 0;
}

.hme-cart-share-btn:hover {
  background: #FFFFFF;
  border-color: #FFA50B;
  color: #FFA50B;
}

.hme-cart-share-btn:hover svg {
  stroke: #FFA50B;
}

.hme-cart-share-btn:active {
  transform: scale(0.98);
}

.hme-cart-share-btn.hme-share-copied {
  background: #2a7a2a;
  border-color: #2a7a2a;
  color: #FFFFFF;
}

.hme-cart-share-btn.hme-share-copied svg {
  stroke: #FFFFFF;
}

.hme-cart-continue-shopping-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  color: #363346;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #ACACAC;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.hme-cart-continue-shopping-btn:hover {
  background: #F5F5F5;
  border-color: #363346;
}

/* Product Button Loading/Added States */
.hme-product-button.hme-loading {
  background: #ACACAC;
  pointer-events: none;
}

.hme-product-button.hme-added {
  background: #22c55e;
}

/* Hide WooCommerce default "View cart" link after adding to cart */
.hme-product-card .added_to_cart,
.hme-product-card-item .added_to_cart,
.hme-product-action-section .added_to_cart,
a.added_to_cart.wc-forward {
  display: none !important;
}

/* ============================================
   VARIABLE PRODUCTS - VARIATION SELECTORS
   ============================================ */

/* Variation wrapper container */
.hme-product-variations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #E5E5E5;
  margin-top: 8px;
}

/* Individual variation select wrapper */
.hme-variation-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Variation label */
.hme-variation-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Variation select dropdown */
.hme-variation-select {
  display: block;
  width: 100%;
  padding: 8px 32px 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #363346;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.hme-variation-select:hover {
  border-color: #FA9D19;
}

.hme-variation-select:focus {
  outline: none;
  border-color: #FA9D19;
  box-shadow: 0 0 0 3px rgba(250, 157, 25, 0.2);
}

.hme-variation-select:disabled {
  background-color: #F9FAFB;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Variable product button states */
.hme-add-variable-to-cart {
  transition: all 0.2s ease;
}

.hme-add-variable-to-cart:disabled {
  background: #E5E5E5;
  color: #9CA3AF;
  cursor: not-allowed;
}

.hme-add-variable-to-cart:disabled:hover {
  background: #E5E5E5;
  color: #9CA3AF;
}

.hme-button-success {
  background: #22c55e !important;
  color: #FFFFFF !important;
}

.hme-button-error {
  background: #ef4444 !important;
  color: #FFFFFF !important;
}

/* Product card adjustments for variable products */
.hme-product-card-item[data-product-type="variable"] .hme-product-details {
  gap: 8px;
}

.hme-product-card-item[data-product-type="variable"] .hme-product-action-section {
  margin-top: auto;
}

/* ============================================
   SEAT-TO-FLOOR HEIGHT FIELD (WHEELCHAIRS)
   ============================================ */

.hme-seat-height-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid #E5E5E5;
}

.hme-seat-height-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.hme-seat-height-label .required {
  color: #dc3232;
  font-weight: 700;
  text-decoration: none;
  margin-left: 2px;
}

.hme-seat-height-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hme-seat-height-input {
  width: 120px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #363346;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  cursor: text;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.hme-seat-height-input:hover {
  border-color: #FA9D19;
}

.hme-seat-height-input:focus {
  outline: none;
  border-color: #FA9D19;
  box-shadow: 0 0 0 3px rgba(250, 157, 25, 0.2);
}

.hme-seat-height-input::placeholder {
  color: #9CA3AF;
}

/* Chrome, Safari, Edge */
.hme-seat-height-input::-webkit-inner-spin-button,
.hme-seat-height-input::-webkit-outer-spin-button {
  opacity: 1;
}

.hme-seat-height-unit {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6B7280;
}

.hme-seat-height-error {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #dc3232;
  margin: 0;
  margin-top: 4px;
}

/* ============================================
   ADD-ON PRODUCT PROMPTS
   ============================================ */

/* Add-on container */
.hme-product-addons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #E5E5E5;
  margin-top: 8px;
}

/* Individual addon group */
.hme-addon-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Addon label */
.hme-addon-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #363346;
}

/* Addon select dropdown */
.hme-addon-select {
  display: block;
  width: 100%;
  padding: 10px 32px 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #363346;
  background-color: #F9FAFB;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.hme-addon-select:hover {
  border-color: #FA9D19;
  background-color: #FFFFFF;
}

.hme-addon-select:focus {
  outline: none;
  border-color: #FA9D19;
  box-shadow: 0 0 0 2px rgba(250, 157, 25, 0.15);
  background-color: #FFFFFF;
}

/* Addon variation wrapper (for size selection of variable addons) */
.hme-addon-variation-wrapper {
  margin-top: 6px;
  padding-left: 12px;
  border-left: 2px solid #FA9D19;
}

.hme-addon-variation-select {
  display: block;
  width: 100%;
  padding: 8px 32px 8px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #363346;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 6px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.15s ease-in-out;
}

.hme-addon-variation-select:hover,
.hme-addon-variation-select:focus {
  border-color: #FA9D19;
  outline: none;
}

/* Price wrapper with addon total */
.hme-product-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hme-addon-total {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.hme-addon-total-label {
  color: #6B7280;
  font-weight: 400;
}

.hme-addon-total-amount {
  color: #22c55e;
  font-weight: 600;
}

/* Products with addons - card adjustments */
.hme-product-card-item[data-has-addons="true"] .hme-product-card {
  min-height: auto;
}

.hme-product-card-item[data-has-addons="true"] .hme-product-details {
  gap: 8px;
}

/* Responsive adjustments for variations and addons */
@media (max-width: 768px) {
  .hme-product-variations {
    padding: 10px 0;
  }
  
  .hme-variation-select {
    padding: 10px 32px 10px 12px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .hme-product-addons {
    padding: 10px 0;
  }
  
  .hme-addon-select {
    padding: 12px 32px 12px 12px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .hme-addon-variation-select {
    padding: 10px 32px 10px 10px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

/* Cart Drawer Mobile Responsive */

@media (max-width: 768px) {
  .hme-cart-drawer {
    width: 100%;
    right: -100%;
    max-width: 100vw;
  }
  
  .hme-cart-drawer-header {
    padding: 14px 16px;
    min-height: 56px;
  }
  
  .hme-cart-drawer-title {
    font-size: 17px;
  }
  
  .hme-cart-items {
    padding: 16px;
  }
  
  .hme-cart-item-image {
    width: 65px;
    height: 65px;
  }
  
  .hme-cart-item-name {
    font-size: 14px;
    line-height: 18px;
  }
  
  .hme-cart-footer {
    padding: 14px 16px;
  }
  
  .hme-cart-subtotal-label {
    font-size: 14px;
  }
  
  .hme-cart-subtotal-value {
    font-size: 16px;
  }
  
  .hme-cart-checkout-button {
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .hme-cart-share-btn {
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .hme-cart-share-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .hme-cart-continue-shopping-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hme-cart-drawer-header {
    padding: 12px 14px;
    min-height: 52px;
  }
  
  .hme-cart-drawer-title {
    font-size: 16px;
  }
  
  .hme-cart-item-price-qty {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .hme-cart-items {
    padding: 12px;
  }
  
  .hme-cart-item {
    padding: 12px 0;
  }
  
  .hme-cart-item-image {
    width: 60px;
    height: 60px;
  }
  
  .hme-cart-footer {
    padding: 12px 14px;
  }
  
  .hme-cart-footer-note {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .hme-cart-checkout-button {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .hme-cart-share-btn {
    padding: 10px 14px;
    font-size: 12px;
    gap: 6px;
    margin-bottom: 8px;
  }
  
  .hme-cart-share-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .hme-cart-continue-shopping-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ============================================
   CUSTOM CHECKOUT FIELDS STYLES
   ============================================ */

/* Order Information Section */
.hme-checkout-order-info-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
  padding: 24px;
  background: #F9FAFA;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.hme-checkout-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #363346;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #ECECEC;
}

/* Two Column Layout for Fields */
.hme-checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .hme-checkout-field-row {
    grid-template-columns: 1fr;
  }
}

/* File Upload Field */
.hme-checkout-file-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hme-checkout-file-input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.hme-checkout-file-input {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1.5px dashed #ACACAC;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #363346;
  cursor: pointer;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  min-width: 0; /* Allow flexbox to shrink */
}

.hme-checkout-file-input:hover {
  border-color: #F99D1B;
}

.hme-checkout-file-input:focus {
  outline: none;
  border-color: #F99D1B;
  border-style: solid;
}

.hme-checkout-file-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #ACACAC;
  margin: 0;
}

/* Claim Order Field Hints */
.hme-checkout-field-hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #6c757d;
  margin: 4px 0 0 0;
}

.hme-claim-hint {
  color: #856404;
  font-style: italic;
}

/* PO Required Indicator */
.hme-po-required-indicator {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
}

.hme-checkout-file-group.hme-po-required {
  background: #fff9e6;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ffc107;
}

/* Claim Order Notice */
.hme-claim-order-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #d4edda;
  border: 1px solid #28a745;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

.hme-claim-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.hme-claim-notice-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #155724;
  line-height: 1.5;
}

.hme-claim-notice-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* Primary Contact Section */
.hme-checkout-contact-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #ECECEC;
  margin-top: 8px;
}

.hme-checkout-contact-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #363346;
  margin: 0;
}

/* Ensure file input styling in WebKit browsers */
.hme-checkout-file-input::-webkit-file-upload-button {
  padding: 8px 16px;
  margin-right: 12px;
  background: #F99D1B;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.hme-checkout-file-input::-webkit-file-upload-button:hover {
  background: #e88d0a;
}

/* Firefox file input styling */
.hme-checkout-file-input::file-selector-button {
  padding: 8px 16px;
  margin-right: 12px;
  background: #F99D1B;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.hme-checkout-file-input::file-selector-button:hover {
  background: #e88d0a;
}

/* Handle long file names in selected file display */
.hme-checkout-file-selected {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   THANK YOU / ORDER RECEIVED PAGE
   ============================================ */

.hme-thankyou-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  font-family: 'Outfit', sans-serif;
}

.hme-thankyou-header {
  text-align: center;
  margin-bottom: 48px;
}

.hme-thankyou-checkmark {
  margin-bottom: 24px;
}

.hme-thankyou-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #363346;
  margin: 0 0 12px 0;
}

.hme-thankyou-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #6B6B6B;
  margin: 0;
}

.hme-thankyou-claim-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FFF3CD;
  border: 1px solid #FFECB5;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #856404;
}

.hme-thankyou-order-card,
.hme-thankyou-items-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.hme-thankyou-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 24px;
}

.hme-thankyou-order-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #363346;
  margin: 0;
}

.hme-thankyou-order-number {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #004B8D;
  background: rgba(0, 75, 141, 0.1);
  padding: 6px 14px;
  border-radius: 6px;
}

.hme-thankyou-order-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hme-thankyou-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hme-thankyou-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
}

.hme-thankyou-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #363346;
}

.hme-thankyou-total-row {
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
  margin-top: 8px;
}

.hme-thankyou-total {
  font-size: 18px;
  font-weight: 600;
  color: #004B8D;
}

.hme-thankyou-notes-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
  margin-top: 8px;
}

.hme-thankyou-notes {
  background: #F5F5F5;
  padding: 12px 16px;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  white-space: pre-wrap;
  line-height: 1.5;
}

.hme-thankyou-items-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #363346;
  margin: 0 0 24px 0;
}

.hme-thankyou-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hme-thankyou-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0F0F0;
}

.hme-thankyou-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hme-thankyou-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #F5F5F5;
  border-radius: 8px;
  overflow: hidden;
}

.hme-thankyou-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hme-thankyou-item-details {
  flex: 1;
}

.hme-thankyou-item-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #363346;
  margin: 0 0 4px 0;
}

.hme-thankyou-item-variation {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #F99D1B;
  font-weight: 500;
  padding: 2px 6px;
  background: rgba(249, 157, 27, 0.1);
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 4px;
}

.hme-thankyou-item-qty {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
}

.hme-thankyou-item-price {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #363346;
  white-space: nowrap;
}

.hme-thankyou-confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 75, 141, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 32px;
}

.hme-thankyou-confirmation p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #363346;
  margin: 0;
}

.hme-thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hme-thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hme-thankyou-btn-primary {
  background: #F99D1B;
  color: #FFFFFF;
}

.hme-thankyou-btn-primary:hover {
  background: #e88d0a;
  color: #FFFFFF;
}

.hme-thankyou-btn-secondary {
  background: #FFFFFF;
  color: #363346;
  border: 1px solid #E5E5E5;
}

.hme-thankyou-btn-secondary:hover {
  background: #F5F5F5;
  color: #363346;
}

/* Error state */
.hme-thankyou-error .hme-thankyou-title {
  color: #E74C3C;
}

.hme-thankyou-icon-error {
  margin-bottom: 24px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hme-thankyou-container {
    padding: 40px 16px;
  }
  
  .hme-thankyou-title {
    font-size: 28px;
  }
  
  .hme-thankyou-order-card,
  .hme-thankyou-items-card {
    padding: 24px 20px;
  }
  
  .hme-thankyou-order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .hme-thankyou-actions {
    flex-direction: column;
  }
  
  .hme-thankyou-btn {
    width: 100%;
  }
  
  .hme-thankyou-item {
    flex-wrap: wrap;
  }
  
  .hme-thankyou-item-price {
    width: 100%;
    text-align: right;
    margin-top: 8px;
  }
}

/* ============================================
   WOOCOMMERCE ORDER DETAILS & CUSTOMER DETAILS
   (Thank You Page - from woocommerce_thankyou hook)
   ============================================ */

/* Order Details Section */
.woocommerce-order-details {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.woocommerce-order-details__title {
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #363346;
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #F99D1B;
}

/* Order Details Table */
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  font-family: "Outfit", Helvetica, sans-serif;
}

.woocommerce-table--order-details thead th {
  background: #f8f8f8;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #363346;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e0e0e0;
}

.woocommerce-table--order-details thead th.product-total {
  text-align: right;
  width: 120px;
}

.woocommerce-table--order-details tbody td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.woocommerce-table--order-details tbody tr:last-child td {
  border-bottom: none;
}

/* Product Name - Disable link styling */
.woocommerce-table--order-details .product-name a {
  color: #363346;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
  font-weight: 500;
  font-size: 15px;
}

.woocommerce-table--order-details .product-name a:hover {
  color: #363346;
  text-decoration: none;
}

/* Product Quantity */
.woocommerce-table--order-details .product-quantity {
  color: #666;
  font-weight: 400;
  font-size: 14px;
  margin-left: 8px;
}

/* Red asterisk for required field */
.payment_method_stripe .woocommerce-SavedPaymentMethods-saveNew label .required {
  color: #dc3232 !important;     /* WordPress standard error red */
  font-weight: bold !important;   /* Make it stand out */
  text-decoration: none !important;
  border: none !important;
}

/* Product Total */
.woocommerce-table--order-details .product-total {
  text-align: right;
  font-weight: 600;
  font-size: 15px;
  color: #363346;
}

/* Table Footer (Subtotal, Fees, Total) */
.woocommerce-table--order-details tfoot th,
.woocommerce-table--order-details tfoot td {
  padding: 14px 16px;
  border-top: 1px solid #e0e0e0;
}

.woocommerce-table--order-details tfoot th {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: #666;
  background: transparent;
}

.woocommerce-table--order-details tfoot td {
  text-align: right;
  font-weight: 500;
  font-size: 15px;
  color: #363346;
}

/* Total Row - Emphasized */
.woocommerce-table--order-details tfoot tr:nth-last-child(2) th,
.woocommerce-table--order-details tfoot tr:nth-last-child(2) td {
  font-size: 16px;
  font-weight: 700;
  color: #363346;
  padding-top: 18px;
  border-top: 2px solid #363346;
}

/* Payment Method Row */
.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

/* Customer Details Section */
.woocommerce-customer-details {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.woocommerce-customer-details .woocommerce-column__title {
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #363346;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.woocommerce-customer-details address {
  font-family: "Outfit", Helvetica, sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.woocommerce-customer-details--email a,
.woocommerce-customer-details--phone a {
  color: #004B8D;
  text-decoration: none;
}

.woocommerce-customer-details--email a:hover,
.woocommerce-customer-details--phone a:hover {
  text-decoration: underline;
}

/* Two Column Layout for Billing/Shipping */
.woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.woocommerce-customer-details .woocommerce-column {
  padding: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .woocommerce-order-details,
  .woocommerce-customer-details {
    padding: 24px 20px;
    margin-top: 20px;
  }
  
  .woocommerce-order-details__title {
    font-size: 20px;
  }
  
  .woocommerce-table--order-details thead {
    display: none;
  }
  
  .woocommerce-table--order-details tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .woocommerce-table--order-details tbody td {
    padding: 4px 0;
    border: none;
  }
  
  .woocommerce-table--order-details tbody td.product-name {
    width: 100%;
    font-size: 15px;
  }
  
  .woocommerce-table--order-details tbody td.product-total {
    width: 100%;
    text-align: left;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
  }
  
  .woocommerce-table--order-details tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .woocommerce-table--order-details tfoot th,
  .woocommerce-table--order-details tfoot td {
    padding: 12px 0;
  }
  
  .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .woocommerce-order-details,
  .woocommerce-customer-details {
    padding: 20px 16px;
    border-radius: 8px;
  }
  
  .woocommerce-order-details__title {
    font-size: 18px;
  }
  
  .woocommerce-table--order-details .product-name a {
    font-size: 14px;
  }
}

/* ============================================
   VARIABLE PRODUCT HIGHLIGHT (from hmebc Rent link)
   ============================================ */

@keyframes hme-card-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7); outline-color: #f97316; }
  40%  { box-shadow: 0 0 0 12px rgba(251, 146, 60, 0); outline-color: #f97316; }
  50%  { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); outline-color: #f97316; }
  90%  { box-shadow: 0 0 0 10px rgba(251, 146, 60, 0); outline-color: #f97316; }
  100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); outline-color: #f97316; }
}

.hme-product-card-item.hme-product-card-highlight {
  position: relative;
  z-index: 12;
  border-radius: 8px;
  box-shadow: 0 0 0 3px #f97316, 0 14px 30px rgba(0, 0, 0, 0.18);
  animation: hme-card-pulse 1.6s ease-out 3;
}

.hme-product-card-item.hme-product-card-highlight .hme-variation-select {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}

.hme-highlight-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 6px;
  color: #9a3412;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  padding: 12px 14px;
  width: min(92vw, 560px);
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.hme-highlight-notice--floating {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.hme-highlight-notice-icon {
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hme-highlight-notice {
    width: calc(100vw - 24px);
    font-size: 13px;
    padding: 11px 12px;
  }
}

/* ============================================
  OVERSTOCK PAGE
============================================ */
.hme-overstock-page {
  background: #F7F4EE;
}

.hme-overstock-shell {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
}

.hme-overstock-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.hme-overstock-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.58) 100%);
}

.hme-overstock-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 0 42px;
}

.hme-overstock-title {
  margin: 0 0 8px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 700;
}

.hme-overstock-subtitle {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
}

.hme-overstock-products {
  padding: 22px 0 56px;
}

.hme-overstock-filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
}

.hme-overstock-filter-select,
.hme-overstock-search-input {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #E3DED2;
  background: #F6F2EA;
  padding: 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #363346;
}

.hme-overstock-filter-select:focus,
.hme-overstock-search-input:focus {
  outline: 2px solid #F99D1B;
  outline-offset: 2px;
}

.hme-overstock-search-wrap {
  position: relative;
}

.hme-overstock-filter-submit,
.hme-overstock-filter-reset {
  display: none;
}

.hme-overstock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hme-overstock-grid .hme-product-card {
  width: 100%;
}

.hme-overstock-no-results {
  grid-column: 1 / -1;
  padding: 40px 24px;
  border-radius: 8px;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #363346;
}

.hme-overstock-pagination {
  margin-top: 14px;
}

.hme-overstock-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.hme-overstock-pagination .page-numbers a,
.hme-overstock-pagination .page-numbers span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #d7d0c2;
  background: #fff;
  color: #363346;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
}

.hme-overstock-pagination .page-numbers .current {
  border-color: #F99D1B;
  background: #F99D1B;
  color: #fff;
}

.hme-overstock-banner {
  padding: 20px 0 22px;
}

.hme-overstock-banner-card {
  min-height: 250px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: linear-gradient(135deg, rgba(29, 34, 46, 0.82), rgba(43, 51, 71, 0.7));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hme-overstock-banner-card h2 {
  margin: 0 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  line-height: 1;
}

.hme-overstock-banner-card p {
  max-width: 680px;
  margin: 0 0 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.hme-overstock-faq {
  padding: 18px 0 26px;
}

.hme-overstock-faq-layout {
  border-radius: 10px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  background: #EFE3CE;
}

.hme-overstock-faq-content h2 {
  margin: 0 0 16px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
  color: #363346;
}

.hme-overstock-faq-content p {
  margin: 0 0 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #363346;
}

.hme-overstock-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hme-overstock-faq-item {
  background: #F7F4EE;
  border: 1px solid #dfd6c4;
  border-radius: 6px;
  padding: 0 16px;
}

.hme-overstock-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 26px 15px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #363346;
  position: relative;
}

.hme-overstock-faq-item summary::-webkit-details-marker {
  display: none;
}

.hme-overstock-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #6A6776;
}

.hme-overstock-faq-item[open] summary::after {
  content: '-';
}

.hme-overstock-faq-item p {
  margin: 0 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #4c495d;
}

.hme-overstock-map {
  padding: 14px 0 34px;
}

.hme-overstock-map h2 {
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
  color: #363346;
  font-size: 42px;
}

.hme-overstock-map-card {
  min-height: 390px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 350px;
  overflow: hidden;
}

.hme-overstock-map-canvas {
  background:
    linear-gradient(90deg, rgba(249, 157, 27, 0.1) 0%, rgba(249, 157, 27, 0.04) 100%),
    repeating-linear-gradient(0deg, #e6e2d9 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, #e6e2d9 0 1px, transparent 1px 42px),
    #f0ece3;
}

.hme-overstock-map-panel {
  background: #f7f4ee;
  border-left: 1px solid #ebe5da;
  padding: 24px;
}

.hme-overstock-map-panel h3 {
  margin: 0 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: #363346;
}

.hme-overstock-map-panel p {
  margin: 0 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #4e4b5f;
}

@media (max-width: 1200px) {
  .hme-overstock-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hme-overstock-grid {
    grid-template-columns: 1fr;
  }

  .hme-overstock-faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hme-overstock-shell {
    width: calc(100% - 24px);
  }

  .hme-overstock-title {
    font-size: 36px;
  }

  .hme-overstock-subtitle {
    font-size: 15px;
  }

  .hme-overstock-filters {
    grid-template-columns: 1fr;
  }

  .hme-overstock-map h2 {
    font-size: 34px;
  }

  .hme-overstock-map-card {
    grid-template-columns: 1fr;
  }

  .hme-overstock-map-panel {
    border-left: 0;
    border-top: 1px solid #ebe5da;
  }

  .hme-overstock-banner-card {
    padding: 28px 20px;
  }

  .hme-overstock-banner-card h2 {
    font-size: 34px;
  }
}

/* ============================================
   HME 2026 HOMEPAGE
   ============================================ */

.hme-home-header,
.hme-homepage-2026 {
  --hme-bg: #fffbf5;
  --hme-ink: #45454f;
  --hme-muted: #666672;
  --hme-panel: #ebe0cd;
  --hme-panel-soft: #efe6d8;
  --hme-card: #ffffff;
  --hme-accent: #f7a21b;
  --hme-accent-dark: #bf7b11;
  --hme-line: #d9d1c5;
  --hme-shadow: 0 18px 48px rgba(24, 20, 14, 0.13);
}

.hme-home-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.hme-homepage-2026 .hme-home-shell {
  width: min(1680px, 100%);
  padding-inline: 40px;
  box-sizing: border-box;
}

.hme-home-header {
  position: relative;
  z-index: 300;
  background: #fff;
}

.hme-home-header__top {
  background: var(--hme-accent);
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.hme-home-header__top-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.hme-home-header__contact,
.hme-home-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hme-home-header__actions {
  justify-content: flex-end;
}

.hme-home-header__top a,
.hme-home-header__top p {
  color: inherit;
  margin: 0;
  text-decoration: none;
}

.hme-home-header__actions a:first-child {
  background: rgba(69, 69, 79, 0.4);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hme-home-header__actions a:last-child {
  background: #fff;
  color: var(--hme-accent);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hme-home-header__nav-wrap {
  border-bottom: 1px solid rgba(20, 17, 10, 0.1);
}

.hme-home-header__nav-inner {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.hme-home-header__brand {
  color: var(--hme-accent);
  font-size: 47px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hme-home-header__brand-mark {
  width: 56px;
  height: 28px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  position: relative;
}

.hme-home-header__brand-mark::before,
.hme-home-header__brand-mark::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  top: 8px;
}

.hme-home-header__brand-mark::before {
  left: -6px;
}

.hme-home-header__brand-mark::after {
  right: -6px;
}

.hme-home-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.hme-home-header__nav a {
  font-size: 29px;
  color: var(--hme-ink);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.hme-home-header__utilities {
  display: flex;
  gap: 10px;
}

.hme-home-header__utilities a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(69, 69, 79, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hme-accent);
  text-decoration: none;
  font-size: 15px;
}

.hme-homepage-2026 {
  background: var(--hme-bg);
  color: var(--hme-ink);
  font-family: "Inter", Helvetica, sans-serif;
}

.hme-homepage-2026 h1,
.hme-homepage-2026 h2,
.hme-homepage-2026 h3,
.hme-homepage-2026 h4,
.hme-homepage-2026 .hme-btn {
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
}

.hme-home-hero {
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  padding: 72px 0 56px;
}

.hme-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 20, 17, 0.58) 0%, rgba(23, 20, 17, 0.22) 54%, rgba(23, 20, 17, 0.14) 100%);
}

.hme-home-hero__inner {
  width: min(1680px, 100%);
  padding-inline: 40px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hme-home-hero__content {
  max-width: 720px;
}

.hme-home-hero h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(44px, 4.65vw, 84px);
  line-height: 1.05;
}

.hme-home-hero__lead {
  margin: 0 0 22px;
  font-size: clamp(23px, 2vw, 36px);
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  max-width: 950px;
}

.hme-home-hero__sublead {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(19px, 1.25vw, 24px);
  opacity: 0.94;
}

.hme-home-hero__search {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 920px;
}

.hme-home-hero__search input {
  min-height: 54px;
  border: 0;
  border-radius: 12px 0 0 12px;
  padding: 0 16px;
  font-size: 18px;
}

.hme-home-hero__search button {
  border: 0;
  border-radius: 0 12px 12px 0;
  padding: 0 40px;
  background: var(--hme-accent);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  cursor: pointer;
}

.hme-home-feature-strip {
  position: relative;
  left: auto;
  transform: none;
  bottom: auto;
  width: min(1680px, 100%);
  max-width: calc(100% - 80px);
  margin: 26px auto 0;
  border-radius: 999px;
  background: rgba(23, 21, 20, 0.84);
  backdrop-filter: blur(4px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  z-index: 3;
}

.hme-home-feature-strip__item {
  min-height: 80px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hme-home-feature-strip__item + .hme-home-feature-strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hme-home-feature-strip__item img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hme-home-flexible {
  padding: 78px 0 96px;
}

.hme-home-flexible__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}

.hme-home-flexible h2 {
  margin: 0 0 30px;
  font-size: clamp(48px, 4vw, 74px);
  line-height: 1.03;
}

.hme-home-flexible__copy p {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.55vw, 32px);
  line-height: 1.3;
  color: var(--hme-muted);
}

.hme-home-flexible__note {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hme-accent);
  font-size: clamp(19px, 1.4vw, 29px);
  line-height: 1.25;
}

.hme-home-flexible__note img {
  width: 34px;
  height: 34px;
}

.hme-home-flexible__cards h3 {
  margin: 0 0 26px;
  font-size: clamp(34px, 2.15vw, 42px);
}

.hme-home-checklist {
  display: grid;
  gap: 16px;
}

.hme-home-checklist__item {
  background: var(--hme-panel);
  border-radius: 14px;
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  font-size: clamp(20px, 1.35vw, 30px);
  font-weight: 600;
}

.hme-home-checklist__item img {
  width: 22px;
  height: 22px;
}

.hme-home-periods,
.hme-home-popular {
  background: var(--hme-panel-soft);
}

.hme-home-periods {
  padding: 84px 0 102px;
}

.hme-home-section-header {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 52px;
}

.hme-home-section-header h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 3vw, 64px);
  line-height: 1.05;
}

.hme-home-section-header__eyebrow {
  margin: 0 0 14px;
  color: #545562;
  font-size: clamp(22px, 1.7vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hme-home-section-header p {
  margin: 0;
  font-size: clamp(18px, 1.25vw, 26px);
  color: var(--hme-muted);
}

.hme-home-periods__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.hme-home-period-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 34px 36px 38px;
}

.hme-home-period-card__icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 3px solid #2f2f36;
  position: relative;
}

.hme-home-period-card__icon--calendar::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 6px;
  right: 6px;
  height: 12px;
  background: #f5655a;
  border-radius: 6px;
}

.hme-home-period-card__icon--calendar span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 28px;
}

.hme-home-period-card__icon--clock::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 3px solid #2f2f36;
  border-radius: 50%;
}

.hme-home-period-card__icon--clock::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 20px;
  width: 3px;
  height: 18px;
  background: #f5655a;
  box-shadow: -9px 9px 0 -1px #2f2f36;
}

.hme-home-period-card h3 {
  margin: 0 0 12px;
  font-size: clamp(42px, 2.6vw, 54px);
}

.hme-home-period-card p {
  margin: 0;
  color: var(--hme-muted);
  font-size: clamp(28px, 1.6vw, 32px);
  line-height: 1.35;
}

.hme-home-process,
.hme-home-faq {
  padding: 88px 0 100px;
}

.hme-home-section-header--left {
  text-align: left;
  margin: 0 0 34px;
}

.hme-home-process__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.hme-btn {
  border: 2px solid transparent;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1vw, 22px);
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.hme-btn--primary {
  background: var(--hme-accent);
  color: #fff;
}

.hme-btn--primary:hover {
  background: #e79316;
}

.hme-btn--outline {
  border-color: var(--hme-accent-dark);
  color: #805012;
  background: transparent;
}

.hme-home-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.hme-home-steps::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 35px;
  height: 2px;
  background: #f2c67f;
}

.hme-home-step {
  position: relative;
  padding-top: 100px;
}

.hme-home-step__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--hme-accent);
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hme-home-step h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.1vw, 30px);
}

.hme-home-step p {
  margin: 0;
  color: var(--hme-muted);
  font-size: clamp(16px, 0.9vw, 24px);
  line-height: 1.45;
}

.hme-home-popular {
  padding: 80px 0 92px;
}

.hme-home-popular__cta {
  text-align: center;
  margin-bottom: 32px;
}

.hme-home-popular__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.hme-home-popular__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--hme-accent);
  color: #fff;
  font-size: 26px;
}

.hme-home-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hme-home-popular-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 16px 16px 22px;
}

.hme-home-popular-card h3 {
  margin: 2px 0 10px;
  color: var(--hme-accent);
  font-size: clamp(40px, 2.3vw, 52px);
}

.hme-home-popular-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin-bottom: 14px;
}

.hme-home-faq {
  background: #efefee;
}

.hme-home-faq__contact {
  margin-bottom: 24px;
}

.hme-home-faq__list {
  background: var(--hme-panel-soft);
  border-radius: 16px;
  padding: 14px 40px;
}

.hme-home-faq__list details {
  border-bottom: 1px solid var(--hme-line);
}

.hme-home-faq__list details:last-child {
  border-bottom: 0;
}

.hme-home-faq__list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 26px 34px 26px 0;
  font-weight: 600;
  font-size: clamp(19px, 1.2vw, 30px);
}

.hme-home-faq__list summary::-webkit-details-marker {
  display: none;
}

.hme-home-faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 21px;
  font-size: 40px;
  color: #4f4f5a;
}

.hme-home-faq__list details[open] summary::after {
  content: "-";
}

.hme-home-faq__list details p {
  margin: 0 0 22px;
  color: var(--hme-muted);
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.45;
}

.hme-home-cta {
  position: relative;
  margin: 0 auto;
  width: min(1680px, 100%);
  max-width: calc(100% - 80px);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}

.hme-home-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 21, 6, 0.32);
}

.hme-home-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.hme-home-cta__content h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 3.35vw, 66px);
}

.hme-home-locations {
  padding: 86px 0 72px;
}

.hme-home-locations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.hme-home-locations__header h2 {
  margin: 0;
  font-size: clamp(38px, 2.8vw, 58px);
}

.hme-home-locations__search {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hme-home-locations__search span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #6f7079;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f7079;
}

.hme-home-locations__search input {
  min-height: 42px;
  border-radius: 999px;
  border: 2px solid #676872;
  padding: 0 16px;
  min-width: 190px;
}

.hme-home-locations__search button {
  border: 0;
  background: none;
  text-transform: uppercase;
  color: #686971;
  font-size: 14px;
  cursor: pointer;
}

.hme-home-locations__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr;
  gap: 20px;
}

.hme-home-showrooms {
  background: var(--hme-panel-soft);
  border-radius: 12px;
  padding: 18px;
  max-height: 640px;
  overflow: auto;
}

.hme-home-showrooms h3 {
  margin: 4px 0 16px;
  font-size: 38px;
}

.hme-home-showroom-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hme-home-showroom-card:last-child {
  margin-bottom: 0;
}

.hme-home-showroom-card h4 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.2vw, 32px);
}

.hme-home-showroom-card p {
  margin: 0 0 9px;
  color: #5f606a;
  font-size: clamp(14px, 0.9vw, 20px);
  line-height: 1.4;
}

.hme-home-showroom-card a {
  color: var(--hme-accent);
}

.hme-home-showroom-card.is-active {
  border-color: rgba(247, 162, 27, 0.8);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hme-home-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 640px;
  background:
    radial-gradient(circle at 74% 20%, #d9dadc 0 2px, transparent 3px),
    radial-gradient(circle at 37% 57%, #d9dadc 0 2px, transparent 3px),
    radial-gradient(circle at 61% 60%, #d9dadc 0 2px, transparent 3px),
    linear-gradient(#f0f1f2, #e6e7e8);
}

.hme-home-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(10deg, rgba(160, 162, 166, 0.45) 0%, rgba(160, 162, 166, 0) 14%),
    repeating-linear-gradient(120deg, rgba(173, 175, 179, 0.2) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(40deg, rgba(173, 175, 179, 0.12) 0 2px, transparent 2px 24px);
}

.hme-home-map.is-map-loaded::before {
  display: none;
}

.hme-home-map .mapboxgl-canvas,
.hme-home-map .mapboxgl-map {
  border-radius: 12px;
}

.hme-home-map.is-map-unavailable {
  display: grid;
  place-items: center;
  padding: 24px;
}

.hme-home-map__fallback {
  margin: 0;
  max-width: 360px;
  text-align: center;
  color: #5f606a;
  font-size: 14px;
  line-height: 1.45;
}

.hme-home-map-marker {
  width: 28px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.hme-home-map-marker svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hme-home-map-popup h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.hme-home-map-popup p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
}

.hme-home-map-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hme-home-map-popup__head a,
.hme-home-map-popup__foot a {
  color: #c07c12;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

.hme-home-map__pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--hme-accent);
  z-index: 2;
}

.hme-home-map__pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  left: 5px;
  top: 5px;
}

.hme-home-footer {
  padding: 0 0 20px;
}

.hme-home-footer .hme-home-shell {
  background: var(--hme-panel-soft);
  border-radius: 14px;
  overflow: hidden;
}

.hme-home-footer__top {
  padding: 30px 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.25fr;
  gap: 26px;
}

.hme-home-footer__brand-link {
  color: var(--hme-accent);
  text-decoration: none;
  font-size: 52px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hme-home-footer__social {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.hme-home-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(76, 77, 86, 0.2);
}

.hme-home-footer__social img {
  width: 18px;
  height: 18px;
}

.hme-home-footer__links,
.hme-home-footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hme-home-footer__top h4 {
  margin: 0 0 6px;
  font-size: 29px;
}

.hme-home-footer__links a {
  font-size: 26px;
  color: #666673;
  text-decoration: none;
}

.hme-home-footer__newsletter p,
.hme-home-footer__newsletter label {
  margin: 0;
  color: #666673;
  font-size: 22px;
}

.hme-home-footer__newsletter input[type="email"] {
  min-height: 42px;
  border-radius: 9px;
  border: 1px solid rgba(76, 77, 86, 0.35);
  padding: 0 12px;
}

.hme-home-footer__newsletter label input {
  margin-right: 6px;
}

.hme-home-footer__newsletter .hme-btn {
  width: fit-content;
}

.hme-home-footer__bottom {
  background: #edd8b5;
  padding: 13px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hme-home-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hme-home-footer__bottom a,
.hme-home-footer__bottom p {
  margin: 0;
  color: #6d5429;
  font-size: 18px;
  text-decoration: none;
}

/* ============================================
   HME BRP CATEGORY PAGE (DEMO)
   ============================================ */

.hme-brp-category-page {
  --hme-bg: #fffbf5;
  --hme-ink: #45454f;
  --hme-muted: #666672;
  --hme-panel-soft: #efe6d8;
  --hme-card: #ffffff;
  --hme-accent: #f7a21b;
  --hme-accent-dark: #bf7b11;
  background: var(--hme-bg);
  color: var(--hme-ink);
  font-family: "Inter", Helvetica, sans-serif;
}

.hme-brp-category-page h1,
.hme-brp-category-page h2,
.hme-brp-category-page h3,
.hme-brp-category-page .hme-btn {
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
}

.hme-brp-cat-hero {
  position: relative;
  min-height: 700px;
  background-size: cover;
  background-position: center;
}

.hme-brp-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.28));
}

.hme-brp-cat-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1040px;
}

.hme-brp-cat-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(40px, 3.7vw, 56px);
  line-height: 1.1;
}

.hme-brp-cat-hero h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.25;
}

.hme-brp-cat-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.5;
}

.hme-brp-cat-section-header {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 30px;
}

.hme-brp-cat-section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(40px, 3vw, 56px);
  line-height: 1.1;
}

.hme-brp-cat-section-header p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #666672;
  font-size: clamp(16px, 1vw, 22px);
}

.hme-brp-cat-decision {
  padding: 86px 0 90px;
  background: var(--hme-bg);
  position: relative;
  --hme-brp-decision-frame-max: 1278px;
  --hme-brp-decision-track-max: 820px;
  --hme-brp-decision-question-max: 526px;
  --hme-brp-decision-question-gap: 226px;
  --hme-brp-decision-card-gap: 30px;
  --hme-brp-decision-line-color: #2f2f36;
}

.hme-brp-cat-decision__connector {
  width: min(100%, var(--hme-brp-decision-frame-max));
  height: 58px;
  margin: 14px auto 0;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.hme-brp-cat-decision__connector::before {
  content: "";
  position: absolute;
  width: min(var(--hme-brp-decision-track-max), calc(100% - 48px));
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-top: 2px solid var(--hme-brp-decision-line-color);
}

.hme-brp-cat-decision__connector::after {
  content: "";
  position: absolute;
  width: min(var(--hme-brp-decision-track-max), calc(100% - 48px));
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 205px;
  min-height: 205px;
  border-left: 2px solid var(--hme-brp-decision-line-color);
  border-right: 2px solid var(--hme-brp-decision-line-color);
  pointer-events: none;
}

.hme-brp-cat-decision__rail {
  margin: 0 auto;
  width: min(100%, var(--hme-brp-decision-frame-max));
  max-width: none;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--hme-brp-decision-question-max)));
  justify-content: space-between;
  column-gap: clamp(36px, 8vw, var(--hme-brp-decision-question-gap));
  position: relative;
  z-index: 1;
}

.hme-brp-cat-decision__rail::before,
.hme-brp-cat-decision__rail::after {
  display: none;
}

.hme-brp-cat-decision__rail::before {
  left: 25%;
}

.hme-brp-cat-decision__rail::after {
  left: 75%;
}

.hme-brp-cat-decision__rail span {
  position: relative;
  justify-self: center;
  max-width: var(--hme-brp-decision-question-max);
  width: 100%;
  background: #fffbf5;
  padding: 5px;
  text-align: center;
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
  font-size: clamp(18px, 1.25vw, 26px);
  font-weight: 700;
  line-height: 1.1;
  color: #45454f;
  z-index: 2;
}

.hme-brp-cat-decision__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hme-brp-decision-card-gap);
  margin-top: 82px;
  position: relative;
  z-index: 2;
}

.hme-brp-cat-recommend {
  background: #f2e6d5;
  border: 1px solid #e9d8bd;
  border-radius: 16px;
  padding: 34px;
}

.hme-brp-cat-recommend img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.hme-brp-cat-recommend__eyebrow {
  margin: 16px 0 10px;
  color: var(--hme-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
}

.hme-brp-cat-recommend h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1.15;
}

.hme-brp-cat-recommend ul {
  margin: 0 0 20px 16px;
  padding: 0;
  color: #5a5b66;
  font-size: clamp(15px, 0.95vw, 20px);
  line-height: 1.45;
}

.hme-brp-cat-popular,
.hme-brp-cat-catalog {
  background: var(--hme-panel-soft);
  padding: 82px 0;
}

.hme-brp-cat-popular__cta {
  text-align: center;
  margin-bottom: 32px;
}

.hme-brp-cat-products {
  display: grid;
  gap: 18px;
}

.hme-brp-cat-products--three {
  grid-template-columns: repeat(3, 1fr);
}

.hme-brp-cat-products--four {
  grid-template-columns: repeat(4, 1fr);
}

.hme-brp-cat-product-card {
  background: #fefefe;
  border: 2px solid #f2dfc5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hme-brp-cat-product-card__image {
  background: #fff;
  border-bottom: 1px solid #f1e1cc;
  display: grid;
  place-items: center;
  padding: 14px;
  min-height: 210px;
  overflow: hidden;
}

.hme-brp-cat-product-card__image img {
  max-width: 100%;
  max-height: 180px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hme-brp-cat-product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hme-brp-cat-product-card__tag {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4eadb;
  color: #666672;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hme-brp-cat-product-card h3 {
  margin: 0;
  color: #7a4f10;
  font-size: clamp(20px, 1.4vw, 30px);
  line-height: 1.2;
}

.hme-brp-cat-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hme-brp-cat-product-card h3 a:hover {
  text-decoration: underline;
}

.hme-brp-cat-product-card p {
  margin: 0;
  color: #5f606a;
  font-size: 14px;
  line-height: 1.45;
}

.hme-brp-cat-product-card__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.hme-brp-cat-product-card__meta strong {
  color: #3e3f47;
  font-size: 15px;
}

.hme-brp-cat-product-card__meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hme-brp-cat-product-card .hme-btn {
  min-height: 34px;
  font-size: 12px;
  padding: 0 13px;
}

.hme-brp-cat-link {
  color: #845114;
  text-decoration: none;
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.hme-brp-cat-when {
  background: var(--hme-bg);
  padding: 84px 0;
}

.hme-brp-cat-when__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hme-brp-cat-when__grid article {
  background: #f2e6d5;
  border: 1px solid #eadbc2;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
}

.hme-brp-cat-when__grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 12px;
}

.hme-brp-cat-when__grid h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.2vw, 26px);
  line-height: 1.2;
}

.hme-brp-cat-when__grid p {
  margin: 0;
  color: #666672;
  font-size: 14px;
  line-height: 1.45;
}

.hme-brp-cat-filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.hme-brp-cat-filters span {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid #e4d6bd;
  background: #fff;
  color: #757682;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
}

.hme-brp-cat-catalog__more {
  margin-top: 22px;
  text-align: center;
}

.hme-brp-cat-reserve {
  padding: 70px 0 92px;
  background: var(--hme-bg);
}

.hme-brp-cat-reserve__card {
  background: var(--hme-panel-soft);
  border-radius: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.hme-brp-cat-reserve h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 2.4vw, 52px);
  line-height: 1.1;
}

.hme-brp-cat-reserve p {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.1vw, 24px);
  color: #545562;
}

.hme-brp-cat-reserve ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hme-brp-cat-reserve li {
  min-height: 64px;
  background: #fff;
  border-radius: 12px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
  font-size: clamp(17px, 1.05vw, 22px);
  font-weight: 700;
  color: #4f505a;
}

.hme-brp-cat-reserve li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hme-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 1480px) {
  .hme-home-header__nav a {
    font-size: 22px;
  }

  .hme-home-hero h1 {
    font-size: clamp(42px, 4.4vw, 64px);
  }

  .hme-home-flexible h2,
  .hme-home-section-header h2,
  .hme-home-locations__header h2 {
    font-size: clamp(40px, 3.1vw, 56px);
  }

  .hme-home-flexible__copy p,
  .hme-home-checklist__item,
  .hme-home-period-card h3,
  .hme-home-period-card p,
  .hme-home-step p,
  .hme-home-faq__list summary,
  .hme-home-faq__list details p,
  .hme-home-showroom-card h4,
  .hme-home-showroom-card p,
  .hme-home-footer__links a,
  .hme-home-footer__newsletter p,
  .hme-home-footer__newsletter label {
    font-size: clamp(18px, 1.3vw, 28px);
  }

  .hme-brp-cat-products--four {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) {
  .hme-homepage-2026 .hme-home-shell {
    width: 100%;
    padding-inline: 20px;
  }

  .hme-home-header__top-inner {
    grid-template-columns: 1fr;
    padding: 9px 0;
    gap: 8px;
    text-align: center;
  }

  .hme-home-header__contact,
  .hme-home-header__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hme-home-header__nav-inner {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .hme-home-header__nav {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hme-home-header__utilities {
    justify-content: center;
  }

  .hme-home-hero {
    padding-top: 48px;
    min-height: 560px;
  }

  .hme-home-hero__inner {
    padding-inline: 20px;
  }

  .hme-home-feature-strip,
  .hme-home-cta {
    max-width: calc(100% - 40px);
  }

  .hme-home-feature-strip {
    border-radius: 16px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }

  .hme-home-flexible__grid,
  .hme-home-periods__grid,
  .hme-home-popular__grid,
  .hme-home-locations__grid {
    grid-template-columns: 1fr;
  }

  .hme-home-steps {
    grid-template-columns: 1fr;
  }

  .hme-home-steps::before {
    display: none;
  }

  .hme-home-step {
    padding-top: 0;
    padding-left: 90px;
    min-height: 82px;
  }

  .hme-home-step__number {
    top: 4px;
  }

  .hme-home-popular__carousel {
    grid-template-columns: 1fr;
  }

  .hme-home-popular__arrow {
    display: none;
  }

  .hme-home-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .hme-brp-cat-hero,
  .hme-brp-cat-hero__inner {
    min-height: 560px;
  }

  .hme-brp-cat-decision__rail,
  .hme-brp-cat-decision__grid,
  .hme-brp-cat-products--three,
  .hme-brp-cat-products--four,
  .hme-brp-cat-when__grid,
  .hme-brp-cat-reserve__card {
    grid-template-columns: 1fr;
  }

  .hme-brp-cat-decision__connector,
  .hme-brp-cat-decision__rail::before,
  .hme-brp-cat-decision__rail::after {
    display: none;
  }

  .hme-brp-cat-decision__rail {
    padding-top: 0;
    row-gap: 22px;
  }

  .hme-brp-cat-decision__grid {
    margin-top: 24px;
  }

  .hme-brp-cat-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hme-homepage-2026 .hme-home-shell {
    width: 100%;
    padding-inline: 12px;
  }

  .hme-home-header__brand {
    font-size: 32px;
  }

  .hme-home-header__brand-mark {
    width: 42px;
    height: 22px;
  }

  .hme-home-header__top {
    font-size: 12px;
  }

  .hme-home-footer__brand-link {
    font-size: 40px;
  }

  .hme-home-hero {
    min-height: 520px;
    padding: 34px 0 24px;
  }

  .hme-home-hero__inner {
    padding-inline: 12px;
  }

  .hme-home-hero__search {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hme-home-hero__search input,
  .hme-home-hero__search button {
    border-radius: 12px;
    min-height: 48px;
    padding: 0 16px;
  }

  .hme-home-feature-strip__item {
    min-height: 66px;
    font-size: 13px;
  }

  .hme-home-section-header,
  .hme-home-section-header--left {
    margin-bottom: 26px;
  }

  .hme-btn {
    min-height: 44px;
    font-size: 15px;
    padding: 0 17px;
  }

  .hme-home-process__actions {
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .hme-home-cta {
    width: min(1680px, calc(100% - 24px));
    min-height: 196px;
  }

  .hme-home-feature-strip,
  .hme-home-cta {
    max-width: calc(100% - 24px);
  }

  .hme-home-locations__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hme-home-locations__search {
    width: 100%;
    flex-wrap: wrap;
  }

  .hme-home-locations__search input {
    min-width: 0;
    width: 100%;
    flex: 1;
  }

  .hme-home-map {
    min-height: 360px;
  }

  .hme-home-footer__top {
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }

  .hme-home-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .hme-brp-cat-hero,
  .hme-brp-cat-hero__inner {
    min-height: 500px;
  }

.hme-brp-cat-filters {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HME BRP SINGLE PRODUCT PAGE (DEMO)
============================================================ */

.hme-brp-product-page {
  background: #fffbf5;
  --hme-bg: #fffbf5;
  --hme-ink: #45454f;
  --hme-muted: #666672;
  --hme-panel-soft: #efe6d8;
  --hme-card: #ffffff;
  --hme-accent: #f39b1b;
  --hme-accent-dark: #8b5d1f;
}

.hme-brp-product-hero {
  padding: 52px 0 22px;
}

.hme-brp-product-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: start;
}

.hme-brp-product-gallery {
  display: grid;
  gap: 20px;
}

.hme-brp-product-gallery__main {
  min-height: 620px;
  border: 1px solid #d9d1c5;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hme-brp-product-gallery__main img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}

.hme-brp-product-gallery__thumb-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hme-brp-gallery-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f39b1b;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
}

.hme-brp-product-gallery__thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(108px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: thin;
}

.hme-brp-product-gallery__thumb {
  border: 1px solid #d9d1c5;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  min-height: 104px;
  cursor: pointer;
}

.hme-brp-product-gallery__thumb.is-active {
  border-color: #f39b1b;
}

.hme-brp-product-gallery__thumb img {
  width: 100%;
  height: 84px;
  object-fit: contain;
}

.hme-brp-product-summary {
  background: #f2e3cd;
  border-radius: 18px;
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
}

.hme-brp-product-summary__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 16px;
  background: #fff;
  color: #64605a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.hme-brp-product-summary h1 {
  margin: 0;
  font-size: clamp(38px, 2.65vw, 58px);
  line-height: 1.04;
}

.hme-brp-product-summary__availability {
  margin: 0;
  font-size: 15px;
  color: #928a7d;
}

.hme-brp-product-summary__availability strong {
  color: #5f594f;
  margin-left: 8px;
}

.hme-brp-product-summary__shortdesc {
  color: #5f594f;
  font-size: 14px;
  line-height: 1.65;
}

.hme-brp-product-summary__shortdesc p {
  margin: 0 0 14px;
}

.hme-brp-product-summary__shortdesc p:last-child {
  margin-bottom: 0;
}

.hme-brp-product-summary__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hme-brp-product-summary__actions .hme-btn {
  min-height: 48px;
}

.hme-brp-product-summary__price {
  font-size: 24px;
  font-weight: 700;
  color: #3f3a32;
}

.hme-brp-product-summary__price .woocommerce-Price-amount {
  color: #3f3a32;
}

.hme-brp-product-summary__cart form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  background: #fff8ee;
  border: 1px solid #e7d7c1;
  border-radius: 14px;
  padding: 16px;
  margin-top: 6px;
}

.hme-brp-product-summary__cart .price {
  width: 100%;
  margin: 0 0 2px;
  color: #4b463e;
  font-weight: 700;
}

.hme-brp-product-summary__cart .quantity .qty {
  height: 48px;
  min-width: 84px;
  border: 1px solid #d8ccb7;
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
}

.hme-brp-product-summary__cart .single_add_to_cart_button,
.hme-brp-product-summary__cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: #f39b1b;
  color: #fff;
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.hme-brp-product-summary__cart .single_add_to_cart_button:hover {
  background: #e79316;
}

/* Force Woo single-product add-to-cart button to match primary orange CTA style. */
.hme-brp-product-summary__cart .single_add_to_cart_button.button,
.hme-brp-product-summary__cart .single_add_to_cart_button.button.alt,
.hme-brp-product-summary__cart .woocommerce-variation-add-to-cart .single_add_to_cart_button.button,
.hme-brp-product-summary__cart .woocommerce-variation-add-to-cart .single_add_to_cart_button.button.alt {
  background-color: #f39b1b !important;
  border-color: #f39b1b !important;
  color: #fff !important;
}

.hme-brp-product-summary__cart .single_add_to_cart_button.button:hover,
.hme-brp-product-summary__cart .single_add_to_cart_button.button.alt:hover,
.hme-brp-product-summary__cart .woocommerce-variation-add-to-cart .single_add_to_cart_button.button:hover,
.hme-brp-product-summary__cart .woocommerce-variation-add-to-cart .single_add_to_cart_button.button.alt:hover {
  background-color: #e79316 !important;
  border-color: #e79316 !important;
}

.hme-brp-product-summary__cart .variations {
  width: 100%;
  border: 0;
  margin: 0 0 2px;
}

.hme-brp-product-summary__cart .variations tbody,
.hme-brp-product-summary__cart .variations tr {
  display: grid;
  gap: 8px;
}

.hme-brp-product-summary__cart .variations td,
.hme-brp-product-summary__cart .variations th {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
}

.hme-brp-product-summary__cart .variations label {
  display: block;
  margin: 0 0 6px;
  color: #5f594f;
  font-size: 13px;
  font-weight: 600;
}

.hme-brp-product-summary__cart .variations select {
  min-height: 44px;
  border: 1px solid #d8ccb7;
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  width: 100%;
  color: #3f3a32;
}

.hme-brp-product-summary__cart .reset_variations {
  display: inline-block;
  margin-top: 6px;
  color: #8b5d1f;
  font-size: 12px;
  text-decoration: underline;
}

.hme-brp-product-summary__cart .woocommerce-variation-price,
.hme-brp-product-summary__cart .woocommerce-variation-availability {
  margin: 0;
  color: #4b463e;
}

.hme-brp-product-summary__cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.hme-brp-seat-height-field {
  display: grid;
  gap: 6px;
  width: 100%;
  margin-bottom: 6px;
}

.hme-brp-seat-height-field label {
  font-size: 13px;
  color: #5f594f;
}

.hme-brp-seat-height-field input {
  min-height: 44px;
  border: 1px solid #d8ccb7;
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
}

@media (max-width: 768px) {
  .hme-brp-product-summary__cart form.cart {
    padding: 14px;
    gap: 12px;
  }

  .hme-brp-product-summary__cart .woocommerce-variation-add-to-cart {
    gap: 10px;
  }

  .hme-brp-product-summary__cart .quantity,
  .hme-brp-product-summary__cart .single_add_to_cart_button {
    width: 100%;
  }
}

.hme-brp-product-trust {
  margin-top: 28px;
  border: 1px solid #e7dbc8;
  border-radius: 14px;
  background: #f9f5ee;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.hme-brp-product-trust article {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  color: #9a6b20;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.hme-brp-product-trust article + article {
  border-left: 1px solid #ebdcc6;
}

.hme-brp-product-trust img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hme-brp-product-trust svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.hme-brp-product-cta {
  position: relative;
  width: min(1680px, calc(100% - 80px));
  margin: 20px auto 0;
  border-radius: 18px;
  min-height: 330px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 42px 56px;
}

.hme-brp-product-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 31, 28, 0.65) 0%, rgba(33, 31, 28, 0.24) 50%, rgba(33, 31, 28, 0.08) 100%);
}

.hme-brp-product-cta__card {
  position: relative;
  z-index: 1;
  background: rgba(39, 37, 34, 0.55);
  border-radius: 14px;
  padding: 26px 24px;
  max-width: 390px;
  color: #fff;
  backdrop-filter: blur(2px);
}

.hme-brp-product-cta__card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 32px;
}

.hme-brp-product-cta__card p {
  margin: 0 0 10px;
  color: #fff;
}

.hme-brp-product-cta__card a[href^="tel:"] {
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
}

.hme-brp-product-cta__card .hme-btn {
  margin-top: 12px;
}

.hme-brp-product-quote {
  padding: 28px 0 12px;
}

.hme-brp-product-quote__card {
  background: #fff8ee;
  border: 1px solid #e7d7c1;
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.hme-brp-product-quote__intro h2 {
  margin: 16px 0 14px;
  color: #3f3a32;
  font-size: 34px;
  line-height: 1.1;
}

.hme-brp-product-quote__intro p {
  margin: 0;
  color: #5f594f;
  font-size: 15px;
  line-height: 1.7;
}

.hme-brp-product-quote__checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hme-brp-product-quote__checklist li {
  position: relative;
  padding-left: 28px;
  color: #4b463e;
  font-size: 14px;
  line-height: 1.5;
}

.hme-brp-product-quote__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #f39b1b;
  box-shadow: inset 0 0 0 4px #fff8ee;
}

.hme-brp-product-quote__form {
  background: #fff;
  border: 1px solid #eadcc9;
  border-radius: 16px;
  padding: 24px;
}

.hme-brp-product-quote__form .gform_wrapper {
  margin: 0;
}

.hme-brp-product-quote__form .gform_wrapper .gform_heading,
.hme-brp-product-quote__form .gform_wrapper .gform_validation_errors,
.hme-brp-product-quote__form .gform_wrapper .gfield_description {
  margin-top: 0;
}

.hme-brp-product-quote__fallback {
  display: grid;
  gap: 16px;
}

.hme-brp-product-quote__fallback p {
  margin: 0;
  color: #5f594f;
  line-height: 1.7;
}

.hme-brp-product-quote__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hme-brp-product-quote__fallback-note {
  font-size: 13px;
  color: #776f64;
}

.hme-brp-product-related {
  margin-top: 34px;
  background: #f2e3cd;
  padding: 64px 0 70px;
}

.hme-brp-product-related__header {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.hme-brp-product-related__header h2 {
  margin: 0;
  font-size: clamp(42px, 3vw, 62px);
}

.hme-brp-product-related__header p {
  margin: 0;
  color: #6c675f;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hme-brp-product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hme-brp-product-related__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  border: 1px dashed #d4c3aa;
  border-radius: 12px;
  color: #6f675a;
  background: rgba(255, 255, 255, 0.45);
}

.hme-brp-product-process {
  padding-top: 72px;
}

.hme-brp-product-process .hme-home-steps {
  margin-top: 8px;
}

@media (max-width: 1480px) {
  .hme-brp-product-hero__layout {
    grid-template-columns: 1fr;
  }

  .hme-brp-product-gallery__main {
    min-height: 520px;
  }

  .hme-brp-product-cta {
    width: min(1680px, calc(100% - 48px));
  }

  .hme-brp-product-quote__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .hme-brp-product-hero {
    padding-top: 36px;
  }

  .hme-brp-product-summary {
    padding: 30px 24px;
  }

  .hme-brp-product-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hme-brp-product-trust article:nth-child(odd) {
    border-left: 0;
  }

  .hme-brp-product-trust article:nth-child(n + 3) {
    border-top: 1px solid #ebdcc6;
  }

  .hme-brp-product-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hme-brp-product-hero {
    padding-top: 22px;
  }

  .hme-brp-product-gallery__main {
    min-height: 380px;
    padding: 16px;
  }

  .hme-brp-gallery-arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .hme-brp-product-summary h1 {
    font-size: 42px;
  }

  .hme-brp-product-summary__actions .hme-btn {
    width: 100%;
  }

  .hme-brp-product-trust {
    grid-template-columns: 1fr;
  }

  .hme-brp-product-trust article {
    border-left: 0 !important;
    border-top: 1px solid #ebdcc6;
  }

  .hme-brp-product-trust article:first-child {
    border-top: 0;
  }

  .hme-brp-product-cta {
    width: min(1680px, calc(100% - 24px));
    padding: 20px;
    min-height: 250px;
  }

  .hme-brp-product-cta__card {
    padding: 18px 16px;
  }

  .hme-brp-product-cta__card h2 {
    font-size: 24px;
  }

  .hme-brp-product-related {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .hme-brp-product-quote {
    padding-top: 24px;
  }

  .hme-brp-product-quote__card {
    padding: 20px;
    gap: 20px;
  }

  .hme-brp-product-quote__intro h2 {
    font-size: 28px;
  }

  .hme-brp-product-quote__form {
    padding: 18px;
  }

  .hme-brp-product-quote__actions .hme-btn {
    width: 100%;
  }
}

/* ============================================
   HME HOMEPAGE REDO (EXPORT-DRIVEN)
   ============================================ */

.hme-r2-homepage {
  --r2-bg: #fffbf5;
  --r2-panel: #fcf0de;
  --r2-text: #45454f;
  --r2-muted: #6a6a73;
  --r2-line: #e8d9bf;
  --r2-accent: #f7a21b;
  --r2-accent-dark: #8f5d18;
  background: var(--r2-bg);
  color: var(--r2-text);
  font-family: "Inter", Helvetica, sans-serif;
}

.hme-r2-homepage h1,
.hme-r2-homepage h2,
.hme-r2-homepage h3,
.hme-r2-homepage .hme-r2-btn {
  font-family: "Montserrat", "Inter", Helvetica, sans-serif;
}

.hme-r2-shell {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding-inline: 40px;
  box-sizing: border-box;
}

.hme-r2-header {
  --r2-accent: #f7a21b;
  --r2-accent-dark: #8f5d18;
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  box-shadow: 0 2px 8px rgba(18, 16, 11, 0.08);
}

.hme-r2-header__top {
  background: var(--r2-accent);
}

.hme-r2-header__nav-wrap {
  background: #fff;
}

.hme-r2-header__top-inner {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.hme-r2-header__contact,
.hme-r2-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hme-r2-header__actions { justify-content: flex-end; }

.hme-r2-header__top a,
.hme-r2-header__top p {
  margin: 0;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.hme-r2-header__ownership {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hme-r2-header__ownership svg {
  width: 28px;
  height: 24px;
  flex: 0 0 auto;
}

.hme-r2-header__actions a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.hme-r2-header__actions a:first-child {
  background: #a76b14;
}

.hme-r2-header__actions a:last-child {
  background: #f8f5ef;
  color: #8f5d18;
}

.hme-r2-header__nav-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}

.hme-r2-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--r2-accent);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.hme-r2-header__brand-mark {
  width: 46px;
  height: 24px;
  position: relative;
}

.hme-r2-header__brand-mark::before,
.hme-r2-header__brand-mark::after {
  content: "";
  position: absolute;
  border: 3px solid var(--r2-accent);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.hme-r2-header__brand-mark::before { inset: 0 10px 0 0; }
.hme-r2-header__brand-mark::after { inset: 0 0 0 10px; }

.hme-r2-header__utilities {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.hme-r2-header__utilities a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--r2-accent);
  border: 1px solid #e8dcc8;
}

.hme-r2-main {
  background: var(--r2-bg);
}

.hme-r2-hero {
  position: relative;
  min-height: 700px;
  max-height: 700px;
  height: 700px;
  background-size: cover;
  background-position: center;
  padding: 80px 0 0;
  overflow: hidden;
}

.hme-r2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,16,13,0.56) 0%, rgba(18,16,13,0.15) 65%);
}

.hme-r2-hero__inner {
  position: relative;
  z-index: 2;
}

.hme-r2-hero__content {
  width: min(820px, 100%);
  color: #fff;
  padding-left: 44px;
  box-sizing: border-box;
}

.hme-r2-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 3.35vw, 62px);
  line-height: 1.04;
}

.hme-r2-hero__lead {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.34;
  font-weight: 700;
}

.hme-r2-hero__sublead {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.45;
}

.hme-r2-hero__search {
  display: grid;
  grid-template-columns: 1fr 220px;
}

.hme-r2-hero__features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  z-index: 2;
}

.hme-r2-hero__search input {
  min-height: 56px;
  border: 0;
  padding: 0 16px;
  border-radius: 14px 0 0 14px;
  font-size: 14px;
}

.hme-r2-hero__search button {
  border: 0;
  border-radius: 0 14px 14px 0;
  background: var(--r2-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.hme-r2-feature-strip {
  position: relative;
  background: rgba(20, 17, 13, 0.74);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.hme-r2-feature-strip article {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px 15px;
}

.hme-r2-feature-strip article + article { border-left: 1px solid rgba(255,255,255,0.22); }
.hme-r2-feature-strip img { width: 40px; height: 40px; object-fit: contain; flex: 0 0 auto; }
.hme-r2-feature-strip span { display: block; }

.hme-r2-flexible {
  padding: 96px 0;
}

.hme-r2-flexible__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 60px;
}

.hme-r2-flexible__copy h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 2.9vw, 58px);
  line-height: 1.06;
}

.hme-r2-flexible__copy p {
  margin: 0 0 24px;
  color: var(--r2-muted);
  font-size: 18px;
  line-height: 1.55;
}

.hme-r2-flexible__note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--r2-accent);
  font-size: 16px;
  line-height: 1.5;
}

.hme-r2-flexible__note-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hme-r2-flexible__note-icon svg { width: 44px; height: 44px; display: block; }

.hme-r2-flexible__cards h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.hme-r2-flexible__cards ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hme-r2-flexible__cards li {
  min-height: 62px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--r2-panel);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.hme-r2-flexible__cards li span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #e1c389;
  background: #fff7ea;
  flex: 0 0 auto;
  position: relative;
}

.hme-r2-flexible__cards li span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--r2-accent);
  border-bottom: 2px solid var(--r2-accent);
  transform: rotate(40deg);
}

.hme-r2-periods,
.hme-r2-popular {
  background: var(--r2-panel);
  padding: 96px 0;
}

.hme-r2-section-header {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 34px;
}

.hme-r2-section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(40px, 2.65vw, 56px);
  line-height: 1.08;
}

.hme-r2-section-header p {
  margin: 0;
  color: var(--r2-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hme-r2-section-header__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 8px;
}

.hme-r2-periods__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.hme-r2-period-card {
  background: #fff;
  border-radius: 14px;
  min-height: 232px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
}

.hme-r2-period-card img,
.hme-r2-clock {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}

.hme-r2-clock {
  border: 3px solid #bc8a3e;
  border-radius: 50%;
  position: relative;
}

.hme-r2-clock::before,
.hme-r2-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #bc8a3e;
  transform-origin: 0 0;
}

.hme-r2-clock::before { width: 1px; height: 16px; transform: translate(-1px, -1px) rotate(20deg); }
.hme-r2-clock::after { width: 10px; height: 1px; transform: translate(0, -1px) rotate(-30deg); }

.hme-r2-period-card h3 { margin: 0 0 10px; font-size: 36px; }
.hme-r2-period-card p { margin: 0; font-size: 14px; color: var(--r2-muted); line-height: 1.55; }

.hme-r2-process,
.hme-r2-faq {
  padding: 96px 0;
}

.hme-r2-section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hme-r2-process__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 46px;
}

.hme-r2-btn {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hme-r2-btn--primary { background: var(--r2-accent); color: #fff; }
.hme-r2-btn--outline { border: 1px solid var(--r2-accent-dark); color: var(--r2-accent-dark); background: transparent; }

.hme-r2-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}

.hme-r2-steps::before { display: none; }
.hme-r2-steps article { position: relative; padding-top: 56px; }
.hme-r2-steps article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 44px;
  right: -22px;
  border-top: 2px solid #e2b56d;
}

.hme-r2-steps article:last-child::before { display: none; }
.hme-r2-steps span {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--r2-accent);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hme-r2-steps h3 { margin: 0 0 8px; font-size: 15px; }
.hme-r2-steps p { margin: 0; font-size: 14px; color: var(--r2-muted); line-height: 1.6; }

.hme-r2-popular__cta { text-align: center; margin-bottom: 24px; }

.hme-r2-popular__grid-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.hme-r2-arrow {
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--r2-accent);
  color: #fff;
  cursor: default;
}

.hme-r2-popular__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hme-r2-popular__grid article {
  background: #fff;
  border: 1px solid #eadcc5;
  border-radius: 12px;
  padding: 16px 16px 14px;
  text-align: center;
}

.hme-r2-popular__grid h3 { margin: 0 0 12px; color: #f09e1b; font-size: 18px; }
.hme-r2-popular__grid img { width: 100%; height: 200px; object-fit: contain; margin-bottom: 10px; }

.hme-r2-faq__contact { margin-bottom: 18px; }

.hme-r2-faq__list {
  border: 1px solid #eadcc5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--r2-panel);
}

.hme-r2-faq__list details + details { border-top: 1px solid #e0d2ba; }
.hme-r2-faq__list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 58px 22px 24px;
  font-size: 16px;
  font-weight: 700;
}

.hme-r2-faq__list summary::-webkit-details-marker { display: none; }
.hme-r2-faq__list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #7f5a1a;
}

.hme-r2-faq__list details[open] summary::after {
  content: "-";
}

.hme-r2-faq__list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--r2-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hme-r2-cta {
  position: relative;
  margin: 0 auto 32px;
  width: min(1601px, calc(100% - 80px));
  height: 439px;
  min-height: 439px;
  max-height: 439px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hme-r2-cta__overlay {
  display: none;
}

.hme-r2-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hme-r2-cta__content h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 2.4vw, 48px);
  line-height: 1.15;
}

.hme-r2-homepage .hme-home-shell,
.hme-brp-category-page .hme-home-shell,
.hme-brp-product-page .hme-home-shell {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding-inline: 40px;
  box-sizing: border-box;
}

@media (max-width: 1180px) {
  .hme-r2-shell { padding-inline: 18px; }
  .hme-r2-header__top-inner { grid-template-columns: 1fr; gap: 8px; padding: 8px 0; }
  .hme-r2-header__contact, .hme-r2-header__actions { justify-content: center; flex-wrap: wrap; }
  .hme-r2-header__nav-inner { grid-template-columns: 1fr; justify-items: center; padding: 10px 0 14px; }
  .hme-r2-hero { min-height: 700px; max-height: 700px; height: 700px; padding-top: 56px; }
  .hme-r2-hero__features { position: relative; bottom: 0; margin-top: 26px; }
  .hme-r2-feature-strip { border-radius: 16px; grid-template-columns: repeat(2,1fr); }
  .hme-r2-flexible__grid,
  .hme-r2-periods__grid,
  .hme-r2-popular__grid { grid-template-columns: 1fr; }
  .hme-r2-steps { grid-template-columns: 1fr; }
  .hme-r2-steps article::before { display: none; }
  .hme-r2-cta { width: min(1680px, calc(100% - 24px)); }
  .hme-r2-homepage .hme-home-shell,
  .hme-brp-category-page .hme-home-shell,
  .hme-brp-product-page .hme-home-shell { padding-inline: 18px; }
}

@media (max-width: 768px) {
  .hme-r2-header__brand { font-size: 34px; }
  .hme-r2-header__brand-mark { width: 40px; height: 20px; }
  .hme-r2-header__nav a { font-size: 12px; }
  .hme-r2-hero { min-height: 620px; }
  .hme-r2-hero h1 { font-size: 44px; }
  .hme-r2-hero__lead { font-size: 15px; font-weight: 600; }
  .hme-r2-hero__search { grid-template-columns: 1fr; gap: 8px; }
  .hme-r2-hero__search input, .hme-r2-hero__search button { border-radius: 10px; }
  .hme-r2-feature-strip article { min-height: 68px; font-size: 12px; line-height: 16px; }
  .hme-r2-feature-strip img { width: 28px; height: 28px; }
  .hme-r2-hero__content { padding-left: 0; }
  .hme-r2-popular__grid-wrap { grid-template-columns: 1fr; }
  .hme-r2-arrow { display: none; }
  .hme-r2-homepage .hme-home-shell,
  .hme-brp-category-page .hme-home-shell,
  .hme-brp-product-page .hme-home-shell { padding-inline: 12px; }
}
/* ============================================
   HME GLOBAL HEADER/FOOTER ALIGNMENT (2026-05)
   ============================================ */

.hme-global-header {
  position: relative;
  z-index: 300;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hme-global-inner {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.hme-global-top-bar {
  background: #eca133;
  color: #ffffff;
}

.hme-global-top-bar__inner {
  min-height: 42px;
  padding: 0.45rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.hme-global-top-bar__left,
.hme-global-top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hme-global-top-bar__right {
  justify-content: flex-end;
}

.hme-global-top-bar a {
  color: inherit;
  text-decoration: none;
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
}

.hme-global-top-bar__center {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #cb412c;
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hme-global-top-bar__center img {
  width: auto;
  height: 18px;
}

.hme-global-top-btn {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #c07e1a !important;
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hme-global-top-btn--distribution {
  background: #c07e1a;
  border: 1px solid #c07e1a;
  color: #ffffff !important;
}

.hme-global-nav-bar {
  background: #f8f8f8;
}

.hme-global-nav-bar__inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.hme-global-logo {
  display: inline-flex;
  align-items: center;
}

.hme-global-logo img {
  width: 180px;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.hme-global-menu {
  justify-self: center;
}

.hme-global-menu__root {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hme-global-menu__item {
  position: relative;
}

.hme-global-menu__item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 50px;
  color: #363346;
  text-decoration: none;
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hme-global-menu__item > a span {
  color: #c07e1a;
  font-size: 0.9rem;
}

.hme-global-menu__dropdown {
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% - 6px);
  min-width: 290px;
  margin: 0;
  padding: 0.55rem 0;
  background: #ffffff;
  border: 1px solid #ead7bb;
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(20, 17, 12, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 310;
}

.hme-global-menu__dropdown li a {
  display: block;
  padding: 0.42rem 0.9rem;
  color: #4a4a56;
  text-decoration: none;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.hme-global-menu__dropdown li a:hover {
  background: #fcf0de;
  color: #8f5d18;
}

.hme-global-menu__item--has-children:hover .hme-global-menu__dropdown,
.hme-global-menu__item--has-children:focus-within .hme-global-menu__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hme-global-menu__item--has-children.is-open .hme-global-menu__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hme-global-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hme-global-icons > a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(69, 69, 79, 0.2);
  color: #eca133;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hme-global-icons .hme-cart-count {
  margin-left: 4px;
}

.hme-r2-hero {
  max-height: none;
  height: auto;
  overflow: visible;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hme-r2-hero__inner {
  padding-bottom: 0;
}

.hme-r2-hero__content {
  max-width: 860px;
  padding-left: 56px;
}

.hme-r2-hero__sublead {
  margin-bottom: 20px;
}

.hme-r2-hero__search-row {
  width: min(1680px, calc(100% - 32px));
  max-width: 1680px;
  padding: 0;
  box-sizing: border-box;
  margin: 46px auto 0;
}

.hme-r2-hero__search-row .hme-hero-search-stack {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.hme-r2-hero__search-row .hme-hero-product-search-box,
.hme-r2-hero__search-row .hme-hero-search-box {
  width: 100%;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
}

.hme-brp-cat-hero__search-stack {
  margin-top: 24px;
  width: min(1160px, 100%);
}

.hme-brp-cat-hero__search-stack .hme-hero-product-search-box,
.hme-brp-cat-hero__search-stack .hme-hero-search-box {
  max-width: 100%;
}

.hme-home-footer {
  background: #fcf0de;
  padding: 2.5rem 2.5rem 2rem;
}

.hme-home-footer .hme-home-shell {
  width: min(1500px, 100%);
  padding-inline: 0;
}

.hme-home-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 1.75rem 2rem;
  align-items: start;
}

.hme-home-footer__brand-link img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.hme-home-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hme-home-footer__links h4,
.hme-home-footer__newsletter h4 {
  margin-bottom: 0.75rem;
  color: #333333;
  font-family: "Outfit", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hme-home-footer__links a {
  display: block;
  margin: 0 0 0.45rem;
  color: #555555;
  text-decoration: none;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.3;
}

.hme-home-footer__newsletter p {
  font-size: 0.82rem;
  color: #666666;
  line-height: 1.5;
}

.hme-home-footer__social {
  margin-top: 0;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.hme-home-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: #ffffff;
  color: #eca133;
  border: 0;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hme-home-footer__social a:hover {
  background: rgba(255, 255, 255, 0.75);
  color: #c07e1a;
}

.hme-home-footer__social svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hme-home-footer__brand-badges {
  display: flex;
  justify-content: flex-start;
}

.hme-home-footer__brand-badges a {
  display: inline-flex;
  align-items: center;
}

.hme-home-footer__brand-badges img {
  max-height: 62px;
  width: auto;
}

.hme-home-footer__newsletter-gf .gform_wrapper {
  margin: 0;
}

.hme-home-footer__newsletter-gf .gform_fields {
  gap: 10px !important;
}

.hme-home-footer__newsletter-gf .gfield,
.hme-home-footer__newsletter-line {
  display: block;
  width: 100%;
  margin: 0 0 8px;
}

.hme-home-footer__newsletter-fallback {
  margin: 0;
}

.hme-home-footer__newsletter-disclaimer {
  margin: 0 0 8px;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #666666;
}

.hme-home-footer__newsletter-gf .gform_footer {
  margin-top: 1rem !important;
}

.hme-home-footer__newsletter input[type="email"] {
  min-height: 42px;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.hme-home-footer__newsletter label {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #666666;
}

.hme-home-footer__newsletter-fallback .hme-btn,
.hme-home-footer__newsletter-gf .gform_footer input[type="submit"],
.hme-home-footer__newsletter-gf .gform_footer button {
  margin-top: 1rem;
  background: #f99d1b;
  border: 1px solid #f99d1b;
  color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hme-home-footer__newsletter-fallback .hme-btn:hover,
.hme-home-footer__newsletter-gf .gform_footer input[type="submit"]:hover,
.hme-home-footer__newsletter-gf .gform_footer button:hover {
  background: #f8e1bc;
  border-color: #c07e1a;
  color: #8a5b13;
}

.hme-home-footer__bottom {
  margin-top: 1.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e4cfae;
}

.hme-home-footer__bottom a,
.hme-home-footer__bottom p {
  color: #4b3510;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: "Inter", Helvetica, sans-serif;
}

.hme-home-footer__bottom a {
  font-weight: 600;
  text-decoration: none;
}

.hme-home-footer__bottom a:hover {
  color: #f99d1b;
}

@media (max-width: 1180px) {
  .hme-r2-hero {
    max-height: none;
    height: auto;
    min-height: 700px;
    padding-top: 72px;
    padding-bottom: 94px;
  }

  .hme-r2-hero__inner {
    padding-bottom: 0;
  }

  .hme-r2-hero__content {
    padding-left: 28px;
  }

  .hme-r2-hero__search-row {
    padding: 0;
    margin-top: 40px;
  }

  .hme-global-top-bar__inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .hme-global-top-bar__left,
  .hme-global-top-bar__right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hme-global-nav-bar__inner {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.5rem 0;
  }

  .hme-global-icons {
    justify-self: center;
  }

  .hme-home-footer {
    padding: 1.5rem 1.25rem;
  }

  .hme-global-menu {
    order: 3;
    width: 100%;
  }

  .hme-global-menu__root {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.9rem;
  }

  .hme-global-menu__item > a {
    min-height: 34px;
    font-size: 16px;
    text-transform: none;
  }

  .hme-global-menu__dropdown {
    position: static;
    min-width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    margin-top: 0.2rem;
  }

  .hme-global-menu__item--has-children:hover .hme-global-menu__dropdown,
  .hme-global-menu__item--has-children:focus-within .hme-global-menu__dropdown {
    display: block;
  }

  .hme-global-menu__item--has-children.is-open .hme-global-menu__dropdown {
    display: block;
  }

  .hme-home-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hme-r2-hero {
    max-height: none;
    height: auto;
    min-height: 620px;
    padding-top: 56px;
    padding-bottom: 104px;
  }

  .hme-r2-hero__search-row {
    margin-top: 44px;
    width: min(1680px, calc(100% - 12px));
  }

  .hme-r2-hero__content {
    padding-left: 16px;
  }

  .hme-global-inner {
    width: min(1500px, calc(100% - 28px));
  }

  .hme-home-footer__top {
    grid-template-columns: 1fr;
  }

  .hme-home-footer__brand-badges,
  .hme-home-footer__social {
    justify-content: center;
  }
}
