/*
Theme Name: AT EZZ WooCommerce Pro 2.1
Author: JV Digital / Codex conversion
Description: AT EZZ WooCommerce storefront with native shop flows, connected footer pages, newsletter registration and a premium customer account.
Version: 2.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: at-ezz
License: Proprietary
*/


/*
 * ─────────────────────────────────────────────────
 *  @project    at-ezz / outlet
 *  @author     JV · jvdigital.be
 *  @contact    0490 51 11 11 · BE1008658854
 *  @built      2026
 *  @version    1.0.0
 *  @license    Proprietary - all rights reserved
 * ─────────────────────────────────────────────────
 *
 *  Handcrafted with intent.
 *  If you're reading this, you know what you're doing.
 *
 *  Color system:
 *    Brand Orange  #E8873A  rgb(232,135,58)
 *    Brand Teal    #4A9BA1  rgb(74,155,161)
 *    Gradient      orange → teal (135deg)
 *
 *  Typography:
 *    Display  Bebas Neue / 400
 *    Body     DM Sans    / 300–700
 *
 *  Grid:
 *    Base 4px  ·  Gutter 18–22px  ·  Max 1440px
 *
 *  JV · © 2026
 * ─────────────────────────────────────────────────
 */

:root {
  --orange:       #E8873A;
  --orange-dark:  #C4681E;
  --orange-pale:  #FEF2E9;
  --orange-mid:   #F5B07A;
  --teal:         #7BBFC4;
  --teal-dark:    #4A9BA1;
  --teal-pale:    #EAF5F6;
  --teal-mid:     #B2D9DC;
  --charcoal:     #2E2E2C;
  --ink:          #3D3D3A;
  --gray:         #7A7A76;
  --gray-light:   #E4E2DC;
  --gray-mid:     #BEBBB4;
  --sand:         #F6F3EE;
  --off:          #FAFAF8;
  --white:        #FFFFFF;
  --radius:       2px;
  --transition:   0.2s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Top bar ── */
.top-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--orange));
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-text { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; }
.countdown { display: flex; gap: 6px; align-items: center; }
.cd {
  background: rgba(0,0,0,.18);
  color: #fff;
  padding: 4px 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .06em;
  border-radius: var(--radius);
  min-width: 40px;
  text-align: center;
}
.cd-sep { color: rgba(255,255,255,.5); font-size: 16px; font-weight: 700; }
.top-pill {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .07em;
  color: var(--charcoal);
}

nav { display: flex; gap: 30px; align-items: center; }
nav button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .01em;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}
nav button::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
nav button:hover { color: var(--orange); }
nav button:hover::after,
nav button.active::after { width: 100%; }
nav button.active { color: var(--orange); }

.hdr-right { display: flex; align-items: center; gap: 4px; }
.ibtn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background var(--transition);
  position: relative;
}
.ibtn:hover { background: var(--sand); }
.cdot {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

/* ── Page transitions ── */
#atezz-app .page { display: none; animation: fadeUp .28s ease; }
#atezz-app .page.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 86vh;
  overflow: hidden;
  background: var(--sand);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 52px;
  position: relative;
  z-index: 1;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-pale) 0%, transparent 60%);
  z-index: 0;
}
.hero-left > * { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal-dark);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 5.5vw, 88px);
  line-height: .93;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.hero-title .o { color: var(--orange); }
.hero-title .t { color: var(--teal-dark); }

.outlet-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .08em;
  padding: 8px 22px;
  margin-bottom: 24px;
  width: fit-content;
}
.outlet-pill small {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 380px;
  margin-bottom: 40px;
}

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 2px solid var(--orange);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), border-color var(--transition);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-dark);
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 2px solid var(--teal-dark);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), color var(--transition);
}
.btn-teal:hover { background: var(--teal-dark); color: #fff; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: #fff;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), border-color var(--transition);
}
.btn-solid:hover { background: var(--orange); border-color: var(--orange); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border: 2px solid var(--gray-light);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition);
}
.btn-outline:hover { border-color: var(--ink); }

.hero-right {
  background: linear-gradient(160deg, var(--orange-pale) 0%, var(--teal-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid var(--orange-mid);
  opacity: .35;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid var(--teal-mid);
  opacity: .4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-logo {
  width: 54%;
  max-width: 250px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(232,135,58,.2));
}
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .26em;
  background: linear-gradient(90deg, var(--orange), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.hero-sale-flag {
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 8px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .14em;
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.7);
}
.hero-sale-flag span {
  color: var(--gray);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ── Marquee ── */
.marquee { background: linear-gradient(90deg, var(--teal-dark), var(--orange)); padding: 12px 0; overflow: hidden; }
.m-track { display: flex; white-space: nowrap; animation: scroll 22s linear infinite; }
.m-item { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: #fff; letter-spacing: .1em; padding: 0 30px; }
.m-dot { color: rgba(255,255,255,.35); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections ── */
.section { padding: 80px 52px; }

.s-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lbl-o { color: var(--orange); }
.lbl-o::before { content: ''; display: block; width: 16px; height: 2px; background: var(--orange); }
.lbl-t { color: var(--teal-dark); }
.lbl-t::before { content: ''; display: block; width: 16px; height: 2px; background: var(--teal-dark); }

.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.02;
  color: var(--charcoal);
}
.s-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }

/* ── Outlet price strip ── */
.outlet-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  padding: 52px;
  align-items: center;
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--teal-pale) 100%);
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--teal-dark);
}
.os-center { text-align: center; }
.os-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 11vw, 130px);
  line-height: .85;
  background: linear-gradient(135deg, var(--orange) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.os-lbl { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .14em; color: var(--charcoal); margin-top: 6px; }
.os-sub { font-size: 13px; color: var(--gray); margin-top: 6px; }
.os-left { text-align: right; }
.os-fact { margin-bottom: 18px; }
.os-fact strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .06em; }
.os-fact strong.fo { color: var(--orange); }
.os-fact strong.ft { color: var(--teal-dark); }
.os-fact span { font-size: 13px; color: var(--gray); }

/* ── Product cards ── */
.pgrid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pgrid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.pcard {
  background: var(--white);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pcard:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.07); }
.pcard:hover .padd { opacity: 1; transform: translateY(0); }

.pimg {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pi-sand   { background: linear-gradient(135deg, #F0EBE2, #E8E0D5); }
.pi-teal   { background: linear-gradient(135deg, var(--teal-pale), #D6EDEF); }
.pi-orange { background: linear-gradient(135deg, var(--orange-pale), #F9E4CF); }
.pi-mix    { background: linear-gradient(135deg, var(--teal-pale), var(--orange-pale)); }

.prod-svg { width: 52%; opacity: .55; }

.outlet-bar-card {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--orange), var(--teal-dark));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pbadge {
  position: absolute;
  top: 38px;
  left: 10px;
  padding: 4px 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pb-outlet  { background: var(--orange);    color: #fff; }
.pb-new     { background: var(--teal-dark); color: #fff; }
.pb-limited { background: var(--charcoal);  color: #fff; }

.padd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .22s ease, transform .22s ease, background var(--transition);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.padd:hover { background: var(--orange); }

.pinfo { padding: 14px 14px 6px; display: flex; justify-content: space-between; align-items: flex-start; }
.pname { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.pcat  { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: .09em; }
.pprice { text-align: right; }
.pp-now { font-size: 16px; font-weight: 700; color: var(--orange); }
.pp-was { font-size: 11px; color: var(--gray-mid); text-decoration: line-through; display: block; }

.szrow { display: flex; gap: 4px; padding: 6px 14px 14px; }
.sz {
  width: 28px; height: 28px;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  color: var(--gray); cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.sz:hover, .sz.on { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* ── Stats ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat:nth-child(odd)  { background: var(--orange); }
.stat:nth-child(even) { background: var(--teal-dark); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: #fff; line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* ── Testimonials ── */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  background: var(--white);
  padding: 28px;
  border-top: 3px solid var(--gray-light);
  transition: border-color var(--transition);
}
.tcard.tc-o { border-color: var(--orange); }
.tcard.tc-t { border-color: var(--teal); }
.stars-o { color: var(--orange);    font-size: 12px; letter-spacing: 3px; margin-bottom: 12px; }
.stars-t { color: var(--teal-dark); font-size: 12px; letter-spacing: 3px; margin-bottom: 12px; }
.ttext   { font-size: 13px; line-height: 1.8; color: var(--gray); font-style: italic; margin-bottom: 18px; }
.tauthor { display: flex; align-items: center; gap: 10px; }
.tav     { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.tav-o   { background: var(--orange-pale); color: var(--orange-dark); }
.tav-t   { background: var(--teal-pale);   color: var(--teal-dark); }
.tname   { font-size: 13px; font-weight: 600; }
.thandle { font-size: 11px; color: var(--gray); }

/* ── Newsletter ── */
.nl-wrap {
  background: var(--sand);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 72px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nl-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); line-height: .95; color: var(--charcoal); margin-bottom: 10px; }
.nl-title .o { color: var(--orange); }
.nl-title .t { color: var(--teal-dark); }
.nl-sub  { font-size: 14px; color: var(--gray); line-height: 1.7; }
.nl-form { display: flex; }
.nl-form input {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid var(--gray-light);
  border-right: none;
  background: var(--white);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.nl-form input:focus { border-color: var(--orange); }
.nl-form input::placeholder { color: var(--gray-mid); }
.nl-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background var(--transition);
}
.nl-form button:hover { background: var(--orange-dark); }

/* ── Footer ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 52px 52px 28px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-light);
}
.ft-logo        { height: 44px; object-fit: contain; display: block; margin-bottom: 14px; }
.ft-desc        { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 220px; margin-bottom: 18px; }
.ft-outlet-tag  {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-mid);
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-dark);
  letter-spacing: .07em;
  margin-bottom: 18px;
}
.socials { display: flex; gap: 6px; }
.soc {
  width: 34px; height: 34px;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray); font-size: 13px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.soc:hover { border-color: var(--orange); color: var(--orange); }

.ft-col h5 { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 9px; }
.ft-col a  { font-size: 13px; color: var(--ink); text-decoration: none; cursor: pointer; transition: color var(--transition); }
.ft-col a:hover { color: var(--orange); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; }
.ft-bottom p { font-size: 12px; color: var(--gray); }
.pays { display: flex; gap: 5px; }
.pay  { background: var(--sand); border: 1px solid var(--gray-light); padding: 4px 8px; font-size: 9px; font-weight: 800; letter-spacing: .05em; color: var(--gray); }

/* ── Shop page ── */
.shop-hero {
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--orange-pale) 100%);
  padding: 64px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.shop-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 2px solid var(--orange-mid);
  opacity: .4;
  pointer-events: none;
}
.shop-hero-pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 14vw, 160px);
  line-height: .8;
  background: linear-gradient(135deg, var(--orange) 0%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 14px 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-bar span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-right: 4px; }
.fbtn {
  padding: 7px 16px;
  border: 1px solid var(--gray-light);
  background: transparent;
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.fbtn:hover, .fbtn.fa { background: var(--orange); color: #fff; border-color: var(--orange); }
.shop-count { margin-left: auto; font-size: 12px; color: var(--gray); }

.guarantee {
  background: linear-gradient(90deg, var(--orange-pale), var(--teal-pale));
  border-top: 1px solid var(--gray-light);
  padding: 32px 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.g-item svg { margin: 0 auto 10px; display: block; }
.g-title { font-size: 12px; font-weight: 700; color: var(--charcoal); margin-bottom: 3px; }
.g-sub   { font-size: 11px; color: var(--gray); }

/* ── Story page ── */
.story-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 58vh;
}
.sh-left {
  background: var(--sand);
  padding: 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.sh-left::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 2px solid var(--teal-mid);
  opacity: .5;
  pointer-events: none;
}
.sh-right {
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--orange-pale) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px;
  border-left: 1px solid var(--gray-light);
}
.story-logo    { width: 62%; max-width: 240px; object-fit: contain; margin-bottom: 16px; }
.story-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .24em;
  background: linear-gradient(90deg, var(--orange), var(--teal-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.story-blocks { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--gray-light); }
.sb { padding: 56px 52px; border-right: 1px solid var(--gray-light); }
.sb:last-child { border-right: none; }
.sb-line   { width: 40px; height: 3px; margin-bottom: 20px; }
.sb-line-o { background: var(--orange); }
.sb-line-t { background: var(--teal-dark); }
.sb h3    { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: .06em; margin-bottom: 12px; }
.sb h3.ho { color: var(--orange); }
.sb h3.ht { color: var(--teal-dark); }
.sb p     { font-size: 14px; line-height: 1.85; color: var(--gray); }

.values-bar {
  background: linear-gradient(90deg, var(--orange) 0%, var(--teal-dark) 100%);
  padding: 56px 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.vb-item { color: #fff; text-align: center; }
.vb-num  { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; margin-bottom: 5px; }
.vb-lbl  { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .78; }

/* ── Family page ── */
.family-hero {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--orange-pale) 100%);
  padding: 80px 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
}
.fam-logo  { width: 75%; max-width: 300px; display: block; margin: 0 auto; }
.fam-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcard {
  background: var(--white);
  padding: 26px;
  border-top: 3px solid var(--gray-light);
  transition: border-color var(--transition), transform .2s ease;
}
.mcard:hover { transform: translateY(-2px); }
.mcard.mc-o:hover { border-color: var(--orange); }
.mcard.mc-t:hover { border-color: var(--teal-dark); }
.mav    { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.mav-o  { background: var(--orange-pale); color: var(--orange-dark); }
.mav-t  { background: var(--teal-pale);   color: var(--teal-dark); }
.mname  { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.mhandle { font-size: 11px; color: var(--gray); margin-bottom: 12px; }
.mquote { font-size: 13px; line-height: 1.7; color: var(--gray); font-style: italic; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.cl {
  background: var(--sand);
  padding: 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--gray-light);
}
.cl::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid var(--orange-mid);
  opacity: .4;
  pointer-events: none;
}
.cl::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px solid var(--teal-mid);
  opacity: .4;
  pointer-events: none;
}
.cl-info { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.cli     { display: flex; gap: 14px; align-items: flex-start; }
.cli-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--gray-light);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.cli-lbl { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 3px; }
.cli-val { font-size: 14px; color: var(--ink); }

.outlet-note {
  margin-top: 32px;
  padding: 18px;
  border-left: 3px solid var(--orange);
  background: var(--orange-pale);
  position: relative;
  z-index: 1;
}
.outlet-note-lbl { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.outlet-note p   { font-size: 13px; color: var(--gray); line-height: 1.7; }

.cr { background: var(--off); padding: 80px 52px; display: flex; flex-direction: column; justify-content: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ff { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.ff label { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); }
.ff input,
.ff textarea,
.ff select {
  padding: 13px 15px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.ff input:focus, .ff textarea:focus, .ff select:focus { border-color: var(--orange); }
.ff textarea { resize: vertical; min-height: 110px; }

/* ── Cart ── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(46,46,44,.45);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: var(--white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--gray-light);
}
.cart-panel.open { transform: translateX(0); }

.cart-hd { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--gray-light); }
.cart-hd h3 { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: .07em; }
.cx { width: 34px; height: 34px; border: 1px solid var(--gray-light); background: none; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.cx:hover { background: var(--sand); }

.cart-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.empty-cart { text-align: center; padding: 48px 20px; color: var(--gray); }
.ec-icon { width: 52px; height: 52px; border: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.empty-cart p     { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--charcoal); }
.empty-cart small { font-size: 12px; }

.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-light); }
.ci-img  { width: 64px; height: 80px; background: var(--sand); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ci-body { flex: 1; }
.ci-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.ci-meta { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.ci-qty  { display: flex; align-items: center; gap: 8px; }
.qb { width: 24px; height: 24px; border: 1px solid var(--gray-light); background: none; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.qb:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.qv { font-size: 13px; font-weight: 600; min-width: 16px; text-align: center; }
.ci-price { font-size: 14px; font-weight: 700; color: var(--orange); align-self: center; }

.cart-ft { padding: 18px 24px; border-top: 1px solid var(--gray-light); }
.saving-row { display: flex; justify-content: space-between; background: var(--orange-pale); border: 1px solid var(--orange-mid); padding: 9px 12px; margin-bottom: 12px; font-size: 12px; font-weight: 700; color: var(--orange-dark); }
.tot-row { display: flex; justify-content: space-between; margin-bottom: 16px; align-items: baseline; }
.tot-row span:first-child { font-size: 12px; color: var(--gray); }
.tot-row span:last-child  { font-size: 19px; font-weight: 700; color: var(--charcoal); }
.co-btn { width: 100%; background: var(--charcoal); color: #fff; border: none; padding: 15px; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-bottom: 8px; transition: background var(--transition); }
.co-btn:hover { background: var(--orange); }
.sp-btn { width: 100%; background: #5a31f4; color: #fff; border: none; padding: 15px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: opacity var(--transition); }
.sp-btn:hover { opacity: .85; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(56px);
  background: var(--charcoal);
  color: #fff;
  padding: 13px 22px;
  font-size: 13px; font-weight: 500;
  z-index: 500;
  transition: transform .28s ease;
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  border-left: 3px solid var(--orange);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  header { padding: 0 20px; }
  nav    { display: none; }

  .hero,
  .story-hero,
  .story-blocks,
  .contact-grid,
  .family-hero,
  .nl-wrap         { grid-template-columns: 1fr; }
  .hero-right      { min-height: 48vw; }
  .pgrid, .pgrid-3 { grid-template-columns: repeat(2, 1fr); }
  .tgrid, .fam-grid, .ft-grid { grid-template-columns: 1fr 1fr; }
  .stats           { grid-template-columns: 1fr 1fr; }
  .values-bar      { grid-template-columns: 1fr; }
  .outlet-strip    { grid-template-columns: 1fr; }
  .guarantee       { grid-template-columns: repeat(2, 1fr); }
  .section         { padding: 56px 20px; }
}


/* WordPress / WooCommerce integration */
.admin-bar .nav { top: 32px; }
#atezz-app .page { display: none; }
#atezz-app .page.active { display: block; }
.logo-wrap, [data-page], [data-cart-toggle], .ft-link { cursor: pointer; }
.screen-reader-text { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.atezz-wc-notice { padding: 14px 18px; background: var(--teal-pale); border-left: 3px solid var(--teal-dark); margin: 18px auto; max-width: 1180px; font-weight: 600; }
.woocommerce-notices-wrapper { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { list-style: none; margin: 14px 0; padding: 14px 16px; background: var(--white); border-left: 3px solid var(--orange); box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.woocommerce-message .button, .woocommerce-info .button { float: right; color: var(--orange-dark); font-weight: 800; text-transform: uppercase; font-size: 12px; }
.atezz-product-link { color: inherit; text-decoration: none; }
.atezz-product-form { margin: 0; }
.atezz-product-form .padd { width: auto; border: 0; font-family: inherit; }
.pimg .added_to_cart { position: absolute; right: 14px; bottom: 58px; z-index: 4; background: var(--charcoal); color: #fff; padding: 9px 12px; text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cart-panel .woocommerce-mini-cart { list-style: none; margin: 0; padding: 0; }
.cart-panel .woocommerce-mini-cart-item { display: grid; grid-template-columns: 58px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-light); position: relative; }
.cart-panel .woocommerce-mini-cart-item img { width: 58px; height: 70px; object-fit: cover; background: var(--sand); }
.cart-panel .woocommerce-mini-cart-item a { color: var(--charcoal); text-decoration: none; font-weight: 800; font-size: 13px; }
.cart-panel .woocommerce-mini-cart-item .quantity { display: block; color: var(--gray); font-size: 12px; margin-top: 6px; }
.cart-panel .remove_from_cart_button { position: absolute; right: 0; top: 14px; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid var(--gray-light); color: var(--gray); }
.cart-panel .woocommerce-mini-cart__total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; margin: 14px 0; }
.cart-panel .woocommerce-mini-cart__buttons { display: grid; gap: 10px; }
.cart-panel .woocommerce-mini-cart__buttons a { display: block; text-align: center; padding: 14px 16px; text-decoration: none; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.cart-panel .woocommerce-mini-cart__buttons .wc-forward { background: var(--teal-pale); color: var(--teal-dark); }
.cart-panel .woocommerce-mini-cart__buttons .checkout { background: var(--charcoal); color: #fff; }
.atezz-main-shop { max-width: 1240px; margin: 0 auto; padding: 60px 20px; }
.woocommerce div.product, .woocommerce-cart-form, .woocommerce-checkout, .woocommerce-account .woocommerce { max-width: 1180px; margin: 0 auto; padding: 42px 20px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }


/* Direct WooCommerce theme additions. */

.pimg {
  background: var(--sand);
}
.pimg .atezz-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.pcard:hover .atezz-product-image {
  transform: scale(1.035);
}
.pp-from {
  display: block;
  margin-bottom: 3px;
  color: var(--gray);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pimg .padd {
  display: block;
  text-align: center;
  text-decoration: none;
  z-index: 8;
}
.pimg .outlet-bar-card,
.pimg .pbadge {
  z-index: 5;
}

/* Navigation used on the real WooCommerce pages. */
.atezz-system-header .atezz-desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.atezz-system-header .atezz-desktop-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.atezz-system-header .atezz-desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .22s ease;
}
.atezz-system-header .atezz-desktop-nav a:hover {
  color: var(--orange);
}
.atezz-system-header .atezz-desktop-nav a:hover::after {
  width: 100%;
}
.atezz-system-header .hdr-right a {
  text-decoration: none;
}

/* CSS-only hamburger menu. */
.atezz-mobile-menu {
  display: none;
  position: relative;
  z-index: 260;
}
.atezz-mobile-menu summary {
  list-style: none;
  width: 42px;
  height: 42px;
  display: grid;
  align-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 1px solid var(--gray-light);
  background: var(--white);
}
.atezz-mobile-menu summary::-webkit-details-marker {
  display: none;
}
.atezz-mobile-menu summary span {
  height: 2px;
  background: var(--charcoal);
  width: 20px;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.atezz-mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.atezz-mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}
.atezz-mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.atezz-mobile-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(300px, calc(100vw - 28px));
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
}
.atezz-mobile-menu[open] .atezz-mobile-panel {
  display: grid !important;
}
.atezz-mobile-panel a,
.atezz-mobile-panel button {
  display: block;
  width: 100%;
  padding: 14px 12px;
  border: 0;
  border-bottom: 1px solid var(--gray-light);
  background: transparent;
  color: var(--charcoal);
  text-align: left;
  text-decoration: none;
  font: 700 12px/1.2 'DM Sans', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.atezz-mobile-panel a:last-child,
.atezz-mobile-panel button:last-child {
  border-bottom: 0;
}
.atezz-mobile-panel a:hover,
.atezz-mobile-panel button:hover {
  color: var(--orange);
  background: var(--sand);
}

/* Native WooCommerce product, cart, checkout and account pages. */
.atezz-main-shop {
  max-width: 1240px;
  margin: 0 auto;
  padding: 52px 20px 74px;
}
.atezz-main-shop .woocommerce-breadcrumb {
  margin: 0 0 24px;
  color: var(--gray);
  font-size: 12px;
}
.atezz-main-shop .woocommerce-breadcrumb a {
  color: var(--teal-dark);
  text-decoration: none;
}
.atezz-main-shop .woocommerce-result-count {
  color: var(--gray);
  font-size: 13px;
  margin: 0 0 22px;
}
.atezz-main-shop .woocommerce-ordering select {
  min-height: 40px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  padding: 0 12px;
  color: var(--charcoal);
  font: 600 12px 'DM Sans', sans-serif;
}
.atezz-main-shop ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.atezz-main-shop ul.products::before,
.atezz-main-shop ul.products::after {
  display: none;
}
.atezz-main-shop ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 0 18px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  position: relative;
}
.atezz-main-shop ul.products li.product a {
  color: var(--charcoal);
  text-decoration: none;
}
.atezz-main-shop ul.products li.product a img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 0 14px;
  background: var(--sand);
}
.atezz-main-shop ul.products li.product .woocommerce-loop-product__title {
  min-height: 42px;
  padding: 0 14px;
  color: var(--charcoal);
  font: 600 15px/1.35 'DM Sans', sans-serif;
}
.atezz-main-shop ul.products li.product .price {
  display: block;
  min-height: 26px;
  padding: 0 14px;
  color: var(--orange-dark);
  font: 700 16px 'DM Sans', sans-serif;
}
.atezz-main-shop ul.products li.product .price del {
  color: var(--gray-mid);
  font-size: 12px;
}
.atezz-main-shop ul.products li.product .onsale {
  top: 12px;
  left: 12px;
  right: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 6px 9px;
  border-radius: 0;
  background: var(--orange);
  color: #fff;
  font: 800 10px 'DM Sans', sans-serif;
  letter-spacing: .06em;
}
.atezz-main-shop ul.products li.product .button {
  display: block;
  margin: 12px 14px 0;
  border-radius: 0;
  padding: 12px;
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  font: 800 11px 'DM Sans', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.atezz-main-shop ul.products li.product .button:hover {
  background: var(--orange);
}
.atezz-main-shop .woocommerce-pagination {
  margin-top: 36px;
}
.atezz-main-shop .woocommerce-pagination ul {
  border: 0;
}
.atezz-main-shop .woocommerce-pagination ul li {
  border: 0;
}
.atezz-main-shop .woocommerce-pagination ul li a,
.atezz-main-shop .woocommerce-pagination ul li span {
  border: 1px solid var(--gray-light);
  color: var(--charcoal);
  margin-right: 6px;
}
.atezz-main-shop .woocommerce-pagination ul li span.current {
  background: var(--orange);
  color: #fff;
}

.atezz-main-shop .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  column-gap: 52px;
  row-gap: 36px;
  padding: 0;
}
.atezz-main-shop .woocommerce div.product .woocommerce-product-gallery,
.atezz-main-shop .woocommerce div.product .summary {
  width: auto;
  float: none;
  margin: 0;
}
.atezz-main-shop .woocommerce div.product .woocommerce-tabs,
.atezz-main-shop .woocommerce div.product .related,
.atezz-main-shop .woocommerce div.product .upsells {
  grid-column: 1 / -1;
  width: 100%;
}
.atezz-main-shop .woocommerce div.product .product_title {
  font: 400 clamp(42px, 5vw, 68px)/.9 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  color: var(--charcoal);
}
.atezz-main-shop .woocommerce div.product p.price,
.atezz-main-shop .woocommerce div.product span.price {
  color: var(--orange-dark);
  font: 700 22px 'DM Sans', sans-serif;
}
.atezz-main-shop .woocommerce div.product form.cart .button,
.atezz-main-shop .woocommerce a.button,
.atezz-main-shop .woocommerce button.button,
.atezz-main-shop .woocommerce input.button {
  border-radius: 0;
  background: var(--charcoal);
  color: #fff;
  padding: 14px 18px;
  font: 800 11px 'DM Sans', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.atezz-main-shop .woocommerce a.button:hover,
.atezz-main-shop .woocommerce button.button:hover,
.atezz-main-shop .woocommerce input.button:hover {
  background: var(--orange);
  color: #fff;
}
.atezz-main-shop .woocommerce input.input-text,
.atezz-main-shop .woocommerce textarea,
.atezz-main-shop .woocommerce select {
  min-height: 44px;
  border: 1px solid var(--gray-light);
  border-radius: 0;
  padding: 10px 12px;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
}
.atezz-main-shop .woocommerce table.shop_table {
  border: 1px solid var(--gray-light);
  border-radius: 0;
  background: var(--white);
}
.atezz-main-shop .woocommerce table.shop_table th,
.atezz-main-shop .woocommerce table.shop_table td {
  padding: 16px;
  border-color: var(--gray-light);
}
.atezz-main-shop .woocommerce-cart-form,
.atezz-main-shop .cart-collaterals,
.atezz-main-shop .woocommerce-checkout,
.atezz-main-shop .woocommerce-account .woocommerce {
  max-width: 1180px;
  margin: 0 auto;
}
.atezz-main-shop .cart-collaterals .cart_totals,
.atezz-main-shop .woocommerce-checkout-review-order {
  width: 100%;
  padding: 24px;
  border: 1px solid var(--gray-light);
  background: var(--white);
}
.atezz-main-shop .woocommerce form.checkout_coupon,
.atezz-main-shop .woocommerce form.login,
.atezz-main-shop .woocommerce form.register {
  border: 1px solid var(--gray-light);
  border-radius: 0;
  background: var(--white);
}
.atezz-main-shop .woocommerce-account .woocommerce-MyAccount-navigation {
  width: 24%;
}
.atezz-main-shop .woocommerce-account .woocommerce-MyAccount-content {
  width: 70%;
}

.atezz-system-footer {
  margin-top: 0;
}
.atezz-standard-page {
  min-height: 52vh;
}
.atezz-page-title {
  margin: 0 0 24px;
  color: var(--charcoal);
  font: 400 clamp(42px, 5vw, 68px)/.9 'Bebas Neue', sans-serif;
}
.atezz-page-content {
  max-width: 780px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}
.atezz-page-content a {
  color: var(--orange-dark);
}

/* Newsletter and the information pages linked from the footer. */
.atezz-members-signup {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .8fr);
  gap: 72px;
  align-items: center;
}
.atezz-members-copy p {
  max-width: 510px;
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}
.atezz-members-form {
  padding: 34px;
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--orange);
  background: var(--sand);
}
.atezz-members-form .nl-form {
  width: 100%;
  margin: 0;
}
.atezz-members-form > p:last-child {
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 11px;
}
.atezz-form-message {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.atezz-form-message.is-success {
  color: var(--teal-dark);
}
.atezz-form-message.is-error {
  color: #b94225;
}
.atezz-info-page {
  max-width: 980px;
  color: var(--gray);
}
.atezz-info-page h2 {
  margin: 30px 0 10px;
  color: var(--charcoal);
  font: 400 30px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0;
}
.atezz-info-lead {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--charcoal);
  font: 500 20px/1.55 'DM Sans', sans-serif;
}
.atezz-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.atezz-info-grid > div {
  min-height: 158px;
  padding: 20px;
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--teal);
  background: var(--sand);
}
.atezz-info-grid > div:nth-child(2) {
  border-top-color: var(--orange);
}
.atezz-info-grid h2 {
  margin: 0 0 9px;
  font-size: 24px;
}
.atezz-info-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.atezz-info-page .btn-orange {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font: 800 11px 'DM Sans', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.atezz-info-page .btn-orange:hover {
  background: var(--charcoal);
  color: #fff;
}
.atezz-faq {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--gray-light);
}
.atezz-faq:last-child {
  border-bottom: 1px solid var(--gray-light);
}
.atezz-faq summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 700;
}
.atezz-faq p {
  max-width: 640px;
  margin: 12px 0 0;
}
.atezz-size-table {
  max-width: 660px;
  margin: 28px 0;
  border: 1px solid var(--gray-light);
  background: var(--white);
}
.atezz-size-table > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--gray-light);
}
.atezz-size-table > div:last-child {
  border-bottom: 0;
}
.atezz-size-table > div > * {
  padding: 13px 16px;
}
.atezz-size-table > div:first-child {
  background: var(--charcoal);
  color: #fff;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* WooCommerce account: native forms with an AT EZZ-specific treatment. */
.atezz-main-shop .atezz-account-auth {
  display: grid;
  grid-template-columns: minmax(260px, .84fr) minmax(0, 1.6fr);
  min-height: 570px;
  border: 1px solid var(--gray-light);
  background: var(--white);
}
.atezz-account-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 42px;
  background: var(--charcoal);
  color: #fff;
}
.atezz-account-kicker,
.atezz-account-eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.atezz-account-intro h1 {
  margin: 0;
  color: #fff;
  font: 400 clamp(44px, 5vw, 66px)/.88 'Bebas Neue', sans-serif;
  letter-spacing: 0;
}
.atezz-account-intro > p:not(.atezz-account-kicker) {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.75;
}
.atezz-account-benefits {
  display: grid;
  gap: 12px;
  margin: 34px 0 42px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}
.atezz-account-benefits li {
  position: relative;
  padding-left: 20px;
}
.atezz-account-benefits li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: '+';
  font-size: 17px;
  font-weight: 800;
  line-height: .8;
}
.atezz-account-shop-link {
  margin-top: auto;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.atezz-account-shop-link span {
  margin-left: 5px;
  color: var(--orange);
}
.atezz-account-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.atezz-account-forms:not(.has-register) {
  grid-template-columns: minmax(0, 540px);
  align-content: center;
}
.atezz-account-card {
  padding: 48px 40px;
  border-left: 1px solid var(--gray-light);
}
.atezz-account-forms:not(.has-register) .atezz-account-card {
  border-left: 0;
}
.atezz-account-card h2 {
  margin: 0;
  color: var(--charcoal);
  font: 400 42px/.95 'Bebas Neue', sans-serif;
  letter-spacing: 0;
}
.atezz-account-copy {
  margin: 12px 0 28px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}
.atezz-main-shop .atezz-account-auth .woocommerce form.login,
.atezz-main-shop .atezz-account-auth .woocommerce form.register,
.atezz-main-shop .atezz-account-auth form.login,
.atezz-main-shop .atezz-account-auth form.register {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.atezz-account-auth .form-row {
  margin: 0 0 18px;
}
.atezz-account-auth label {
  display: block;
  margin-bottom: 7px;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.atezz-account-auth .required {
  color: var(--orange-dark);
}
.atezz-main-shop .atezz-account-auth input.input-text {
  width: 100%;
  min-height: 48px;
  border-color: var(--gray-light);
  background: #fff;
  color: var(--charcoal);
}
.atezz-main-shop .atezz-account-auth input.input-text:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,155,161,.14);
}
.atezz-account-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 2px;
}
.atezz-account-actions .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--gray);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.atezz-account-actions input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--orange);
}
.atezz-main-shop .atezz-account-auth .button {
  min-height: 46px;
  padding: 0 18px;
}
.atezz-account-help {
  margin: 16px 0 0;
  color: var(--gray);
  font-size: 12px;
}
.atezz-account-help a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation {
  float: left;
  width: 24%;
  margin: 0;
  padding: 12px;
  background: var(--charcoal);
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation li {
  margin: 0;
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 13px 14px;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation .is-active a {
  background: var(--orange);
  color: #fff;
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-content {
  float: right;
  width: 72%;
  min-height: 380px;
  padding: 36px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--gray);
  line-height: 1.7;
}
body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-content a {
  color: var(--teal-dark);
}

@media (max-width: 1024px) {
  .atezz-system-header .atezz-desktop-nav,
  #atezz-app > header > nav {
    display: none !important;
  }
  .atezz-mobile-menu {
    display: block;
    order: 2;
    margin-left: auto;
  }
  .hdr-right {
    order: 3;
    margin-left: 8px;
  }
  .logo-wrap {
    order: 1;
  }
  .atezz-main-shop ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .atezz-main-shop .woocommerce div.product {
    grid-template-columns: 1fr;
  }
  .atezz-main-shop .woocommerce-account .woocommerce-MyAccount-navigation,
  .atezz-main-shop .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
  .atezz-main-shop .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 26px;
  }
}

@media (max-width: 900px) {
  .atezz-members-signup,
  .atezz-main-shop .atezz-account-auth {
    grid-template-columns: 1fr;
  }
  .atezz-account-intro {
    min-height: 0;
  }
  .atezz-account-shop-link {
    margin-top: 30px;
  }
  .atezz-account-card:first-child {
    border-left: 0;
  }
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation,
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation {
    margin-bottom: 22px;
  }
  .atezz-info-grid {
    grid-template-columns: 1fr;
  }
  .atezz-info-grid > div {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  header {
    height: 62px;
    padding: 0 14px;
  }
  .top-bar {
    padding: 7px 12px;
  }
  .top-bar-text {
    font-size: 10px;
  }
  .atezz-main-shop {
    padding: 32px 14px 52px;
  }
  .atezz-main-shop ul.products {
    gap: 12px;
  }
  .atezz-main-shop ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
    padding: 0 10px;
  }
  .atezz-main-shop ul.products li.product .price {
    font-size: 14px;
    padding: 0 10px;
  }
  .atezz-main-shop ul.products li.product .button {
    margin: 10px 10px 0;
    padding: 11px 8px;
    font-size: 9px;
  }
  .atezz-main-shop .woocommerce div.product {
    row-gap: 24px;
  }
  .atezz-main-shop .woocommerce table.shop_table th,
  .atezz-main-shop .woocommerce table.shop_table td {
    padding: 10px 7px;
    font-size: 12px;
  }
  .atezz-members-form,
  .atezz-account-intro,
  .atezz-account-card {
    padding: 28px 22px;
  }
  .atezz-account-forms {
    grid-template-columns: 1fr;
  }
  .atezz-account-forms:not(.has-register) {
    grid-template-columns: 1fr;
  }
  .atezz-account-card + .atezz-account-card {
    border-top: 1px solid var(--gray-light);
    border-left: 0;
  }
  .atezz-account-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .atezz-main-shop .atezz-account-auth .button {
    width: 100%;
  }
  .atezz-info-lead {
    font-size: 18px;
  }
  .atezz-size-table > div > * {
    padding: 11px 9px;
    font-size: 12px;
  }
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation,
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-navigation {
    margin-bottom: 18px;
  }
  body.woocommerce-account .atezz-main-shop .woocommerce-MyAccount-content {
    padding: 24px 18px;
  }
}
