/*
Theme Name: EMS Event Services
Theme URI: https://eventsmanagementservices.org
Author: EMS Event Management Services
Description: Premium custom WooCommerce theme for professional event equipment hire, personalised mesh, and infrastructure solutions.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: ems-event-services
*/

:root {
  --ems-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ems-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ems-orange: #f26122;
  --ems-orange-hover: #d94a12;
  --ems-orange-light: #fff5eb;
  --ems-ink: #111214;
  --ems-charcoal: #18191b;
  --ems-dark-border: #2a2c30;
  --ems-paper: #ffffff;
  --ems-soft: #f9fafb;
  --ems-border: #e5e7eb;
  --ems-border-light: #f0f1f3;
  --ems-muted: #6b7280;
  --ems-muted-light: #9ca3af;
  --ems-radius: 8px;
  --ems-radius-lg: 12px;
  --ems-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  --ems-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ems-ink);
  background: var(--ems-paper);
  font-family: var(--ems-font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.ems-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.ems-section {
  padding: 40px 0;
}

.ems-section--soft {
  background: var(--ems-soft);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.ems-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ems-border-light);
}

.ems-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ems-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ems-brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1.5px solid #6b7280;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #374151;
}

.ems-brand__text {
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ems-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 500;
}

.ems-nav a {
  display: inline-block;
  padding: 24px 0;
  color: #4b5563;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.ems-nav a:hover,
.ems-nav li.current-menu-item a,
.ems-nav li.equipment-hire a,
body.woocommerce-shop .ems-nav li.equipment-hire a {
  color: var(--ems-ink);
  font-weight: 600;
  border-bottom-color: var(--ems-orange);
}

.ems-cart-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 8px 14px !important;
  border: 1px solid var(--ems-border) !important;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ems-ink) !important;
  font-weight: 600;
  font-size: 13px;
}

.ems-cart-link:hover {
  border-color: var(--ems-orange) !important;
  color: var(--ems-orange) !important;
}

.ems-cart-icon {
  color: inherit;
}

.ems-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  background: var(--ems-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ems-menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ems-ink);
}

/* ==========================================================================
   Hero Banner & Overlaid Trust Bar
   ========================================================================== */
.ems-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 16, 20, 0.72) 0%, rgba(14, 16, 20, 0.88) 100%), var(--ems-hero-image) center/cover no-repeat;
  color: #ffffff;
  padding: 70px 0 40px;
}

.ems-hero--shop {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ems-hero__content {
  max-width: 600px;
  margin-bottom: 50px;
}

.ems-hero__title {
  margin: 0 0 10px;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.ems-hero__subtitle {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  color: #d1d5db;
  line-height: 1.45;
}

/* Trust Bar */
.ems-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ems-hero-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ems-hero-trust__icon {
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}

.ems-hero-trust__text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.ems-hero-trust__text span {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.35;
}

/* ==========================================================================
   Frontpage Hero & Floating Trust Bar
   ========================================================================== */
.ems-hero--home {
  padding: 85px 0 75px;
}

.ems-hero__content--home {
  max-width: 580px;
  margin-bottom: 0;
}

.ems-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ems-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: #111827 !important;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ems-btn-white:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
}

/* Floating 4-Column Trust Bar */
.ems-trust-float {
  position: relative;
  z-index: 10;
  margin: -35px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: var(--ems-radius-lg);
  box-shadow: var(--ems-shadow);
}

.ems-trust-float__item {
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid var(--ems-border);
}

.ems-trust-float__item:last-child {
  border-right: 0;
}

.ems-trust-float__icon {
  color: var(--ems-orange);
  flex-shrink: 0;
  width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 1px;
}

.ems-trust-float__icon svg {
  width: 50px;
  height: 50px;
}

.ems-trust-float__text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.ems-trust-float__text span {
  display: block;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.35;
}

/* Section Headings & Centered Actions */
.ems-section__head--center {
  text-align: center;
  margin-bottom: 28px;
}

.ems-section-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.ems-section__center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.ems-btn-outline-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #374151;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ems-btn-outline-center:hover {
  border-color: var(--ems-orange);
  color: var(--ems-orange);
}

/* Frontpage 5-Column Equipment Grid */
.ems-section--front-shop {
  padding: 50px 0 40px;
}

.ems-fp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ems-fp-card {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.ems-fp-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--ems-shadow-hover);
  transform: translateY(-2px);
}

.ems-fp-card__image-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.ems-fp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ems-fp-card:hover .ems-fp-card__img {
  transform: scale(1.04);
}

.ems-fp-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 14px 12px 12px;
}

.ems-fp-card__title {
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ems-fp-card:hover .ems-fp-card__title {
  color: var(--ems-orange);
}

.ems-fp-card__price,
.ems-fp-card__price .woocommerce-Price-amount {
  color: var(--ems-orange);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.ems-fp-card__price .ems-unit {
  font-size: 11.5px;
  font-weight: 500;
  color: #4b5563;
}

/* Make Your Brand Stand Out Banner */
.ems-section--brand-standout {
  padding: 24px 0;
}

.ems-brand-mesh-banner {
  position: relative;
  min-height: 250px;
  border-radius: var(--ems-radius-lg);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(20, 22, 25, 0.98) 0%, rgba(20, 22, 25, 0.92) 42%, rgba(20, 22, 25, 0.45) 65%, rgba(20, 22, 25, 0.08) 100%), var(--ems-mesh-bg, url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1600&q=80')) right center / cover no-repeat;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ems-brand-mesh-banner__content {
  max-width: 500px;
  padding: 38px 42px;
  z-index: 2;
}

.ems-brand-mesh-banner__title {
  margin: 0 0 5px;
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.ems-brand-mesh-banner__sub {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ems-orange);
  letter-spacing: 0.01em;
}

.ems-brand-mesh-banner__desc {
  margin: 0 0 22px;
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}

/* Popular Hire Packages Grid */
.ems-section--packages {
  padding: 40px 0;
}

.ems-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ems-pkg-card {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.22s ease;
}

.ems-pkg-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--ems-shadow-hover);
  transform: translateY(-2px);
}

.ems-pkg-card__image-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #111;
}

.ems-pkg-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ems-pkg-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.ems-pkg-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.ems-pkg-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.ems-pkg-card__bullets {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  font-size: 12px;
  color: #374151;
  line-height: 1.4;
}

.ems-pkg-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.ems-pkg-card__bullets li::before {
  content: "•";
  color: var(--ems-orange);
  font-weight: 700;
  flex-shrink: 0;
}

.ems-pkg-card__price {
  margin-top: auto;
  padding-top: 12px;
  color: var(--ems-orange);
  font-size: 14px;
  font-weight: 800;
}

.ems-pkg-card__action {
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
}

/* How It Works Steps */
.ems-section--how-it-works {
  padding: 40px 0 50px;
}

.ems-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.ems-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.ems-step-item__icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ems-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111827;
  flex-shrink: 0;
}

.ems-step-item__title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.ems-step-item__text {
  margin: 0;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.35;
}

.ems-step-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Shop Main Layout & Sidebar
   ========================================================================== */
.ems-section--shop-main {
  padding: 40px 0 30px;
}

.ems-shop-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.ems-shop-sidebar {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: var(--ems-radius-lg);
  padding: 22px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.ems-sidebar-widget {
  margin-bottom: 4px;
}

.ems-sidebar-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.ems-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ems-cat-list li a {
  display: block;
  font-size: 13px;
  color: #4b5563;
  padding: 3px 0;
  transition: all 0.15s ease;
}

.ems-cat-list li:hover a {
  color: var(--ems-ink);
}

.ems-cat-list li.is-active a {
  color: var(--ems-orange);
  font-weight: 700;
}

.ems-sidebar-divider {
  height: 1px;
  background: var(--ems-border);
  margin: 18px 0;
}

/* Price Filter Widget */
.ems-price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 8px;
}

.ems-price-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  accent-color: var(--ems-orange);
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}

.ems-btn-apply-filter {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--ems-border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ems-orange);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ems-btn-apply-filter:hover {
  border-color: var(--ems-orange);
  background: var(--ems-orange-light);
}

/* Help Widget */
.ems-help-widget {
  text-align: center;
}

.ems-help-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--ems-orange-light);
  color: var(--ems-orange);
  display: grid;
  place-items: center;
}

.ems-help-text {
  margin: 0 0 14px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

.ems-btn-advice {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--ems-orange);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ems-orange);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.ems-btn-advice:hover {
  background: var(--ems-orange);
  color: #ffffff;
}

/* ==========================================================================
   Shop Products Area & Header
   ========================================================================== */
.ems-shop-content {
  min-width: 0;
}

.ems-shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ems-border-light);
}

.ems-shop-title {
  margin: 0 0 2px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.ems-shop-count {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
}

.ems-sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ems-sort-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.ems-sort-dropdown,
.woocommerce form.woocommerce-ordering select.orderby {
  padding: 7px 28px 7px 12px;
  border: 1px solid var(--ems-border);
  border-radius: 6px;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") right 10px center no-repeat;
  font-size: 13px;
  color: #374151;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.ems-sort-dropdown:focus,
.woocommerce form.woocommerce-ordering select.orderby:focus {
  border-color: var(--ems-orange);
}

/* Hide default woocommerce orderby form container wrapping if custom is used */
.woocommerce .woocommerce-ordering {
  margin: 0;
}

/* ==========================================================================
   4-Column Product Grid & Product Cards
   ========================================================================== */
.woocommerce ul.products,
.ems-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.ems-product-item {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Product Card */
.ems-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 10px;
  padding: 14px 12px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.22s ease;
}

.ems-product-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--ems-shadow-hover);
  transform: translateY(-2px);
}

.ems-product-card__image-wrap {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbfb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.ems-product-card__img,
.ems-product-card__image-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ems-product-card:hover .ems-product-card__img {
  transform: scale(1.04);
}

.ems-product-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ems-product-card__title {
  margin: 0 0 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.ems-product-card__title:hover {
  color: var(--ems-orange);
}

.ems-product-card__pricing {
  margin-bottom: 3px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.ems-price-prefix {
  font-size: 12.5px;
  font-weight: 500;
  color: #4b5563;
}

.ems-price-amount,
.ems-product-card__pricing .woocommerce-Price-amount {
  color: var(--ems-orange);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.ems-price-unit {
  font-size: 12px;
  font-weight: 500;
  color: #4b5563;
}

.ems-price-tag--custom {
  color: var(--ems-orange);
  font-size: 13.5px;
  font-weight: 700;
}

.ems-product-card__note {
  font-size: 11px;
  color: #9ca3af;
  min-height: 28px;
  line-height: 1.3;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ems-product-card__footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Quantity Selector */
.ems-qty-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 28px;
  border: 1px solid var(--ems-border);
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
}

.ems-qty-btn {
  width: 28px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.ems-qty-btn:hover {
  background: #f3f4f6;
  color: var(--ems-ink);
}

.ems-qty-input {
  width: 44px;
  height: 100%;
  border: 0;
  border-left: 1px solid var(--ems-border-light);
  border-right: 1px solid var(--ems-border-light);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ems-ink);
  outline: none;
  -moz-appearance: textfield;
}

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

/* Card Buttons */
.ems-btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ems-btn-card--add {
  background: var(--ems-orange);
  border: 1px solid var(--ems-orange);
  color: #ffffff !important;
}

.ems-btn-card--add:hover {
  background: var(--ems-orange-hover);
  border-color: var(--ems-orange-hover);
  color: #ffffff !important;
}

.ems-btn-card--quote {
  background: #ffffff;
  border: 1.5px solid var(--ems-orange);
  color: var(--ems-orange) !important;
}

.ems-btn-card--quote:hover {
  background: var(--ems-orange);
  color: #ffffff !important;
}

/* ==========================================================================
   Personalised Mesh Promo Card
   ========================================================================== */
.ems-section--mesh-promo {
  padding: 10px 0 20px;
}

.ems-mesh-card {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: var(--ems-radius-lg);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
}

.ems-mesh-card__image {
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.ems-mesh-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ems-mesh-card__title {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}

.ems-mesh-card__text {
  margin: 0 0 16px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
}

.ems-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ems-orange);
  border: 1px solid var(--ems-orange);
  border-radius: 6px;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ems-btn-orange:hover {
  background: var(--ems-orange-hover);
  border-color: var(--ems-orange-hover);
}

/* ==========================================================================
   Personalised Mesh Landing Page
   ========================================================================== */
.ems-hero--mesh {
  min-height: 430px;
  padding: 82px 0 72px;
  background: linear-gradient(90deg, rgba(17, 19, 22, 0.86) 0%, rgba(17, 19, 22, 0.7) 34%, rgba(17, 19, 22, 0.18) 72%, rgba(17, 19, 22, 0.08) 100%), var(--ems-hero-image) center/cover no-repeat;
}

.ems-hero__content--mesh {
  max-width: 430px;
  margin-bottom: 0;
}

.ems-mesh-features {
  position: relative;
  z-index: 8;
  margin-top: -34px;
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.ems-mesh-features__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  border-right: 1px solid var(--ems-border);
}

.ems-mesh-features__item:last-child {
  border-right: 0;
}

.ems-mesh-features__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: #d48545;
}

.ems-mesh-features__icon svg {
  width: 100%;
  height: 100%;
}

.ems-mesh-features__text strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.ems-mesh-features__text span {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: #6b7280;
}

.ems-section--mesh-options {
  padding: 14px 0 10px;
}

.ems-mesh-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ems-mesh-option-card {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.ems-mesh-option-card__image {
  height: 170px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ems-mesh-option-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04) 0%, rgba(17, 24, 39, 0.14) 100%);
}

.ems-mesh-option-card__body {
  padding: 14px 14px 16px;
  text-align: center;
}

.ems-mesh-option-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}

.ems-mesh-option-card__copy {
  margin: 0 0 14px;
  min-height: 58px;
  font-size: 13px;
  line-height: 1.45;
  color: #4b5563;
}

.ems-btn-orange--small {
  min-width: 112px;
  padding: 8px 16px;
  font-size: 12px;
}

.ems-section--mesh-steps {
  padding: 2px 0 8px;
}

.ems-mesh-steps {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 12px;
}

.ems-mesh-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ems-mesh-step__icon {
  width: 54px;
  height: 54px;
  border: 1.5px solid #c7cbd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex-shrink: 0;
}

.ems-mesh-step__icon svg {
  width: 24px;
  height: 24px;
}

.ems-mesh-step__text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
}

.ems-mesh-step__text span {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: #4b5563;
}

.ems-mesh-step-arrow {
  width: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7cbd1;
}

.ems-mesh-step-arrow svg {
  width: 18px;
  height: 18px;
}

.ems-section--mesh-examples {
  padding: 0 0 14px;
}

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

.ems-mesh-example {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ems-border);
}

.ems-mesh-example__image {
  height: 136px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ems-mesh-example__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.22) 100%);
}

.ems-mesh-example__caption {
  padding: 10px 12px;
  background: #1f2937;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.ems-section--mesh-enquiry {
  padding: 0 0 8px;
}

.ems-mesh-enquiry {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 14px;
}

.ems-mesh-enquiry__panel {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: 10px;
  padding: 18px 20px 20px;
}

.ems-mesh-enquiry__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}

.ems-mesh-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  align-items: start;
}

.ems-mesh-form__notice {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--ems-orange);
  background: var(--ems-soft);
  color: #374151;
  font-size: 13px;
  line-height: 1.45;
}

.ems-mesh-form__notice--success {
  border-left-color: #15803d;
  background: #f0fdf4;
  color: #166534;
}

.ems-mesh-form__notice--error {
  border-left-color: #dc2626;
  background: #fef2f2;
  color: #991b1b;
}

.ems-mesh-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ems-mesh-field > span {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.ems-mesh-field input,
.ems-mesh-field select,
.ems-mesh-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-family: inherit;
}

.ems-mesh-field input:focus,
.ems-mesh-field select:focus,
.ems-mesh-field textarea:focus {
  border-color: var(--ems-orange);
  outline: 2px solid rgba(245, 132, 31, 0.16);
  outline-offset: 1px;
}

.ems-mesh-field textarea {
  min-height: 74px;
  resize: vertical;
}

.ems-mesh-field input::placeholder,
.ems-mesh-field textarea::placeholder {
  color: #9ca3af;
}

.ems-mesh-field--full {
  margin-top: 12px;
}

.ems-mesh-upload {
  position: relative;
  min-height: 112px;
  border: 1px dashed #d1d5db;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: #fafafa;
}

.ems-mesh-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  min-height: 100%;
  padding: 0;
}

.ems-mesh-upload strong {
  font-size: 14px;
  line-height: 1.45;
  color: #374151;
}

.ems-mesh-upload small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}

.ems-btn-orange--submit {
  margin-top: 14px;
  width: 250px;
  justify-content: space-between;
  padding-inline: 18px;
}

.ems-btn-orange--submit svg {
  width: 16px;
  height: 16px;
}

.ems-mesh-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ems-mesh-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ems-mesh-benefit__icon {
  width: 26px;
  height: 26px;
  color: #d48545;
  flex-shrink: 0;
}

.ems-mesh-benefit__icon svg {
  width: 100%;
  height: 100%;
}

.ems-mesh-benefit__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.ems-mesh-benefit__text span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #4b5563;
}

.ems-section--callout-bar.ems-section--mesh-callout {
  padding: 8px 0;
  background: transparent;
}

.ems-hire-callout.ems-hire-callout--mesh {
  background: var(--ems-charcoal);
  border-radius: 10px;
  padding: 18px 22px;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.ems-about-hero {
  min-height: 545px;
  padding: 38px 0 56px;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.88) 0%, rgba(7, 9, 12, 0.74) 33%, rgba(7, 9, 12, 0.3) 70%, rgba(7, 9, 12, 0.18) 100%), var(--ems-about-hero-image) center/cover no-repeat;
  color: #ffffff;
}

.ems-about-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 66px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.84);
}

.ems-about-breadcrumbs a:hover {
  color: #ffffff;
}

.ems-about-hero__content {
  max-width: 430px;
}

.ems-about-hero__title {
  margin: 0 0 18px;
  font-size: clamp(50px, 7vw, 74px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.ems-about-hero__lede {
  margin: 0 0 24px;
  max-width: 360px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.ems-about-hero__copy {
  margin: 0;
  max-width: 386px;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}

.ems-section--about-intro {
  padding: 44px 0 32px;
}

.ems-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.ems-about-kicker,
.ems-about-impact__kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 0 26px;
  padding-bottom: 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #111827;
}

.ems-about-kicker::after,
.ems-about-impact__kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: #111827;
}

.ems-about-intro__title,
.ems-about-why__title {
  margin: 0 0 20px;
  max-width: 420px;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111827;
}

.ems-about-intro__text {
  margin: 0 0 20px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
}

.ems-about-intro__text:last-of-type {
  margin-bottom: 28px;
}

.ems-about-dark-button,
.ems-about-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 176px;
  padding: 14px 24px;
  border-radius: 6px;
  background: #050c18;
  border: 1px solid #050c18;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ems-about-dark-button:hover,
.ems-about-cta__button:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.ems-about-intro__media img {
  width: 100%;
  aspect-ratio: 1.21 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.ems-about-values {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f8f8f8;
  border: 1px solid #ececec;
  border-radius: 12px;
}

.ems-about-value {
  padding: 30px 22px 28px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.ems-about-value:last-child {
  border-right: 0;
}

.ems-about-value__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: #111827;
}

.ems-about-value__icon svg {
  width: 100%;
  height: 100%;
}

.ems-about-value__title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  color: #111827;
}

.ems-about-value__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #4b5563;
}

.ems-about-impact {
  padding: 34px 0 36px;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.82) 0%, rgba(7, 9, 12, 0.82) 100%), var(--ems-about-impact-image) center/cover no-repeat;
  color: #ffffff;
}

.ems-about-impact__head {
  text-align: center;
  margin-bottom: 26px;
}

.ems-about-impact__kicker {
  margin-bottom: 0;
  padding-bottom: 12px;
  color: #ffffff;
}

.ems-about-impact__kicker::after {
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.82);
}

.ems-about-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ems-about-impact__item {
  padding: 0 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.ems-about-impact__item:last-child {
  border-right: 0;
}

.ems-about-impact__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  color: #ffffff;
}

.ems-about-impact__icon svg {
  width: 100%;
  height: 100%;
}

.ems-about-impact__value {
  margin-bottom: 6px;
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.ems-about-impact__label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.ems-section--about-why {
  padding: 44px 0 36px;
}

.ems-about-why {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
}

.ems-about-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ems-about-checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.6;
  color: #111827;
}

.ems-about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111827;
}

.ems-about-checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.ems-about-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.ems-about-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
}

.ems-about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ems-about-gallery__item--screen,
.ems-about-gallery__item--generator {
  grid-column: span 5;
}

.ems-about-gallery__item--barrier,
.ems-about-gallery__item--headphones {
  grid-column: span 4;
}

.ems-about-gallery__item--chair,
.ems-about-gallery__item--speaker {
  grid-column: span 3;
}

.ems-about-gallery__item--screen,
.ems-about-gallery__item--barrier,
.ems-about-gallery__item--chair {
  height: 156px;
}

.ems-about-gallery__item--generator,
.ems-about-gallery__item--headphones,
.ems-about-gallery__item--speaker {
  height: 182px;
}

.ems-about-cta {
  margin-top: 30px;
  padding: 24px 28px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ems-about-cta__content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ems-about-cta__icon {
  width: 34px;
  height: 34px;
  color: #111827;
  flex-shrink: 0;
}

.ems-about-cta__icon svg {
  width: 100%;
  height: 100%;
}

.ems-about-cta__title {
  margin: 0 0 4px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111827;
}

.ems-about-cta__text {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
}

/* ==========================================================================
   Hire Callout Bar
   ========================================================================== */
.ems-section--callout-bar {
  padding: 22px 0;
  background: var(--ems-charcoal);
}

.ems-hire-callout {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

.ems-hire-callout__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ems-hire-callout__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex-shrink: 0;
}

.ems-hire-callout__title {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ems-hire-callout__subtitle {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

.ems-btn-orange--callout {
  padding: 11px 22px;
  font-size: 13px;
  flex-shrink: 0;
}

/* ==========================================================================
   Notice Bar
   ========================================================================== */
.ems-notice-bar {
  background: #ffffff;
  border: 1px solid var(--ems-border);
  border-radius: var(--ems-radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 40px;
}

.ems-notice-bar__icon {
  color: #6b7280;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ems-notice-bar__text {
  margin: 0;
  font-size: 12.5px;
  color: #4b5563;
  line-height: 1.4;
}

.ems-notice-bar__text strong {
  color: #111827;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ems-footer {
  background: var(--ems-ink);
  color: #e5e7eb;
  padding: 48px 0 20px;
  font-size: 13px;
}

.ems-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.ems-brand--footer .ems-brand__mark {
  border-color: #6b7280;
  color: #ffffff;
}

.ems-brand--footer .ems-brand__text {
  color: #9ca3af;
}

.ems-footer__desc {
  margin: 14px 0 18px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
  max-width: 240px;
}

.ems-footer__socials {
  display: flex;
  gap: 8px;
}

.ems-social-link {
  width: 28px;
  height: 28px;
  border: 1px solid #374151;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9ca3af;
  transition: all 0.2s ease;
}

.ems-social-link:hover {
  border-color: var(--ems-orange);
  color: var(--ems-orange);
}

.ems-footer__heading {
  margin: 0 0 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ems-footer__links,
.ems-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12.5px;
  color: #9ca3af;
}

.ems-footer__links a {
  color: #9ca3af;
  transition: color 0.15s ease;
}

.ems-footer__links a:hover {
  color: #ffffff;
}

.ems-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.ems-footer__icon {
  color: #9ca3af;
  margin-top: 2px;
  flex-shrink: 0;
}

.ems-footer__quote-text {
  margin: 0 0 14px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.45;
}

.ems-btn-quote-footer {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ems-btn-quote-footer:hover {
  border-color: var(--ems-orange);
  background: var(--ems-orange);
  color: #ffffff;
}

.ems-footer__bottom {
  border-top: 1px solid #232528;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: #6b7280;
}

.ems-footer__legal {
  display: flex;
  gap: 20px;
}

.ems-footer__legal a {
  color: #6b7280;
}

.ems-footer__legal a:hover {
  color: #9ca3af;
}

/* ==========================================================================
   WooCommerce: Page Header (Cart + Checkout only, injected via hooks)
   ========================================================================== */
.ems-wc-header {
  padding: 18px 0 10px;
  margin: 0 0 26px;
}

.ems-wc-header__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0 0 14px;
  font-size: 13px;
  color: var(--ems-muted);
  line-height: 1.4;
}

.ems-wc-header__crumbs a {
  color: var(--ems-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ems-wc-header__crumbs a:hover {
  color: var(--ems-orange);
}

.ems-wc-header__crumbs span[aria-hidden="true"] {
  font-size: 12px;
  color: #c4c8cf;
  line-height: 1;
}

.ems-wc-header__crumbs-current {
  color: var(--ems-ink);
  font-weight: 600;
}

.ems-wc-header__title-block {
  padding: 14px 0 22px;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--ems-border-light);
}

.ems-wc-header__title {
  margin: 0 0 8px !important;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.08;
  color: var(--ems-ink) !important;
}

.ems-wc-header__subtitle {
  margin: 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  letter-spacing: 0.002em;
}

.ems-wc-header__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--ems-soft);
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  overflow: hidden;
  counter-reset: step;
}

.ems-wc-header__step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-right: 1px solid var(--ems-border-light);
  color: var(--ems-muted);
  transition: all 0.2s ease;
}

.ems-wc-header__step:last-child {
  border-right: 0;
}

.ems-wc-header__step-index {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--ems-border);
  color: var(--ems-muted);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

.ems-wc-header__step-label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.25;
}

.ems-wc-header__step--done {
  color: #4b5563;
}

.ems-wc-header__step--done .ems-wc-header__step-index {
  background: #e6e9ef;
  border-color: #c9cfd8;
  color: #4b5563;
}

.ems-wc-header__step--current {
  background: #ffffff;
  color: var(--ems-orange-hover);
}

.ems-wc-header__step--current .ems-wc-header__step-index {
  background: var(--ems-orange);
  border-color: var(--ems-orange);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(242, 97, 34, 0.12);
}

@media (max-width: 768px) {
  .ems-wc-header {
    padding: 14px 0 6px;
    margin: 0 0 20px;
  }

  .ems-wc-header__title-block {
    padding: 12px 0 18px;
    margin: 0 0 18px;
  }

  .ems-wc-header__subtitle {
    font-size: 14px;
    line-height: 1.65;
  }

  .ems-wc-header__steps {
    border-radius: var(--ems-radius);
  }

  .ems-wc-header__step {
    padding: 12px 14px;
    gap: 10px;
  }

  .ems-wc-header__step-label {
    font-size: 12.5px;
  }
}

@media (max-width: 540px) {
  .ems-wc-header__crumbs {
    font-size: 12px;
    gap: 6px;
  }

  .ems-wc-header__title {
    font-size: 28px;
  }

  .ems-wc-header__steps {
    grid-template-columns: 1fr;
  }

  .ems-wc-header__step {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--ems-border-light);
  }

  .ems-wc-header__step:last-child {
    border-bottom: 0;
  }
}

/* ==========================================================================
   WooCommerce: Breadcrumbs & Notices
   ========================================================================== */
.ems-crumbs,
.woocommerce .woocommerce-breadcrumb {
  padding: 20px 0 12px;
  font-size: 13px;
  color: var(--ems-muted);
  line-height: 1.4;
}

.ems-crumbs a,
.woocommerce .woocommerce-breadcrumb a {
  color: var(--ems-muted);
  transition: color 0.15s ease;
}

.ems-crumbs a:hover,
.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--ems-orange);
}

.ems-crumbs span,
.woocommerce .woocommerce-breadcrumb {
  color: var(--ems-ink);
  font-weight: 500;
}

.woocommerce .woocommerce-breadcrumb {
  font-weight: 400;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--ems-border) !important;
  border-left: 4px solid var(--ems-orange) !important;
  border-top-color: var(--ems-border) !important;
  background: var(--ems-soft) !important;
  border-radius: var(--ems-radius) !important;
  padding: 16px 50px !important;
  margin: 0 0 24px !important;
  font-size: 14px !important;
  color: #374151 !important;
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--ems-orange) !important;
}

.woocommerce-error {
  border-left-color: #dc2626 !important;
}

.woocommerce-error::before {
  color: #dc2626 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  font-weight: 600;
  color: var(--ems-orange) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   WooCommerce: Global Buttons
   ========================================================================== */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #content input.button,
.woocommerce-page .button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 11px 22px !important;
  border: 1px solid var(--ems-orange) !important;
  border-radius: var(--ems-radius) !important;
  background: var(--ems-orange) !important;
  color: #ffffff !important;
  font-family: var(--ems-font) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ems-orange-hover) !important;
  border-color: var(--ems-orange-hover) !important;
  color: #ffffff !important;
}

.woocommerce .button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.checkout-button {
  padding: 13px 28px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  width: 100% !important;
  border-radius: var(--ems-radius) !important;
}

.woocommerce .button.button--outline,
.woocommerce a.button.wc-backward,
.woocommerce button.button.wc-backward {
  background: #ffffff !important;
  color: var(--ems-ink) !important;
  border: 1px solid var(--ems-border) !important;
}

.woocommerce a.button.wc-backward:hover,
.woocommerce button.button.wc-backward:hover {
  background: var(--ems-soft) !important;
  border-color: var(--ems-border) !important;
  color: var(--ems-ink) !important;
}

.woocommerce .button:disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
}

/* ==========================================================================
   WooCommerce: Global Forms & Inputs
   ========================================================================== */
.woocommerce form .form-row {
  padding: 4px 0 !important;
  margin: 0 0 14px !important;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

.woocommerce form .form-row label .required,
.woocommerce-page form .form-row label .required {
  color: var(--ems-orange);
  font-weight: 700;
  margin-left: 2px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce form input[type="email"],
.woocommerce form input[type="number"],
.woocommerce form input[type="password"],
.woocommerce form input[type="search"],
.woocommerce form input[type="tel"],
.woocommerce form input[type="text"],
.woocommerce form input[type="url"],
.woocommerce form select,
.woocommerce form textarea,
.woocommerce-page form input[type="email"],
.woocommerce-page form input[type="password"],
.woocommerce-page form input[type="tel"],
.woocommerce-page form input[type="text"],
.woocommerce-page form select,
.woocommerce-page form textarea,
.select2-container--default .select2-selection--single,
.select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 44px !important;
  padding: 10px 14px !important;
  border: 1px solid var(--ems-border) !important;
  border-radius: var(--ems-radius) !important;
  background: #ffffff !important;
  color: var(--ems-ink) !important;
  font-family: var(--ems-font) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
}

.woocommerce form textarea,
.woocommerce-page form textarea {
  min-height: 110px !important;
  resize: vertical !important;
  line-height: 1.55 !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form input:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  outline: none !important;
  border-color: var(--ems-orange) !important;
  box-shadow: 0 0 0 3px rgba(242, 97, 34, 0.1) !important;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form textarea::placeholder,
.woocommerce-page form textarea::placeholder {
  color: #9ca3af !important;
}

.woocommerce form select,
.woocommerce-page form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 38px !important;
}

.select2-container--default .select2-selection--single {
  height: 44px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  padding-left: 14px !important;
  font-size: 14px !important;
  color: var(--ems-ink) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px !important;
  right: 10px !important;
}

.select2-dropdown {
  border: 1px solid var(--ems-border) !important;
  border-radius: var(--ems-radius) !important;
  font-family: var(--ems-font) !important;
  font-size: 13.5px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.select2-results__option--highlighted[aria-selected] {
  background: var(--ems-orange) !important;
}

/* Checkboxes & radios */
.woocommerce form .form-row .input-checkbox,
.woocommerce form .form-row input[type="checkbox"],
.woocommerce-privacy-policy-text input,
.woocommerce-form__input-checkbox {
  width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  border: 1.5px solid var(--ems-border) !important;
  border-radius: 3px !important;
  margin-right: 8px !important;
  accent-color: var(--ems-orange) !important;
}

.woocommerce form .form-row .checkbox,
.woocommerce form .form-row .radio {
  font-size: 13px !important;
  color: #4b5563 !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-text {
  font-size: 12.5px !important;
  line-height: 1.6 !important;
  color: #6b7280 !important;
  margin: 0 0 12px !important;
}

.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-text a {
  color: var(--ems-orange) !important;
  text-decoration: underline;
}

/* ==========================================================================
   WooCommerce: Single Product Page
   ========================================================================== */
.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
  padding: 18px 0 36px !important;
  margin: 0 0 24px !important;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce div.product div.images {
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  padding: 18px;
}

.woocommerce div.product div.images img {
  border-radius: var(--ems-radius);
  border: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  margin-top: 10px;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  width: calc(25% - 8px);
  margin-right: 10px !important;
  margin-top: 12px !important;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
  margin-right: 0 !important;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li img {
  border-radius: 6px !important;
  border: 1px solid var(--ems-border-light) !important;
  opacity: 0.75;
  transition: all 0.2s ease;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li img.flex-active,
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: var(--ems-orange) !important;
}

.woocommerce div.product .product_title {
  margin: 0 0 14px !important;
  font-size: clamp(28px, 3vw, 38px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  color: var(--ems-ink) !important;
  line-height: 1.12;
}

.woocommerce div.product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.woocommerce .star-rating {
  color: #f59e0b !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  font-family: star !important;
}

.woocommerce div.product .woocommerce-review-link {
  font-size: 13px;
  color: var(--ems-muted);
}

.woocommerce div.product .woocommerce-review-link:hover {
  color: var(--ems-orange);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 8px 0 22px !important;
  padding: 0;
  color: var(--ems-orange) !important;
  font-size: clamp(24px, 2.5vw, 30px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  line-height: 1;
}

.woocommerce div.product p.price .woocommerce-Price-currencySymbol,
.woocommerce div.product span.price .woocommerce-Price-currencySymbol {
  font-weight: 700;
}

.woocommerce div.product .price del {
  font-size: 0.65em;
  font-weight: 600;
  color: #9ca3af;
  margin-right: 8px;
  opacity: 0.85;
}

.woocommerce div.product .price ins {
  text-decoration: none;
  background: none;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: #4b5563 !important;
  margin: 0 0 22px;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
  margin: 0 0 12px;
}

.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  margin: 0 0 18px;
  padding: 22px 0 20px;
  border-top: 1px solid var(--ems-border-light);
  border-bottom: 1px solid var(--ems-border-light);
}

.woocommerce div.product form.cart.variations_form {
  display: block;
}

.woocommerce div.product form.cart .variations {
  width: 100%;
  margin: 0 0 18px;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.woocommerce div.product form.cart .variations tr {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.woocommerce div.product form.cart .variations tr th {
  line-height: 0em;
  text-align: left;
}

.woocommerce div.product form.cart .variations td {
  padding: 0;
  vertical-align: middle;
  border: 0;
  line-height: 0em;
  
}

.woocommerce div.product form.cart .variations td.label label {
  display: block;
  margin: 0;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.woocommerce div.product form.cart .variations td.value {
  position: relative;
}

.woocommerce div.product form.cart .variations select {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 0 40px 0 13px;
  border: 1px solid var(--ems-border);
  border-radius: var(--ems-radius);
  background-color: #ffffff;
  color: var(--ems-ink);
  font-size: 14px;
  line-height: 1.2;
}

.woocommerce div.product form.cart .variations select:focus {
  border-color: var(--ems-orange);
  outline: 2px solid rgba(245, 132, 31, 0.16);
  outline-offset: 1px;
}

.woocommerce div.product form.cart .reset_variations {
  display: inline-block;
  margin: 8px 0 0;
  color: var(--ems-muted);
  font-size: 12px;
  text-decoration: underline;
}

.woocommerce div.product form.cart .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.woocommerce div.product form.cart .single_variation {
  min-height: 24px;
  margin: 0;
}

.woocommerce div.product form.cart .single_variation .price {
  margin: 0 !important;
  font-size: 22px !important;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0 !important;
  display: flex;
  align-items: center;
  height: 46px;
}

.woocommerce .quantity input.qty,
.woocommerce-page .quantity input.qty,
.woocommerce-cart .quantity input.qty {
  width: 62px !important;
  min-width: 62px !important;
  min-height: 46px !important;
  height: 46px !important;
  padding: 0 10px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: 1px solid var(--ems-border) !important;
  border-radius: var(--ems-radius) !important;
  background: #ffffff !important;
  color: var(--ems-ink) !important;
  -moz-appearance: textfield;
  box-sizing: border-box !important;
  flex: none;
}

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

.woocommerce div.product .single_add_to_cart_button {
  height: 46px !important;
  padding: 0 28px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  margin: 0 !important;
}

.woocommerce div.product .product_meta {
  font-size: 13px;
  line-height: 2;
  color: #6b7280;
  padding-top: 8px;
}

.woocommerce div.product .product_meta > span {
  display: block;
}

.woocommerce div.product .product_meta strong {
  font-weight: 700;
  color: #374151;
  margin-right: 6px;
}

.woocommerce div.product .product_meta a {
  color: var(--ems-muted);
  transition: color 0.15s ease;
}

.woocommerce div.product .product_meta a:hover {
  color: var(--ems-orange);
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding: 18px 0 10px;
  margin: 20px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 !important;
  margin: 0 0 0 !important;
  list-style: none !important;
  border-bottom: 1px solid var(--ems-border-light) !important;
  background: none !important;
  overflow: visible !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  display: inline-flex;
  padding: 0 !important;
  margin: 0 28px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ems-muted);
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
  text-transform: capitalize;
  letter-spacing: 0.005em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--ems-ink);
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ems-ink);
  border-bottom-color: var(--ems-orange);
  font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 28px 0 10px !important;
  margin: 0 !important;
  font-size: 14.5px;
  line-height: 1.75;
  color: #374151;
  background: transparent !important;
  border: 0 !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ems-ink);
}

.woocommerce div.product .woocommerce-tabs .panel p {
  margin: 0 0 14px;
}

.woocommerce div.product .woocommerce-tabs .panel table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}

.woocommerce div.product .woocommerce-tabs .panel table th,
.woocommerce div.product .woocommerce-tabs .panel table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--ems-border-light);
}

.woocommerce div.product .woocommerce-tabs .panel table th {
  width: 30%;
  background: var(--ems-soft);
  font-weight: 700;
  color: #374151;
}

/* Related Products */
.woocommerce .related.products,
.woocommerce .upsells.products {
  padding: 28px 0 20px;
  margin: 20px 0 0 !important;
  border-top: 1px solid var(--ems-border-light);
}

.woocommerce .related.products h2,
.woocommerce .upsells.products h2 {
  margin: 0 0 24px !important;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800 !important;
  letter-spacing: -0.015em;
  color: var(--ems-ink);
}

.woocommerce .related ul.products,
.woocommerce .upsells ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* ==========================================================================
   WooCommerce: Cart Page
   ========================================================================== */
.woocommerce-cart .ems-section,
.woocommerce-checkout .ems-section,
.woocommerce-account .ems-section {
  padding: 32px 0 48px !important;
  margin-top: 20px;
}

.woocommerce-cart .cart--empty-message {
  padding: 40px;
  text-align: center;
  background: var(--ems-soft);
  border: 1px dashed var(--ems-border);
  border-radius: var(--ems-radius-lg);
}

.woocommerce-cart-form {
  margin: 0 0 32px !important;
}

.woocommerce table.shop_table,
.woocommerce-cart table.cart {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 0 0 24px !important;
  border: 1px solid var(--ems-border-light) !important;
  border-radius: var(--ems-radius-lg) !important;
  overflow: hidden !important;
  background: #ffffff;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.woocommerce table.shop_table thead,
.woocommerce-cart table.cart thead {
  background: var(--ems-soft);
}

.woocommerce table.shop_table thead th,
.woocommerce-cart table.cart thead th {
  padding: 16px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ems-border-light) !important;
  font-size: 12.5px;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #374151 !important;
  text-align: left !important;
  line-height: 1.3;
}

.woocommerce table.shop_table tbody tr,
.woocommerce-cart table.cart tbody tr {
  transition: background 0.15s ease;
}

.woocommerce table.shop_table tbody tr:hover,
.woocommerce-cart table.cart tbody tr:hover {
  background: #fafbfc;
}

.woocommerce table.shop_table tbody td,
.woocommerce-cart table.cart tbody td {
  padding: 18px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ems-border-light) !important;
  vertical-align: middle !important;
  color: #374151 !important;
  line-height: 1.45;
}

.woocommerce table.shop_table tbody tr:last-child td {
  border-bottom: 0 !important;
}

.woocommerce-cart table.cart .product-remove {
  width: 42px;
  padding: 16px 10px 16px 18px !important;
}

.woocommerce-cart table.cart .product-remove a.remove {
  display: inline-grid !important;
  place-items: center !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 1px solid var(--ems-border) !important;
  color: #9ca3af !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  background: #ffffff;
  transition: all 0.15s ease !important;
}

.woocommerce-cart table.cart .product-remove a.remove:hover {
  background: #fee2e2 !important;
  border-color: #fca5a5 !important;
  color: #dc2626 !important;
}

.woocommerce-cart table.cart .product-thumbnail {
  width: 92px;
  padding-right: 10px !important;
}

.woocommerce-cart table.cart .product-thumbnail img {
  width: 78px !important;
  height: 78px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid var(--ems-border-light) !important;
  background: var(--ems-soft);
  padding: 2px;
}

.woocommerce-cart table.cart .product-name {
  font-weight: 600 !important;
  color: var(--ems-ink) !important;
  min-width: 200px;
}

.woocommerce-cart table.cart .product-name a {
  color: var(--ems-ink) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35;
  display: inline-block;
  transition: color 0.15s ease;
}

.woocommerce-cart table.cart .product-name a:hover {
  color: var(--ems-orange) !important;
}

.woocommerce-cart table.cart dl.variation {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--ems-muted);
  line-height: 1.5;
}

.woocommerce-cart table.cart dl.variation dt {
  display: inline;
  font-weight: 600;
}

.woocommerce-cart table.cart dl.variation dd {
  display: inline;
  margin: 0 8px 0 4px;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal,
.woocommerce-checkout .cart-subtotal td,
.woocommerce-checkout .order-total td {
  font-weight: 700 !important;
  color: var(--ems-ink) !important;
  font-size: 15px !important;
  white-space: nowrap;
}

.woocommerce-cart table.cart td.product-quantity .quantity {
  float: none;
  display: inline-flex;
}

/* Cart actions row */
.woocommerce-cart table.cart tbody td.actions {
  padding: 18px !important;
  background: var(--ems-soft);
  border-top: 1px solid var(--ems-border-light) !important;
  border-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.woocommerce-cart .coupon label {
  display: none;
}

.woocommerce-cart .coupon input[type="text"] {
  min-width: 220px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--ems-border);
  border-radius: var(--ems-radius);
  background: #ffffff;
  color: var(--ems-ink);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.15s ease;
}

.woocommerce-cart .coupon input[type="text"]:focus {
  border-color: var(--ems-orange);
}

.woocommerce-cart .coupon button.button {
  height: 42px;
  padding: 0 20px !important;
}

.woocommerce-cart .actions .button.wc-backward {
  height: 42px !important;
  padding: 0 20px !important;
}

/* Cart totals + collaterals */
.woocommerce-cart .cart-collaterals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
  margin: 0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce .cart_totals {
  width: 100% !important;
  float: none !important;
  background: #ffffff !important;
  border: 1px solid var(--ems-border-light) !important;
  border-radius: var(--ems-radius-lg) !important;
  padding: 26px 28px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  font-size: 14px;
  margin: 0 !important;
}

.woocommerce .cart_totals h2 {
  margin: 0 0 18px !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ems-ink) !important;
}

.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .order-total td,
.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
  padding: 14px 0 !important;
  border-top: 2px solid var(--ems-border-light) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.woocommerce .cart_totals .order-total td,
.woocommerce .cart_totals .order-total .woocommerce-Price-amount {
  color: var(--ems-orange) !important;
  font-size: 22px !important;
}

.woocommerce .cart_totals table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 12px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ems-border-light) !important;
  background: transparent !important;
  text-align: left;
  vertical-align: middle;
}

.woocommerce .cart_totals table th {
  font-size: 13.5px;
  font-weight: 600;
  color: #4b5563;
}

.woocommerce .cart_totals table td {
  text-align: right !important;
  font-weight: 700;
  color: var(--ems-ink);
}

.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce .wc-proceed-to-checkout {
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce a.button.checkout-button {
  padding: 14px 24px !important;
  margin-top: 8px !important;
  font-size: 14.5px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  width: 100% !important;
}

/* Cross-sells */
.woocommerce-cart .cross-sells {
  float: none !important;
  width: 100% !important;
}

.woocommerce-cart .cross-sells h2 {
  margin: 0 0 18px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ems-ink) !important;
}

.woocommerce-cart .cross-sells ul.products {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
}

/* Shipping calculator */
.woocommerce-shipping-calculator {
  margin-top: 18px;
  padding: 18px;
  background: var(--ems-soft);
  border-radius: var(--ems-radius);
  border: 1px solid var(--ems-border-light);
}

.woocommerce-shipping-calculator a.shipping-calculator-button {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ems-orange) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-shipping-calculator .shipping-calculator-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ems-border-light);
  display: grid;
  gap: 10px;
}

/* ==========================================================================
   WooCommerce: Checkout Page
   ========================================================================== */
.woocommerce-checkout .checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
  margin: 0 !important;
}

.woocommerce-checkout .checkout > .ems-section__head,
.woocommerce-checkout .checkout > .ems-form-grid {
  grid-column: 1 / -1;
}

.woocommerce-checkout .checkout > .ems-section__head {
  margin-bottom: -8px;
}

.woocommerce-checkout .ems-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  min-width: 0;
}

.woocommerce-checkout .checkout .col2-set {
  width: 100% !important;
  float: none !important;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.woocommerce-checkout .checkout .col-1,
.woocommerce-checkout .checkout .col-2 {
  width: 100% !important;
  float: none !important;
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.woocommerce-checkout .woocommerce h3 {
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ems-ink) !important;
  border-bottom: 1px solid var(--ems-border-light);
}

.woocommerce-checkout form .is-active input,
.woocommerce-checkout form select {
  padding-top: 20px !important;
  padding-left: 10px !important;
}

.woocommerce-checkout #customer_details .form-row {
  width: 100%;
  float: none;
  clear: both;
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce-checkout #customer_details .form-row.form-row-first,
.woocommerce-checkout #customer_details .form-row.form-row-last {
  width: calc(50% - 8px);
}

.woocommerce-checkout #customer_details .form-row.form-row-first {
  float: left;
  clear: none;
}

.woocommerce-checkout #customer_details .form-row.form-row-last {
  float: right;
  clear: none;
}

.woocommerce-checkout #customer_details .form-row label {
  display: block;
  margin: 0 0 7px;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.woocommerce-checkout #customer_details .form-row label .required {
  color: var(--ems-orange);
  text-decoration: none;
}

.woocommerce-checkout #customer_details .woocommerce-input-wrapper {
  position: relative;
}

.select2-container--default .select2-selection--single, .select2-container .select2-selection--single {
  padding: 0 !important;
}

.woocommerce-checkout #customer_details .form-row input.input-text,
.woocommerce-checkout #customer_details .form-row textarea,
.woocommerce-checkout #customer_details .form-row select {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 11px 13px !important;
  border: 1px solid var(--ems-border) !important;
  border-radius: var(--ems-radius) !important;
  outline: 0;
  background: #ffffff !important;
  color: var(--ems-ink) !important;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.woocommerce-checkout #customer_details .form-row textarea {
  min-height: 96px;
  resize: vertical;
}

.woocommerce-checkout #customer_details .form-row input.input-text:focus,
.woocommerce-checkout #customer_details .form-row textarea:focus,
.woocommerce-checkout #customer_details .form-row select:focus {
  border-color: var(--ems-orange) !important;
  box-shadow: 0 0 0 3px var(--ems-orange-light) !important;
}

.woocommerce-checkout #customer_details .form-row .select2-container {
  width: 100% !important;
}

.woocommerce-checkout #customer_details .form-row .select2-selection--single {
  height: 46px;
  border: 1px solid var(--ems-border) !important;
  border-radius: var(--ems-radius) !important;
  background: #ffffff;
}

.woocommerce-checkout #customer_details .form-row .select2-selection__rendered {
  padding: 6px 13px;
  color: var(--ems-ink);
  line-height: 32px !important;
}

.woocommerce-checkout #customer_details .form-row .select2-selection__arrow {
  height: 44px;
  right: 8px;
}

.woocommerce-checkout #customer_details .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.woocommerce-checkout #customer_details .woocommerce-form__label-for-checkbox input {
  accent-color: var(--ems-orange);
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields,
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--ems-border-light);
}

.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label, .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input input:-webkit-autofill+label, .wc-block-components-text-input.is-active label {
  transform: scale(.62) !important;
}

.wc-blocks-components-select .wc-blocks-components-select__label {
  font-size: 9px !important;
}

.woocommerce-checkout .col2-set .col-1 h3::before,
.woocommerce-checkout .col2-set .col-2 h3::before {
  content: "01";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ems-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  vertical-align: middle;
}

.woocommerce-checkout .col2-set .col-2 h3::before {
  content: "02";
}

.woocommerce-checkout #order_review_heading {
  display: none;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout .checkout .order-review-wrap {
  width: 100% !important;
  float: none !important;
  background: #ffffff !important;
  border: 1px solid var(--ems-border-light) !important;
  border-radius: var(--ems-radius-lg) !important;
  padding: 28px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 96px;
}

.woocommerce-checkout #order_review_heading_custom {
  margin: 0 0 18px;
  padding: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ems-ink);
  border-bottom: 1px solid var(--ems-border-light);
}

.woocommerce-checkout #order_review_heading_custom::before {
  content: "03";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ems-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  vertical-align: middle;
}

.woocommerce-checkout #order_review table.shop_table,
.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  border-radius: var(--ems-radius) !important;
  margin: 0 0 24px !important;
  box-shadow: none !important;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
  padding: 13px 14px !important;
  border-color: var(--ems-border-light) !important;
}

.woocommerce-checkout #order_review table.shop_table tfoot th {
  color: #4b5563 !important;
  font-weight: 600 !important;
}

.woocommerce-checkout #order_review table.shop_table tfoot td {
  color: var(--ems-ink) !important;
  font-weight: 700 !important;
}

.woocommerce-checkout #order_review table.shop_table tr.order-total th,
.woocommerce-checkout #order_review table.shop_table tr.order-total td {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
  border-top: 2px solid var(--ems-border-light) !important;
  color: var(--ems-orange) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-name {
  font-weight: 600 !important;
  color: var(--ems-ink) !important;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-name img {
  width: 46px !important;
  height: 46px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  border: 1px solid var(--ems-border-light) !important;
  margin-right: 10px !important;
  float: left;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-quantity {
  font-size: 12.5px !important;
  color: var(--ems-muted) !important;
  margin-top: 2px;
}

.woocommerce-checkout #payment {
  background: var(--ems-soft) !important;
  border-radius: var(--ems-radius) !important;
  border: 1px solid var(--ems-border-light) !important;
  padding: 20px !important;
  margin: 0 0 18px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  border-bottom: 1px solid var(--ems-border-light) !important;
}

.woocommerce-order-received li.woocommerce-order-overview__payment-method {
  display: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ems-border-light);
  margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: 0;
}

.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ems-ink) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.woocommerce-checkout #payment div.payment_box {
  margin-top: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: var(--ems-radius);
  border: 1px solid var(--ems-border);
  font-size: 13.5px;
  line-height: 1.6;
  color: #4b5563;
}

.woocommerce-checkout #payment div.form-row.place-order {
  padding: 18px 0 0 !important;
  margin: 18px 0 0 !important;
}

.woocommerce-checkout #place_order {
  padding: 15px 28px !important;
  font-size: 15px !important;
  min-height: 50px !important;
  width: 100% !important;
  font-weight: 700 !important;
}

.woocommerce-checkout .ems-payment-note {
  margin: 12px 0 8px;
  padding: 12px 14px;
  background: var(--ems-soft);
  border-left: 3px solid var(--ems-orange);
  color: #4b5563;
  font-size: 12.5px;
  line-height: 1.55;
}

.woocommerce-checkout .ems-payment-note {
  margin: 0;
}

/* Login + coupon toggle */
.woocommerce-form-login-toggle,
.woocommerce-form-coupon-toggle {
  margin: 0 0 22px !important;
  padding: 14px 18px !important;
  background: var(--ems-soft) !important;
  border: 1px solid var(--ems-border-light) !important;
  border-radius: var(--ems-radius) !important;
  font-size: 13.5px !important;
  color: #4b5563 !important;
}

.woocommerce-form-login-toggle a,
.woocommerce-form-coupon-toggle a {
  font-weight: 700 !important;
  color: var(--ems-orange) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout .woocommerce-form-coupon {
  display: none;
  padding: 24px;
  margin: 0 0 22px;
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.woocommerce-checkout .woocommerce-form-login p,
.woocommerce-checkout .woocommerce-form-coupon p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.55;
}

.woocommerce-checkout .woocommerce-form-login .button,
.woocommerce-checkout .woocommerce-form-coupon .button {
  height: 44px !important;
}

/* ==========================================================================
   WooCommerce: Order Received / Thank You Page
   ========================================================================== */
.woocommerce-order-received .woocommerce-thankyou-order-received,
.woocommerce-checkout.woocommerce-order-received .woocommerce-thankyou-order-received {
  padding: 26px 28px !important;
  background: #ecfdf5 !important;
  border: 1px solid #a7f3d0 !important;
  border-left: 4px solid #10b981 !important;
  border-radius: var(--ems-radius) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #065f46 !important;
  margin: 0 0 24px !important;
}

.woocommerce ul.woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px !important;
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.woocommerce ul.woocommerce-order-overview li {
  padding: 20px 22px !important;
  border-right: 1px solid var(--ems-border-light) !important;
  border-bottom: 0 !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5;
  color: var(--ems-muted);
}

.woocommerce ul.woocommerce-order-overview li:last-child {
  border-right: 0 !important;
}

.woocommerce ul.woocommerce-order-overview li strong {
  display: block;
  margin-top: 4px;
  font-size: 15px !important;
  color: var(--ems-ink) !important;
  font-weight: 800 !important;
}

.woocommerce-customer-details,
.woocommerce-order-details {
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  padding: 26px 28px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.woocommerce-customer-details h2,
.woocommerce-order-details h2 {
  margin: 0 0 18px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ems-ink) !important;
}

.woocommerce-customer-details address {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  padding: 14px 16px;
  background: var(--ems-soft);
  border-radius: var(--ems-radius);
}

/* ==========================================================================
   WooCommerce: My Account Page
   ========================================================================== */
.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 18px 0 36px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 96px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px !important;
  border-radius: 6px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #4b5563 !important;
  text-decoration: none !important;
  line-height: 1.35;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--ems-soft) !important;
  color: var(--ems-ink) !important;
  border-color: var(--ems-border-light);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--ems-orange-light) !important;
  color: var(--ems-orange-hover) !important;
  font-weight: 700 !important;
  border-color: rgba(242, 97, 34, 0.2);
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 100% !important;
  float: none !important;
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 14px;
}

.woocommerce-account .woocommerce-MyAccount-content p:first-of-type {
  font-size: 14.5px;
  line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content p a {
  font-weight: 600;
  color: var(--ems-orange) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-Address h3,
.woocommerce-account .woocommerce-EditAccountForm h3 {
  margin: 0 0 18px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ems-ink) !important;
}

.woocommerce-account .woocommerce-MyAccount-orders,
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  width: 100% !important;
  margin: 0 0 18px !important;
}

.woocommerce-account .woocommerce-MyAccount-downloads {
  margin: 0 0 18px !important;
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 18px;
}

.woocommerce-account .woocommerce-Address {
  background: var(--ems-soft);
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius);
  padding: 20px;
}

.woocommerce-account .woocommerce-Address address {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  padding: 0;
  margin: 0 0 14px;
}

.woocommerce-account .woocommerce-Address .edit {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ems-orange) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-account .woocommerce-EditAccountForm .form-row,
.woocommerce-account .woocommerce-form-login .form-row,
.woocommerce-account .woocommerce-form-register .form-row,
.woocommerce-account .woocommerce-form-reset-password .form-row,
.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row {
  margin: 0 0 16px !important;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
  margin: 22px 0 4px;
  padding: 20px 22px;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius);
  background: var(--ems-soft);
}

.woocommerce-account .woocommerce-EditAccountForm legend {
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ems-ink);
}

.woocommerce-account .woocommerce-button {
  margin-top: 8px;
}

/* My account login/register screen */
.woocommerce.woocommerce-form-login--layout {
  grid-template-columns: 1fr !important;
  max-width: none;
  padding: 18px 0 36px;
}

.woocommerce-account.woocommerce-page .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 0;
}

.woocommerce-account.woocommerce-page .u-column1,
.woocommerce-account.woocommerce-page .u-column2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: var(--ems-radius-lg);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.woocommerce-account.woocommerce-page .u-column1 h2,
.woocommerce-account.woocommerce-page .u-column2 h2 {
  margin: 0 0 18px !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  color: var(--ems-ink) !important;
}

.woocommerce-account.woocommerce-page .lost_password {
  margin: 16px 0 0 !important;
  font-size: 13px;
}

.woocommerce-account.woocommerce-page .lost_password a {
  color: var(--ems-orange) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   WooCommerce: Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .woocommerce-cart .cart-collaterals {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .woocommerce ul.woocommerce-order-overview {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .woocommerce ul.woocommerce-order-overview li:nth-child(2) {
    border-right: 0 !important;
  }

  .woocommerce ul.woocommerce-order-overview li:nth-child(-n+2) {
    border-bottom: 1px solid var(--ems-border-light) !important;
  }
}

@media (max-width: 960px) {
  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .woocommerce div.product div.images {
    max-width: 560px;
    margin: 0 auto;
  }

  .woocommerce-checkout .checkout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .woocommerce-checkout .ems-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .woocommerce-checkout #order_review,
  .woocommerce-checkout .checkout .order-review-wrap {
    position: static;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .woocommerce-account.woocommerce-page .u-columns {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products,
  .woocommerce-cart .cross-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .woocommerce-cart table.cart thead th {
    display: none !important;
  }

  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr,
  .woocommerce-cart table.cart td {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-cart table.cart tbody tr {
    padding: 18px;
    border-bottom: 1px solid var(--ems-border-light);
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "remove thumb name"
      "remove thumb price"
      "remove thumb qty"
      "remove thumb subtotal";
    gap: 8px 14px;
    align-items: start;
  }

  .woocommerce-cart table.cart tbody tr:last-child {
    border-bottom: 0;
  }

  .woocommerce-cart table.cart tbody td {
    padding: 0 !important;
    border: 0 !important;
  }

  .woocommerce-cart table.cart .product-remove {
    grid-area: remove;
    padding: 2px 0 0 !important;
    width: auto;
  }

  .woocommerce-cart table.cart .product-thumbnail {
    grid-area: thumb;
    width: auto;
    padding: 0 !important;
  }

  .woocommerce-cart table.cart .product-thumbnail img {
    width: 90px !important;
    height: 90px !important;
  }

  .woocommerce-cart table.cart .product-name {
    grid-area: name;
    min-width: 0;
  }

  .woocommerce-cart table.cart .product-price {
    grid-area: price;
  }

  .woocommerce-cart table.cart .product-quantity {
    grid-area: qty;
  }

  .woocommerce-cart table.cart .product-subtotal {
    grid-area: subtotal;
  }

  .woocommerce-cart table.cart tbody td.actions {
    grid-column: 1 / -1;
    padding: 16px 0 0 !important;
    border-top: 1px solid var(--ems-border-light) !important;
    margin-top: 6px;
    flex-direction: column;
    align-items: stretch;
    background: transparent;
  }

  .woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce-cart .coupon input[type="text"] {
    width: 100%;
    min-width: 0;
  }

  .woocommerce-cart .coupon button.button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .woocommerce-checkout #customer_details .form-row.form-row-first,
  .woocommerce-checkout #customer_details .form-row.form-row-last {
    width: 100%;
    float: none;
    clear: both;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin-right: 18px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 13px;
    padding: 12px 0;
  }

  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 22px 0 10px !important;
  }

  .woocommerce .cart_totals,
  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2,
  .woocommerce-checkout #order_review,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-page .u-column1,
  .woocommerce-account .woocommerce-page .u-column2,
  .woocommerce-order-details,
  .woocommerce-customer-details {
    padding: 22px 20px !important;
  }

  .woocommerce-checkout h3 {
    font-size: 18px !important;
  }

  .woocommerce table.shop_table thead th,
  .woocommerce table.shop_table tbody td,
  .woocommerce-cart table.cart tbody td {
    font-size: 13.5px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.woocommerce-order-overview {
    grid-template-columns: 1fr !important;
  }

  .woocommerce ul.woocommerce-order-overview li {
    border-right: 0 !important;
    border-bottom: 1px solid var(--ems-border-light) !important;
  }

  .woocommerce ul.woocommerce-order-overview li:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 540px) {
  .woocommerce .related ul.products,
  .woocommerce .upsells ul.products,
  .woocommerce-cart .cross-sells ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce div.product .product_title {
    font-size: 26px !important;
  }

  .woocommerce div.product p.price,
  .woocommerce div.product span.price {
    font-size: 22px !important;
  }

  .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce div.product form.cart .variations tr {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .woocommerce div.product form.cart .variations td.label label {
    font-size: 12px;
  }

  .woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    align-items: stretch;
  }

  .woocommerce div.product form.cart div.quantity {
    width: 100%;
    justify-content: center;
  }

  .woocommerce div.product .single_add_to_cart_button {
    width: 100% !important;
  }

  .woocommerce .woocommerce-breadcrumb,
  .ems-crumbs {
    padding: 16px 0 8px;
    font-size: 12px;
  }

  .woocommerce a.button.checkout-button,
  .woocommerce .button.alt,
  .woocommerce-checkout #place_order {
    padding: 13px 20px !important;
  }

  .woocommerce .cart_totals h2,
  .woocommerce-order-details h2,
  .woocommerce-customer-details h2 {
    font-size: 19px !important;
  }

  .woocommerce .cart_totals .order-total td,
  .woocommerce .cart_totals .order-total .woocommerce-Price-amount {
    font-size: 18px !important;
  }

  .woocommerce table.shop_table tbody td,
  .woocommerce-cart table.cart tbody tr {
    padding: 14px !important;
  }

  .woocommerce-cart table.cart .product-thumbnail img {
    width: 74px !important;
    height: 74px !important;
  }
}

@media (max-width: 1200px) {
  .ems-about-intro,
  .ems-about-why {
    gap: 32px;
  }

  .ems-about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .ems-about-value:nth-child(3) {
    border-right: 0;
  }

  .ems-about-value:nth-child(-n+3) {
    border-bottom: 1px solid #e5e7eb;
  }

  .ems-about-impact__item {
    padding-inline: 16px;
  }
}

@media (max-width: 960px) {
  .ems-about-hero {
    min-height: 470px;
    padding: 30px 0 44px;
  }

  .ems-about-breadcrumbs {
    margin-bottom: 40px;
  }

  .ems-about-intro,
  .ems-about-why {
    grid-template-columns: 1fr;
  }

  .ems-about-intro__content,
  .ems-about-why__content {
    max-width: 100%;
  }

  .ems-about-intro__title,
  .ems-about-intro__text,
  .ems-about-why__title {
    max-width: none;
  }

  .ems-about-impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .ems-about-impact__item:nth-child(2n) {
    border-right: 0;
  }

  .ems-about-impact__item:nth-child(-n+2) {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 768px) {
  .ems-about-hero {
    min-height: 420px;
    padding: 24px 0 34px;
    background-position: 62% center;
  }

  .ems-about-breadcrumbs {
    margin-bottom: 30px;
  }

  .ems-about-hero__title {
    margin-bottom: 14px;
    font-size: clamp(42px, 13vw, 56px);
  }

  .ems-about-hero__lede {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .ems-about-hero__copy,
  .ems-about-intro__text,
  .ems-about-checklist li,
  .ems-about-cta__text {
    font-size: 14px;
  }

  .ems-about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-about-value {
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  .ems-about-value:nth-child(2n) {
    border-right: 0;
  }

  .ems-about-value:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .ems-about-gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .ems-about-gallery__item--screen,
  .ems-about-gallery__item--generator {
    grid-column: span 6;
  }

  .ems-about-gallery__item--barrier,
  .ems-about-gallery__item--chair,
  .ems-about-gallery__item--headphones,
  .ems-about-gallery__item--speaker {
    grid-column: span 3;
  }

  .ems-about-cta {
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ems-about-cta__content {
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .ems-about-hero {
    min-height: 380px;
    background-position: 68% center;
  }

  .ems-about-breadcrumbs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .ems-about-values,
  .ems-about-impact__grid,
  .ems-about-gallery {
    grid-template-columns: 1fr;
  }

  .ems-about-value,
  .ems-about-value:nth-child(2n),
  .ems-about-value:nth-child(3),
  .ems-about-impact__item {
    border-right: 0;
  }

  .ems-about-value {
    padding: 24px 18px;
  }

  .ems-about-value:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .ems-about-impact__item {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .ems-about-impact__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .ems-about-gallery__item--screen,
  .ems-about-gallery__item--barrier,
  .ems-about-gallery__item--chair,
  .ems-about-gallery__item--generator,
  .ems-about-gallery__item--headphones,
  .ems-about-gallery__item--speaker {
    grid-column: span 1;
    height: 170px;
  }

  .ems-about-dark-button,
  .ems-about-cta__button {
    width: 100%;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.ems-contact-hero {
  min-height: 545px;
  padding: 38px 0 56px;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.88) 0%, rgba(7, 9, 12, 0.74) 33%, rgba(7, 9, 12, 0.3) 70%, rgba(7, 9, 12, 0.18) 100%), var(--ems-contact-hero-image) center/cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.ems-contact-hero__content {
  max-width: 490px;
}

.ems-contact-hero__title {
  margin: 0 0 18px;
  font-size: clamp(50px, 7vw, 74px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.ems-contact-hero__lede {
  margin: 0 0 24px;
  max-width: 360px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.ems-contact-hero__copy {
  margin: 0;
  max-width: 386px;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}

.ems-section--contact-main {
  padding: 44px 0 36px;
}

.ems-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  margin-bottom: 32px;
}

.ems-contact-card {
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: 8px;
  padding: 36px 32px;
}

.ems-contact-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
}

.ems-contact-card__intro {
  margin: 0 0 26px;
  max-width: 420px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #6b7280;
}

.ems-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ems-contact-form input,
.ems-contact-form select,
.ems-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--ems-border);
  border-radius: 4px;
  background: #ffffff;
  color: #111827;
  font-size: 13.5px;
  line-height: 1.4;
  font-family: inherit;
  transition: border-color 0.15s ease;
}

.ems-contact-form input:focus,
.ems-contact-form select:focus,
.ems-contact-form textarea:focus {
  outline: none;
  border-color: var(--ems-orange);
}

.ems-contact-form input::placeholder,
.ems-contact-form textarea::placeholder {
  color: #9ca3af;
}

.ems-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.ems-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") right 14px center no-repeat;
  padding-right: 38px;
  color: #9ca3af;
}

.ems-contact-button {
  align-self: flex-start;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid #111827;
  border-radius: 4px;
  background: #111827;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ems-contact-button:hover {
  background: #000000;
  border-color: #000000;
}

.ems-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ems-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ems-contact-detail__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #111827;
}

.ems-contact-detail__icon svg {
  width: 100%;
  height: 100%;
}

.ems-contact-detail__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ems-contact-detail__text strong {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.ems-contact-detail__text strong:hover {
  color: var(--ems-orange);
}

.ems-contact-detail__text span {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6b7280;
}

.ems-contact-divider {
  height: 1px;
  background: var(--ems-border);
  margin: 26px 0;
}

.ems-contact-card__subheading {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
}

.ems-contact-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}

.ems-contact-social {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ems-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111827;
  transition: all 0.2s ease;
}

.ems-contact-social svg {
  width: 15px;
  height: 15px;
}

.ems-contact-social:hover {
  border-color: var(--ems-orange);
  color: var(--ems-orange);
}

.ems-contact-quick {
  background: #111827;
  border-radius: 8px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ems-contact-quick__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
}

.ems-contact-quick__icon svg {
  width: 100%;
  height: 100%;
}

.ems-contact-quick__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.ems-contact-quick__text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.ems-contact-quick__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.ems-contact-quick__button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.ems-contact-banner {
  background: var(--ems-charcoal);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.ems-contact-banner__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ems-contact-banner__icon {
  width: 34px;
  height: 34px;
  color: #ffffff;
  flex-shrink: 0;
}

.ems-contact-banner__icon svg {
  width: 100%;
  height: 100%;
}

.ems-contact-banner__title {
  margin: 0 0 4px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.ems-contact-banner__text {
  margin: 0;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.ems-contact-banner__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 176px;
  padding: 14px 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.ems-contact-banner__button:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
}

.ems-contact-map {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ems-border-light);
  background: #f5f5f5;
  margin-bottom: 32px;
  min-height: 320px;
}

.ems-contact-map__visual {
  position: relative;
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.92) 0%, rgba(245, 245, 245, 0.98) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(0, 0, 0, 0.03) 48px, rgba(0, 0, 0, 0.03) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(0, 0, 0, 0.025) 48px, rgba(0, 0, 0, 0.025) 49px);
}

.ems-contact-map__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(85deg, transparent 0%, rgba(200, 210, 220, 0.35) 18%, rgba(200, 210, 220, 0.18) 30%, transparent 42%),
    linear-gradient(175deg, transparent 0%, rgba(200, 210, 220, 0.3) 22%, rgba(200, 210, 220, 0.15) 34%, transparent 46%),
    linear-gradient(5deg, transparent 50%, rgba(200, 210, 220, 0.28) 62%, rgba(200, 210, 220, 0.14) 72%, transparent 82%);
  opacity: 0.7;
}

.ems-contact-map__visual::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 38%;
  width: 30%;
  height: 3px;
  background: rgba(180, 190, 200, 0.5);
  border-radius: 2px;
  transform: rotate(-8deg);
  box-shadow:
    120px -40px 0 -1px rgba(180, 190, 200, 0.45),
    200px 60px 0 -1px rgba(180, 190, 200, 0.4),
    -60px 120px 0 -1px rgba(180, 190, 200, 0.45),
    80px 160px 0 -1px rgba(180, 190, 200, 0.4);
}

.ems-contact-map__pin {
  position: absolute;
  left: 44%;
  top: 32%;
  width: 56px;
  height: 56px;
  color: #111827;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
  animation: emsMapPinBob 2.4s ease-in-out infinite;
}

.ems-contact-map__pin svg {
  width: 100%;
  height: 100%;
}

@keyframes emsMapPinBob {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, calc(-100% - 6px)); }
}

.ems-contact-map__card {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  max-width: calc(100% - 48px);
  background: #ffffff;
  border: 1px solid var(--ems-border-light);
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ems-contact-map__card .ems-contact-card__title {
  margin-bottom: 14px;
}

.ems-contact-map__address {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  white-space: pre-line;
}

.ems-contact-map__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 20px;
  border: 1px solid var(--ems-border);
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.ems-contact-map__button:hover {
  border-color: var(--ems-orange);
  color: var(--ems-orange);
}

.ems-contact-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f8f8f8;
  border: 1px solid #ececec;
  border-radius: 12px;
}

.ems-contact-trust__item {
  padding: 30px 22px 28px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.ems-contact-trust__item:last-child {
  border-right: 0;
}

.ems-contact-trust__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: #111827;
}

.ems-contact-trust__icon svg {
  width: 100%;
  height: 100%;
}

.ems-contact-trust__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111827;
}

.ems-contact-trust__copy {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: #4b5563;
}

@media (max-width: 1200px) {
  .ems-contact-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .ems-contact-trust__item:nth-child(3) {
    border-right: 0;
  }

  .ems-contact-trust__item:nth-child(-n+3) {
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 960px) {
  .ems-contact-hero {
    min-height: 470px;
    padding: 30px 0 44px;
  }

  .ems-contact-grid {
    grid-template-columns: 1fr;
  }

  .ems-contact-banner {
    padding: 24px;
  }

  .ems-contact-map {
    min-height: auto;
  }

  .ems-contact-map__visual {
      min-height: 280px;
  }

  .ems-contact-map__card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    border-top: 0;
  }

  .ems-contact-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-contact-trust__item:nth-child(3) {
    border-right: 1px solid #e5e7eb;
  }

  .ems-contact-trust__item:nth-child(2n) {
    border-right: 0;
  }

  .ems-contact-trust__item:nth-last-child(-n+1) {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .ems-contact-hero {
    min-height: 420px;
    padding: 24px 0 34px;
    background-position: 62% center;
  }

  .ems-contact-hero__title {
    margin-bottom: 14px;
    font-size: clamp(42px, 13vw, 56px);
  }

  .ems-contact-hero__lede {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .ems-contact-hero__copy,
  .ems-contact-card__intro,
  .ems-contact-detail__text span,
  .ems-contact-quick__text,
  .ems-contact-banner__text,
  .ems-contact-map__address,
  .ems-contact-trust__copy {
    font-size: 14px;
  }

  .ems-contact-card {
    padding: 28px 22px;
  }

  .ems-contact-banner {
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ems-contact-banner__left {
    align-items: flex-start;
  }

  .ems-contact-banner__button {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .ems-contact-hero {
    min-height: 380px;
    background-position: 68% center;
  }

  .ems-contact-trust {
    grid-template-columns: 1fr;
  }

  .ems-contact-trust__item,
  .ems-contact-trust__item:nth-child(2n),
  .ems-contact-trust__item:nth-child(3) {
    border-right: 0;
  }

  .ems-contact-trust__item {
    padding: 24px 18px;
  }

  .ems-contact-trust__item:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .ems-contact-button,
  .ems-contact-banner__button,
  .ems-contact-quick__button {
    width: 100%;
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .woocommerce ul.products,
  .ems-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .ems-mesh-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .ems-mesh-features__item:nth-child(3) {
    border-right: 0;
  }

  .ems-mesh-features__item:nth-child(-n+3) {
    border-bottom: 1px solid var(--ems-border);
  }

  .ems-mesh-options,
  .ems-mesh-examples {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-fp-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ems-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ems-shop-layout {
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }

  .ems-hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ems-trust-float {
    grid-template-columns: repeat(2, 1fr);
    margin: -25px auto 0;
  }

  .ems-trust-float__item:nth-child(2) {
    border-right: 0;
  }

  .ems-trust-float__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--ems-border);
  }

  .ems-fp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ems-brand-mesh-banner {
    grid-template-columns: 1fr;
  }

  .ems-brand-mesh-banner__content {
    padding: 24px;
  }

  .ems-brand-mesh-banner__image {
    min-height: 200px;
  }

  .ems-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-steps-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ems-step-item {
    flex: 0 0 calc(50% - 20px);
  }

  .ems-step-arrow {
    display: none;
  }

  .ems-mesh-card {
    grid-template-columns: 1fr;
  }

  .ems-mesh-card__image {
    height: 180px;
  }

  .ems-hero--mesh {
    min-height: 390px;
  }

  .ems-mesh-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-mesh-features__item {
    border-right: 1px solid var(--ems-border);
    border-bottom: 1px solid var(--ems-border);
  }

  .ems-mesh-features__item:nth-child(2n) {
    border-right: 0;
  }

  .ems-mesh-features__item:nth-last-child(-n+1) {
    border-bottom: 0;
  }

  .ems-mesh-enquiry {
    grid-template-columns: 1fr;
  }

  .ems-mesh-steps {
    flex-wrap: wrap;
  }

  .ems-mesh-step {
    flex: 0 0 calc(50% - 10px);
  }

  .ems-mesh-step-arrow {
    display: none;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ems-menu-toggle {
    display: block;
  }

  .ems-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 14px 24px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--ems-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .ems-nav.is-open {
    display: flex;
  }

  .ems-nav a {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--ems-border-light);
  }

  .ems-cart-link {
    margin-top: 8px;
  }

  .ems-shop-layout {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products,
  .ems-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .ems-fp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ems-hero--mesh {
    padding: 68px 0 58px;
  }

  .ems-mesh-features {
    margin-top: -24px;
    grid-template-columns: 1fr;
  }

  .ems-mesh-features__item,
  .ems-mesh-features__item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--ems-border);
  }

  .ems-mesh-features__item:last-child {
    border-bottom: 0;
  }

  .ems-mesh-options,
  .ems-mesh-examples,
  .ems-mesh-form__grid {
    grid-template-columns: 1fr;
  }

  .ems-mesh-option-card__copy {
    min-height: 0;
  }

  .ems-mesh-steps {
    padding: 16px;
  }

  .ems-mesh-step {
    flex: 0 0 100%;
  }

  .ems-btn-orange--submit {
    width: 100%;
  }

  .ems-hire-callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .ems-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ems-footer__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .ems-trust-float {
    grid-template-columns: 1fr;
  }

  .ems-hero--mesh {
    min-height: 360px;
    padding: 58px 0 52px;
  }

  .ems-hero__content--mesh {
    max-width: 100%;
  }

  .ems-mesh-features__item,
  .ems-mesh-enquiry__panel {
    padding-inline: 16px;
  }

  .ems-mesh-option-card__image {
    height: 150px;
  }

  .ems-mesh-example__image {
    height: 120px;
  }

  .ems-trust-float__item {
    border-right: 0;
    border-bottom: 1px solid var(--ems-border);
  }

  .ems-trust-float__item:last-child {
    border-bottom: 0;
  }

  .ems-fp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ems-packages-grid {
    grid-template-columns: 1fr;
  }

  .ems-mesh-options,
  .ems-mesh-examples {
    grid-template-columns: 1fr;
  }

  .ems-step-item {
    flex: 0 0 100%;
  }

  .woocommerce ul.products,
  .ems-products-grid {
    grid-template-columns: 1fr !important;
  }

  .ems-footer__grid {
    grid-template-columns: 1fr;
  }
}
