/* =====================================================
   EXPODEPOT — Child Theme Design System
   Parent: The7 (dt-the7) | WooCommerce Integration
   Aesthetic: Industrial trade-show authority — dense,
   structured, charcoal + red precision.
   ===================================================== */

/* ── 1. DESIGN TOKENS ────────────────────────────────── */
:root {
  --ed-red:            #b22c0f;
  --ed-red-hover:      #db2020;
  --ed-red-dark:       #921d01;
  --ed-charcoal:       #3b3f4a;
  --ed-charcoal-mid:   #555a65;
  --ed-charcoal-light: #787d85;
  --ed-silver:         #adb0b6;
  --ed-silver-light:   #e2e2e2;
  --ed-silver-xlight:  #f4f4f4;
  --ed-dark:           #23262d;
  --ed-dark-mid:       #2e3138;

  --ed-font-heading: 'Oswald', sans-serif;
  --ed-font-body:    'Open Sans', sans-serif;

  --ed-radius:       5px;
  --ed-shadow:       0 2px 8px rgba(59,63,74,.10);
  --ed-shadow-hover: 0 6px 20px rgba(59,63,74,.15);

  --ed-max-width:  1340px;
  --ed-topbar-h:   36px;
  --ed-header-h:   68px;
}

/* ── 2. TYPOGRAPHY RESET ─────────────────────────────── */
body,
.site,
#page {
  font-family: var(--ed-font-body) !important;
  color: var(--ed-charcoal) !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ed-font-heading) !important;
  letter-spacing: 0.02em;
}

/* ── 3. TOPBAR ───────────────────────────────────────── */
#ed-topbar {
  background: var(--ed-dark);
  color: #9aa0a7;
  font-size: 12px;
  font-family: var(--ed-font-body);
  height: var(--ed-topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

#ed-topbar .ed-topbar-inner {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#ed-topbar .ed-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

#ed-topbar .ed-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #787d85;
}

.ed-topbar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ed-topbar-badge svg {
  color: var(--ed-red);
  flex-shrink: 0;
}

.ed-topbar-right a {
  color: #787d85;
  text-decoration: none;
  transition: color .15s;
}

.ed-topbar-right a:hover {
  color: #fff;
}

.ed-topbar-divider {
  width: 1px;
  height: 12px;
  background: #3b3f4a;
  flex-shrink: 0;
}

/* ── 4. THE7 HEADER OVERRIDES ────────────────────────── */
header.header-bar,
#page header.header-bar,
.header-bar {
  border-bottom: 1px solid var(--ed-silver-light) !important;
  box-shadow: none !important;
  background: #fff !important;
}

.logo-wrap a img,
header .logo-wrap img,
#masthead .logo-wrap a img {
  max-height: 34px !important;
  width: auto !important;
}

/* Nav links */
header.header-bar .with-ul-arrow > a,
header.header-bar .top-level-link,
.header-bar .sf-menu > li > a {
  font-family: var(--ed-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ed-charcoal) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

header.header-bar .with-ul-arrow > a:hover,
header.header-bar .top-level-link:hover,
.header-bar .sf-menu > li > a:hover,
.header-bar .sf-menu > li.sfHover > a {
  color: var(--ed-red) !important;
  background: var(--ed-silver-xlight) !important;
}

/* ── 5. BUTTONS ──────────────────────────────────────── */
.ed-btn-red {
  background: var(--ed-red);
  background: linear-gradient(to bottom, #bb3116 0%, var(--ed-red-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--ed-radius);
  font-family: var(--ed-font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .15s, opacity .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ed-btn-red:hover {
  background: var(--ed-red-hover);
  color: #fff;
  text-decoration: none;
}

.ed-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ed-font-body);
  color: #c8cdd3;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--ed-radius);
  text-decoration: none;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}

.ed-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  text-decoration: none;
}

.ed-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: var(--ed-red);
  font-family: var(--ed-font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--ed-radius);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}

.ed-btn-white:hover {
  background: #f0f0f0;
  color: var(--ed-red-dark);
  text-decoration: none;
}

/* WooCommerce button overrides */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button {
  background: var(--ed-red) !important;
  background: linear-gradient(to bottom, #bb3116 0%, var(--ed-red-dark) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ed-radius) !important;
  font-family: var(--ed-font-body) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  padding: 9px 16px !important;
  cursor: pointer !important;
  transition: background .15s !important;
  letter-spacing: 0.01em !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ed-red-hover) !important;
  color: #fff !important;
}

/* ── 6. BRAND / HERO STRIP ───────────────────────────── */
.ed-brand-strip {
  background: var(--ed-dark);
  border-bottom: 1px solid var(--ed-dark-mid);
  padding: 20px 0;
}

.ed-brand-strip-inner {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ed-brand-strip h1 {
  font-family: var(--ed-font-heading) !important;
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  margin: 0 0 4px !important;
}

.ed-brand-strip p {
  font-size: 13px !important;
  color: #787d85 !important;
  margin: 0 !important;
}

.ed-brand-strip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ── 7. SECTION HEADERS ──────────────────────────────── */
.ed-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ed-section-title {
  font-family: var(--ed-font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--ed-charcoal) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ed-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ed-red);
  text-decoration: none;
  font-family: var(--ed-font-body);
}

.ed-view-all:hover {
  text-decoration: underline;
  color: var(--ed-red);
}

/* ── 8. CATEGORY GRID ────────────────────────────────── */
.ed-category-grid {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 24px;
}

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

@media (max-width: 1100px) { .ed-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .ed-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .ed-cat-grid { gap: 8px; } }

.ed-cat-card {
  display: block;
  background: #fff;
  border: 1px solid var(--ed-silver-light);
  border-radius: var(--ed-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ed-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--ed-shadow-hover);
  text-decoration: none;
}

.ed-cat-card:hover .ed-cat-name {
  color: var(--ed-red);
}

.ed-cat-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ed-silver-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  display: block;
}

.ed-cat-card:hover .ed-cat-thumb img {
  transform: scale(1.05);
}

.ed-cat-info {
  padding: 10px 12px;
  border-top: 1px solid var(--ed-silver-light);
}

.ed-cat-name {
  font-family: var(--ed-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ed-charcoal) !important;
  transition: color .15s;
  margin: 0 !important;
  display: block;
  line-height: 1.3;
}

.ed-cat-count {
  font-size: 11px;
  color: var(--ed-charcoal-light);
  margin-top: 3px;
  display: block;
}

/* ── 9. BOOTH SIZE STRIP ─────────────────────────────── */
.ed-booth-strip {
  background: var(--ed-silver-xlight);
  border-top: 1px solid var(--ed-silver-light);
  border-bottom: 1px solid var(--ed-silver-light);
  padding: 18px 0;
}

.ed-booth-strip-inner {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ed-booth-label {
  font-family: var(--ed-font-heading) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--ed-charcoal) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  line-height: 1.3;
  flex-shrink: 0;
  white-space: nowrap;
}

.ed-booth-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ed-booth-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--ed-silver-light);
  border-radius: var(--ed-radius);
  background: #fff;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}

.ed-booth-pill:hover {
  border-color: rgba(178,44,15,.4);
  background: #fff;
  text-decoration: none;
}

.ed-booth-size {
  font-family: var(--ed-font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--ed-charcoal) !important;
  line-height: 1 !important;
  transition: color .15s;
  min-width: 48px;
}

.ed-booth-pill:hover .ed-booth-size {
  color: var(--ed-red);
}

.ed-booth-desc {
  font-size: 11px;
  color: var(--ed-charcoal-light);
  line-height: 1.3;
}

/* ── 10. TRUST BAR ───────────────────────────────────── */
.ed-trust-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--ed-silver-light);
}

.ed-trust-bar-inner {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .ed-trust-bar-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ed-trust-bar-inner { grid-template-columns: 1fr; } }

.ed-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ed-trust-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--ed-red);
  background: linear-gradient(135deg, #bb3116 0%, var(--ed-red-dark) 100%);
  border-radius: var(--ed-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ed-trust-icon svg { color: #fff; }

.ed-trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ed-charcoal);
  font-family: var(--ed-font-body);
  margin-bottom: 2px;
}

.ed-trust-text span {
  font-size: 12px;
  color: var(--ed-charcoal-light);
  line-height: 1.4;
}

/* ── 11. CTA STRIP ───────────────────────────────────── */
.ed-cta-strip {
  background: var(--ed-red);
  background: linear-gradient(135deg, var(--ed-red-dark) 0%, var(--ed-red) 100%);
  padding: 36px 0;
}

.ed-cta-strip-inner {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ed-cta-strip h2 {
  font-family: var(--ed-font-heading) !important;
  font-size: clamp(20px, 2.5vw, 30px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 4px !important;
}

.ed-cta-strip p {
  font-size: 14px !important;
  color: rgba(255,255,255,.75) !important;
  margin: 0 !important;
}

.ed-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.ed-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ed-font-body);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--ed-radius);
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}

.ed-btn-phone:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  text-decoration: none;
}

/* ── 12. ARCHIVE / CATEGORY PAGE HEADER ──────────────── */
.ed-archive-header {
  background: var(--ed-dark);
  padding: 28px 0 24px;
  margin-bottom: 0;
}

.ed-archive-header-inner {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ed-archive-header .woocommerce-breadcrumb {
  font-size: 12px !important;
  color: #555a65 !important;
  margin-bottom: 10px !important;
  display: block;
}

.ed-archive-header .woocommerce-breadcrumb a {
  color: #555a65 !important;
  text-decoration: none;
}

.ed-archive-header .woocommerce-breadcrumb a:hover {
  color: var(--ed-silver) !important;
}

.ed-archive-header h1.ed-archive-title {
  font-family: var(--ed-font-heading) !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
}

.ed-archive-header .ed-archive-meta {
  font-size: 13px;
  color: #787d85;
}

/* ── 13. SHOP TOOLBAR (ordering / result count) ──────── */
.ed-shop-toolbar {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 16px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--ed-silver-light);
}

.woocommerce-result-count {
  font-size: 13px !important;
  color: var(--ed-charcoal-light) !important;
  font-family: var(--ed-font-body) !important;
  margin: 0 !important;
}

.woocommerce-ordering {
  margin: 0 !important;
}

.woocommerce-ordering select {
  font-family: var(--ed-font-body) !important;
  font-size: 13px !important;
  border: 1px solid var(--ed-silver-light) !important;
  border-radius: var(--ed-radius) !important;
  padding: 6px 10px !important;
  color: var(--ed-charcoal) !important;
  background: #fff !important;
}

/* ── 14. WOOCOMMERCE PRODUCT GRID ────────────────────── */
.ed-products-wrap {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 20px 24px 40px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
  clear: both !important;
}

@media (max-width: 1100px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Product cards */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid var(--ed-silver-light) !important;
  border-radius: var(--ed-radius) !important;
  overflow: hidden !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  width: auto !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--ed-shadow-hover) !important;
}

/* Product image */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product > a:first-child {
  display: block;
  overflow: hidden;
}

.woocommerce ul.products li.product a img {
  width: 100% !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  transition: transform .3s ease !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: var(--ed-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ed-charcoal) !important;
  padding: 10px 12px 4px !important;
  margin: 0 !important;
  line-height: 1.35 !important;
  transition: color .15s !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product:hover h2 {
  color: var(--ed-red) !important;
}

/* Price */
.woocommerce ul.products li.product .price {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ed-red) !important;
  padding: 0 12px 10px !important;
  margin: 0 !important;
  font-family: var(--ed-font-body) !important;
}

.woocommerce ul.products li.product .price del {
  color: var(--ed-charcoal-light) !important;
  font-weight: 400 !important;
  font-size: 11px !important;
}

/* Product category display */
.woocommerce ul.products li.product-category h2 {
  color: var(--ed-charcoal) !important;
}

.woocommerce ul.products li.product-category h2 mark {
  background: transparent !important;
  color: var(--ed-charcoal-light) !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

/* Add to cart / Quote button */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.add_to_cart_button {
  margin: auto 12px 12px !important;
  width: calc(100% - 24px) !important;
  text-align: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  padding: 8px 12px !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* YITH Quote button */
.yith-ywraq-add-to-quote .add_to_quote,
.ywraq_add_to_quote .button,
.yith-ywraq-add-button a {
  background: var(--ed-red) !important;
  background: linear-gradient(to bottom, #bb3116 0%, var(--ed-red-dark) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ed-radius) !important;
  font-family: var(--ed-font-body) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  padding: 8px 12px !important;
  transition: background .15s !important;
  display: block !important;
  text-align: center !important;
  text-decoration: none !important;
}

/* ── 15. WC SINGLE PRODUCT ───────────────────────────── */
.woocommerce div.product .product_title {
  font-family: var(--ed-font-heading) !important;
  font-size: clamp(22px, 3vw, 36px) !important;
  font-weight: 700 !important;
  color: var(--ed-charcoal) !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 14px !important;
  color: var(--ed-charcoal-mid) !important;
  line-height: 1.7 !important;
  border-top: 1px solid var(--ed-silver-light);
  border-bottom: 1px solid var(--ed-silver-light);
  padding: 14px 0;
  margin: 14px 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ed-red) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  font-family: var(--ed-font-body) !important;
}

/* ── 16. WC BREADCRUMBS ──────────────────────────────── */
.woocommerce .woocommerce-breadcrumb {
  font-size: 12px !important;
  color: var(--ed-charcoal-light) !important;
  padding: 14px 0 !important;
  margin-bottom: 12px !important;
  font-family: var(--ed-font-body) !important;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--ed-charcoal-light) !important;
  text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--ed-red) !important;
}

/* ── 17. WC NOTICES ──────────────────────────────────── */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--ed-red) !important;
  font-family: var(--ed-font-body) !important;
  border-radius: var(--ed-radius) !important;
}

/* ── 18. CATEGORY DESCRIPTION BOX ────────────────────── */
.woocommerce .term-description,
.term-description {
  background: var(--ed-silver-xlight) !important;
  border: 1px solid var(--ed-silver-light) !important;
  border-left: 3px solid var(--ed-red) !important;
  border-radius: var(--ed-radius) !important;
  padding: 16px 20px !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
  color: var(--ed-charcoal-mid) !important;
  line-height: 1.65 !important;
}

/* ── 19. FOOTER ──────────────────────────────────────── */
.ed-footer {
  background: var(--ed-dark);
  border-top: 1px solid var(--ed-dark-mid);
  color: #9aa0a7;
  font-size: 13px;
  font-family: var(--ed-font-body);
}

.ed-footer-main {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 44px 24px 36px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 44px;
}

@media (max-width: 960px)  { .ed-footer-main { grid-template-columns: 1fr 1fr; gap: 28px; } .ed-footer-brand { grid-column: 1 / -1; } }
@media (max-width: 600px)  { .ed-footer-main { grid-template-columns: 1fr; } }

.ed-footer-brand p {
  font-size: 13px;
  color: #787d85;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 220px;
}

.ed-footer-phone {
  font-size: 15px;
  font-weight: 700;
  color: #c8cdd3 !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  transition: color .15s;
}

.ed-footer-phone:hover {
  color: #fff !important;
}

.ed-footer-col h4 {
  font-family: var(--ed-font-heading) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.ed-footer-col ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ed-footer-col ul li {
  margin-bottom: 9px !important;
}

.ed-footer-col ul li a {
  font-size: 13px;
  color: #787d85 !important;
  text-decoration: none;
  transition: color .15s;
}

.ed-footer-col ul li a:hover {
  color: #fff !important;
}

.ed-footer-bottom {
  border-top: 1px solid var(--ed-dark-mid);
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #555a65;
  flex-wrap: wrap;
}

/* ── 20. UBERMENU OVERRIDES ──────────────────────────── */
.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
  font-family: var(--ed-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ed-charcoal) !important;
  letter-spacing: 0 !important;
}

.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target:hover,
.ubermenu-main .ubermenu-item-level-0.ubermenu-active > .ubermenu-target,
.ubermenu .ubermenu-item.ubermenu-current-menu-item > .ubermenu-target {
  color: var(--ed-red) !important;
}

.ubermenu .ubermenu-submenu-type-mega .ubermenu-column-title,
.ubermenu .ubermenu-submenu-type-mega .ubermenu-column > .ubermenu-target {
  font-family: var(--ed-font-heading) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--ed-red) !important;
}

/* ── 21. SCROLL REVEAL ───────────────────────────────── */
.ed-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}

.ed-reveal.ed-visible {
  opacity: 1;
  transform: none;
}

/* ── 22. UTILITY ─────────────────────────────────────── */
.ed-content-wrap {
  max-width: var(--ed-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Page layout — push full width on WC pages */
.ed-wc-page #content,
.ed-wc-page .content-area,
.ed-wc-page #primary {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.ed-wc-page #sidebar,
.ed-wc-page .widget-area,
.ed-wc-page #secondary {
  display: none !important;
}

/* ── 23. RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .ed-brand-strip-inner   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ed-cta-strip-inner     { flex-direction: column; align-items: flex-start; }
  .ed-shop-toolbar        { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  #ed-topbar { display: none; }
}
