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

.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-x: hidden;
}

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

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

.hme-product-image {
  width: 100%;
  height: 100%;
  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-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;
  gap: 13px;
  margin-top: 16px;
  margin-bottom: 48px;
  justify-content: center;
}

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

}

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

/* 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-filters-form {
    flex-direction: column;
  }

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

