/*
Theme Name: Brevard Safes
Theme URI: https://brevardsafe.com
Author: Brevard Safes
Description: Custom WooCommerce theme for Brevard Safes — professional, bold, navy/white/orange.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
WC requires at least: 7.0
WC tested up to: 9.6
License: Proprietary
Text Domain: brevardsafe
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162435;
  --navy-light: #1E3250;
  --orange:     #F26522;
  --orange-dark:#D4551A;
  --orange-glow:rgba(242,101,34,0.18);
  --white:      #FFFFFF;
  --off-white:  #F4F6F8;
  --gray-100:   #EEF0F3;
  --gray-300:   #C8CDD5;
  --gray-500:   #8A9099;
  --gray-700:   #4A5260;
  --text:       #1A2233;
  --shadow-sm:  0 2px 8px rgba(13,27,42,0.10);
  --shadow-md:  0 6px 24px rgba(13,27,42,0.16);
  --shadow-lg:  0 16px 48px rgba(13,27,42,0.22);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:  'Nunito Sans', 'Helvetica Neue', sans-serif;
  --container:  1240px;
  --header-h:   72px;
  --adminbar-h: 0px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy);
}

ul { list-style: none; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-content { padding-top: calc(var(--header-h) + var(--adminbar-h)); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: var(--adminbar-h); left: 0; right: 0;
  height: var(--header-h);
  background: var(--navy);
  z-index: 1000;
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
  transition: top 0.2s ease;
}

/* Push header down when WP admin bar is visible */
body.admin-bar {
  --adminbar-h: 32px;
}

/* WP admin bar is 46px on mobile */
@media screen and (max-width: 782px) {
  body.admin-bar {
    --adminbar-h: 46px;
  }
}

/* Also offset the body top padding to compensate */
body.admin-bar .site-header + * {
  margin-top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo .logo-icon svg { width: 26px; height: 26px; fill: var(--white); }

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }

.primary-nav a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--white);
  background: var(--navy-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.header-phone svg { width: 16px; height: 16px; fill: var(--orange); }

/* WooCommerce cart icon */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy-light);
  border-radius: var(--radius);
  color: var(--white);
  transition: background var(--transition);
}

.header-cart:hover { background: var(--orange); color: var(--white); }
.header-cart svg { width: 20px; height: 20px; fill: currentColor; }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 620px;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(242,101,34,0.08) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0a1520 100%);
}

/* Steel texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-title span { color: var(--orange); }

.hero-desc {
  font-size: 18px;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(242,101,34,0.2);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242,101,34,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.hero-image-placeholder svg {
  width: 80px; height: 80px;
  fill: var(--navy-light);
  stroke: var(--orange);
  stroke-width: 1.5px;
  opacity: 0.6;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(242,101,34,0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(242,101,34,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* WooCommerce button override */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px !important;
  border-radius: var(--radius) !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border: 2px solid var(--orange) !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 12px rgba(242,101,34,0.25) !important;
  cursor: pointer !important;
  line-height: 1 !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--navy-light) !important;
  border-color: var(--navy-light) !important;
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); }

/* =========================================================
   CATEGORIES SECTION
   ========================================================= */
.categories-section {
  padding: 88px 0;
  background: var(--off-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--navy);
}

.category-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-img-placeholder svg {
  width: 56px; height: 56px;
  fill: rgba(242,101,34,0.4);
}

.category-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.category-card-count {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
}

.category-card-link svg { width: 14px; height: 14px; fill: currentColor; transition: transform var(--transition); }
.category-card:hover .category-card-link svg { transform: translateX(4px); }

/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */
.featured-products {
  padding: 88px 0;
  background: var(--white);
}

/* =========================================================
   SHOP PAGE WRAPPER
   ========================================================= */
.shop-page-wrap {
  background: var(--off-white);
  padding: 48px 0 80px;
}

.shop-page-wrap .woocommerce {
  width: 100%;
}

/* Toolbar — wrapped in .bsafe-shop-toolbar via PHP hook */
.bsafe-shop-toolbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 0 20px !important;
  margin-bottom: 8px !important;
  border-bottom: 1px solid var(--gray-100) !important;
  width: 100% !important;
  clear: both !important;
}

.bsafe-shop-toolbar p.woocommerce-result-count,
.bsafe-shop-toolbar .woocommerce-result-count {
  float: none !important;
  margin: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--gray-500) !important;
}

.bsafe-shop-toolbar form.woocommerce-ordering,
.bsafe-shop-toolbar .woocommerce-ordering {
  float: none !important;
  margin: 0 !important;
}

/* Toolbar */
.woocommerce .woocommerce-products-header { display: none; }

/* Force toolbar into a flex row so it doesn't bleed into the grid */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none !important;
  display: inline-block !important;
}

.woocommerce .woocommerce-result-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
  letter-spacing: 0.03em;
}

.woocommerce .woocommerce-ordering {
  margin-bottom: 0;
}

.woocommerce .woocommerce-ordering select {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 9px 14px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.woocommerce .woocommerce-ordering select:focus { border-color: var(--orange); }

/* Shop toolbar row */
.woocommerce .woocommerce-notices-wrapper + * { margin-top: 0; }
.woocommerce nav.woocommerce-breadcrumb { display: none; }

/* =========================================================
   PRODUCT GRID
   ========================================================= */
body .woocommerce ul.products,
body.woocommerce ul.products,
body.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  clear: both !important;
}

/* =========================================================
   PRODUCT CARD
   ========================================================= */
body .woocommerce ul.products li.product,
body.woocommerce ul.products li.product {
  background: var(--white) !important;
  border: 1px solid #E4E8EE !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

body .woocommerce ul.products li.product:hover,
body.woocommerce ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(13,27,42,0.14) !important;
  border-color: var(--orange) !important;
}

/* Badges */
.bsafe-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.bsafe-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  line-height: 1;
}

.bsafe-badge--sale {
  background: var(--orange);
  color: #fff;
}

.bsafe-badge--new {
  background: var(--navy);
  color: #fff;
}

/* Image */
.bsafe-card-img-link { display: block; text-decoration: none; }

.bsafe-card-img-wrap {
  position: relative;
  background: #F0F3F7;
  overflow: hidden;
  height: 260px;
}

.bsafe-card-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 20px !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) !important;
  background: transparent !important;
}

body .woocommerce ul.products li.product:hover .bsafe-card-img-wrap img {
  transform: scale(1.06) !important;
}

.bsafe-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bsafe-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2e42 0%, #0D1B2A 100%);
}

.bsafe-card-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.7;
}

/* Card body */
.bsafe-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bsafe-card-category {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 5px;
}

.bsafe-card-title-link {
  text-decoration: none;
}

.bsafe-card-title,
body .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-head) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  /* Clamp to 3 lines so all cards align */
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: calc(1.3em * 3) !important;
  transition: color 0.2s ease !important;
}

.bsafe-card-title-link:hover .bsafe-card-title { color: var(--orange) !important; }

.bsafe-card-excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.5em * 2);
  flex: 1;
}

/* Card footer */
.bsafe-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.bsafe-card-price {
  flex: 1;
  min-width: 0;
}

/* Price */
body .woocommerce ul.products li.product .price,
.bsafe-card-price .price {
  font-family: var(--font-head) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 0 4px !important;
  line-height: 1 !important;
}

body .woocommerce ul.products li.product .price ins,
.bsafe-card-price .price ins {
  color: var(--orange) !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}

body .woocommerce ul.products li.product .price del,
.bsafe-card-price .price del {
  color: var(--gray-500) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  margin-right: 4px !important;
  opacity: 0.7 !important;
}

/* Rating */
.bsafe-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bsafe-rating-count {
  font-size: 12px;
  color: var(--gray-500);
}

/* Card actions */
.bsafe-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Add to cart button */
body .woocommerce ul.products li.product a.button,
body .woocommerce ul.products li.product .button,
body.woocommerce ul.products li.product a.button {
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy) !important;
  border-radius: 6px !important;
  padding: 10px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  width: auto !important;
  margin: 0 !important;
}

body .woocommerce ul.products li.product a.button:hover,
body.woocommerce ul.products li.product a.button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

/* View button */
.bsafe-card-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--gray-100);
  border-radius: 6px;
  color: var(--gray-500);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bsafe-card-view-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--off-white);
}

.bsafe-card-view-btn svg {
  width: 16px;
  height: 16px;
}

/* Sale badge (WC default — hide in favour of ours) */
body .woocommerce ul.products li.product > .onsale { display: none !important; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  padding: 88px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,101,34,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card-icon svg { width: 26px; height: 26px; fill: var(--orange); }

.why-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.7;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.cta-banner-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  position: relative;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  position: relative;
}

.cta-banner .btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* =========================================================
   SHOP LAYOUT
   ========================================================= */
.shop-layout {
  display: block;
  padding: 0;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

/* WooCommerce filter widgets */
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--gray-100);
  border-radius: 4px;
  height: 4px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: var(--orange);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
  width: 16px; height: 16px;
  top: -6px;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  justify-content: center !important;
  margin-top: 60px !important;
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  padding: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border: 2px solid var(--gray-100) !important;
  color: var(--navy) !important;
  transition: all var(--transition) !important;
  background: var(--white) !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}

.single-product-wrap {
  background: var(--off-white);
  padding: 0 0 80px;
}

.single-product-wrap .woocommerce {
  width: 100%;
}

/* =========================================================
   SINGLE PRODUCT PAGE
   ========================================================= */

/* Wrap product in our container */
.woocommerce div.product {
  padding: 48px 0 80px !important;
  max-width: var(--container) !important;
  margin: 0 auto !important;
}

/* Two-column layout */
.woocommerce div.product .woocommerce-product-gallery {
  width: 48% !important;
  float: left !important;
  max-width: 560px !important;
}

.woocommerce div.product .summary {
  width: 48% !important;
  float: right !important;
  padding-left: 0 !important;
}

/* Clearfix after product columns */
.woocommerce div.product::after {
  content: '';
  display: table;
  clear: both;
}

/* ---- Gallery image container ---- */
.woocommerce div.product .woocommerce-product-gallery__wrapper {
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid var(--gray-100) !important;
  background: #F0F3F7 !important;
}

/* Main image — fixed height, contained */
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img,
.woocommerce div.product .woocommerce-product-gallery .flex-viewport img {
  width: 100% !important;
  height: 460px !important;
  object-fit: contain !important;
  padding: 32px !important;
  background: #F0F3F7 !important;
  display: block !important;
  border-radius: 0 !important;
}

/* Thumbnails */
.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs {
  display: flex !important;
  gap: 10px !important;
  margin-top: 12px !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs li {
  margin: 0 !important;
  width: 72px !important;
  height: 72px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 2px solid var(--gray-100) !important;
  background: #F0F3F7 !important;
  cursor: pointer !important;
  transition: border-color 0.2s ease !important;
}

.woocommerce div.product .woocommerce-product-gallery ol.flex-control-thumbs li img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
  border-radius: 0 !important;
  border: none !important;
}

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

/* ---- Product summary ---- */
.woocommerce div.product .summary .product_title {
  font-family: var(--font-head) !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1 !important;
  margin: 0 0 16px !important;
}

.woocommerce div.product .summary .woocommerce-product-rating {
  margin-bottom: 20px !important;
}

/* Price */
.woocommerce div.product .summary p.price,
.woocommerce div.product .summary span.price {
  font-family: var(--font-head) !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  margin-bottom: 20px !important;
  display: block !important;
  line-height: 1 !important;
}

.woocommerce div.product .summary p.price ins,
.woocommerce div.product .summary span.price ins {
  color: var(--orange) !important;
  text-decoration: none !important;
}

.woocommerce div.product .summary p.price del,
.woocommerce div.product .summary span.price del {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--gray-500) !important;
  opacity: 0.7 !important;
  margin-right: 8px !important;
}

/* Short description */
.woocommerce div.product .summary .woocommerce-product-details__short-description {
  font-size: 15px !important;
  color: var(--gray-700) !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
  border-left: 3px solid var(--orange) !important;
  padding-left: 16px !important;
  background: var(--off-white) !important;
  padding: 16px !important;
  border-radius: 0 8px 8px 0 !important;
}

/* Product meta */
.product-specs-box {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 20px 0;
}

.product-specs-box table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-box table tr td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.product-specs-box table tr:last-child td { border-bottom: none; }
.product-specs-box table tr td:first-child { color: var(--gray-500); width: 45%; }
.product-specs-box table tr td:last-child { color: var(--navy); font-weight: 600; }

/* Quantity + ATC */
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 24px 0 !important;
  flex-wrap: wrap !important;
}

.woocommerce div.product form.cart .qty {
  width: 72px !important;
  font-family: var(--font-head) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: 2px solid var(--gray-300) !important;
  border-radius: 8px !important;
  padding: 12px !important;
  color: var(--navy) !important;
  background: var(--white) !important;
  height: 52px !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1 !important;
  justify-content: center !important;
  font-size: 16px !important;
  padding: 14px 28px !important;
  height: 52px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy) !important;
  border-radius: 8px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* Action row wrapper (compare + wishlist) */
.bsafe-action-row {
  display: flex !important;
  gap: 10px !important;
  margin: 16px 0 20px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

/* WPC Compare / Wishlist — exact plugin class selectors (woosc = compare, woosw = wishlist) */
.woocommerce div.product .woosc-btn,
.woocommerce div.product .woosw-btn,
.woocommerce div.product a.woosc-btn,
.woocommerce div.product a.woosw-btn,
.woocommerce div.product button.woosc-btn,
.woocommerce div.product button.woosw-btn,
.woocommerce div.product .wpc-compare-button a,
.woocommerce div.product .wpc-wishlist-button a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--gray-700) !important;
  background: var(--white) !important;
  border: 1.5px solid var(--gray-300) !important;
  border-radius: 8px !important;
  padding: 9px 16px !important;
  text-decoration: none !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.woocommerce div.product .woosc-btn:hover,
.woocommerce div.product .woosw-btn:hover,
.woocommerce div.product a.woosc-btn:hover,
.woocommerce div.product a.woosw-btn:hover {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
  background: var(--off-white) !important;
}

/* Strip default wrapper margins */
.woocommerce div.product .woosc-product,
.woocommerce div.product .woosw-product,
.woocommerce div.product .wpc-meta-compare,
.woocommerce div.product .wpc-meta-wishlist {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Flex row container */
.bsafe-action-row,
.woocommerce div.product .wpc-action-row {
  display: flex !important;
  gap: 10px !important;
  margin: 16px 0 20px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

/* Product meta (SKU, cat, tags) */
.woocommerce div.product .product_meta {
  font-size: 12px !important;
  color: var(--gray-500) !important;
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 1px solid var(--gray-100) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.woocommerce div.product .product_meta > span {
  display: flex !important;
  align-items: flex-start !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
  line-height: 1.6 !important;
}

/* Label pill (SKU:, Category:, Tags:) */
.woocommerce div.product .product_meta span.sku_wrapper::before,
.woocommerce div.product .product_meta span.posted_in::before,
.woocommerce div.product .product_meta span.tagged_as::before {
  content: '' !important;
}

.woocommerce div.product .product_meta .sku {
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.woocommerce div.product .product_meta a {
  color: var(--navy) !important;
  text-decoration: none !important;
  background: var(--off-white) !important;
  border: 1px solid var(--gray-100) !important;
  border-radius: 4px !important;
  padding: 2px 8px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease !important;
  white-space: nowrap !important;
}

.woocommerce div.product .product_meta a:hover {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
  background: #fff8f5 !important;
}

/* ---- Product tabs ---- */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 72px !important;
  clear: both !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  gap: 4px !important;
  margin: 0 0 -1px !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: var(--gray-100) !important;
  border: 1px solid var(--gray-100) !important;
  border-radius: 6px 6px 0 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--gray-700) !important;
  padding: 12px 22px !important;
  display: block !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--white) !important;
  border-color: var(--gray-100) !important;
  border-bottom-color: var(--white) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--navy) !important; }

.woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid var(--gray-100) !important;
  border-radius: 0 8px 8px 8px !important;
  padding: 36px !important;
  background: var(--white) !important;
}

/* Star ratings */
.woocommerce .star-rating span::before { color: var(--orange); }
.woocommerce .star-rating::before { color: var(--gray-300); }

/* =========================================================
   WPC SMART COMPARE — full override
   ========================================================= */

/* Overlay backdrop */
.woosc-area .woosc-inner .woosc-table {
  background: rgba(13,27,42,0.7) !important;
  backdrop-filter: blur(4px) !important;
}

/* Table panel */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner {
  background: var(--white) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 32px 80px rgba(13,27,42,0.3) !important;
  max-height: 90vh !important;
}

/* Close button */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-close {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-close .woosc-table-close-icon {
  background: rgba(255,255,255,0.15) !important;
  border-radius: 6px !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-close .woosc-table-close-icon:hover {
  background: var(--orange) !important;
}

/* Table scroll area */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items {
  background: var(--off-white) !important;
}

/* Table */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

/* Header row (product names) */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr {
  background: var(--navy) !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 16px 20px !important;
  border: none !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
  vertical-align: middle !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th:first-child {
  background: var(--navy-mid) !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  width: 160px !important;
  min-width: 160px !important;
}

/* Remove link */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th .woosc-remove {
  color: rgba(255,255,255,0.5) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: block !important;
  margin-top: 4px !important;
  transition: color 0.2s ease !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th .woosc-remove:hover {
  color: var(--orange) !important;
}

/* Product title link in header */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th a {
  color: var(--white) !important;
  text-decoration: none !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th a:hover {
  color: var(--orange) !important;
}

/* Body rows */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td {
  padding: 14px 20px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--text) !important;
  border-bottom: 1px solid var(--gray-100) !important;
  border-right: 1px solid var(--gray-100) !important;
  vertical-align: middle !important;
  background: var(--white) !important;
}

/* Row label column */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td:first-child {
  background: var(--off-white) !important;
  font-family: var(--font-head) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--gray-500) !important;
  width: 160px !important;
  min-width: 160px !important;
  border-right: 2px solid var(--gray-100) !important;
}

/* Alternating rows */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:nth-child(2n) td {
  background: #fafbfc !important;
}
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:nth-child(2n) td:first-child {
  background: var(--off-white) !important;
}

/* Hover row */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:hover td {
  background: #fff8f5 !important;
}
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr:hover td:first-child {
  background: var(--off-white) !important;
}

/* Highlighted (different value) rows */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-highlight td {
  background: #fff4ef !important;
  border-bottom-color: rgba(242,101,34,0.15) !important;
}
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-highlight td:first-child {
  background: #fdeee6 !important;
  color: var(--orange) !important;
}

/* Product image row */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-image img {
  border-radius: 8px !important;
  object-fit: contain !important;
  background: var(--off-white) !important;
  padding: 8px !important;
  max-height: 160px !important;
}

/* Add to cart in compare table */
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-add_to_cart td .button,
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-add_to_cart td a.button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy) !important;
  border-radius: 6px !important;
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 9px 16px !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}
.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr.tr-add_to_cart td a.button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* Settings row */
.woosc-area .woosc-inner .woosc-table .woosc-table-settings {
  background: var(--off-white) !important;
  border-top: 1px solid var(--gray-100) !important;
  padding: 12px 20px !important;
  font-size: 12px !important;
  color: var(--gray-500) !important;
  font-family: var(--font-body) !important;
}

/* Bottom compare bar */
.woosc-area .woosc-bar {
  background: var(--navy) !important;
  border-top: 3px solid var(--orange) !important;
  box-shadow: 0 -8px 32px rgba(13,27,42,0.2) !important;
}

.woosc-area .woosc-bar .woosc-bar-inner {
  padding: 12px 24px !important;
}

.woosc-area .woosc-bar .woosc-bar-item .woosc-bar-item-inner {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
}

.woosc-area .woosc-bar .woosc-bar-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
}

.woosc-area .woosc-bar .woosc-bar-btn:hover {
  background: #d4551a !important;
}
.woocommerce-cart .woocommerce table.shop_table {
  border: 1px solid var(--gray-100) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.woocommerce-cart .woocommerce table.shop_table th {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 16px 20px !important;
  border: none !important;
}

.woocommerce-cart .woocommerce table.shop_table td {
  border: none !important;
  border-bottom: 1px solid var(--gray-100) !important;
  padding: 20px !important;
  vertical-align: middle !important;
}

.woocommerce-cart .woocommerce table.shop_table .product-name a {
  font-family: var(--font-head) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
}

.woocommerce-cart .woocommerce table.shop_table .product-price .amount,
.woocommerce-cart .woocommerce table.shop_table .product-subtotal .amount {
  font-family: var(--font-head) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--orange) !important;
}

.woocommerce-cart .woocommerce table.shop_table img {
  border-radius: var(--radius) !important;
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
}

/* Cart totals */
.woocommerce-cart .woocommerce .cart_totals {
  background: var(--white) !important;
  border: 1px solid var(--gray-100) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px !important;
}

.woocommerce-cart .woocommerce .cart_totals h2 {
  font-family: var(--font-head) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}

.woocommerce-cart .woocommerce .cart_totals table .order-total .amount {
  font-family: var(--font-head) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--orange) !important;
}

.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  padding: 16px 28px !important;
}

/* =========================================================
   CHECKOUT PAGE
   ========================================================= */
.woocommerce-checkout .woocommerce {
  padding: 60px 0;
}

.woocommerce-checkout .woocommerce h3 {
  font-family: var(--font-head) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid var(--orange) !important;
}

.woocommerce form .form-row label {
  font-family: var(--font-head) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--gray-700) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 2px solid var(--gray-100) !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--text) !important;
  width: 100% !important;
  transition: border-color var(--transition) !important;
  background: var(--white) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--orange) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--orange-glow) !important;
}

/* Order review box */
#order_review {
  background: var(--white) !important;
  border: 1px solid var(--gray-100) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px !important;
}

#order_review table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

#order_review table.shop_table th {
  font-family: var(--font-head) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--gray-500) !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--gray-100) !important;
}

#order_review table.shop_table td {
  padding: 10px 0 !important;
  font-size: 14px !important;
  border-bottom: 1px solid var(--gray-100) !important;
  color: var(--text) !important;
}

#order_review .order-total td,
#order_review .order-total th {
  font-family: var(--font-head) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--orange) !important;
  border-bottom: none !important;
}

/* Payment section */
#payment {
  background: var(--off-white) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  margin-top: 20px !important;
}

#payment ul.payment_methods li {
  border-bottom: 1px solid var(--gray-100) !important;
  padding: 14px 0 !important;
}

#payment ul.payment_methods li label {
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
}

#payment #place_order {
  font-size: 18px !important;
  padding: 18px 32px !important;
  width: 100% !important;
  justify-content: center !important;
}

/* =========================================================
   NOTICES
   ========================================================= */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius-lg) !important;
  font-family: var(--font-body) !important;
}

.woocommerce-message {
  border-top: 3px solid var(--orange) !important;
  background: rgba(242,101,34,0.06) !important;
}

.woocommerce-info { border-top-color: var(--navy) !important; }

/* =========================================================
   BREADCRUMBS
   ========================================================= */
.woocommerce-breadcrumb {
  font-size: 13px !important;
  color: var(--gray-500) !important;
  padding: 16px 0 !important;
}

.woocommerce-breadcrumb a {
  color: var(--gray-500) !important;
}

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

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(242,101,34,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 52px 0 44px;
  border-bottom: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.woocommerce-breadcrumb {
  font-size: 13px !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 10px !important;
  display: block !important;
  font-family: var(--font-body) !important;
}

.woocommerce-breadcrumb a {
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.woocommerce-breadcrumb a:hover { color: var(--orange) !important; }

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  position: relative;
}

.page-hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-top: 10px;
  max-width: 480px;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand {}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 22px; height: 22px; fill: var(--white); }

.footer-logo-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--orange); }
.footer-contact a svg { width: 14px; height: 14px; fill: var(--orange); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom a { color: var(--orange); }

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-badge {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: 80px 28px 40px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 3px solid var(--orange);
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
}

.mobile-nav-close svg { width: 22px; height: 22px; fill: currentColor; }

.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mobile-nav ul li a {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 0;
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav ul li a:hover { color: var(--orange); }

.mobile-nav .mobile-nav-cta {
  margin-top: 28px;
}

/* =========================================================
   UTILITY
   ========================================================= */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .woocommerce div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; margin-bottom: 40px; }
  .woocommerce div.product .summary { width: 100% !important; float: none !important; }
}

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

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-phone { display: none; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* =========================================================
   PRODUCT GRID FINAL OVERRIDE — beats WooCommerce CSS
   ========================================================= */
body .woocommerce ul.products,
body.woocommerce ul.products,
body.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
}

body .woocommerce ul.products li.product,
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
}

body .woocommerce ul.products li.product a img,
body.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 280px !important;
  object-fit: contain !important;
  background: #f4f6f8 !important;
  padding: 16px !important;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0D1B2A !important;
  text-transform: uppercase !important;
  padding: 16px 18px 4px !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

body .woocommerce ul.products li.product .price,
body.woocommerce ul.products li.product .price {
  color: #F26522 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  padding: 0 18px 14px !important;
  display: block !important;
}

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

@media (max-width: 480px) {
  body .woocommerce ul.products,
  body.woocommerce ul.products,
  body.woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero */
.about-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  border-bottom: 3px solid var(--orange);
}
.about-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242,101,34,.1);
  border: 1px solid rgba(242,101,34,.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.about-hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.about-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.about-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-transform: uppercase;
}
.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* Story */
.about-story {
  padding: 80px 0;
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-story-content h2 { text-align: left; }
.about-story-content p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-highlight-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--orange);
  margin-bottom: 16px;
}
.about-highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.about-highlight-icon svg { width: 20px; height: 20px; }
.about-highlight-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  text-transform: uppercase;
}
.about-highlight-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* What We Offer */
.about-offer {
  padding: 80px 0;
  background: var(--gray-50);
}
.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: transform .2s, box-shadow .2s;
}
.about-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-offer-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}
.about-offer-icon svg { width: 36px; height: 36px; }
.about-offer-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.about-offer-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.about-offer-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.about-offer-link:hover { text-decoration: underline; }

/* Why */
.about-why {
  padding: 80px 0;
  background: var(--navy);
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.about-why-item {
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--orange);
}
.about-why-item h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.about-why-item p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.about-cta {
  padding: 80px 0;
  background: var(--orange);
}
.about-cta-inner {
  text-align: center;
}
.about-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.about-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.about-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
.about-cta-contact a svg { width: 20px; height: 20px; }
.about-cta-contact span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.about-cta .btn--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.about-cta .btn--primary:hover {
  background: #162436;
  border-color: #162436;
}

/* About responsive */
@media (max-width: 960px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-hero-stats { gap: 20px; }
  .about-offer-grid { grid-template-columns: 1fr; }
  .about-why-grid { grid-template-columns: 1fr; }
  .about-cta-buttons { flex-direction: column; align-items: center; }
}
