/*
Theme Name: Cashzone Child
Theme URI: https://www.cashzone.com.au/
Description: Cashzone Australia child theme for GeneratePress.
Author: Cashzone Australia
Template: generatepress
Version: 1.0.1
Text Domain: cashzone
*/

/* ============================================================
   CASHZONE — MASTER SCSS IMPORTER
   This file compiles ALL SCSS partials in the correct order.
============================================================ */
/* ------------------------------------------------------------
   1. ABSTRACTS (Variables, Mixins, Functions)
------------------------------------------------------------ */
/* ============================================================
   CASHZONE DESIGN TOKENS — VARIABLES (UPGRADED)
   Poppins + Poppins, Strong & Bold Retail System
============================================================ */
/* ------------------------------------------------------------
   COLOR SYSTEM
------------------------------------------------------------ */
:root {
  --cz-black: var(--cz-charcoal);
  --cz-white: var(--cz-warm-white);
  --cz-gold: var(--cz-yellow);
  --cz-gold-light: var(--cz-yellow);
  --cz-gold-dark: var(--cz-gold);
  --cz-dark: #1f2933;
  --cz-charcoal: #242421;
  --cz-light: #f7f8fa;
  --cz-muted: #6b7280;
  --cz-border: #e5e7eb;
  --cz-grey: #4A4A4A;
  --cz-grey-dark: var(--cz-charcoal);
  --cz-grey-mid: #777777;
  --cz-metal-grey: #8f9499;
  --cz-light-grey: #d7d7d7;
  --cz-dark-grey: var(--cz-warm-white);
  --cz-bg-dark: #0A0A0A;
  --cz-bg-charcoal: #0A0A0A;
  /* NEW — RGBA TOKENS */
  --cz-white-5: rgba(255,255,255,0.05);
  --cz-white-10: rgba(255,255,255,0.10);
  --cz-black-55: rgba(0,0,0,0.55);
  /* NEW — ICON FILTER TOKENS */
  --icon-filter-base: brightness(0) invert(1);
  --icon-filter-hover: brightness(1.2) saturate(1.3);
}

/* ------------------------------------------------------------
   TYPOGRAPHY — FONT FAMILIES
------------------------------------------------------------ */
:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* ------------------------------------------------------------
   TYPOGRAPHY — STRONG & BOLD RETAIL SCALE
------------------------------------------------------------ */
:root {
  --font-xs: clamp(0.72rem, 0.68rem + 0.2vw, 0.78rem);
  --font-sm: clamp(0.85rem, 0.80rem + 0.3vw, 0.95rem);
  --font-md: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
  --font-lg: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  --font-xl: clamp(1.8rem, 1.6rem + 0.8vw, 2.4rem);
  --font-xxl: clamp(2.4rem, 2.2rem + 1vw, 3.2rem);
  --heading-weight: 700;
  --body-weight: 400;
  --body-weight-strong: 500;
  --letterspace-wide: 0.05em;
  --letterspace-normal: 0em;
}

/* ------------------------------------------------------------
   SPACING SCALE — 8 POINT SYSTEM
------------------------------------------------------------ */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

/* ------------------------------------------------------------
   BREAKPOINTS
------------------------------------------------------------ */
:root {
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-xxl: 1536px;
}

/* ------------------------------------------------------------
   RADII
------------------------------------------------------------ */
:root {
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
}

/* ------------------------------------------------------------
   SHADOWS
------------------------------------------------------------ */
:root {
  --shadow-soft: 0 2px 6px rgba(0,0,0,0.25);
  --shadow-medium: 0 4px 12px rgba(0,0,0,0.35);
  --shadow-strong: 0 8px 24px rgba(0,0,0,0.45);
}

/* ------------------------------------------------------------
   Z-INDEX SCALE
------------------------------------------------------------ */
:root {
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-max: 9999;
}

/* ============================================================
   CASHZONE — MIXINS (UPGRADED)
   Responsive helpers, fluid typography, layout utilities,
   component generators, accessibility, overlays, and more.
============================================================ */
/* ------------------------------------------------------------
   BREAKPOINT MIXIN (IMPROVED)
------------------------------------------------------------ */
/* ------------------------------------------------------------
   FLUID TYPE MIXIN (IMPROVED)
------------------------------------------------------------ */
/* ------------------------------------------------------------
   FLEX HELPERS
------------------------------------------------------------ */
/* ------------------------------------------------------------
   GRID MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   ELEVATION / SHADOWS
------------------------------------------------------------ */
/* ------------------------------------------------------------
   BUTTON MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   PAGE TITLE MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   CARD VARIANT MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   ICON BASE MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   FOCUS RING MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   OVERLAY GRADIENT MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   CARD MIXIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   TRUNCATION
------------------------------------------------------------ */
/* ------------------------------------------------------------
   ABSOLUTE CENTER
------------------------------------------------------------ */
/* ------------------------------------------------------------
   VISUALLY HIDDEN
------------------------------------------------------------ */
/* ------------------------------------------------------------
   2. BASE (Reset, Typography, Global)
------------------------------------------------------------ */
/* ============================================================
   CASHZONE — MODERN CSS RESET
   Based on Andy Bell + Josh Comeau hybrid reset
============================================================ */
/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margin */
body, h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Smooth scrolling */
html:focus-within {
  scroll-behavior: smooth;
}

/* Body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background: var(--cz-bg-dark);
  color: var(--cz-white);
}

/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for form elements */
input, button, textarea, select {
  font: inherit;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ============================================================
   CASHZONE — TYPOGRAPHY SYSTEM
   Poppins (headings) + Poppins (body)
   Strong & Bold Retail Tone
============================================================ */
/* ------------------------------------------------------------
   BASE BODY TEXT
------------------------------------------------------------ */
body {
  font-family: var(--font-body);
  font-size: var(--font-md);
  font-weight: var(--body-weight);
  line-height: 1.65;
  color: var(--cz-grey);
}

/* ------------------------------------------------------------
   PARAGRAPH STYLES
------------------------------------------------------------ */
p {
  margin-bottom: var(--space-4);
  color: var(--cz-grey);
  font-size: var(--font-md);
}

.lead {
  font-size: var(--font-lg);
  font-weight: var(--body-weight-strong);
  color: var(--cz-white);
  margin-bottom: var(--space-5);
}

/* ------------------------------------------------------------
   SMALL TEXT
------------------------------------------------------------ */
.text-sm {
  font-size: var(--font-sm);
  color: var(--cz-grey);
}

/* ------------------------------------------------------------
   STRONG TEXT
------------------------------------------------------------ */
strong {
  font-weight: var(--body-weight-strong);
  color: var(--cz-white);
}

/* ------------------------------------------------------------
   HEADINGS — GLOBAL RULES
   (Uppercase, wide spacing, bold)
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

/* ------------------------------------------------------------
   INDIVIDUAL HEADING SIZES
   (Fluid + responsive)
------------------------------------------------------------ */
h1 {
  font-size: clamp(2rem, 2rem + 1vw, 3.2rem);
  margin-bottom: var(--space-5);
}

h2 {
  font-size: clamp(1.6rem, 1.6rem + 1vw, 2.4rem);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: clamp(1.3rem, 1.3rem + 1vw, 1.8rem);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: clamp(1.1rem, 1.1rem + 1vw, 1.4rem);
  margin-bottom: var(--space-3);
}

h5 {
  font-size: var(--font-md);
  margin-bottom: var(--space-2);
}

h6 {
  font-size: var(--font-sm);
  margin-bottom: var(--space-2);
}

/* ------------------------------------------------------------
   SECTION TITLES
------------------------------------------------------------ */
.section-title {
  font-size: clamp(1.8rem, 1.8rem + 1vw, 2.6rem);
  text-align: center;
  margin-bottom: var(--space-6);
  color: var(--cz-gold);
}

/* ------------------------------------------------------------
   UPPERCASE UTILITIES
------------------------------------------------------------ */
.uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
}

/* ------------------------------------------------------------
   CENTERED TEXT UTILITIES
------------------------------------------------------------ */
.text-center {
  text-align: center;
}

/* ------------------------------------------------------------
   TYPOGRAPHY SPACING UTILITIES
------------------------------------------------------------ */
.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

/* ============================================================
   CASHZONE — GLOBAL BASE STYLES
   Foundation layer for layout, typography, and resets.
============================================================ */
/* ------------------------------------------------------------
   TEXT SELECTION
------------------------------------------------------------ */
::selection {
  background: var(--cz-gold);
  color: var(--cz-charcoal);
}

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

/* ------------------------------------------------------------
   LINKS
------------------------------------------------------------ */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
a:hover {
  color: var(--cz-gold);
}

/* ------------------------------------------------------------
   LISTS
------------------------------------------------------------ */
ul,
ol {
  padding-left: var(--space-5);
}

/* ------------------------------------------------------------
   HEADINGS — GLOBAL DEFAULTS
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  letter-spacing: var(--letterspace-wide);
  text-transform: uppercase;
  color: var(--cz-gold);
}

/* ------------------------------------------------------------
   PARAGRAPHS
------------------------------------------------------------ */
p {
  margin-bottom: var(--space-4);
  color: var(--cz-grey);
}

/* ------------------------------------------------------------
   CONTAINERS
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

/* ------------------------------------------------------------
   PAGE WRAPPERS
------------------------------------------------------------ */
.page-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
@media (min-width: var(--bp-md)) {
  .page-section {
    padding-top: var(--space-9);
    padding-bottom: var(--space-9);
  }
}

/* ------------------------------------------------------------
   BACKGROUND SYSTEM
------------------------------------------------------------ */
.bg-dark {
  background-color: var(--cz-bg-dark);
}

.bg-charcoal {
  background: var(--cz-bg-charcoal);
}

/* ------------------------------------------------------------
   FORMS — BASE RESET
------------------------------------------------------------ */
input,
textarea,
select,
button {
  font-family: var(--font-body);
  font-size: var(--font-md);
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ------------------------------------------------------------
   HR ELEMENT
------------------------------------------------------------ */
hr {
  border: none;
  border-top: 1px solid var(--cz-grey-mid);
  margin: var(--space-6) 0;
}

/* ------------------------------------------------------------
   TABLES
------------------------------------------------------------ */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--cz-grey-mid);
}

/* ------------------------------------------------------------
   GLOBAL Z-INDEX HELPERS
------------------------------------------------------------ */
.z-header {
  z-index: var(--z-header);
}

.z-overlay {
  z-index: var(--z-overlay);
}

.z-modal {
  z-index: var(--z-modal);
}

/* ------------------------------------------------------------
   GLOBAL UTILITIES
------------------------------------------------------------ */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

/* ============================================================
   GLOBAL ACCESSIBILITY & REDUCED MOTION SUPPORT
============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cz-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* ------------------------------------------------------------
   3. LAYOUT (Header, Footer, Hero, Structure)
------------------------------------------------------------ */
/* ============================================================
   CASHZONE HEADER
============================================================ */

.site-header,
.cz-main-header {
  background: var(--cz-black);
  border-bottom: 2px solid var(--cz-gold);
  position: relative;
  width: 100%;
  z-index: var(--z-header);
}

.cz-trust-bar {
  background: var(--cz-dark-grey);
  color: var(--cz-light-grey);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
}

.cz-trust-bar__inner {
  align-items: center;
  display: flex;
  gap: var(--space-2) var(--space-5);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1600px;
  min-height: 34px;
  padding: 4px 32px;
}

.cz-trust-bar__group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
}

.cz-trust-item {
  align-items: center;
  color: var(--cz-light-grey);
  display: inline-flex;
  gap: 6px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.cz-trust-item svg {
  display: block;
  fill: var(--cz-metal-grey);
  flex: 0 0 auto;
  height: 13px;
  width: 13px;
}

.cz-trust-bar a {
  color: var(--cz-light-grey);
}

.cz-trust-bar a:hover,
.cz-trust-bar a:focus {
  color: var(--cz-gold-light);
}

.header-inner,
.cz-main-header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  margin: 0 auto;
  max-width: 1600px;
  min-height: 82px;
  padding: 0 32px;
}

.cz-logo,
.cz-header-logo {
  flex: 0 0 auto;
}

.cz-logo a,
.cz-logo picture {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.cz-logo img,
.cz-header-logo img {
  display: block;
  height: auto;
  max-height: 54px;
  max-width: 300px;
  width: auto;
}

.cz-header-divider {
  background: rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  height: 34px;
  width: 1px;
}

.cz-header-nav,
.cz-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.cz-header-menu,
.cz-nav ul {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.cz-header-menu li {
  margin: 0;
}

.cz-header-menu a,
.cz-nav a {
  color: var(--cz-white);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  padding: 28px 0 24px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cz-header-menu a::after,
.cz-nav a::after {
  background: var(--cz-gold);
  bottom: 18px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.cz-header-menu a:hover,
.cz-header-menu a:focus,
.cz-header-menu .current-menu-item > a,
.cz-header-menu .current_page_item > a,
.cz-nav a:hover,
.cz-nav a:focus,
.cz-nav .current-menu-item > a,
.cz-nav .current_page_item > a {
  color: var(--cz-gold);
}

.cz-header-menu a:hover::after,
.cz-header-menu a:focus::after,
.cz-header-menu .current-menu-item > a::after,
.cz-header-menu .current_page_item > a::after,
.cz-nav a:hover::after,
.cz-nav a:focus::after,
.cz-nav .current-menu-item > a::after,
.cz-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.cz-header-phone {
  align-items: center;
  color: var(--cz-white);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.cz-header-phone:hover,
.cz-header-phone:focus {
  color: var(--cz-gold);
}

.cz-header-phone-icon {
  color: var(--cz-gold);
  display: inline-flex;
  flex: 0 0 auto;
}

.cz-header-phone-icon svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.cz-header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  justify-content: flex-end;
  white-space: nowrap;
}

.cz-header-btn {
  align-items: center;
  border-radius: 8px;
  box-sizing: border-box;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cz-header-btn:hover,
.cz-header-btn:focus {
  transform: translateY(-1px);
}

.cz-header-btn--gold {
  background: var(--cz-gold);
  border: 1px solid var(--cz-gold);
  color: var(--cz-black);
}

.cz-header-btn--gold:hover,
.cz-header-btn--gold:focus {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-black);
}

.cz-btn-gold,
.cz-btn-outline {
  align-items: center;
  border: 2px solid var(--cz-gold);
  border-radius: var(--radius-md);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 38px;
  padding: 9px 13px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cz-btn-gold {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-btn-gold:hover,
.cz-btn-gold:focus {
  background: var(--cz-gold-light);
  border-color: var(--cz-gold-light);
  color: var(--cz-black);
}

.cz-btn-outline {
  background: transparent;
  color: var(--cz-gold);
}

.cz-btn-outline:hover,
.cz-btn-outline:focus {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--cz-white);
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.cz-menu-toggle__line {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 20px;
}

.cz-menu-toggle.is-open .cz-menu-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.cz-menu-toggle.is-open .cz-menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.cz-menu-toggle.is-open .cz-menu-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cz-mobile-nav {
  background: var(--cz-black);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  display: none;
}

.cz-mobile-menu {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  max-width: 1600px;
  padding: var(--space-4) 32px;
}

.cz-mobile-menu a {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  color: var(--cz-white);
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-md);
  font-weight: 700;
  padding: 12px 0;
  text-decoration: none;
}

.cz-mobile-menu a:hover,
.cz-mobile-menu a:focus {
  color: var(--cz-gold);
}

.cz-main-header.is-sticky .cz-main-header-inner {
  min-height: 64px;
}

.cz-main-header.is-sticky .cz-header-logo img {
  max-height: 44px;
}

@media (max-width: 1400px) {
  .cz-main-header-inner {
    gap: 24px;
  }

  .cz-header-menu,
  .cz-nav ul {
    gap: 24px;
  }

  .cz-header-actions {
    gap: 10px;
  }

  .cz-header-btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1180px) {
  .cz-main-header-inner {
    gap: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cz-header-logo img {
    max-height: 56px;
    max-width: 230px;
  }

  .cz-header-divider {
    height: 42px;
  }

  .cz-header-menu,
  .cz-nav ul {
    gap: 12px;
  }

  .cz-header-menu a,
  .cz-nav a,
  .cz-header-phone,
  .cz-header-btn {
    font-size: var(--font-xs);
  }

  .cz-header-actions {
    gap: 8px;
  }

  .cz-header-btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .cz-trust-bar__inner {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .cz-header-nav,
  .cz-nav,
  .cz-header-divider {
    display: none;
  }

  .cz-main-header-inner {
    gap: 16px;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 var(--space-4);
  }

  .cz-menu-toggle {
    display: inline-flex;
    order: 1;
  }

  .cz-header-logo {
    order: 2;
  }

  .cz-header-logo img {
    max-height: 42px;
    max-width: 150px;
  }

  .cz-header-phone {
    font-size: 0.95rem;
    gap: 8px;
    order: 3;
  }

  .cz-header-actions {
    display: flex;
    gap: 0;
    order: 4;
  }

  .cz-header-btn--gold {
    padding: 0 16px;
  }

  .cz-mobile-nav.active {
    display: block;
  }

  .cz-mobile-menu {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

@media (max-width: 700px) {
  .cz-trust-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
  }

  .cz-trust-bar__group {
    gap: var(--space-2) var(--space-3);
  }
}

@media (max-width: 480px) {
  .cz-main-header-inner {
    gap: 10px;
  }

  .cz-header-logo img {
    max-width: 132px;
  }

  .cz-header-phone {
    gap: 0;
  }

  .cz-header-phone-text {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
  }

  .cz-header-btn--gold {
    padding-left: 12px;
    padding-right: 12px;
  }
}


/* ============================================================
   CASHZONE FOOTER
============================================================ */

.cz-footer {
  background: var(--cz-charcoal);
  border-top: 2px solid var(--cz-gold);
  color: var(--cz-white);
}

.cz-footer-inner {
  margin: 0 auto;
  max-width: 1600px;
  padding: 42px 32px 34px;
}

.cz-footer-grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.cz-footer-logo {
  display: inline-flex;
  line-height: 0;
}

.cz-footer-logo img {
  display: block;
  height: auto;
  margin-bottom: 24px;
  max-width: 230px;
  width: 100%;
}

.cz-footer-tagline {
  color: var(--cz-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
}

.cz-footer-copy {
  color: #bdbdbd;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 320px;
}

.cz-footer-column h3 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.cz-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cz-footer-column li {
  margin-bottom: 12px;
}

.cz-footer-column a {
  color: var(--cz-white);
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cz-footer-column a:hover,
.cz-footer-column a:focus {
  color: var(--cz-gold);
}

.cz-footer-socials {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.cz-footer-socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--cz-gold);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.cz-footer-socials a:hover,
.cz-footer-socials a:focus {
  background: rgba(201, 162, 39, 0.16);
  transform: translateY(-1px);
}

.cz-footer-socials svg {
  display: block;
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.cz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cz-footer-bottom-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1600px;
  padding: 18px 32px;
}

.cz-footer-bottom p {
  color: #bdbdbd;
  font-size: 0.9rem;
  margin: 0;
}

.cz-footer-bottom a {
  color: var(--cz-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cz-footer-bottom a:hover,
.cz-footer-bottom a:focus {
  color: var(--cz-gold);
}

@media (max-width: 1000px) {
  .cz-footer-grid {
    gap: 42px;
    grid-template-columns: 1fr 1fr;
  }

  .cz-footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .cz-footer-inner {
    padding: 42px 20px 32px;
  }

  .cz-footer-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .cz-footer-brand {
    grid-column: auto;
  }

  .cz-footer-logo img {
    max-width: 230px;
  }

  .cz-footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    text-align: center;
  }
}


/* ============================================================
   CASHZONE — HERO SECTION (UPGRADED)
============================================================ */
.cz-hero {
  width: 100%;
  position: relative;
  background-color: var(--cz-black);
  overflow: hidden;
}

/* HERO IMAGE */
.cz-hero-image {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: var(--bp-md)) {
  .cz-hero-image {
    height: 520px;
  }
}
@media (min-width: var(--bp-lg)) {
  .cz-hero-image {
    height: 620px;
  }
}

/* OVERLAY */
.cz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

/* CONTENT */
.cz-hero-content {
  position: absolute;
  bottom: var(--space-7);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
  text-align: center;
  z-index: var(--z-overlay);
}
@media (min-width: var(--bp-md)) {
  .cz-hero-content {
    bottom: var(--space-8);
  }
}

/* TITLE */
.cz-hero-title {
  font-size: clamp(1.8rem, 1.8rem + 1vw, 3rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  margin-bottom: var(--space-3);
}

/* SUBTITLE */
.cz-hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--font-lg);
  font-weight: var(--body-weight-strong);
  color: var(--cz-grey);
  max-width: 700px;
  margin: 0 auto var(--space-5);
  line-height: 1.4;
}
@media (min-width: var(--bp-md)) {
  .cz-hero-subtitle {
    font-size: var(--font-xl);
  }
}

/* BUTTON GROUP */
.cz-hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}
@media (min-width: var(--bp-md)) {
  .cz-hero-buttons {
    gap: var(--space-5);
  }
}

/* BADGES */
.cz-hero-badges {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
@media (min-width: var(--bp-md)) {
  .cz-hero-badges {
    gap: var(--space-6);
  }
}
.cz-hero-badges .badge {
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  color: var(--cz-grey);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  opacity: 0.85;
}

/* ------------------------------------------------------------
   4. COMPONENTS (Buttons, Cards, Forms, Icons)
------------------------------------------------------------ */
/* ============================================================
   CASHZONE — BUTTON SYSTEM (UPGRADED)
============================================================ */
.cz-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-sm);
}
.cz-btn:focus-visible {
  outline: 2px solid var(--cz-gold);
  outline-offset: 3px;
}
.cz-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cz-btn:active {
  transform: scale(0.97);
}

/* VARIANTS */
.cz-btn-primary {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  background: var(--cz-gold);
  color: var(--cz-charcoal);
}
.cz-btn-primary:hover {
  background: var(--cz-gold-light);
}

.cz-btn-secondary {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--cz-gold);
  color: var(--cz-gold);
}
.cz-btn-secondary:hover {
  background: var(--cz-gold);
  color: var(--cz-charcoal);
}

.cz-btn-ghost {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  background: transparent;
  color: var(--cz-gold);
}
.cz-btn-ghost:hover {
  color: var(--cz-white);
}

/* SIZES */
.cz-btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-xs);
}

.cz-btn-md {
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-sm);
}

.cz-btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-md);
}

/* FULL WIDTH */
.cz-btn-block {
  width: 100%;
  text-align: center;
}

/* ICON BUTTON */
.cz-btn-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.cz-btn-icon img,
.cz-btn-icon svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   CASHZONE — CARD COMPONENTS (UPGRADED)
============================================================ */
/* BASE CARD */
.cz-card {
  background: var(--cz-black-55);
  border: 1px solid var(--cz-gold);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease-in-out;
}
.cz-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.cz-card {
  padding: var(--space-5);
}
.cz-card .cz-card-icon,
.cz-card .value-icon,
.cz-card .contact-icon {
  width: 48px;
  height: 48px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-card .cz-card-icon:hover,
.cz-card .value-icon:hover,
.cz-card .contact-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
@media (min-width: var(--bp-md)) {
  .cz-card {
    padding: var(--space-6);
  }
}

/* CARD TITLE */
.cz-card-title {
  font-size: clamp(1.2rem, 1.2rem + 1vw, 1.8rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  margin-bottom: var(--space-3);
}

/* CARD SUBTITLE */
.cz-card-subtitle {
  font-family: var(--font-body);
  font-size: var(--font-sm);
  font-weight: var(--body-weight-strong);
  color: var(--cz-grey);
  opacity: 0.9;
  margin-bottom: var(--space-4);
}

/* CARD TEXT */
.cz-card-text {
  font-size: var(--font-md);
  color: var(--cz-grey);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

/* CARD GRID */
.cz-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (min-width: var(--bp-md)) {
  .cz-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

/* HORIZONTAL CARD */
.cz-card-horizontal {
  background: var(--cz-black-55);
  border: 1px solid var(--cz-gold);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease-in-out;
}
.cz-card-horizontal:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.cz-card-horizontal {
  padding: var(--space-5);
}
.cz-card-horizontal .cz-card-icon,
.cz-card-horizontal .value-icon,
.cz-card-horizontal .contact-icon {
  width: 48px;
  height: 48px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-card-horizontal .cz-card-icon:hover,
.cz-card-horizontal .value-icon:hover,
.cz-card-horizontal .contact-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
.cz-card-horizontal {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
@media (min-width: var(--bp-md)) {
  .cz-card-horizontal {
    gap: var(--space-6);
  }
}

/* SMALL CARD */
.cz-card-small {
  background: var(--cz-black-55);
  border: 1px solid var(--cz-gold);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease-in-out;
}
.cz-card-small:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.cz-card-small {
  padding: var(--space-4);
}
.cz-card-small .cz-card-icon,
.cz-card-small .value-icon,
.cz-card-small .contact-icon {
  width: 40px;
  height: 40px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-card-small .cz-card-icon:hover,
.cz-card-small .value-icon:hover,
.cz-card-small .contact-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
.cz-card-small .cz-card-title {
  font-size: clamp(1rem, 1rem + 1vw, 1.4rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
}

/* ============================================================
   CASHZONE — FORM SYSTEM (UPGRADED)
============================================================ */
.cz-form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
  background: var(--cz-black-55);
  border: 1px solid var(--cz-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
@media (min-width: var(--bp-md)) {
  .cz-form {
    padding: var(--space-7);
  }
}

/* LABELS */
.cz-form label {
  display: block;
  font-size: clamp(1rem, 1rem + 1vw, 1.2rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  margin-bottom: var(--space-2);
}

/* INPUTS + TEXTAREAS */
.cz-form input[type=text],
.cz-form input[type=email],
.cz-form input[type=tel],
.cz-form textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--cz-white-5);
  border: 1px solid var(--cz-grey-mid);
  border-radius: var(--radius-md);
  color: var(--cz-white);
  font-family: var(--font-body);
  font-size: var(--font-md);
  transition: 0.2s ease-in-out;
}
.cz-form input[type=text]:focus-visible,
.cz-form input[type=email]:focus-visible,
.cz-form input[type=tel]:focus-visible,
.cz-form textarea:focus-visible,
.wpcf7 input[type=text]:focus-visible,
.wpcf7 input[type=email]:focus-visible,
.wpcf7 input[type=tel]:focus-visible,
.wpcf7 textarea:focus-visible {
  outline: 2px solid var(--cz-gold);
  outline-offset: 3px;
}
.cz-form input[type=text]:focus,
.cz-form input[type=email]:focus,
.cz-form input[type=tel]:focus,
.cz-form textarea:focus,
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  border-color: var(--cz-gold);
  background: var(--cz-white-10);
}
.cz-form input[type=text]:invalid,
.cz-form input[type=email]:invalid,
.cz-form input[type=tel]:invalid,
.cz-form textarea:invalid,
.wpcf7 input[type=text]:invalid,
.wpcf7 input[type=email]:invalid,
.wpcf7 input[type=tel]:invalid,
.wpcf7 textarea:invalid {
  border-color: #cc0000;
}
.cz-form input[type=text]::placeholder,
.cz-form input[type=email]::placeholder,
.cz-form input[type=tel]::placeholder,
.cz-form textarea::placeholder,
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--cz-grey-mid);
}

/* TEXTAREA HEIGHT */
.cz-form textarea,
.wpcf7 textarea {
  min-height: 140px;
}
@media (min-width: var(--bp-md)) {
  .cz-form textarea,
  .wpcf7 textarea {
    min-height: 180px;
  }
}

/* FORM ROW */
.cz-form .form-row,
.wpcf7-form .form-row {
  margin-bottom: var(--space-5);
}

/* CHECKBOXES + RADIO */
.cz-form input[type=checkbox],
.cz-form input[type=radio],
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  accent-color: var(--cz-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* SUBMIT BUTTON */
.cz-form button[type=submit],
.wpcf7 input[type=submit] {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  transition: 0.2s ease-in-out;
  cursor: pointer;
  background: var(--cz-gold);
  color: var(--cz-charcoal);
}
.cz-form button[type=submit]:hover,
.wpcf7 input[type=submit]:hover {
  background: var(--cz-gold-light);
}
.cz-form button[type=submit],
.wpcf7 input[type=submit] {
  width: 100%;
  margin-top: var(--space-4);
}
@media (min-width: var(--bp-md)) {
  .cz-form button[type=submit],
  .wpcf7 input[type=submit] {
    width: auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

/* CF7 MESSAGES */
.wpcf7-response-output {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-family: var(--font-body);
}

.wpcf7-mail-sent-ok {
  background: rgba(0, 255, 0, 0.15);
  border: 1px solid #00cc00;
  color: #00ff00;
}

.wpcf7-validation-errors,
.wpcf7-not-valid-tip {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid #cc0000;
  color: #ff4444;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  margin-top: var(--space-2);
}

/* LOADER */
.wpcf7-spinner {
  margin-left: var(--space-3);
  filter: var(--icon-filter-base);
}

/* ============================================================
   CASHZONE — ICON SYSTEM (UPGRADED)
============================================================ */
.cz-icon {
  width: 48px;
  height: 48px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
@media (min-width: var(--bp-md)) {
  .cz-icon {
    width: 56px;
    height: 56px;
  }
}

/* GOLD VARIANT */
.cz-icon-gold {
  filter: brightness(0) saturate(1.2) sepia(1) hue-rotate(15deg);
}

/* ICON GRID */
.cz-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  justify-items: center;
  align-items: start;
}
@media (min-width: var(--bp-md)) {
  .cz-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-7);
  }
}

/* CAPTION */
.cz-icon-caption {
  font-size: clamp(1rem, 1rem + 1vw, 1.2rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  color: var(--cz-gold);
  margin-top: var(--space-3);
  text-align: center;
}

/* HOW IT WORKS ICON */
.cz-how-icon {
  width: 64px;
  height: 64px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-how-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
@media (min-width: var(--bp-md)) {
  .cz-how-icon {
    width: 72px;
    height: 72px;
  }
}

/* WE BUY ICON */
.cz-webuy-icon {
  width: 56px;
  height: 56px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-webuy-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
@media (min-width: var(--bp-md)) {
  .cz-webuy-icon {
    width: 64px;
    height: 64px;
  }
}

/* WRAPPER */
.cz-icon-wrapper {
  text-align: center;
  margin-bottom: var(--space-5);
}
.cz-icon-wrapper .cz-icon {
  margin-bottom: var(--space-3);
}
.cz-icon-wrapper .cz-icon-caption {
  color: var(--cz-grey);
}

/* ------------------------------------------------------------
   5. PAGES (Individual Page Templates)
------------------------------------------------------------ */
/* ============================================================
   CASHZONE ABOUT PAGE
============================================================ */
.cz-about-page {
  background: #f7f8fa;
  color: #2b2b2b;
  overflow: hidden;
}

.cz-about-wrap {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-about-hero,
.cz-about-story,
.cz-about-stats,
.cz-about-services,
.cz-about-sustain {
  padding: clamp(40px, 5vw, 64px) 0;
}

.cz-about-hero {
  background: linear-gradient(135deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 100%);
}

.cz-about-hero__grid,
.cz-about-split {
  align-items: center;
  display: grid;
  gap: clamp(var(--space-5), 5vw, var(--space-8));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
}

.cz-about-breadcrumb {
  align-items: center;
  color: var(--cz-metal-grey);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  gap: var(--space-2);
  letter-spacing: var(--letterspace-wide);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.cz-about-breadcrumb a {
  color: var(--cz-light-grey);
  text-decoration: none;
}

.cz-about-breadcrumb a:hover,
.cz-about-breadcrumb a:focus {
  color: var(--cz-gold);
}

.cz-about-hero h1,
.cz-about-section-heading h2 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  line-height: 1.08;
  margin: 0;
}

.cz-about-hero h1 {
  font-size: clamp(2.55rem, 5.2vw, 4.7rem);
  max-width: 850px;
}

.cz-about-hero__subheading {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
}

.cz-about-hero p {
  color: var(--cz-light-grey);
  font-size: var(--font-md);
  line-height: 1.65;
  margin: var(--space-3) 0 0;
  max-width: 760px;
}

.cz-about-story p,
.cz-about-sustain p {
  color: #2b2b2b;
  font-size: var(--font-md);
  line-height: 1.65;
  margin: var(--space-3) 0 0;
  max-width: 760px;
}

.cz-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.cz-about-btn {
  align-items: center;
  border: 2px solid var(--cz-gold);
  border-radius: var(--radius-md);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cz-about-btn--primary {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-about-btn--primary:hover,
.cz-about-btn--primary:focus {
  background: var(--cz-gold-light);
  border-color: var(--cz-gold-light);
  color: var(--cz-black);
}

.cz-about-btn--outline {
  background: transparent;
  color: var(--cz-gold);
}

.cz-about-btn--outline:hover,
.cz-about-btn--outline:focus {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-about-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 38px rgba(31, 41, 51, 0.14);
  overflow: hidden;
}

.cz-about-image--soft {
  opacity: 0.9;
}

.cz-about-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cz-about-sustain-image {
  position: relative;
}

.cz-about-sustain-image::before {
  background: linear-gradient(to right, rgba(5, 5, 5, 0.55), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cz-about-sustain-image img {
  object-position: center;
}

.cz-about-section-heading {
  margin: 0 auto var(--space-4);
  max-width: 760px;
  text-align: center;
}

.cz-about-section-heading--left {
  margin-left: 0;
  text-align: left;
}

.cz-about-section-heading h2 {
  align-items: center;
  display: flex;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  gap: var(--space-4);
  justify-content: center;
  letter-spacing: var(--letterspace-wide);
  text-transform: uppercase;
}

.cz-about-section-heading--left h2 {
  justify-content: flex-start;
}

.cz-about-section-heading h2::before,
.cz-about-section-heading h2::after {
  background: var(--cz-gold);
  content: "";
  display: block;
  height: 2px;
  width: clamp(36px, 8vw, 86px);
}

.cz-about-section-heading--left h2::before {
  display: none;
}

.cz-about-stats {
  padding-top: 0;
}

.cz-about-stats__grid,
.cz-about-services__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-about-stat-card,
.cz-about-service-card {
  background: var(--cz-white);
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
  min-height: 100%;
  padding: clamp(var(--space-4), 2.3vw, var(--space-5));
}

.cz-about-stat-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cz-about-stat-card__icon {
  align-items: center;
  border: 2px solid var(--cz-gold);
  border-radius: 50%;
  color: var(--cz-gold);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: var(--space-3);
  width: 52px;
}

.cz-about-stat-card__icon svg {
  display: block;
  fill: currentColor;
  height: 28px;
  width: 28px;
}

.cz-about-stat-card h2,
.cz-about-service-card h3 {
  color: #1f2933;
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.cz-about-service-card h3 {
  color: var(--cz-gold);
  margin-bottom: var(--space-2);
}

.cz-about-service-card p {
  color: #2b2b2b;
  font-size: var(--font-sm);
  line-height: 1.55;
  margin: 0;
}

.cz-about-services__note {
  color: #6b7280;
  font-size: var(--font-xs);
  line-height: 1.5;
  margin: var(--space-3) auto 0;
  max-width: 760px;
  text-align: center;
}

@media (max-width: 1100px) {
  .cz-about-stats__grid,
  .cz-about-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .cz-about-hero,
  .cz-about-story,
  .cz-about-stats,
  .cz-about-services,
  .cz-about-sustain {
    padding: clamp(36px, 8vw, 48px) 0;
  }
  .cz-about-stats {
    padding-top: 0;
  }
  .cz-about-hero__grid,
  .cz-about-split {
    grid-template-columns: 1fr;
  }
  .cz-about-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }
}
@media (max-width: 620px) {
  .cz-about-actions,
  .cz-about-btn {
    width: 100%;
  }
  .cz-about-stats__grid,
  .cz-about-services__grid {
    grid-template-columns: 1fr;
  }
  .cz-about-section-heading h2 {
    gap: var(--space-2);
  }
  .cz-about-section-heading h2::before,
  .cz-about-section-heading h2::after {
    width: 28px;
  }
}
/* ============================================================
   CASHZONE — CONTACT PAGE (UPGRADED)
============================================================ */
.cz-contact {
  padding-top: var(--space-8);
  padding-bottom: var(--space-9);
}
@media (min-width: var(--bp-md)) {
  .cz-contact {
    padding-top: var(--space-9);
    padding-bottom: var(--space-9);
  }
}

/* INTRO */
.cz-contact-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-8);
}
.cz-contact-intro .intro-title {
  font-size: clamp(1.8rem, 1.8rem + 1vw, 2.6rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  margin-bottom: var(--space-4);
}
.cz-contact-intro .intro-text {
  font-size: var(--font-lg);
  color: var(--cz-grey);
  line-height: 1.55;
  max-width: 750px;
  margin: 0 auto;
}

/* CONTACT CARDS */
.cz-contact-cards {
  margin-bottom: var(--space-9);
}
.cz-contact-cards .contact-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-5);
}
@media (min-width: var(--bp-md)) {
  .cz-contact-cards .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}
.cz-contact-cards .contact-card {
  background: var(--cz-black-55);
  border: 1px solid var(--cz-gold);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease-in-out;
}
.cz-contact-cards .contact-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.cz-contact-cards .contact-card {
  padding: var(--space-5);
}
.cz-contact-cards .contact-card .cz-card-icon,
.cz-contact-cards .contact-card .value-icon,
.cz-contact-cards .contact-card .contact-icon {
  width: 48px;
  height: 48px;
  filter: var(--icon-filter-base);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cz-contact-cards .contact-card .cz-card-icon:hover,
.cz-contact-cards .contact-card .value-icon:hover,
.cz-contact-cards .contact-card .contact-icon:hover {
  filter: var(--icon-filter-hover);
  transform: scale(1.05);
}
.cz-contact-cards .contact-card {
  text-align: center;
}
.cz-contact-cards .contact-card .contact-title {
  font-size: clamp(1.2rem, 1.2rem + 1vw, 1.6rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  margin-bottom: var(--space-3);
}
.cz-contact-cards .contact-card .contact-text {
  font-size: var(--font-md);
  color: var(--cz-grey);
  line-height: 1.55;
  margin-bottom: var(--space-3);
}
.cz-contact-cards .contact-card a {
  color: var(--cz-gold);
  font-weight: var(--body-weight-strong);
}
.cz-contact-cards .contact-card a:focus-visible {
  outline: 2px solid var(--cz-gold);
  outline-offset: 3px;
}
.cz-contact-cards .contact-card a:hover {
  color: var(--cz-white);
}

/* FORM SECTION */
.cz-contact-form {
  max-width: 800px;
  margin: 0 auto var(--space-9);
}
.cz-contact-form .form-title {
  font-size: clamp(1.6rem, 1.6rem + 1vw, 2.2rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  text-align: center;
  margin-bottom: var(--space-5);
}
.cz-contact-form .cz-form,
.cz-contact-form .wpcf7 {
  margin-top: var(--space-4);
}

/* MAP */
.cz-contact-map {
  margin-top: var(--space-9);
}
.cz-contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-md);
}
@media (min-width: var(--bp-md)) {
  .cz-contact-map iframe {
    height: 480px;
  }
}

/* CTA */
.cz-contact-cta {
  margin-top: var(--space-9);
  text-align: center;
}
.cz-contact-cta .cta-title {
  font-size: clamp(1.6rem, 1.6rem + 1vw, 2.4rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  margin-bottom: var(--space-4);
}
.cz-contact-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* ============================================================
   CASHZONE — LEGAL PAGES (UPGRADED)
============================================================ */
.cz-legal {
  background: #f7f8fa;
  color: #2b2b2b;
  padding-top: var(--space-8);
  padding-bottom: var(--space-9);
}
@media (min-width: var(--bp-md)) {
  .cz-legal {
    padding-top: var(--space-9);
    padding-bottom: var(--space-9);
  }
}
.cz-legal {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: none;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
  width: 100%;
}

.cz-legal > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

/* PAGE TITLE */
.cz-legal-title {
  font-size: clamp(1.8rem, 1.8rem + 1vw, 2.6rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
  text-align: center;
  margin-bottom: var(--space-5);
}

/* SECTION HEADINGS */
.cz-legal h2 {
  font-size: clamp(1.4rem, 1.4rem + 1vw, 2rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: #1f2933;
  margin-top: 0;
  margin-bottom: var(--space-3);
}

.cz-legal h3 {
  font-size: clamp(1.2rem, 1.2rem + 1vw, 1.6rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: #1f2933;
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

/* PARAGRAPHS */
.cz-legal p {
  font-size: var(--font-md);
  color: #2b2b2b;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* LISTS */
.cz-legal ul,
.cz-legal ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
}
.cz-legal ul li,
.cz-legal ol li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
  color: #2b2b2b;
}

/* TABLES */
.cz-legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-6);
  border: 1px solid var(--cz-grey-mid);
}

.cz-legal th,
.cz-legal td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--cz-grey-mid);
  color: #2b2b2b;
  text-align: left;
}

.cz-legal th {
  background: #f7f8fa;
  font-size: clamp(1rem, 1rem + 1vw, 1.2rem);
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
  color: var(--cz-gold);
}

/* HIGHLIGHT BOX */
.cz-legal-box {
  background: var(--cz-white);
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
  padding: var(--space-5);
  margin: var(--space-4) 0;
}
.cz-legal-box p {
  margin-bottom: var(--space-3);
}

.cz-legal-box:first-of-type {
  border-top: 4px solid var(--cz-gold);
}

.cz-legal-box p:last-child,
.cz-legal-box ul:last-child,
.cz-legal-box ol:last-child {
  margin-bottom: 0;
}

.cz-legal a {
  color: #1f2933;
  font-weight: 700;
  text-decoration-color: var(--cz-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cz-legal a:hover,
.cz-legal a:focus {
  color: var(--cz-gold-dark);
}

/* SMALL PRINT */
.cz-legal-small {
  font-size: var(--font-sm);
  color: #6b7280;
  margin-top: var(--space-6);
  line-height: 1.5;
}

@media (max-width: 620px) {
  .cz-legal {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  .cz-legal-box {
    padding: var(--space-4);
  }
}

.cz-legal-page {
  background: var(--cz-charcoal);
  color: var(--cz-light-grey);
  margin: 0 auto;
  max-width: 900px;
  padding: 64px 20px;
}

.cz-legal-page h1 {
  color: var(--cz-gold, #ffc107);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.cz-legal-page h2 {
  color: var(--cz-gold, #ffc107);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  margin: 40px 0 12px;
}

.cz-legal-page p,
.cz-legal-page li {
  color: #d7d7d7;
  line-height: 1.7;
}

.cz-legal-page p {
  margin: 0 0 16px;
}

.cz-legal-page ul {
  margin: 0 0 18px;
  padding-left: 1.25rem;
}

.cz-legal-page li + li {
  margin-top: 6px;
}

.cz-legal-page a {
  color: var(--cz-gold, #ffc107);
}

.cz-legal-page__updated,
.cz-legal-page__note {
  color: var(--cz-metal-grey);
  margin-top: 40px;
}

.cz-legal-page__updated {
  margin-top: 0;
}

/* ============================================================
   CASHZONE HOME PAGE
============================================================ */

.cz-frontpage {
  background: var(--cz-charcoal);
  color: var(--cz-light-grey);
  overflow: hidden;
}

.cz-home-wrap {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-home-services,
.cz-home-sustainability,
.cz-home-categories {
  padding: clamp(38px, 4.6vw, 56px) 0;
}

.cz-home-section-heading h2,
.cz-home-sustainability h2 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  line-height: 1.08;
  margin: 0;
  text-transform: none;
}

.cz-home-brand-hero {
  background: var(--cz-charcoal);
  color: var(--cz-white);
  padding: 90px 20px 70px;
}

.cz-home-hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  margin: 0 auto;
  max-width: 1400px;
}

.cz-home-hero-copy {
  max-width: 760px;
}

.cz-home-brand-hero h1 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 28px;
}

.cz-home-brand-hero p {
  color: #d6d6d6;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  line-height: 1.75;
  margin: 0;
  max-width: 960px;
}

.cz-home-hero-media {
  display: flex;
  justify-content: flex-end;
}

.cz-home-hero-media img {
  border-radius: 18px;
  display: block;
  height: auto;
  max-width: 600px;
  width: 100%;
}

.cz-home-section-heading {
  margin-bottom: var(--space-4);
  max-width: 760px;
}

.cz-home-section-heading h2,
.cz-home-sustainability h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cz-home-card-grid,
.cz-category-grid {
  display: grid;
  gap: var(--space-3);
}

.cz-home-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cz-home-services {
  background: var(--cz-charcoal);
  padding-bottom: 50px;
  padding-top: 60px;
}

.cz-what-we-do {
  padding-bottom: 50px;
  padding-top: 60px;
}

.cz-home-sustainability {
  padding: 0;
}

.cz-home-services__heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cz-home-services__heading h2 {
  align-items: center;
  display: flex;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  gap: var(--space-4);
  justify-content: center;
  letter-spacing: var(--letterspace-wide);
  text-transform: uppercase;
}

.cz-home-services__heading h2::before,
.cz-home-services__heading h2::after {
  background: var(--cz-gold);
  content: "";
  display: block;
  height: 2px;
  width: clamp(36px, 8vw, 86px);
}

.cz-home-services__heading p {
  color: rgba(215, 215, 215, 0.84);
  font-size: var(--font-sm);
  margin: var(--space-2) auto 0;
  max-width: 540px;
}

.cz-home-services .cz-home-card-grid--three {
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-home-sustainability__panel {
  border-radius: 10px;
}

.cz-sustainability-banner {
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 28px 30px;
}

.cz-home-sustainability__panel {
  align-items: center;
  background: var(--cz-gold);
  border: 0;
  color: var(--cz-black);
  display: grid;
  gap: var(--space-3);
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 40px auto;
  max-width: 1200px;
  padding: 28px 30px;
}

.cz-home-sustainability__icon {
  align-items: center;
  border: 2px solid var(--cz-black);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  transform: rotate(45deg);
  width: 58px;
}

.cz-home-sustainability__icon svg {
  display: block;
  fill: var(--cz-black);
  height: 36px;
  transform: rotate(-45deg);
  width: 36px;
}

.cz-home-sustainability__content {
  min-width: 0;
}

.cz-home-services .cz-home-service-card {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--space-4) clamp(var(--space-3), 2vw, var(--space-5));
  position: relative;
  text-align: center;
}

.cz-home-services .cz-home-service-card + .cz-home-service-card {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04);
}

.cz-home-service-card__icon {
  color: var(--cz-gold);
  filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.16));
  margin-bottom: var(--space-3);
}

.cz-home-service-card__icon svg {
  display: block;
  fill: currentColor;
  height: 52px;
  width: 52px;
}

.cz-home-service-card h3 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  margin: 0 0 var(--space-3);
  text-transform: none;
}

.cz-home-services .cz-home-service-card h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-2);
}

.cz-home-service-card p,
.cz-home-sustainability p {
  color: var(--cz-light-grey);
  line-height: 1.65;
  margin: 0;
}

.cz-home-sustainability h2 {
  color: var(--cz-black);
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
}

.cz-home-sustainability p {
  color: var(--cz-black);
  font-size: var(--font-sm);
  margin-top: var(--space-2);
  max-width: 760px;
}

.cz-home-sustainability__button {
  align-items: center;
  background: var(--cz-black);
  border: 2px solid var(--cz-black);
  border-radius: var(--radius-md);
  color: var(--cz-gold);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
  padding: 11px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.cz-home-sustainability__button:hover,
.cz-home-sustainability__button:focus {
  background: transparent;
  color: var(--cz-black);
}

.cz-home-shop {
  background: var(--cz-charcoal);
  color: var(--cz-white);
  padding: 70px 20px 60px;
}

.cz-home-shop-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.9fr;
  margin: 0 auto;
  max-width: 1400px;
}

.cz-home-shop-media {
  position: relative;
}

.cz-home-shop-media::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, var(--cz-charcoal) 100%);
  content: "";
  height: 100%;
  position: absolute;
  right: -40px;
  top: 0;
  width: 120px;
}

.cz-home-shop-media img {
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
  display: block;
  height: auto;
  max-width: 500px;
  width: 100%;
}

.cz-home-shop-copy {
  max-width: 620px;
}

.cz-home-shop-copy h2 {
  color: var(--cz-yellow);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 24px;
}

.cz-home-shop-copy p {
  color: #d6d6d6;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.7;
  margin: 0 0 28px;
}

.cz-home-shop .cz-btn,
.cz-home-shop .cz-btn-gold {
  align-items: center;
  background: var(--cz-yellow);
  border: 1px solid var(--cz-yellow);
  border-radius: 8px;
  color: var(--cz-charcoal);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: none;
}

.cz-home-shop .cz-btn:hover,
.cz-home-shop .cz-btn-gold:hover {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
  transform: translateY(-1px);
}

.cz-home-services .cz-home-service-card p {
  color: rgba(215, 215, 215, 0.86);
  font-size: var(--font-sm);
  max-width: 230px;
}

.cz-home-service-card a {
  align-items: center;
  border: 1px solid var(--cz-gold);
  border-radius: var(--radius-md);
  color: var(--cz-gold);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin-top: var(--space-4);
  min-height: 34px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cz-home-service-card a:hover,
.cz-home-service-card a:focus {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-home-services__disclaimer {
  color: var(--cz-metal-grey);
  font-size: var(--font-xs);
  line-height: 1.5;
  margin: var(--space-3) auto 0;
  max-width: 760px;
  text-align: center;
}

.cz-home-categories {
  background: var(--cz-charcoal);
  padding-bottom: 50px;
  padding-top: 50px;
}

.cz-category-section {
  padding-bottom: 50px;
  padding-top: 50px;
}

.cz-home-categories .cz-home-wrap {
  max-width: 1500px;
}

.cz-home-categories__heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cz-home-categories__heading h2 {
  align-items: center;
  display: flex;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  gap: var(--space-4);
  justify-content: center;
  letter-spacing: 0;
  text-transform: none;
}

.cz-home-categories__heading h2::before,
.cz-home-categories__heading h2::after {
  background: var(--cz-gold);
  content: "";
  display: block;
  height: 2px;
  width: clamp(36px, 8vw, 86px);
}

.cz-category-grid {
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1500px;
}

.cz-category-card {
  background: var(--cz-warm-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cz-category-card:hover,
.cz-category-card:focus {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-4px);
}

.cz-category-card-image {
  background: var(--cz-charcoal);
  height: 150px;
  overflow: hidden;
}

.cz-category-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cz-category-card-content {
  padding: 18px 14px 20px;
  text-align: center;
}

.cz-category-card-content h3 {
  color: var(--cz-white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.cz-category-card-content span {
  color: var(--cz-white);
  font-size: 0.95rem;
  font-weight: 700;
}

.cz-category-card:hover .cz-category-card-content span,
.cz-category-card:focus .cz-category-card-content span {
  color: var(--cz-gold);
}

.cz-home-category-trust {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  padding-top: 20px;
}

.cz-trust-row {
  margin-top: 20px;
  padding-top: 20px;
}

.cz-home-category-trust__item {
  align-items: flex-start;
  display: flex;
  gap: var(--space-2);
}

.cz-home-category-trust__icon {
  align-items: center;
  border: 1px solid var(--cz-gold);
  border-radius: 50%;
  color: var(--cz-gold);
  display: inline-flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.cz-home-category-trust__icon svg {
  display: block;
  fill: currentColor;
  height: 21px;
  width: 21px;
}

.cz-home-category-trust h3 {
  color: var(--cz-white);
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  margin: 0 0 var(--space-1);
  text-transform: none;
}

.cz-home-category-trust p {
  color: var(--cz-light-grey);
  font-size: var(--font-xs);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 1200px) {
  .cz-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 900px;
  }
}

@media (max-width: 1100px) {
  .cz-home-category-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cz-home-brand-hero {
    padding: 70px 20px 60px;
  }

  .cz-home-hero-inner {
    gap: 34px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cz-home-hero-copy {
    margin: 0 auto;
  }

  .cz-home-hero-media {
    justify-content: center;
  }

  .cz-home-hero-media img {
    max-width: 520px;
  }

  .cz-home-shop {
    padding: 70px 20px;
  }

  .cz-home-shop-inner {
    gap: 42px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cz-home-shop-copy {
    margin: 0 auto;
    max-width: 680px;
  }

  .cz-home-categories {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .cz-home-services {
    padding-bottom: 50px;
    padding-top: 60px;
  }

  .cz-home-card-grid--three {
    grid-template-columns: 1fr;
  }

  .cz-home-services .cz-home-card-grid--three {
    gap: var(--space-3);
    grid-template-columns: 1fr;
  }

  .cz-home-services .cz-home-service-card {
    padding: var(--space-3) 0;
  }

  .cz-home-services .cz-home-service-card + .cz-home-service-card {
    box-shadow: none;
  }

  .cz-home-sustainability__panel {
    justify-items: center;
    grid-template-columns: 1fr;
    margin: 34px auto;
    text-align: center;
  }

  .cz-home-category-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .cz-home-shop {
    padding: 56px 18px;
  }

  .cz-home-shop-media img {
    border-radius: 20px;
  }

  .cz-home-shop-media::after {
    display: none;
  }

  .cz-home-category-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .cz-home-brand-hero {
    padding: 78px 20px 68px;
  }

  .cz-category-grid {
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cz-category-card-image {
    height: 130px;
  }
}

@media (max-width: 420px) {
  .cz-category-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CASHZONE LOCATIONS PAGE
============================================================ */
.cz-locations {
  background: var(--cz-light);
  color: var(--cz-charcoal);
  overflow: hidden;
}

.cz-locations-wrap {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-locations-hero,
.cz-locations-stores,
.cz-locations-map-cta,
.cz-locations-local {
  padding: clamp(40px, 5vw, 64px) 0;
}

.cz-locations-hero {
  background: linear-gradient(135deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 100%);
}

.cz-locations-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(var(--space-5), 5vw, var(--space-8));
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
}

.cz-locations-breadcrumb {
  align-items: center;
  color: var(--cz-metal-grey);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  gap: var(--space-2);
  letter-spacing: var(--letterspace-wide);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.cz-locations-breadcrumb a {
  color: var(--cz-light-grey);
  text-decoration: none;
}

.cz-locations-breadcrumb a:hover,
.cz-locations-breadcrumb a:focus {
  color: var(--cz-gold);
}

.cz-locations-hero h1 {
  color: var(--cz-white);
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.cz-locations-hero h1 span {
  display: block;
}

.cz-locations-hero__gold {
  color: var(--cz-gold);
}

.cz-locations-hero p {
  color: var(--cz-light-grey);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
  margin: var(--space-4) 0 0;
  max-width: 760px;
}

.cz-locations-hero-map,
.cz-locations-mini-map {
  background: radial-gradient(circle at 18% 24%, rgba(201, 162, 39, 0.12), transparent 18%), radial-gradient(circle at 76% 72%, rgba(201, 162, 39, 0.1), transparent 18%), radial-gradient(circle, rgba(215, 215, 215, 0.12) 1px, transparent 1px), linear-gradient(145deg, var(--cz-charcoal) 0%, #070707 100%);
  background-size: auto, auto, 18px 18px, auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.cz-locations-hero-map::before,
.cz-locations-mini-map::before {
  background: linear-gradient(125deg, transparent 12%, rgba(143, 148, 153, 0.16) 12.5%, transparent 13%), linear-gradient(35deg, transparent 45%, rgba(143, 148, 153, 0.12) 45.5%, transparent 46%), linear-gradient(70deg, transparent 62%, rgba(201, 162, 39, 0.08) 62.5%, transparent 63%);
  content: "";
  inset: 0;
  position: absolute;
}

.cz-map-pin,
.cz-mini-map__pin {
  color: var(--cz-gold);
  display: inline-flex;
  position: absolute;
  z-index: 2;
}

.cz-map-pin svg,
.cz-mini-map__pin svg {
  display: block;
  fill: currentColor;
}

.cz-map-pin--large {
  filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.22));
  left: 45%;
  top: 34%;
  transform: translate(-50%, -50%);
}

.cz-map-pin--large svg {
  height: 112px;
  width: 112px;
}

.cz-map-pin--one {
  left: 24%;
  top: 62%;
}

.cz-map-pin--two {
  right: 18%;
  top: 26%;
}

.cz-map-pin--three {
  bottom: 20%;
  right: 28%;
}

.cz-map-pin--one svg,
.cz-map-pin--two svg,
.cz-map-pin--three svg {
  height: 34px;
  width: 34px;
}

.cz-map-line {
  background: rgba(201, 162, 39, 0.22);
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: left center;
  z-index: 1;
}

.cz-map-line--one {
  left: 30%;
  top: 64%;
  transform: rotate(-26deg);
  width: 170px;
}

.cz-map-line--two {
  left: 48%;
  top: 42%;
  transform: rotate(22deg);
  width: 150px;
}

.cz-locations-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-location-card {
  background: var(--cz-white);
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(var(--space-4), 2.4vw, var(--space-5));
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cz-location-card:hover,
.cz-location-card:focus-within {
  box-shadow: 0 18px 34px rgba(31, 41, 51, 0.12), 0 0 0 1px rgba(201, 162, 39, 0.2);
  transform: translateY(-2px);
}

.cz-location-card__pin,
.cz-location-card address span,
.cz-location-card p span {
  color: var(--cz-gold);
  display: inline-flex;
  flex: 0 0 auto;
}

.cz-location-card__pin {
  margin-bottom: var(--space-3);
}

.cz-location-card__pin svg {
  height: 38px;
  width: 38px;
}

.cz-location-card svg {
  display: block;
  fill: currentColor;
}

.cz-location-card h2 {
  color: var(--cz-dark);
  font-family: var(--font-heading);
  font-size: var(--font-xl);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
}

.cz-location-card address,
.cz-location-card p {
  align-items: flex-start;
  color: var(--cz-charcoal);
  display: flex;
  font-size: var(--font-sm);
  gap: var(--space-2);
  line-height: 1.5;
  margin: 0 0 var(--space-2);
}

.cz-location-card address {
  font-style: normal;
  margin-bottom: var(--space-3);
}

.cz-location-card address svg,
.cz-location-card p svg {
  height: 17px;
  margin-top: 2px;
  width: 17px;
}

.cz-location-card strong {
  color: var(--cz-dark);
  font-weight: 700;
}

.cz-location-card a {
  color: var(--cz-gold);
}

.cz-location-card__actions {
  display: grid;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
}

.cz-location-btn {
  align-items: center;
  border: 2px solid var(--cz-gold);
  border-radius: var(--radius-md);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
  padding: 11px 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cz-location-btn--primary {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-location-btn--primary:hover,
.cz-location-btn--primary:focus {
  background: var(--cz-gold-light);
  border-color: var(--cz-gold-light);
  color: var(--cz-black);
}

.cz-location-btn--outline {
  background: transparent;
  color: var(--cz-gold);
}

.cz-location-btn--outline:hover,
.cz-location-btn--outline:focus {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-locations-map-cta,
.cz-locations-local {
  padding-top: 0;
}

.cz-locations-map-panel {
  align-items: stretch;
  background: var(--cz-white);
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  overflow: hidden;
  padding: clamp(var(--space-4), 3vw, var(--space-6));
}

.cz-locations-label {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: var(--letterspace-wide);
  margin: 0 0 var(--space-2);
  text-transform: uppercase;
}

.cz-locations-map-panel h2,
.cz-locations-local__panel h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
}

.cz-locations-map-panel h2 {
  color: var(--cz-dark);
  font-size: clamp(1.65rem, 3.1vw, 2.7rem);
  max-width: 620px;
}

.cz-locations-map-panel__content > p:not(.cz-locations-label) {
  color: var(--cz-charcoal);
  font-size: var(--font-md);
  line-height: 1.6;
  margin: var(--space-3) 0 var(--space-4);
  max-width: 560px;
}

.cz-locations-map-panel .cz-location-btn {
  min-width: 220px;
}

.cz-locations-mini-map {
  min-height: 270px;
}

.cz-mini-map__label {
  color: rgba(215, 215, 215, 0.68);
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: var(--letterspace-wide);
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.cz-mini-map__label--sa {
  left: 12%;
  top: 24%;
}

.cz-mini-map__label--nsw {
  bottom: 22%;
  right: 10%;
}

.cz-mini-map__pin svg {
  height: 30px;
  width: 30px;
}

.cz-mini-map__pin--one {
  left: 28%;
  top: 42%;
}

.cz-mini-map__pin--two {
  left: 38%;
  top: 56%;
}

.cz-mini-map__pin--three {
  right: 33%;
  top: 34%;
}

.cz-mini-map__pin--four {
  bottom: 24%;
  right: 22%;
}

.cz-locations-local__panel {
  background: var(--cz-gold);
  border-radius: var(--radius-md);
  color: var(--cz-black);
  padding: clamp(22px, 3vw, 34px);
}

.cz-locations-local__intro {
  margin: 0 auto var(--space-4);
  max-width: 900px;
  text-align: center;
}

.cz-locations-local__panel h2 {
  color: var(--cz-black);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.cz-locations-local__panel p {
  color: var(--cz-black);
  font-size: var(--font-md);
  line-height: 1.6;
  margin: var(--space-3) auto 0;
}

.cz-locations-service-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cz-locations-service {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cz-locations-service__icon {
  align-items: center;
  border: 2px solid var(--cz-black);
  border-radius: 50%;
  color: var(--cz-black);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  margin-bottom: var(--space-2);
  width: 46px;
}

.cz-locations-service__icon svg {
  display: block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.cz-locations-service h3 {
  color: var(--cz-black);
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-1);
}

.cz-locations-service p {
  font-size: var(--font-xs);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1100px) {
  .cz-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cz-locations-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .cz-locations-hero,
  .cz-locations-stores,
  .cz-locations-map-cta,
  .cz-locations-local {
    padding: clamp(36px, 8vw, 48px) 0;
  }
  .cz-locations-map-cta,
  .cz-locations-local {
    padding-top: 0;
  }
  .cz-locations-hero__grid,
  .cz-locations-map-panel {
    grid-template-columns: 1fr;
  }
  .cz-locations-hero-map {
    min-height: 260px;
  }
  .cz-locations-map-panel .cz-location-btn {
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .cz-locations-grid,
  .cz-locations-service-grid {
    grid-template-columns: 1fr;
  }
  .cz-locations-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }
  .cz-locations-hero-map,
  .cz-locations-mini-map {
    min-height: 230px;
  }
}
@media (max-width: 520px) {
  .cz-location-btn {
    width: 100%;
  }
}
/* ============================================================
   CASHZONE WE BUY PAGE
============================================================ */
.cz-we-buy-page {
  background: var(--cz-light);
  color: var(--cz-charcoal);
  overflow: hidden;
}

.cz-we-buy-wrap {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-we-buy-hero,
.cz-we-buy-categories,
.cz-we-buy-how,
.cz-we-buy-info,
.cz-we-buy-pawn-cta {
  padding: clamp(40px, 5vw, 64px) 0;
}

.cz-we-buy-hero {
  background: linear-gradient(135deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 100%);
}

.cz-we-buy-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(var(--space-5), 5vw, var(--space-8));
  grid-template-columns: minmax(0, 1fr) minmax(380px, 600px);
}

.cz-we-buy-breadcrumb {
  align-items: center;
  color: var(--cz-metal-grey);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  gap: var(--space-2);
  letter-spacing: var(--letterspace-wide);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.cz-we-buy-breadcrumb a {
  color: var(--cz-light-grey);
  text-decoration: none;
}

.cz-we-buy-breadcrumb a:hover,
.cz-we-buy-breadcrumb a:focus {
  color: var(--cz-gold);
}

.cz-we-buy-hero h1 {
  color: var(--cz-white);
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.cz-we-buy-hero h1 span {
  display: block;
}

.cz-we-buy-hero__gold {
  color: var(--cz-gold);
}

.cz-we-buy-hero p {
  color: var(--cz-light-grey);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
  margin: var(--space-4) 0 0;
  max-width: 720px;
}

.cz-we-buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.cz-we-buy-btn {
  align-items: center;
  border: 2px solid var(--cz-gold);
  border-radius: var(--radius-md);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cz-we-buy-btn--primary {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-we-buy-btn--primary:hover,
.cz-we-buy-btn--primary:focus {
  background: var(--cz-gold-light);
  border-color: var(--cz-gold-light);
  color: var(--cz-black);
}

.cz-we-buy-btn--outline {
  background: transparent;
  color: var(--cz-gold);
}

.cz-we-buy-btn--outline:hover,
.cz-we-buy-btn--outline:focus {
  background: var(--cz-gold);
  color: var(--cz-black);
}

.cz-we-buy-hero__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  position: relative;
}

.cz-we-buy-hero__media::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.24));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.cz-we-buy-hero__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cz-we-buy-section-heading {
  margin: 0 auto var(--space-4);
  max-width: 760px;
  text-align: center;
}

.cz-we-buy-section-heading h2 {
  align-items: center;
  color: var(--cz-dark);
  display: flex;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 700;
  gap: var(--space-4);
  justify-content: center;
  letter-spacing: var(--letterspace-wide);
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.cz-we-buy-section-heading h2::before,
.cz-we-buy-section-heading h2::after {
  background: var(--cz-gold);
  content: "";
  display: block;
  height: 2px;
  width: clamp(36px, 8vw, 86px);
}

.cz-we-buy-section-heading p {
  color: var(--cz-muted);
  font-size: var(--font-sm);
  line-height: 1.55;
  margin: var(--space-2) auto 0;
}

.cz-we-buy-category-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-we-buy-category-card {
  aspect-ratio: 1/1.08;
  background: var(--cz-charcoal);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  min-height: 230px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cz-we-buy-category-card:hover,
.cz-we-buy-category-card:focus-within {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(201, 162, 39, 0.18);
  transform: translateY(-2px);
}

.cz-we-buy-category-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.cz-we-buy-category-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.72) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.cz-we-buy-category-card__content {
  align-self: flex-end;
  padding: var(--space-4);
  position: relative;
  width: 100%;
  z-index: 1;
}

.cz-we-buy-category-card h3 {
  color: var(--cz-white);
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.cz-we-buy-step-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-we-buy-step-card {
  background: var(--cz-white);
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
  min-height: 100%;
  padding: clamp(var(--space-4), 2.2vw, var(--space-5));
  position: relative;
}

.cz-we-buy-step-card:not(:last-child)::after {
  color: rgba(201, 162, 39, 0.34);
  content: ">";
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.cz-we-buy-step-card__top {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.cz-we-buy-step-card__number {
  align-items: center;
  background: var(--cz-gold);
  border-radius: 50%;
  color: var(--cz-black);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: var(--font-md);
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.cz-step-icon {
  align-items: center;
  display: flex;
  height: 56px;
  justify-content: center;
  margin: 0 auto;
  transition: filter 0.2s ease, transform 0.2s ease;
  width: 56px;
}

.cz-step-icon img {
  display: block;
  height: 52px;
  object-fit: contain;
  width: 52px;
}

.cz-we-buy-step-card:hover .cz-step-icon,
.cz-we-buy-step-card:focus-within .cz-step-icon {
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.18));
  transform: scale(1.03);
}

.cz-we-buy-step-card h3,
.cz-we-buy-info-card h2,
.cz-we-buy-cta-panel h2 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.cz-we-buy-step-card h3 {
  color: var(--cz-dark);
  font-size: var(--font-lg);
  margin-bottom: var(--space-2);
}

.cz-we-buy-step-card p {
  color: var(--cz-charcoal);
  font-size: var(--font-sm);
  line-height: 1.55;
  margin: 0;
}

.cz-we-buy-info__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.cz-we-buy-info-card {
  background: var(--cz-white);
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(31, 41, 51, 0.08);
  padding: clamp(var(--space-4), 2.5vw, var(--space-6));
}

.cz-we-buy-info-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.cz-we-buy-info-card ul {
  display: grid;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.cz-we-buy-info-card li {
  align-items: flex-start;
  color: var(--cz-charcoal);
  display: flex;
  gap: var(--space-2);
  line-height: 1.55;
}

.cz-we-buy-info-card li span {
  color: var(--cz-gold);
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 2px;
}

.cz-we-buy-info-card li svg {
  display: block;
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.cz-we-buy-info-group + .cz-we-buy-info-group {
  margin-top: var(--space-3);
}

.cz-we-buy-info-group h3 {
  color: var(--cz-gold);
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: var(--letterspace-wide);
  margin: 0 0 var(--space-1);
  text-transform: uppercase;
}

.cz-we-buy-info-group p,
.cz-we-buy-note {
  color: var(--cz-charcoal);
  font-size: var(--font-sm);
  line-height: 1.55;
  margin: 0;
}

.cz-we-buy-note {
  color: var(--cz-muted);
  margin-top: var(--space-4);
}

.cz-we-buy-pawn-cta {
  padding-top: 0;
}

.cz-we-buy-cta-panel {
  align-items: center;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent 30%), var(--cz-charcoal);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3), inset 3px 0 0 var(--cz-gold);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: auto minmax(0, 1fr) auto minmax(180px, 260px);
  min-height: 150px;
  overflow: hidden;
  padding: clamp(var(--space-4), 2.5vw, var(--space-5));
  position: relative;
}

.cz-we-buy-cta-panel__icon {
  align-items: center;
  border: 2px solid var(--cz-gold);
  border-radius: 50%;
  color: var(--cz-gold);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.cz-we-buy-cta-panel__icon svg {
  display: block;
  fill: currentColor;
  height: 32px;
  width: 32px;
}

.cz-we-buy-cta-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.cz-we-buy-cta-panel p {
  color: var(--cz-light-grey);
  font-size: var(--font-md);
  line-height: 1.6;
  margin: var(--space-2) 0 0;
  max-width: 620px;
}

.cz-we-buy-cta-panel .cz-we-buy-btn {
  white-space: nowrap;
}

.cz-we-buy-cta-panel__media {
  align-self: stretch;
  border-radius: var(--radius-md);
  min-height: 112px;
  opacity: 0.42;
  overflow: hidden;
  position: relative;
}

.cz-we-buy-cta-panel__media::after {
  background: linear-gradient(90deg, var(--cz-charcoal) 0%, rgba(11, 11, 11, 0.35) 48%, rgba(11, 11, 11, 0.12) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.cz-we-buy-cta-panel__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1100px) {
  .cz-we-buy-category-grid,
  .cz-we-buy-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cz-we-buy-step-card::after {
    display: none;
  }
}
@media (max-width: 900px) {
  .cz-we-buy-hero,
  .cz-we-buy-categories,
  .cz-we-buy-how,
  .cz-we-buy-info,
  .cz-we-buy-pawn-cta {
    padding: clamp(36px, 8vw, 48px) 0;
  }
  .cz-we-buy-pawn-cta {
    padding-top: 0;
  }
  .cz-we-buy-hero__grid,
  .cz-we-buy-info__grid,
  .cz-we-buy-cta-panel {
    grid-template-columns: 1fr;
  }
  .cz-we-buy-cta-panel {
    justify-items: start;
  }
  .cz-we-buy-cta-panel__media {
    max-height: 180px;
    width: 100%;
  }
  .cz-we-buy-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }
}
@media (max-width: 620px) {
  .cz-we-buy-category-grid,
  .cz-we-buy-step-grid {
    grid-template-columns: 1fr;
  }
  .cz-we-buy-actions,
  .cz-we-buy-btn {
    width: 100%;
  }
  .cz-we-buy-hero__media {
    aspect-ratio: 4/3.2;
  }
  .cz-we-buy-section-heading h2 {
    gap: var(--space-2);
  }
  .cz-we-buy-section-heading h2::before,
  .cz-we-buy-section-heading h2::after {
    width: 28px;
  }
}
/* ------------------------------------------------------------
   6. UTILITIES (Helpers, Utility Classes)
------------------------------------------------------------ */
/* ============================================================
   CASHZONE — UTILITY HELPERS (FULL REBUILD)
   Clean, consolidated, responsive, token‑driven utilities.
============================================================ */
/* ------------------------------------------------------------
   DISPLAY UTILITIES
------------------------------------------------------------ */
.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

@media (min-width: var(--bp-md)) {
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-grid {
    display: grid;
  }
  .d-md-none {
    display: none;
  }
}
/* ------------------------------------------------------------
   FLEX UTILITIES
------------------------------------------------------------ */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

/* ------------------------------------------------------------
   TEXT UTILITIES
------------------------------------------------------------ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letterspace-wide);
}

.text-gold {
  color: var(--cz-gold);
}

.text-grey {
  color: var(--cz-grey);
}

.text-white {
  color: var(--cz-white);
}

/* ------------------------------------------------------------
   SPACING UTILITIES — MARGIN
------------------------------------------------------------ */
.m-0 {
  margin: 0 !important;
}

.mt-1 {
  margin-top: var(--space-1);
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mt-7 {
  margin-top: var(--space-7);
}

.mb-7 {
  margin-bottom: var(--space-7);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

@media (min-width: var(--bp-md)) {
  .mt-md-1 {
    margin-top: var(--space-1);
  }
  .mb-md-1 {
    margin-bottom: var(--space-1);
  }
  .mt-md-2 {
    margin-top: var(--space-2);
  }
  .mb-md-2 {
    margin-bottom: var(--space-2);
  }
  .mt-md-3 {
    margin-top: var(--space-3);
  }
  .mb-md-3 {
    margin-bottom: var(--space-3);
  }
  .mt-md-4 {
    margin-top: var(--space-4);
  }
  .mb-md-4 {
    margin-bottom: var(--space-4);
  }
  .mt-md-5 {
    margin-top: var(--space-5);
  }
  .mb-md-5 {
    margin-bottom: var(--space-5);
  }
  .mt-md-6 {
    margin-top: var(--space-6);
  }
  .mb-md-6 {
    margin-bottom: var(--space-6);
  }
  .mt-md-7 {
    margin-top: var(--space-7);
  }
  .mb-md-7 {
    margin-bottom: var(--space-7);
  }
  .mt-md-8 {
    margin-top: var(--space-8);
  }
  .mb-md-8 {
    margin-bottom: var(--space-8);
  }
}
/* ------------------------------------------------------------
   SPACING UTILITIES — PADDING
------------------------------------------------------------ */
.p-0 {
  padding: 0 !important;
}

.pt-1 {
  padding-top: var(--space-1);
}

.pb-1 {
  padding-bottom: var(--space-1);
}

.pt-2 {
  padding-top: var(--space-2);
}

.pb-2 {
  padding-bottom: var(--space-2);
}

.pt-3 {
  padding-top: var(--space-3);
}

.pb-3 {
  padding-bottom: var(--space-3);
}

.pt-4 {
  padding-top: var(--space-4);
}

.pb-4 {
  padding-bottom: var(--space-4);
}

.pt-5 {
  padding-top: var(--space-5);
}

.pb-5 {
  padding-bottom: var(--space-5);
}

.pt-6 {
  padding-top: var(--space-6);
}

.pb-6 {
  padding-bottom: var(--space-6);
}

.pt-7 {
  padding-top: var(--space-7);
}

.pb-7 {
  padding-bottom: var(--space-7);
}

.pt-8 {
  padding-top: var(--space-8);
}

.pb-8 {
  padding-bottom: var(--space-8);
}

@media (min-width: var(--bp-md)) {
  .pt-md-1 {
    padding-top: var(--space-1);
  }
  .pb-md-1 {
    padding-bottom: var(--space-1);
  }
  .pt-md-2 {
    padding-top: var(--space-2);
  }
  .pb-md-2 {
    padding-bottom: var(--space-2);
  }
  .pt-md-3 {
    padding-top: var(--space-3);
  }
  .pb-md-3 {
    padding-bottom: var(--space-3);
  }
  .pt-md-4 {
    padding-top: var(--space-4);
  }
  .pb-md-4 {
    padding-bottom: var(--space-4);
  }
  .pt-md-5 {
    padding-top: var(--space-5);
  }
  .pb-md-5 {
    padding-bottom: var(--space-5);
  }
  .pt-md-6 {
    padding-top: var(--space-6);
  }
  .pb-md-6 {
    padding-bottom: var(--space-6);
  }
  .pt-md-7 {
    padding-top: var(--space-7);
  }
  .pb-md-7 {
    padding-bottom: var(--space-7);
  }
  .pt-md-8 {
    padding-top: var(--space-8);
  }
  .pb-md-8 {
    padding-bottom: var(--space-8);
  }
}
/* ------------------------------------------------------------
   WIDTH UTILITIES
------------------------------------------------------------ */
.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-auto {
  width: auto;
}

/* ------------------------------------------------------------
   VISIBILITY UTILITIES
------------------------------------------------------------ */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@media (min-width: var(--bp-md)) {
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
}
/* ------------------------------------------------------------
   POSITION UTILITIES
------------------------------------------------------------ */
.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

/* ------------------------------------------------------------
   OVERFLOW UTILITIES
------------------------------------------------------------ */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* ------------------------------------------------------------
   DARK PAGE OVERRIDES
------------------------------------------------------------ */
.cz-dark-page {
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  min-height: 100vh;
}

.cz-dark-page section,
.cz-dark-page .cz-section,
.cz-dark-page .cz-page-inner,
.cz-dark-page .cz-content-wrap {
  background: transparent;
}

.cz-dark-page h1,
.cz-dark-page h2,
.cz-dark-page h3,
.cz-dark-page h4 {
  color: var(--cz-warm-white);
}

.cz-dark-page p,
.cz-dark-page li {
  color: #d6d6d6;
}

.cz-dark-page a {
  color: var(--cz-yellow);
}

.cz-dark-page a:hover {
  color: var(--cz-gold);
}

.cz-dark-page .cz-about-stat-card,
.cz-dark-page .cz-about-service-card,
.cz-dark-page .cz-location-card,
.cz-dark-page .cz-locations-map-panel,
.cz-dark-page .cz-we-buy-step-card,
.cz-dark-page .cz-we-buy-info-card {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.cz-dark-page .cz-location-card strong {
  color: var(--cz-warm-white);
}

body:has(.cz-dark-page),
body:has(.cz-dark-page) .site,
body:has(.cz-dark-page) .site-content,
body:has(.cz-dark-page) .entry-content,
body:has(.cz-dark-page) main {
  background: var(--cz-charcoal);
}

.page-template-page-locations,
.page-template-page-we-buy,
.page-template-page-we-sell,
.page-template-page-we-loan,
.page-template-page-about-us,
.page-template-page-contact-us,
.page-template-page-privacy-policy,
.page-template-page-terms-and-conditions,
.page-template-page-refund-policy,
.page-template-page-refund-returns-policy,
.page-template-page-faq {
  background: var(--cz-charcoal);
}

.page-template-page-locations .site,
.page-template-page-we-buy .site,
.page-template-page-we-sell .site,
.page-template-page-we-loan .site,
.page-template-page-about-us .site,
.page-template-page-contact-us .site,
.page-template-page-privacy-policy .site,
.page-template-page-terms-and-conditions .site,
.page-template-page-refund-policy .site,
.page-template-page-refund-returns-policy .site,
.page-template-page-faq .site,
.page-template-page-locations .site-content,
.page-template-page-we-buy .site-content,
.page-template-page-we-sell .site-content,
.page-template-page-we-loan .site-content,
.page-template-page-we-loan .entry-content,
.page-template-page-we-loan main,
.page-template-page-about-us .site-content,
.page-template-page-contact-us .site-content,
.page-template-page-contact-us .entry-content,
.page-template-page-contact-us main,
.page-template-page-privacy-policy .site-content,
.page-template-page-privacy-policy .entry-content,
.page-template-page-privacy-policy main,
.page-template-page-terms-and-conditions .site-content,
.page-template-page-refund-policy .site-content,
.page-template-page-refund-returns-policy .site-content,
.page-template-page-terms-and-conditions .entry-content,
.page-template-page-refund-policy .entry-content,
.page-template-page-refund-returns-policy .entry-content,
.page-template-page-faq .site-content,
.page-template-page-faq .entry-content,
.page-template-page-faq main {
  background: var(--cz-charcoal);
}

/* ============================================================
   CASHZONE WE SELL PAGE
============================================================ */
.cz-we-sell-page {
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  min-height: 100vh;
  overflow: hidden;
}

.cz-we-sell-page section,
.cz-we-sell-page .cz-section,
.cz-we-sell-page .cz-page-inner,
.cz-we-sell-page .cz-content-wrap {
  background: transparent;
}

.cz-we-sell-page h1,
.cz-we-sell-page h2,
.cz-we-sell-page h3 {
  color: var(--cz-warm-white);
}

.cz-we-sell-page p,
.cz-we-sell-page li {
  color: #d6d6d6;
}

.cz-we-sell-page .cz-highlight,
.cz-we-sell-page .cz-section-title,
.cz-we-sell-page strong {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-we-sell-page .cz-we-buy-hero,
.cz-we-sell-page .cz-we-buy-categories,
.cz-we-sell-page .cz-we-buy-how,
.cz-we-sell-page .cz-we-buy-info,
.cz-we-sell-page .cz-we-buy-pawn-cta {
  background: var(--cz-charcoal);
}

.cz-we-sell-page .cz-we-buy-section-heading h2 {
  color: var(--cz-warm-white);
}

.cz-we-sell-page .cz-we-buy-section-heading p {
  color: #d6d6d6;
}

.cz-we-sell-page .cz-we-buy-step-card,
.cz-we-sell-page .cz-we-buy-info-card {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.cz-we-sell-page .cz-we-buy-step-card h3,
.cz-we-sell-page .cz-we-buy-info-card h2,
.cz-we-sell-page .cz-we-buy-cta-panel h2,
.cz-we-sell-page .cz-we-sell-final-panel h2 {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-we-sell-page .cz-we-buy-step-card p,
.cz-we-sell-page .cz-we-buy-info-card li {
  color: #d6d6d6;
}

.cz-we-sell-category-card p {
  color: #d6d6d6;
  font-size: var(--font-sm);
  line-height: 1.45;
  margin: var(--space-1) 0 0;
}

.cz-we-sell-cta-panel--compact {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.cz-we-sell-final-cta {
  padding-top: 0;
}

.cz-we-sell-final-panel {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent 42%), var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  padding: clamp(var(--space-5), 5vw, var(--space-8));
  text-align: center;
}

.cz-we-sell-final-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
}

.cz-we-sell-final-panel p {
  color: #d6d6d6;
  font-size: var(--font-md);
  line-height: 1.7;
  margin: var(--space-3) auto 0;
  max-width: 680px;
}

.cz-we-sell-final-panel .cz-we-buy-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .cz-we-sell-cta-panel--compact {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CASHZONE WE LOAN PAGE
============================================================ */
.cz-loan-page {
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.13), transparent 34rem), var(--cz-charcoal);
  color: var(--cz-warm-white);
  min-height: 100vh;
  overflow: hidden;
}

.cz-loan-page section {
  background: transparent;
}

.cz-loan-inner {
  margin: 0 auto;
  max-width: 1120px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-loan-hero {
  padding: clamp(64px, 9vw, 112px) 0 clamp(28px, 5vw, 48px);
  text-align: center;
}

.cz-loan-eyebrow {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: var(--letterspace-wide);
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
}

.cz-loan-hero h1 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: var(--letterspace-normal);
  line-height: 1.03;
  margin: 0 auto;
  max-width: 950px;
}

.cz-loan-hero h1 span {
  color: var(--cz-gold, var(--cz-yellow));
  display: inline;
}

.cz-loan-intro {
  color: #d6d6d6;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  margin: var(--space-4) auto 0;
  max-width: 680px;
}

.cz-loan-options {
  padding: clamp(20px, 4vw, 42px) 0 clamp(40px, 6vw, 72px);
}

.cz-loan-card-grid {
  display: grid;
  gap: clamp(var(--space-4), 3vw, var(--space-6));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cz-loan-card {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent 42%), var(--cz-charcoal);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  position: relative;
}

.cz-loan-card::before {
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 999px;
  content: "";
  height: 4px;
  left: clamp(var(--space-5), 4vw, var(--space-7));
  position: absolute;
  right: clamp(var(--space-5), 4vw, var(--space-7));
  top: 0;
}

.cz-loan-card__icon {
  align-items: center;
  border-radius: 18px;
  color: var(--cz-gold, var(--cz-yellow));
  display: inline-flex;
  height: 74px;
  justify-content: center;
  margin-bottom: var(--space-4);
  width: 74px;
}

.cz-loan-card__icon svg {
  display: block;
  fill: none;
  height: 64px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 64px;
}

.cz-loan-card h2 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  margin: 0;
}

.cz-loan-card__subheading {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading);
  font-size: var(--font-md);
  font-weight: 700;
  line-height: 1.45;
  margin: var(--space-2) 0 0;
}

.cz-loan-card p {
  color: #d6d6d6;
  font-size: var(--font-sm);
  line-height: 1.7;
  margin: var(--space-3) 0 0;
}

.cz-loan-note {
  color: #b8b8b8;
  font-size: var(--font-xs);
}

.cz-loan-btn {
  align-items: center;
  background: var(--cz-gold, var(--cz-yellow));
  border: 2px solid var(--cz-gold, var(--cz-yellow));
  border-radius: var(--radius-md);
  color: var(--cz-charcoal);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin-top: auto;
  min-height: 48px;
  padding: 14px 20px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cz-loan-card__content {
  margin-bottom: var(--space-5);
}

.cz-loan-btn:hover,
.cz-loan-btn:focus {
  background: var(--cz-gold-light, var(--cz-yellow));
  border-color: var(--cz-gold-light, var(--cz-yellow));
  color: var(--cz-charcoal);
  transform: translateY(-1px);
}

.cz-loan-card .cz-loan-btn,
.cz-loan-card .cz-loan-btn:visited,
.cz-loan-card .cz-loan-btn:hover,
.cz-loan-card .cz-loan-btn:focus,
.cz-loan-card .cz-loan-btn:active {
  align-items: center;
  background: #d6aa22;
  border: 1px solid #d6aa22;
  border-radius: 10px;
  color: var(--cz-charcoal);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  min-height: 48px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.cz-loan-card .cz-loan-btn:hover,
.cz-loan-card .cz-loan-btn:focus,
.cz-loan-card .cz-loan-btn:active {
  background: #f0c033;
  border-color: #f0c033;
  color: var(--cz-charcoal);
  text-decoration: none;
}

.cz-loan-card .cz-loan-btn span {
  color: var(--cz-charcoal);
}

.cz-cash-loan-flow {
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 170, 34, 0.12), transparent 34rem),
    var(--cz-charcoal);
  color: var(--cz-warm-white);
  padding: clamp(42px, 7vw, 84px) 16px;
}

.woocommerce .cz-cash-loan-flow {
  margin: -28px;
  padding: clamp(28px, 5vw, 56px) 0 0;
}

.cz-cash-loan-wrap {
  margin: 0 auto;
  max-width: 1120px;
}

.cz-cash-loan-hero {
  margin: 0 0 clamp(22px, 4vw, 34px);
  max-width: 760px;
}

.cz-cash-loan-eyebrow {
  color: #d6aa22;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.cz-cash-loan-hero h1 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
  margin: 0;
}

.cz-cash-loan-hero p,
.cz-cash-loan-card p,
.cz-cash-loan-panel p,
.cz-cash-loan-compliance p,
.cz-cash-loan-small-note {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.cz-cash-loan-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.cz-cash-loan-card,
.cz-cash-loan-panel,
.cz-cash-loan-notice,
.cz-cash-loan-compliance {
  background:
    linear-gradient(145deg, rgba(214, 170, 34, 0.08), transparent 48%),
    #0a0a0a;
  border: 1px solid rgba(214, 170, 34, 0.3);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

.cz-cash-loan-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(22px, 4vw, 32px);
}

.cz-cash-loan-card h2,
.cz-cash-loan-panel h2 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.cz-cash-loan-card .cz-cash-loan-btn {
  margin-top: auto;
}

.cz-cash-loan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cz-cash-loan-btn,
.cz-cash-loan-btn:visited,
.cz-cash-loan-form .cz-cash-loan-btn {
  align-items: center;
  background: #d6aa22;
  border: 1px solid #d6aa22;
  border-radius: 10px;
  color: var(--cz-charcoal);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  min-height: 48px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cz-cash-loan-btn:hover,
.cz-cash-loan-btn:focus,
.cz-cash-loan-btn:active {
  background: #f0c033;
  border-color: #f0c033;
  color: var(--cz-charcoal);
  text-decoration: none;
  transform: translateY(-1px);
}

.cz-cash-loan-btn--outline,
.cz-cash-loan-btn--outline:visited {
  background: transparent;
  border-color: rgba(214, 170, 34, 0.72);
  color: #d6aa22;
}

.cz-cash-loan-btn--outline:hover,
.cz-cash-loan-btn--outline:focus {
  background: #d6aa22;
  color: var(--cz-charcoal);
}

.cz-cash-loan-panel,
.cz-cash-loan-notice,
.cz-cash-loan-compliance {
  margin-top: 22px;
  padding: clamp(20px, 4vw, 32px);
}

.cz-cash-loan-notice--success {
  border-color: rgba(97, 220, 137, 0.42);
}

.cz-cash-loan-notice--error {
  border-color: rgba(255, 181, 181, 0.45);
}

.cz-cash-loan-form {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.cz-cash-loan-fieldset {
  border: 1px solid rgba(214, 170, 34, 0.24);
  border-radius: 14px;
  margin: 0;
  padding: clamp(18px, 3vw, 24px);
}

.cz-cash-loan-fieldset legend {
  color: #d6aa22;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0 8px;
  text-transform: uppercase;
}

.cz-cash-loan-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cz-cash-loan-field {
  display: grid;
  gap: 8px;
}

.cz-cash-loan-field--wide {
  grid-column: 1 / -1;
}

.cz-cash-loan-field span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.cz-cash-loan-field em {
  color: #d6aa22;
  font-size: 0.74rem;
  font-style: normal;
  margin-left: 6px;
  text-transform: uppercase;
}

.cz-cash-loan-field input,
.cz-cash-loan-field textarea {
  background: var(--cz-warm-white);
  border: 1px solid rgba(214, 170, 34, 0.3);
  border-radius: 10px;
  color: var(--cz-warm-white);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.cz-cash-loan-field textarea {
  min-height: 118px;
  resize: vertical;
}

.cz-cash-loan-field input:focus,
.cz-cash-loan-field textarea:focus {
  border-color: #d6aa22;
  box-shadow: 0 0 0 3px rgba(214, 170, 34, 0.22);
  outline: none;
}

.cz-cash-loan-small-note {
  border-left: 3px solid #d6aa22;
  margin: 0;
  padding-left: 14px;
}

.cz-cash-loan-surecash {
  border-left: 5px solid #d6aa22;
}

.cz-cash-landing {
  background:
    radial-gradient(circle at 18% 10%, rgba(214, 170, 34, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.08), transparent 24rem),
    var(--cz-charcoal);
  color: var(--cz-warm-white);
  overflow: hidden;
  padding: clamp(38px, 6vw, 82px) 16px clamp(52px, 7vw, 92px);
}

.cz-cash-landing__hero,
.cz-cash-landing__steps,
.cz-cash-landing__info,
.cz-cash-landing__notice {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.cz-cash-landing__hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.cz-cash-landing__eyebrow,
.cz-cash-section-heading p {
  color: #d6aa22;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.cz-cash-landing__copy h1 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.cz-cash-landing__intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 610px;
}

.cz-cash-landing__features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(24px, 4vw, 34px) 0;
  max-width: 700px;
}

.cz-cash-feature {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(214, 170, 34, 0.22);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  font-weight: 800;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px;
}

.cz-cash-feature__icon {
  align-items: center;
  background: #d6aa22;
  border-radius: 50%;
  color: var(--cz-charcoal);
  display: inline-flex;
  flex: 0 0 auto;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.cz-cash-feature__icon svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 18px;
}

.cz-cash-landing__compliance,
.cz-cash-landing__notice {
  background:
    linear-gradient(135deg, rgba(214, 170, 34, 0.09), transparent 58%),
    var(--cz-charcoal);
  border: 1px solid rgba(214, 170, 34, 0.44);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.cz-cash-landing__compliance {
  max-width: 620px;
  padding: 18px 20px;
}

.cz-cash-landing__compliance p,
.cz-cash-landing__notice p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

.cz-cash-landing__media {
  aspect-ratio: 0.92;
  background: var(--cz-charcoal);
  border: 1px solid rgba(214, 170, 34, 0.26);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.cz-cash-landing__media::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.46)),
    radial-gradient(circle at 78% 18%, rgba(214, 170, 34, 0.28), transparent 18rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.cz-cash-landing__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cz-cash-landing__steps,
.cz-cash-landing__info {
  padding-top: clamp(54px, 8vw, 92px);
}

.cz-cash-section-heading {
  margin-bottom: clamp(22px, 4vw, 34px);
  text-align: center;
}

.cz-cash-section-heading h2 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.cz-cash-section-heading p {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
  text-transform: none;
}

.cz-cash-choice-grid,
.cz-cash-info-grid {
  display: grid;
  gap: 20px;
}

.cz-cash-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cz-cash-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cz-cash-choice-card,
.cz-cash-info-card {
  background:
    linear-gradient(145deg, rgba(214, 170, 34, 0.08), transparent 46%),
    #0c0c0c;
  border: 1px solid rgba(214, 170, 34, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(22px, 3vw, 32px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.cz-cash-choice-card:hover,
.cz-cash-info-card:hover {
  border-color: rgba(214, 170, 34, 0.58);
  transform: translateY(-2px);
}

.cz-cash-choice-card h3,
.cz-cash-info-card h3 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.cz-cash-choice-card p,
.cz-cash-info-card p,
.cz-cash-info-card li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.cz-cash-choice-card p,
.cz-cash-info-card p {
  margin: 0 0 22px;
}

.cz-cash-info-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.cz-cash-info-card li {
  padding-left: 20px;
  position: relative;
}

.cz-cash-info-card li::before {
  background: #d6aa22;
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.68em;
  width: 7px;
}

.cz-cash-choice-card .cz-cash-loan-btn,
.cz-cash-info-card .cz-cash-loan-btn {
  margin-top: auto;
  width: 100%;
}

.cz-cash-landing__notice {
  margin-top: clamp(42px, 6vw, 70px);
  padding: 20px 24px;
  text-align: center;
}

@media (max-width: 820px) {
  .cz-cash-landing {
    padding-top: 34px;
  }

  .cz-cash-landing__hero,
  .cz-cash-choice-grid,
  .cz-cash-info-grid,
  .cz-cash-loan-grid,
  .cz-cash-loan-form-grid {
    grid-template-columns: 1fr;
  }

  .cz-cash-landing__features {
    grid-template-columns: 1fr;
  }

  .cz-cash-landing__media {
    aspect-ratio: 1.12;
    min-height: 320px;
  }

  .cz-cash-choice-card,
  .cz-cash-info-card {
    min-height: 0;
  }

  .cz-cash-loan-actions,
  .cz-cash-loan-btn {
    width: 100%;
  }

  .woocommerce .cz-cash-loan-flow {
    margin: -16px;
    padding-left: 0;
    padding-right: 0;
  }

}

.cz-loan-trust {
  padding: 0 0 clamp(60px, 8vw, 96px);
}

.cz-loan-trust__panel {
  align-items: center;
  background: rgba(9, 9, 9, 0.94);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  padding: clamp(var(--space-4), 3vw, var(--space-5));
  text-align: left;
}

.cz-loan-trust__icon {
  color: var(--cz-gold, var(--cz-yellow));
  display: inline-flex;
  flex: 0 0 auto;
}

.cz-loan-trust__icon svg {
  display: block;
  fill: none;
  height: 46px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 46px;
}

.cz-loan-trust h2 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
  margin: 0;
}

.cz-loan-trust p {
  color: #d6d6d6;
  line-height: 1.65;
  margin: var(--space-1) 0 0;
}

.cz-borrow-section {
  padding: 0 0 clamp(58px, 8vw, 92px);
  text-align: center;
}

.cz-loan-bottom-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
  margin: 40px 0 24px;
}

.cz-loan-bottom-actions .cz-borrow-warning-wrap,
.cz-loan-bottom-actions .cz-loan-info-button-wrap {
  display: flex;
  flex: 1 1 320px;
  margin: 0;
  max-width: 420px;
}

.cz-borrow-trigger {
  align-items: center;
  background: var(--cz-gold, var(--cz-yellow));
  border: 2px solid var(--cz-gold, var(--cz-yellow));
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  color: var(--cz-charcoal);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.95rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 48px;
  padding: 13px 22px;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cz-borrow-trigger:hover,
.cz-borrow-trigger:focus-visible {
  background: var(--cz-gold-light, #F0CF69);
  border-color: var(--cz-gold-light, #F0CF69);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
  color: var(--cz-charcoal);
  transform: translateY(-2px);
}

.cz-borrow-trigger:focus-visible,
.cz-borrow-close:focus-visible,
.cz-borrow-content a:focus-visible {
  outline: 2px solid var(--cz-gold, var(--cz-yellow));
  outline-offset: 3px;
}

.cz-borrow-modal[hidden] {
  display: none;
}

.cz-borrow-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(16px, 4vw, 36px);
  pointer-events: none;
  position: fixed;
  transition: opacity 0.22s ease;
  z-index: 10000;
}

.cz-borrow-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cz-borrow-overlay {
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.82);
  inset: 0;
  position: absolute;
}

.cz-borrow-dialog {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent 42%), var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.42);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
  max-height: min(88vh, 720px);
  max-width: 820px;
  opacity: 0;
  overflow: auto;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
  width: min(100%, 820px);
  z-index: 1;
}

.cz-borrow-modal.is-open .cz-borrow-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cz-borrow-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 999px;
  color: var(--cz-gold, var(--cz-yellow));
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.cz-borrow-close:hover,
.cz-borrow-close:focus-visible {
  background: var(--cz-gold, var(--cz-yellow));
  color: var(--cz-charcoal);
  transform: rotate(90deg);
}

.cz-borrow-dialog h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.38rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.14;
  margin: 0 50px 16px 0;
}

.cz-borrow-content {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.88rem, 1.4vw, 0.94rem);
  line-height: 1.58;
}

.cz-borrow-content p {
  margin: 0 0 12px;
}

.cz-borrow-content ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 14px 0 16px;
  padding: 0;
}

.cz-borrow-content li {
  padding-left: 28px;
  position: relative;
}

.cz-borrow-content li::before {
  color: var(--cz-gold, var(--cz-yellow));
  content: "•";
  font-size: 1.4rem;
  font-weight: 900;
  left: 2px;
  line-height: 1;
  position: absolute;
  top: 0.18em;
}

.cz-borrow-content a {
  color: var(--cz-gold, var(--cz-yellow));
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.cz-borrow-content a:hover,
.cz-borrow-content a:focus-visible {
  color: var(--cz-gold-light, #F0CF69);
}

.cz-borrow-footnote {
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 14px !important;
  padding-top: 12px;
}

body.cz-borrow-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .cz-loan-card-grid {
    grid-template-columns: 1fr;
  }

  .cz-loan-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .cz-loan-hero {
    padding-top: 56px;
  }

  .cz-loan-trust__panel {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .cz-borrow-section {
    padding-bottom: 54px;
  }

  .cz-borrow-trigger {
    width: 100%;
  }

  .cz-borrow-dialog {
    border-radius: 18px;
    max-height: 88vh;
    padding: 24px 18px;
  }

  .cz-borrow-close {
    height: 40px;
    right: 14px;
    top: 14px;
    width: 40px;
  }

  .cz-borrow-dialog h2 {
    font-size: clamp(1.38rem, 6vw, 1.5rem);
    margin-right: 46px;
  }

  .cz-borrow-content {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .cz-borrow-content ul {
    gap: 9px;
    margin-bottom: 14px;
  }
}

body.cz-modal-open {
  overflow: hidden;
}

.cz-borrow-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  pointer-events: auto;
}

.cz-borrow-modal.is-open {
  display: flex;
}

.cz-borrow-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.cz-borrow-modal-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--cz-charcoal);
  border: 1px solid rgba(204, 164, 45, .55);
  border-radius: 18px;
  padding: 34px 42px 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .8);
}

.cz-borrow-modal-content h2 {
  color: #d1aa28;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cz-borrow-modal-content p,
.cz-borrow-modal-content li {
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.55;
}

.cz-borrow-modal-content p {
  margin: 0 0 14px;
}

.cz-borrow-modal-content ul {
  margin: 14px 0 18px 20px;
  padding: 0;
}

.cz-borrow-modal-content li {
  margin-bottom: 8px;
}

.cz-borrow-modal-content a {
  color: #d1aa28;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cz-borrow-note {
  font-size: 13px !important;
  line-height: 1.45;
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #cfcfcf !important;
}

.cz-borrow-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(209, 170, 40, .65);
  border-radius: 12px;
  background: #d1aa28;
  color: var(--cz-charcoal);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.cz-borrow-close:hover {
  background: #f0c94a;
}

@media (max-width: 768px) {
  .cz-borrow-modal {
    padding: 14px;
  }

  .cz-borrow-modal-content {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    padding: 28px 22px 24px;
  }

  .cz-borrow-modal-content h2 {
    font-size: 23px;
    padding-right: 48px;
  }

  .cz-borrow-modal-content p,
  .cz-borrow-modal-content li {
    font-size: 13.5px;
  }

  .cz-borrow-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
}

/* ============================================================
   CASHZONE PAWN LOANS PAGE
============================================================ */
.cz-pawn-page {
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.13), transparent 34rem), var(--cz-charcoal);
  color: var(--cz-warm-white);
  min-height: 100vh;
  overflow: hidden;
}

.cz-pawn-wrap {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-pawn-section,
.cz-pawn-hero {
  padding: clamp(52px, 7vw, 86px) 0;
}

.cz-pawn-hero {
  background: linear-gradient(135deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 62%, #151104 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.cz-pawn-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.85fr);
}

.cz-pawn-eyebrow {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.cz-pawn-hero h1,
.cz-pawn-section-heading h2,
.cz-pawn-cta h2 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-weight: 900;
  line-height: 1.04;
  margin: 0;
}

.cz-pawn-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.cz-pawn-hero h1 span,
.cz-pawn-section-heading h2 span {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-pawn-intro {
  color: var(--cz-gold, var(--cz-yellow)) !important;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.12rem, 2.2vw, 1.5rem) !important;
  font-weight: 800;
  margin-top: 22px !important;
}

.cz-pawn-hero p,
.cz-pawn-card p,
.cz-pawn-card li,
.cz-pawn-why-item p,
.cz-pawn-cta p {
  color: #d6d6d6;
  font-size: 1rem;
  line-height: 1.65;
}

.cz-pawn-highlight {
  color: var(--cz-warm-white) !important;
  font-weight: 800;
}

.cz-pawn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cz-pawn-actions--center {
  justify-content: center;
}

.cz-pawn-btn {
  align-items: center;
  border: 1px solid var(--cz-gold, var(--cz-yellow));
  border-radius: 10px;
  display: inline-flex;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cz-pawn-btn--gold {
  background: var(--cz-gold, var(--cz-yellow));
  color: var(--cz-charcoal);
}

.cz-pawn-btn--outline {
  background: transparent;
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-pawn-btn:hover,
.cz-pawn-btn:focus-visible {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
  transform: translateY(-2px);
}

.cz-pawn-hero__visual {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 28% 30%, rgba(201, 162, 39, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(201, 162, 39, 0.12), transparent 48%),
    var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cz-pawn-hero__visual::before,
.cz-pawn-hero__visual::after {
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 999px;
  content: "";
  position: absolute;
}

.cz-pawn-hero__visual::before {
  height: 76%;
  width: 76%;
}

.cz-pawn-hero__visual::after {
  height: 50%;
  width: 50%;
}

.cz-pawn-product-stack {
  height: 72%;
  position: relative;
  width: 72%;
  z-index: 1;
}

.cz-pawn-product {
  background: linear-gradient(145deg, #2b2b2b, var(--cz-charcoal));
  border: 1px solid rgba(201, 162, 39, 0.38);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  display: block;
  position: absolute;
}

.cz-pawn-product--gold {
  background: linear-gradient(145deg, var(--cz-gold), var(--cz-gold));
  border-radius: 999px;
  height: 34%;
  left: 10%;
  top: 8%;
  width: 34%;
}

.cz-pawn-product--watch {
  border-radius: 18px;
  height: 44%;
  right: 14%;
  top: 14%;
  width: 28%;
}

.cz-pawn-product--console {
  border-radius: 18px;
  bottom: 14%;
  height: 30%;
  left: 17%;
  width: 46%;
}

.cz-pawn-product--tool {
  border-radius: 999px;
  bottom: 19%;
  height: 12%;
  right: 8%;
  transform: rotate(-32deg);
  width: 38%;
}

.cz-pawn-section-heading {
  margin: 0 auto 30px;
  max-width: 760px;
  text-align: center;
}

.cz-pawn-section-heading h2,
.cz-pawn-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cz-pawn-step-grid,
.cz-pawn-info-grid {
  display: grid;
  gap: 18px;
}

.cz-pawn-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-pawn-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-pawn-card {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent 44%), var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  padding: clamp(20px, 3vw, 28px);
}

.cz-pawn-card h3,
.cz-pawn-card h4 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 12px;
}

.cz-pawn-card h3 {
  font-size: 1.22rem;
}

.cz-pawn-card h4 {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-top: 18px;
  text-transform: uppercase;
}

.cz-pawn-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.cz-pawn-card li {
  padding-left: 20px;
  position: relative;
}

.cz-pawn-card li::before {
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 2px;
  position: absolute;
  top: 0.72em;
  width: 6px;
}

.cz-pawn-icon {
  align-items: center;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.34);
  border-radius: 16px;
  color: var(--cz-gold, var(--cz-yellow));
  display: inline-flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  width: 56px;
}

.cz-pawn-icon svg {
  fill: currentColor;
  height: 30px;
  width: 30px;
}

.cz-pawn-info,
.cz-pawn-why {
  background: var(--cz-charcoal);
}

.cz-pawn-why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cz-pawn-why-item {
  align-items: center;
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  padding: 18px;
}

.cz-pawn-why-item span {
  color: var(--cz-gold, var(--cz-yellow));
  flex: 0 0 auto;
  font-weight: 900;
}

.cz-pawn-why-item p {
  color: var(--cz-warm-white);
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.cz-pawn-cta {
  background: var(--cz-charcoal);
  text-align: center;
}

.cz-pawn-cta__panel {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent 46%), var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.36);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(28px, 5vw, 50px);
}

.cz-pawn-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

@media (max-width: 1100px) {
  .cz-pawn-step-grid,
  .cz-pawn-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .cz-pawn-hero__grid {
    grid-template-columns: 1fr;
  }

  .cz-pawn-hero__visual {
    min-height: 300px;
  }

  .cz-pawn-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cz-pawn-section,
  .cz-pawn-hero {
    padding: 48px 0;
  }

  .cz-pawn-actions,
  .cz-pawn-btn {
    width: 100%;
  }

  .cz-pawn-step-grid,
  .cz-pawn-info-grid,
  .cz-pawn-why-grid {
    grid-template-columns: 1fr;
  }

  .cz-pawn-card {
    border-radius: 14px;
  }
}

body.cz-loan-info-open {
  overflow: hidden;
}

.cz-loan-info-button-wrap {
  text-align: center;
  margin: 40px 0 24px;
}

.cz-loan-info-btn {
  background: #d1aa28;
  color: var(--cz-charcoal);
  border: 1px solid #d1aa28;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.cz-loan-info-btn:hover {
  background: #f0c94a;
  transform: translateY(-2px);
}

.cz-loan-bottom-actions .cz-loan-action-btn {
  align-items: center;
  background: #d6aa22;
  border: 1px solid #d6aa22;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  color: var(--cz-charcoal);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 1rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1.2;
  min-height: 64px;
  padding: 18px 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.cz-loan-bottom-actions .cz-loan-action-btn:hover,
.cz-loan-bottom-actions .cz-loan-action-btn:focus {
  background: #f0c033;
  border-color: #f0c033;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
  color: var(--cz-charcoal);
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cz-loan-bottom-actions {
    flex-direction: column;
  }

  .cz-loan-bottom-actions .cz-borrow-warning-wrap,
  .cz-loan-bottom-actions .cz-loan-info-button-wrap {
    flex-basis: auto;
    max-width: none;
    width: 100%;
  }
}

.cz-loan-info-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cz-loan-info-modal.is-open {
  display: flex;
}

.cz-loan-info-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.cz-loan-info-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--cz-charcoal);
  border: 1px solid rgba(209, 170, 40, .75);
  border-radius: 18px;
  padding: 34px;
  color: #f2f2f2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .85);
}

.cz-loan-info-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(209, 170, 40, .75);
  border-radius: 10px;
  background: #d1aa28;
  color: var(--cz-charcoal);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cz-loan-info-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-right: 60px;
}

.cz-loan-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 3px solid #d1aa28;
  border-radius: 50%;
  color: #d1aa28;
  font-size: 34px;
  font-weight: 900;
  font-family: Georgia, serif;
}

.cz-loan-info-content h2 {
  margin: 0;
  color: #d1aa28;
  font-size: 34px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cz-loan-info-content h3 {
  margin: 0 0 10px;
  color: #d1aa28;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.cz-loan-info-content p,
.cz-loan-info-content li,
.cz-loan-info-content td {
  color: #e8e8e8;
  font-size: 15px;
  line-height: 1.5;
}

.cz-loan-info-intro {
  font-weight: 700;
  margin-bottom: 24px;
}

.cz-loan-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  border-bottom: 1px solid rgba(209, 170, 40, .55);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.cz-loan-info-block {
  border-left: 1px solid rgba(209, 170, 40, .45);
  padding-left: 22px;
}

.cz-loan-info-section {
  border-bottom: 1px solid rgba(209, 170, 40, .55);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.cz-loan-info-section ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.cz-loan-info-section li {
  margin-bottom: 6px;
}

.cz-loan-example-box {
  display: grid;
  grid-template-columns: .85fr 1.4fr;
  gap: 28px;
  border: 1px solid rgba(209, 170, 40, .75);
  border-radius: 14px;
  padding: 22px;
  background: rgba(209, 170, 40, .05);
  margin-bottom: 22px;
}

.cz-loan-amount {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid #d1aa28;
  border-radius: 6px;
  color: #d1aa28 !important;
  font-weight: 800;
  text-transform: uppercase;
}

.cz-loan-example-table-wrap {
  overflow-x: auto;
}

.cz-loan-example-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(209, 170, 40, .65);
}

.cz-loan-example-table td {
  border: 1px solid rgba(209, 170, 40, .45);
  padding: 9px 10px;
  text-align: center;
  white-space: nowrap;
}

.cz-loan-example-note {
  margin: 10px 0 0;
  font-size: 13px !important;
}

.cz-loan-info-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-top: 1px solid rgba(209, 170, 40, .55);
  padding-top: 18px;
}

.cz-loan-info-footer a {
  color: #d1aa28;
  font-weight: 800;
  text-decoration: none;
}

.cz-loan-info-footer a:hover {
  text-decoration: underline;
}

.cz-loan-info-bottom-close {
  display: block;
  margin: 24px auto 0;
  min-width: 190px;
  padding: 12px 28px;
  background: transparent;
  color: #d1aa28;
  border: 1px solid #d1aa28;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.cz-loan-info-bottom-close:hover {
  background: #d1aa28;
  color: var(--cz-charcoal);
}

@media (max-width: 768px) {
  .cz-loan-info-modal {
    padding: 14px;
  }

  .cz-loan-info-content {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    padding: 26px 20px;
  }

  .cz-loan-info-heading {
    align-items: flex-start;
    gap: 12px;
    padding-right: 48px;
  }

  .cz-loan-info-icon {
    width: 42px;
    height: 42px;
    font-size: 26px;
    border-width: 2px;
  }

  .cz-loan-info-content h2 {
    font-size: 24px;
  }

  .cz-loan-info-content h3 {
    font-size: 16px;
  }

  .cz-loan-info-content p,
  .cz-loan-info-content li,
  .cz-loan-info-content td {
    font-size: 13.5px;
  }

  .cz-loan-info-grid,
  .cz-loan-example-box,
  .cz-loan-info-footer {
    grid-template-columns: 1fr;
  }

  .cz-loan-info-block {
    border-left: none;
    padding-left: 0;
  }

  .cz-loan-info-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
}

/* ============================================================
   CASHZONE CONTACT PAGE
============================================================ */
.cz-contact-page {
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  min-height: 100vh;
  overflow: hidden;
}

.cz-contact-page section {
  background: transparent;
}

.cz-contact-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.cz-contact-hero {
  padding: clamp(64px, 9vw, 108px) 0 clamp(36px, 5vw, 56px);
  text-align: center;
}

.cz-contact-eyebrow {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: var(--letterspace-wide);
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
}

.cz-contact-hero h1 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.03;
  margin: 0;
}

.cz-contact-hero p,
.cz-contact-section-heading p {
  color: #d6d6d6;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
  margin: var(--space-4) auto 0;
  max-width: 720px;
}

.cz-contact-hero__actions,
.cz-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cz-contact-hero__actions {
  justify-content: center;
  margin-top: var(--space-5);
}

.cz-contact-btn {
  align-items: center;
  border: 2px solid var(--cz-gold, var(--cz-yellow));
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 13px 18px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cz-contact-btn--primary {
  background: var(--cz-gold, var(--cz-yellow));
  color: var(--cz-charcoal);
}

.cz-contact-btn--outline {
  background: transparent;
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-contact-btn:hover,
.cz-contact-btn:focus {
  background: var(--cz-gold-light, var(--cz-yellow));
  border-color: var(--cz-gold-light, var(--cz-yellow));
  color: var(--cz-charcoal);
  transform: translateY(-1px);
}

.cz-contact-stores {
  padding: clamp(20px, 4vw, 40px) 0 clamp(48px, 7vw, 84px);
}

.cz-contact-section-heading {
  margin: 0 auto var(--space-5);
  max-width: 800px;
  text-align: center;
}

.cz-contact-section-heading h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: var(--letterspace-wide);
  margin: 0;
  text-transform: uppercase;
}

.cz-contact-store-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cz-contact-card {
  background: var(--cz-charcoal);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(var(--space-4), 2.3vw, var(--space-5));
}

.cz-contact-card__icon {
  color: var(--cz-gold, var(--cz-yellow));
  display: inline-flex;
  margin-bottom: var(--space-3);
}

.cz-contact-card__icon svg {
  display: block;
  fill: none;
  height: 44px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 44px;
}

.cz-contact-card h3 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  line-height: 1.18;
  margin: 0 0 var(--space-2);
}

.cz-contact-card p {
  color: #d6d6d6;
  line-height: 1.6;
  margin: 0;
}

.cz-contact-card__address {
  min-height: 76px;
}

.cz-contact-card__phone {
  margin-top: var(--space-3);
}

.cz-contact-card a {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-contact-card a:hover,
.cz-contact-card a:focus {
  color: var(--cz-gold-light, var(--cz-yellow));
}

.cz-contact-actions {
  margin-top: auto;
  padding-top: var(--space-4);
}

.cz-contact-actions .cz-contact-btn {
  flex: 1 1 100%;
}

.cz-contact-support {
  padding: 0 0 clamp(56px, 8vw, 92px);
}

.cz-contact-support__panel {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), transparent 44%), var(--cz-charcoal);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  text-align: center;
}

.cz-contact-support__panel h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  margin: 0;
}

.cz-contact-support__panel p {
  color: #d6d6d6;
  font-size: var(--font-md);
  line-height: 1.7;
  margin: var(--space-2) auto 0;
  max-width: 680px;
}

.cz-contact-modal[hidden] {
  display: none;
}

.cz-contact-modal {
  inset: 0;
  position: fixed;
  z-index: 10000;
}

.cz-contact-modal__overlay {
  background: rgba(0, 0, 0, 0.78);
  inset: 0;
  position: absolute;
}

.cz-contact-modal__dialog {
  background: var(--cz-charcoal);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.54);
  color: var(--cz-warm-white);
  left: 50%;
  max-height: min(92vh, 780px);
  max-width: 720px;
  overflow: auto;
  padding: clamp(var(--space-5), 4vw, var(--space-6));
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 720px);
}

.cz-contact-modal__close {
  align-items: center;
  background: transparent;
  border: 2px solid rgba(201, 162, 39, 0.42);
  border-radius: 50%;
  color: var(--cz-gold, var(--cz-yellow));
  cursor: pointer;
  display: inline-flex;
  font-size: 1.65rem;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: var(--space-4);
  top: var(--space-4);
  width: 42px;
}

.cz-contact-modal__header {
  padding-right: var(--space-7);
}

.cz-contact-modal__header h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 0;
}

.cz-contact-modal__header p {
  color: #d6d6d6;
  line-height: 1.65;
  margin: var(--space-2) 0 0;
}

.cz-contact-form {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.cz-contact-form__grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cz-contact-form label {
  display: grid;
  gap: var(--space-1);
}

.cz-contact-form label span {
  color: var(--cz-warm-white);
  font-family: var(--font-heading);
  font-size: var(--font-sm);
  font-weight: 700;
}

.cz-contact-form input,
.cz-contact-form select,
.cz-contact-form textarea {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-md);
  color: var(--cz-warm-white);
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

.cz-contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

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

.cz-contact-form__submit {
  margin-top: var(--space-2);
  width: 100%;
}

.cz-contact-form__note {
  color: #9f9f9f;
  font-size: var(--font-xs);
  line-height: 1.55;
  margin: var(--space-3) 0 0;
}

body.cz-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .cz-contact-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cz-contact-store-grid,
  .cz-contact-form__grid {
    grid-template-columns: 1fr;
  }

  .cz-contact-hero__actions,
  .cz-contact-hero__actions .cz-contact-btn,
  .cz-contact-actions,
  .cz-contact-actions .cz-contact-btn {
    width: 100%;
  }

  .cz-contact-modal__dialog {
    border-radius: 18px;
    max-height: 94vh;
    padding: var(--space-5);
  }
}

/* ================================
   CASHZONE FAQ PAGE
================================ */
.cz-faq-page {
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  min-height: 100vh;
}

.cz-faq-page,
.cz-faq-page .site,
.cz-faq-page .site-content,
.cz-faq-page .entry-content {
  background: var(--cz-charcoal);
}

.cz-faq-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.cz-faq-hero {
  background: var(--cz-charcoal);
  text-align: center;
  padding: 90px 0 60px;
}

.cz-faq-hero h1 {
  color: var(--cz-warm-white);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin: 0 0 22px;
}

.cz-faq-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #d6d6d6;
  font-size: 1.15rem;
  line-height: 1.75;
}

.cz-faq-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cz-faq-content {
  background: var(--cz-charcoal);
  padding: 20px 0 90px;
}

.cz-faq-section {
  margin: 0 0 58px;
}

.cz-faq-section h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 22px;
}

.cz-faq-list {
  display: grid;
  gap: 14px;
}

.cz-faq-item {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.cz-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--cz-warm-white);
  padding: 22px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: inherit;
}

.cz-faq-question::after {
  content: "+";
  color: var(--cz-gold, var(--cz-yellow));
  font-size: 1.5rem;
  line-height: 1;
  flex: 0 0 auto;
}

.cz-faq-item.active .cz-faq-question::after {
  content: "-";
}

.cz-faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.cz-faq-item.active .cz-faq-answer {
  display: block;
}

.cz-faq-answer p {
  color: #d6d6d6;
  line-height: 1.75;
  margin: 0;
}

.cz-faq-cta {
  margin-top: 72px;
  padding: 54px 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--cz-charcoal), var(--cz-charcoal));
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 26px;
}

.cz-faq-cta h2 {
  color: var(--cz-warm-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
}

.cz-faq-cta p {
  color: #d6d6d6;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cz-faq-cta .cz-faq-actions {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .cz-faq-hero {
    padding: 60px 0 42px;
  }

  .cz-faq-content {
    padding: 10px 0 65px;
  }

  .cz-faq-section {
    margin-bottom: 45px;
  }

  .cz-faq-question {
    padding: 19px 18px;
    font-size: 1rem;
  }

  .cz-faq-answer {
    padding: 0 18px 20px;
  }

  .cz-faq-cta {
    padding: 40px 20px;
    border-radius: 22px;
  }
}

/* ------------------------------------------------------------
   BORDER UTILITIES
------------------------------------------------------------ */
.border-gold {
  border: 1px solid var(--cz-gold);
}

.border-grey {
  border: 1px solid var(--cz-grey-mid);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

/* ------------------------------------------------------------
   BRANDING OVERRIDES
------------------------------------------------------------ */
:root {
  --cz-black: var(--cz-charcoal);
  --cz-gold: var(--cz-yellow);
  --cz-gold-dark: var(--cz-gold);
  --cz-charcoal: var(--cz-charcoal);
  --cz-dark-grey: #4A4A4A;
}

.cz-logo-link {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.cz-site-logo {
  display: block;
  height: 58px;
  max-width: 340px;
  object-fit: contain;
  width: auto;
}

.site-header,
.cz-header,
.cz-main-header,
.main-header {
  background: var(--cz-charcoal);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.site-header a,
.cz-header a,
.cz-main-header a,
.main-header a {
  color: var(--cz-warm-white);
}

.site-header a:hover,
.site-header a:focus,
.cz-header a:hover,
.cz-header a:focus,
.cz-main-header a:hover,
.cz-main-header a:focus,
.main-header a:hover,
.main-header a:focus {
  color: var(--cz-yellow);
}

.cz-header-menu a::after,
.cz-nav a::after {
  background: var(--cz-yellow);
}

.cz-btn,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--cz-yellow);
  border: 2px solid var(--cz-yellow);
  border-radius: 999px;
  color: var(--cz-charcoal);
  font-weight: 700;
}

.cz-btn:hover,
.cz-btn:focus,
.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
}

.cz-header-btn,
.cz-header-btn--gold {
  background: var(--cz-yellow);
  border-color: var(--cz-yellow);
  border-radius: 999px;
  color: var(--cz-charcoal);
}

.cz-header-btn:hover,
.cz-header-btn:focus,
.cz-header-btn--gold:hover,
.cz-header-btn--gold:focus {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
}

.cz-footer-logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.cz-footer-logo {
  display: block;
  height: 48px;
  max-width: 300px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 900px) {
  .cz-site-logo {
    height: 44px;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .cz-site-logo {
    height: 38px;
    max-width: 220px;
  }

  .cz-footer-logo {
    height: 38px;
    max-width: 240px;
  }
}

/* ------------------------------------------------------------
   HEADER SPACING OVERRIDES
------------------------------------------------------------ */
.cz-logo-link {
  flex-shrink: 0;
}

.cz-site-logo {
  display: block;
  height: 56px;
  max-width: 360px;
  object-fit: contain;
  width: auto;
}

.site-header,
.cz-header,
.main-header,
.cz-main-header {
  background: var(--cz-charcoal);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}

.site-header .container,
.header-inner,
.cz-header-inner,
.cz-main-header-inner,
.main-header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding-bottom: 8px;
  padding-top: 8px;
}

.main-navigation,
.cz-nav,
.primary-menu,
.cz-header-menu {
  align-items: center;
  display: flex;
  gap: 22px;
}

.main-navigation a,
.cz-nav a,
.primary-menu a,
.cz-header-menu a {
  color: var(--cz-warm-white);
  font-weight: 700;
  line-height: 1;
  padding-bottom: 18px;
  padding-top: 18px;
  text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus,
.cz-nav a:hover,
.cz-nav a:focus,
.primary-menu a:hover,
.primary-menu a:focus,
.cz-header-menu a:hover,
.cz-header-menu a:focus {
  color: var(--cz-yellow);
}

.cz-header-menu a::after,
.cz-nav a::after {
  bottom: 10px;
}

.header-actions,
.cz-header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.header-actions .button,
.cz-header-actions .button,
.header-actions a,
.cz-header-actions a {
  white-space: nowrap;
}

.cz-header-btn,
.cz-header-actions a {
  height: 42px;
  min-height: 42px;
  padding-left: 18px;
  padding-right: 18px;
}

@media (max-width: 900px) {
  .cz-site-logo {
    height: 44px;
    max-width: 280px;
  }

  .site-header .container,
  .header-inner,
  .cz-header-inner,
  .cz-main-header-inner,
  .main-header-inner {
    gap: 14px;
    min-height: 66px;
  }

  .cz-header-logo {
    order: 1;
  }

  .cz-menu-toggle {
    margin-left: auto;
    order: 2;
  }

  .cz-header-phone,
  .cz-header-actions {
    display: none;
  }

  .main-navigation,
  .cz-nav,
  .primary-menu {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .header-actions,
  .cz-header-actions {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .cz-site-logo {
    height: 38px;
    max-width: 230px;
  }
}

/* ------------------------------------------------------------
   FOOTER FLOW AND BRAND COLOUR OVERRIDES
------------------------------------------------------------ */
:root {
  --cz-gold: var(--cz-yellow);
  --cz-gold-dark: var(--cz-gold);
  --cz-grey: #4A4A4A;
  --cz-black: var(--cz-charcoal);
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--cz-charcoal);
}

.site,
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main,
main,
#primary,
.content-area {
  flex: 1 0 auto;
  position: relative;
  z-index: 2;
}

.site-footer,
.cz-footer,
footer {
  background: var(--cz-charcoal);
  clear: both;
  color: var(--cz-warm-white);
  flex-shrink: 0;
  margin-top: 0;
  padding: 56px 0 28px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.cz-footer-inner,
.site-footer .container,
.footer-inner {
  display: block;
  padding-bottom: 0;
  padding-top: 0;
}

.cz-footer-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
}

.cz-footer-bottom {
  margin-top: 28px;
}

.cz-hero,
.home-hero,
.hero-section,
.cz-home-hero,
.cz-home-brand-hero {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.cz-btn,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
}

.cz-btn:hover,
.cz-btn:focus,
.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus {
  background: var(--cz-gold-dark);
  border-color: var(--cz-gold-dark);
  color: var(--cz-charcoal);
}

@media (max-width: 900px) {
  .cz-footer-grid,
  .site-footer .container,
  .footer-inner {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cz-footer-grid,
  .site-footer .container,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   FOOTER VISIBILITY SAFETY
------------------------------------------------------------ */
.site-footer,
.cz-footer,
footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  clear: both !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  padding: 56px 0 28px;
  margin-top: 0;
  z-index: 10;
}

.site-footer *,
.cz-footer *,
footer * {
  visibility: visible;
}

.site,
#page {
  min-height: 100vh;
}

.site-main,
main,
#primary,
.content-area {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* ------------------------------------------------------------
   FOOTER NORMAL FLOW RESET
------------------------------------------------------------ */
.site-footer,
.cz-footer,
footer {
  position: relative !important;
  display: block !important;
  clear: both !important;
  width: 100% !important;
  float: none !important;
  grid-column: 1 / -1 !important;
  align-self: auto !important;
  justify-self: auto !important;
  margin-top: 0 !important;
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  padding: 64px 0 32px;
  z-index: 5;
}

.site-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.cz-footer-inner,
.site-footer .container,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto !important;
  margin-right: auto !important;
}

.cz-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.cz-hero,
.home-hero,
.hero-section,
.hero,
.hero-inner,
.hero-grid {
  position: relative;
}

.cz-hero::after,
.home-hero::after,
.hero-section::after,
.hero::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 900px) {
  .cz-footer-grid,
  .site-footer .container,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .cz-footer-grid,
  .site-footer .container,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   HEADER BRAND POLISH
------------------------------------------------------------ */
.site-header,
.cz-header,
.cz-main-header,
.main-header {
  background: var(--cz-charcoal) !important;
  border-bottom: 2px solid var(--cz-yellow) !important;
  opacity: 1;
}

.header-divider,
.separator,
.cz-divider,
.cz-header-divider {
  width: 1px;
  height: 28px;
  background: var(--cz-yellow) !important;
  opacity: 0.7;
}

.main-navigation li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  margin: 0 14px;
  background: var(--cz-yellow);
  opacity: 0.6;
}

.main-navigation a:hover,
.main-navigation a:focus,
.cz-nav a:hover,
.cz-nav a:focus,
.primary-menu a:hover,
.primary-menu a:focus,
.cz-header-menu a:hover,
.cz-header-menu a:focus {
  color: var(--cz-yellow) !important;
}

.current-menu-item > a,
.current_page_item > a,
.cz-header-menu .current-menu-item > a,
.cz-header-menu .current_page_item > a {
  color: var(--cz-yellow) !important;
  border-bottom: 2px solid var(--cz-yellow);
  padding-bottom: 4px;
}

.cz-header-menu a::after,
.cz-nav a::after {
  background: var(--cz-yellow) !important;
}

.header-phone,
.cz-phone,
.cz-header-phone,
.cz-header-phone-icon {
  color: var(--cz-yellow) !important;
}

.header-phone svg,
.cz-phone svg,
.cz-header-phone svg,
.cz-header-phone-icon svg {
  fill: var(--cz-yellow) !important;
}

.header-actions a,
.cz-header-actions a,
.cz-header-btn,
.cz-header-btn--gold {
  background: var(--cz-yellow) !important;
  color: var(--cz-charcoal) !important;
  border: none !important;
}

.header-actions a:hover,
.header-actions a:focus,
.cz-header-actions a:hover,
.cz-header-actions a:focus,
.cz-header-btn:hover,
.cz-header-btn:focus,
.cz-header-btn--gold:hover,
.cz-header-btn--gold:focus {
  background: var(--cz-gold) !important;
  color: var(--cz-charcoal) !important;
}

/* ------------------------------------------------------------
   PREMIUM COMPACT FOOTER
------------------------------------------------------------ */
.cz-footer {
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
  border-top: 3px solid var(--cz-yellow);
  padding: 52px 0 24px;
  clear: both;
}

.cz-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr 0.7fr;
  gap: 44px;
  align-items: start;
}

.cz-footer-logo {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.cz-footer-gold-line {
  display: block;
  width: 90px;
  height: 2px;
  background: var(--cz-yellow);
  margin-top: 34px;
}

.cz-footer-column h3 {
  color: var(--cz-yellow);
  font-size: 15px;
  text-transform: uppercase;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}

.cz-footer-column a {
  display: block;
  color: var(--cz-warm-white);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 13px;
}

.cz-footer-column a:hover {
  color: var(--cz-yellow);
}

.cz-social-links {
  display: flex;
  gap: 14px;
}

.cz-social-links a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--cz-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cz-yellow);
  font-weight: 800;
  margin: 0;
}

.cz-social-links a:hover {
  background: var(--cz-yellow);
  color: var(--cz-charcoal);
}

.cz-footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--cz-warm-white);
  font-size: 14px;
}

.cz-footer-bottom p {
  margin: 0;
}

.cz-footer-bottom span {
  color: var(--cz-yellow);
  margin: 0 8px;
}

@media (max-width: 1000px) {
  .cz-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cz-footer-social {
    grid-column: auto;
  }

  .cz-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .cz-footer {
    padding: 40px 0 22px;
  }

  .cz-footer-inner {
    grid-template-columns: 1fr;
  }

.cz-footer-logo {
    width: 230px;
  }
}

/* ------------------------------------------------------------
   FOOTER LOGO SPACING
------------------------------------------------------------ */
.cz-footer-gold-line {
  display: none !important;
}

.cz-footer-brand {
  margin-bottom: 0;
}

.cz-footer-logo {
  margin-bottom: 10px;
}

/* ------------------------------------------------------------
   WHAT WE DO SPACING
------------------------------------------------------------ */
.cz-what-we-do {
  padding-top: 60px;
  padding-bottom: 60px;
}

.cz-what-we-do p:empty {
  display: none;
}

/* ------------------------------------------------------------
   PURE BLACK HEADER MATCH
------------------------------------------------------------ */
.site-header,
.cz-header,
.main-header,
.cz-main-header,
header,
#masthead {
  background-color: var(--cz-charcoal) !important;
  background: var(--cz-charcoal) !important;
  background-image: none !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.site-header {
  border-bottom: 2px solid var(--cz-yellow) !important;
}

.site-header .container,
.cz-header-inner,
.cz-main-header-inner,
.main-header-inner,
.header-inner,
.wrap {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.is-sticky,
.sticky-header,
.scrolled,
.fixed-header,
.cz-main-header.is-sticky {
  background: var(--cz-charcoal) !important;
  background-color: var(--cz-charcoal) !important;
  background-image: none !important;
  backdrop-filter: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* ------------------------------------------------------------
   HOMEPAGE FINAL POLISH
------------------------------------------------------------ */
.cz-hero,
.home-hero,
.hero-section,
.cz-home-hero,
.cz-home-brand-hero {
  padding-top: 130px;
  padding-bottom: 110px;
}

.cz-hero h1,
.home-hero h1,
.hero-section h1,
.cz-home-hero h1,
.cz-home-brand-hero h1 {
  color: var(--cz-yellow);
  line-height: 1.04;
  letter-spacing: 0;
}

.cz-hero p,
.home-hero p,
.hero-section p,
.cz-home-hero p,
.cz-home-brand-hero p {
  color: #dddddd;
  max-width: 560px;
}

.cz-shop-online,
.shop-online-section,
.cz-home-shop {
  padding: 76px 0;
}

.cz-shop-online h2,
.shop-online-section h2,
.cz-home-shop h2 {
  color: var(--cz-yellow);
}

.cz-shop-online .cz-btn,
.shop-online-section .cz-btn,
.cz-shop-online .button,
.shop-online-section .button,
.cz-home-shop .cz-btn,
.cz-home-shop .button {
  background: var(--cz-yellow);
  color: var(--cz-charcoal);
  border: 1px solid var(--cz-yellow);
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 24px;
}

.cz-shop-online .cz-btn:hover,
.shop-online-section .cz-btn:hover,
.cz-shop-online .button:hover,
.shop-online-section .button:hover,
.cz-home-shop .cz-btn:hover,
.cz-home-shop .button:hover {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
}

.cz-category-card,
.category-card,
.shop-category-card {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cz-category-card:hover,
.category-card:hover,
.shop-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--cz-yellow);
}

.cz-category-card img,
.category-card img,
.shop-category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cz-home-sustainability {
  padding: 0;
}

.cz-sustainability,
.sustainability-banner,
.sustainability-section,
.cz-home-sustainability__panel,
.cz-sustainability-banner {
  background: var(--cz-charcoal) !important;
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: 12px;
  color: var(--cz-warm-white);
  padding: 26px 30px;
  margin: 70px auto;
  width: min(1180px, calc(100% - 40px));
}

.cz-sustainability h2,
.sustainability-banner h2,
.sustainability-section h2,
.cz-home-sustainability__panel h2,
.cz-sustainability-banner h2 {
  color: var(--cz-yellow);
  margin-bottom: 8px;
}

.cz-sustainability p,
.sustainability-banner p,
.sustainability-section p,
.cz-home-sustainability__panel p,
.cz-sustainability-banner p {
  color: #dddddd;
  margin-bottom: 0;
}

.cz-sustainability .button,
.sustainability-banner .button,
.sustainability-section .button,
.cz-sustainability .cz-btn,
.sustainability-banner .cz-btn,
.sustainability-section .cz-btn,
.cz-home-sustainability__button {
  background: var(--cz-yellow);
  color: var(--cz-charcoal);
  border-radius: 999px;
  font-weight: 800;
}

.cz-what-we-do,
.what-we-do-section,
.cz-home-services {
  padding: 82px 0;
}

.cz-what-we-do h2,
.what-we-do-section h2,
.cz-home-services h2 {
  color: var(--cz-yellow);
}

.cz-what-we-do .card,
.what-we-do-section .card,
.cz-service-card,
.cz-home-service-card {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 12px;
  padding: 26px 20px;
}

.cz-what-we-do .card:hover,
.what-we-do-section .card:hover,
.cz-service-card:hover,
.cz-home-service-card:hover {
  border-color: var(--cz-yellow);
}

.cz-what-we-do svg,
.what-we-do-section svg,
.cz-service-card svg,
.cz-what-we-do i,
.what-we-do-section i,
.cz-service-card i,
.cz-home-service-card svg,
.cz-home-service-card i,
.cz-home-service-card__icon {
  color: var(--cz-yellow);
  fill: var(--cz-yellow);
  font-size: 28px;
  margin-bottom: 12px;
}

.cz-what-we-do .button,
.what-we-do-section .button,
.cz-service-card .button,
.cz-what-we-do .cz-btn,
.what-we-do-section .cz-btn,
.cz-service-card .cz-btn,
.cz-home-service-card a {
  background: transparent;
  color: var(--cz-yellow);
  border: 1px solid var(--cz-yellow);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 800;
}

.cz-what-we-do .button:hover,
.what-we-do-section .button:hover,
.cz-service-card .button:hover,
.cz-what-we-do .cz-btn:hover,
.what-we-do-section .cz-btn:hover,
.cz-service-card .cz-btn:hover,
.cz-home-service-card a:hover {
  background: var(--cz-yellow);
  color: var(--cz-charcoal);
}

.home section,
.front-page section,
.cz-frontpage section {
  scroll-margin-top: 100px;
}

.home .section-title,
.front-page .section-title,
.cz-home-section-heading {
  margin-bottom: 34px;
}

@media (max-width: 900px) {
  .cz-hero,
  .home-hero,
  .hero-section,
  .cz-home-hero,
  .cz-home-brand-hero {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .cz-hero h1,
  .home-hero h1,
  .hero-section h1,
  .cz-home-hero h1,
  .cz-home-brand-hero h1 {
    font-size: clamp(38px, 9vw, 58px);
  }

  .cz-shop-online,
  .shop-online-section,
  .cz-home-shop,
  .cz-what-we-do,
  .what-we-do-section,
  .cz-home-services {
    padding: 60px 0;
  }

  .cz-sustainability,
  .sustainability-banner,
  .sustainability-section,
  .cz-home-sustainability__panel,
  .cz-sustainability-banner {
    margin: 50px auto;
    padding: 24px;
  }
}

/* ------------------------------------------------------------
   HOMEPAGE FINAL SPACING TWEAKS
------------------------------------------------------------ */
.home section,
.front-page section,
.cz-frontpage section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.cz-hero,
.home-hero,
.hero-section,
.cz-home-hero,
.cz-home-brand-hero {
  padding-top: 110px;
  padding-bottom: 90px;
}

.cz-shop-online,
.shop-online-section,
.cz-home-shop {
  padding: 60px 0;
}

.cz-category,
.category-section,
.cz-home-categories,
.cz-category-section {
  padding: 55px 0;
}

.cz-sustainability,
.sustainability-section,
.cz-home-sustainability__panel,
.cz-sustainability-banner {
  margin: 50px auto;
  padding: 22px 26px;
}

.cz-what-we-do,
.what-we-do-section,
.cz-home-services {
  padding: 60px 0;
}

.section-title,
.cz-frontpage h2 {
  margin-bottom: 24px;
}

.spacer,
.section-spacer {
  height: 40px;
}

@media (max-width: 900px) {
  .home section,
  .front-page section,
  .cz-frontpage section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .cz-hero,
  .home-hero,
  .hero-section,
  .cz-home-hero,
  .cz-home-brand-hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

/* ------------------------------------------------------------
   PREMIUM ABOUT PAGE
------------------------------------------------------------ */
.cz-about-page {
  background: var(--cz-charcoal);
  color: var(--cz-warm-white);
}

.cz-about-page section {
  background: var(--cz-charcoal);
  padding: 70px 0;
}

.cz-about-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.cz-about-hero {
  background: var(--cz-charcoal);
  border-bottom: 1px solid rgba(201, 162, 39, 0.24);
  padding: 86px 0 76px;
}

.cz-about-hero__content {
  max-width: 760px;
}

.cz-about-hero h1,
.cz-about-page h2 {
  color: var(--cz-yellow);
  letter-spacing: 0;
}

.cz-about-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.cz-about-hero__subheading {
  color: #dddddd;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  max-width: 700px;
  margin: 0;
}

.cz-about-section-heading {
  margin-bottom: 26px;
}

.cz-about-section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  margin-bottom: 0;
}

.cz-about-section-heading h2::before,
.cz-about-section-heading h2::after {
  background: var(--cz-yellow);
}

.cz-about-copy {
  max-width: 920px;
}

.cz-about-copy p,
.cz-about-page p,
.cz-about-page li {
  color: #dddddd;
}

.cz-about-copy p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.cz-about-services {
  background: var(--cz-charcoal) !important;
}

.cz-about-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.cz-about-service-card {
  background: var(--cz-charcoal) !important;
  border: 1px solid rgba(201, 162, 39, 0.28) !important;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: none !important;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cz-about-service-card:hover {
  border-color: var(--cz-yellow) !important;
  transform: translateY(-3px);
}

.cz-about-service-card h3 {
  color: var(--cz-yellow);
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.cz-about-service-card p {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 0;
}

.cz-about-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.cz-about-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cz-about-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 10px;
  padding: 16px 18px;
}

.cz-about-trust__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cz-yellow);
  color: var(--cz-charcoal);
  font-weight: 900;
  line-height: 1;
}

.cz-about-trust__item p {
  color: var(--cz-warm-white);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.cz-about-locations {
  background: var(--cz-charcoal) !important;
}

.cz-about-locations__panel,
.cz-about-final-cta__panel {
  background: var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 12px;
  padding: 34px;
}

.cz-about-locations__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cz-about-locations p {
  margin-bottom: 14px;
}

.cz-about-locations ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cz-about-locations li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.cz-about-locations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cz-yellow);
}

.cz-about-final-cta {
  padding-top: 64px;
  padding-bottom: 76px;
}

.cz-about-final-cta__panel {
  text-align: center;
}

.cz-about-final-cta h2 {
  margin-bottom: 24px;
}

.cz-about-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cz-about-page .cz-btn,
.cz-about-page .cz-about-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  min-height: 46px;
  padding: 12px 24px;
  text-decoration: none;
}

.cz-about-page .cz-btn-gold {
  background: var(--cz-yellow);
  border: 1px solid var(--cz-yellow);
  color: var(--cz-charcoal);
}

.cz-about-page .cz-btn-gold:hover {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
}

.cz-about-page .cz-about-btn--outline {
  background: transparent;
  border: 1px solid var(--cz-yellow);
  color: var(--cz-yellow);
}

.cz-about-page .cz-about-btn--outline:hover {
  background: var(--cz-yellow);
  color: var(--cz-charcoal);
}

@media (max-width: 1000px) {
  .cz-about-services__grid,
  .cz-about-trust__inner {
    grid-template-columns: 1fr 1fr;
  }

  .cz-about-trust__inner {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .cz-about-page section,
  .cz-about-hero {
    padding: 52px 0;
  }

  .cz-about-services__grid,
  .cz-about-trust__inner,
  .cz-about-trust__grid,
  .cz-about-locations ul {
    grid-template-columns: 1fr;
  }

  .cz-about-locations__panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .cz-about-final-cta__panel {
    padding: 28px 22px;
  }

  .cz-about-page .cz-btn,
  .cz-about-page .cz-about-btn--outline {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   ABOUT PAGE TRUST REBUILD
------------------------------------------------------------ */
.about-page section {
  padding: 70px 0;
}

.about-page h2 {
  color: var(--cz-yellow);
  margin-bottom: 20px;
}

.about-page p {
  color: #cccccc;
  max-width: 700px;
}

.cz-about-hero {
  padding: 78px 0 68px;
}

.cz-about-hero h1 {
  color: var(--cz-yellow);
  font-size: clamp(40px, 5vw, 64px);
}

.cz-about-hero__subheading {
  max-width: 680px;
}

.cz-about-story,
.cz-about-approach,
.cz-about-final-cta {
  background: var(--cz-charcoal) !important;
}

.cz-about-trust,
.cz-about-locations {
  background: var(--cz-charcoal) !important;
}

.cz-about-section-heading h2::before,
.cz-about-section-heading h2::after {
  width: 46px;
  opacity: 0.65;
}

.cz-about-copy {
  max-width: 860px;
}

.cz-about-copy p {
  max-width: 760px;
}

.cz-about-trust__inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
}

.cz-about-trust__grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px 34px;
}

.cz-about-trust__item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.cz-about-trust__item span {
  background: transparent;
  color: var(--cz-yellow);
  flex-basis: 22px;
  width: 22px;
  height: 22px;
  font-size: 17px;
}

.cz-about-trust__item p {
  color: var(--cz-warm-white);
  font-size: 17px;
  font-weight: 700;
}

.cz-about-locations__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
}

.cz-about-locations__panel,
.cz-about-final-cta__panel {
  border: 0;
  padding: 0;
}

.cz-about-locations ul {
  margin-top: 8px;
}

.cz-about-locations li {
  color: var(--cz-warm-white);
}

.cz-about-final-cta {
  text-align: center;
}

.cz-about-final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cz-about-final-cta h2 {
  max-width: 760px;
}

@media (max-width: 900px) {
  .about-page section,
  .cz-about-hero {
    padding: 54px 0;
  }

  .cz-about-trust__inner,
  .cz-about-locations__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .cz-about-trust__grid {
    grid-template-columns: 1fr;
  }

  .cz-about-section-heading h2::before,
  .cz-about-section-heading h2::after {
    width: 28px;
  }
}

/* ============================================================
   CASHZONE PRIVACY POLICY PAGE
============================================================ */
.cz-privacy-page {
  background: linear-gradient(180deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 42%, var(--cz-charcoal) 100%);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body, "Poppins", var(--cz-font));
}

.cz-privacy-wrap,
.cz-privacy-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 32px);
  padding-right: clamp(18px, 4vw, 32px);
}

.cz-privacy-hero {
  background: linear-gradient(135deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 58%, #1a1710 100%);
  border-bottom: 1px solid var(--cz-gold, var(--cz-yellow));
  color: var(--cz-warm-white);
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px) 0 clamp(34px, 5vw, 56px);
  position: relative;
}

.cz-privacy-hero::after {
  background: radial-gradient(circle at 78% 28%, rgba(201, 162, 39, 0.18), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.cz-privacy-hero .cz-privacy-wrap {
  position: relative;
  z-index: 1;
}

.cz-privacy-hero__accent {
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 999px;
  height: 3px;
  margin-bottom: 24px;
  width: 86px;
}

.cz-privacy-hero__title-row {
  align-items: center;
  display: flex;
  gap: 18px;
}

.cz-privacy-hero__icon {
  align-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 16px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.cz-privacy-hero__icon svg {
  fill: var(--cz-gold, var(--cz-yellow));
  height: 34px;
  width: 34px;
}

.cz-privacy-hero h1 {
  color: var(--cz-warm-white);
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.cz-privacy-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 690px;
}

.cz-privacy-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.cz-privacy-quicklinks a,
.cz-privacy-contact__button {
  align-items: center;
  border: 1px solid var(--cz-gold, var(--cz-yellow));
  border-radius: 10px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 42px;
  padding: 11px 16px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cz-privacy-quicklinks a {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-privacy-quicklinks a:hover,
.cz-privacy-quicklinks a:focus-visible {
  background: var(--cz-gold, var(--cz-yellow));
  color: var(--cz-charcoal);
  transform: translateY(-2px);
}

.cz-privacy-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 220px) minmax(0, 900px);
  padding-bottom: clamp(42px, 6vw, 68px);
  padding-top: clamp(22px, 3.5vw, 34px);
}

.cz-privacy-sticky {
  background: linear-gradient(180deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 100%);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  padding: 18px;
  position: sticky;
  top: 96px;
}

.cz-privacy-sticky span {
  color: var(--cz-gold, var(--cz-yellow));
  display: block;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cz-privacy-sticky a {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cz-privacy-sticky a:hover,
.cz-privacy-sticky a:focus-visible {
  color: var(--cz-gold, var(--cz-yellow));
  transform: translateX(3px);
}

.cz-privacy-card {
  background: linear-gradient(180deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  padding: clamp(26px, 5vw, 54px);
}

.cz-privacy-section {
  border-bottom: 1px solid rgba(201, 162, 39, 0.34);
  margin-bottom: clamp(28px, 4vw, 42px);
  padding-bottom: clamp(28px, 4vw, 42px);
  scroll-margin-top: 120px;
}

.cz-privacy-section h2,
.cz-privacy-contact h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.18;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.cz-privacy-section p,
.cz-privacy-section li,
.cz-privacy-contact p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.cz-privacy-section p {
  margin: 0 0 14px;
}

.cz-privacy-section p:last-child {
  margin-bottom: 0;
}

.cz-privacy-section ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.cz-privacy-section li {
  padding-left: 24px;
  position: relative;
}

.cz-privacy-section li::before {
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 2px;
  position: absolute;
  top: 0.75em;
  width: 7px;
}

.cz-privacy-contact {
  background: linear-gradient(135deg, var(--cz-warm-white) 0%, var(--cz-charcoal) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-left: 5px solid var(--cz-gold, var(--cz-yellow));
  border-radius: 14px;
  margin-top: 4px;
  padding: clamp(24px, 4vw, 34px);
}

.cz-privacy-contact h2 {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-privacy-contact p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 20px;
}

.cz-privacy-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cz-privacy-contact__button {
  background: var(--cz-gold, var(--cz-yellow));
  color: var(--cz-charcoal);
}

.cz-privacy-contact__button--outline {
  background: transparent;
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-privacy-contact__button:hover,
.cz-privacy-contact__button:focus-visible {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
  transform: translateY(-2px);
}

.cz-privacy-updated {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  margin: 24px 0 0;
  text-align: center;
}

.cz-terms-eyebrow {
  color: var(--cz-gold, var(--cz-yellow)) !important;
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: 0.82rem !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
  text-transform: uppercase;
}

.cz-terms-inline-link {
  color: var(--cz-gold, var(--cz-yellow));
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.cz-terms-inline-link:hover,
.cz-terms-inline-link:focus-visible {
  color: var(--cz-gold);
}

.cz-privacy-reveal {
  animation: czPrivacyFadeUp 0.6s ease both;
}

@keyframes czPrivacyFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cz-privacy-reveal,
  .cz-privacy-quicklinks a,
  .cz-privacy-contact__button,
  .cz-privacy-sticky a {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .cz-privacy-shell {
    grid-template-columns: 1fr;
  }

  .cz-privacy-sticky {
    display: none;
  }
}

.cz-shipping-mobile-nav,
.cz-policy-mobile-nav {
  display: none;
}

.cz-mobile-quick-actions {
  align-items: center;
  display: none;
  flex: 0 0 auto;
  gap: 6px;
  min-width: 0;
}

.cz-mobile-icon-link {
  align-items: center;
  border: 1px solid rgba(201, 162, 39, 0.38);
  border-radius: 10px;
  color: var(--cz-warm-white);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
}

.cz-mobile-icon-link svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.cz-mobile-cart-link .cz-cart-count {
  align-items: center;
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 999px;
  color: var(--cz-charcoal);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  height: 16px;
  justify-content: center;
  line-height: 1;
  min-width: 16px;
  padding: 0 4px;
  position: absolute;
  right: 2px;
  top: 2px;
}

.cz-faq-search {
  margin-top: 26px;
  max-width: 720px;
}

.cz-faq-search input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  color: var(--cz-warm-white);
  font-size: 1rem;
  min-height: 58px;
  padding: 16px 18px;
  width: 100%;
}

.cz-faq-search input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.cz-faq-search input:focus {
  border-color: var(--cz-gold, var(--cz-yellow));
  outline: 2px solid rgba(201, 162, 39, 0.34);
  outline-offset: 3px;
}

.cz-faq-list {
  display: grid;
  gap: 12px;
}

.cz-faq-item {
  background: linear-gradient(180deg, var(--cz-warm-white) 0%, var(--cz-charcoal) 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.cz-faq-item summary {
  align-items: center;
  color: var(--cz-warm-white);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.35;
  list-style: none;
  padding: 18px 20px;
}

.cz-faq-item summary::-webkit-details-marker {
  display: none;
}

.cz-faq-item summary:hover,
.cz-faq-item summary:focus-visible {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-faq-toggle {
  border: 1px solid rgba(201, 162, 39, 0.6);
  border-radius: 999px;
  flex: 0 0 26px;
  height: 26px;
  position: relative;
  width: 26px;
}

.cz-faq-toggle::before,
.cz-faq-toggle::after {
  background: var(--cz-gold, var(--cz-yellow));
  content: "";
  left: 7px;
  position: absolute;
  right: 7px;
  top: 12px;
  height: 2px;
}

.cz-faq-toggle::after {
  transform: rotate(90deg);
  transition: transform 0.18s ease;
}

.cz-faq-item[open] .cz-faq-toggle::after {
  transform: rotate(0deg);
}

.cz-faq-answer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px 18px;
}

.cz-faq-answer p,
.cz-faq-no-results {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
  margin: 16px 0 0;
}

.cz-faq-no-results {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 14px;
  margin: 0 0 28px;
  padding: 18px 20px;
}

.cz-policy-anchor {
  display: block;
  height: 1px;
  margin-top: -1px;
  scroll-margin-top: 120px;
}

/* ============================================================
   CASHZONE CONTACT FEEDBACK FORM
============================================================ */
.cz-contact-page {
  background: linear-gradient(180deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 42%, var(--cz-charcoal) 100%);
  color: rgba(255, 255, 255, 0.86);
}

.cz-contact-wrap {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 32px);
  padding-right: clamp(18px, 4vw, 32px);
}

.cz-contact-content {
  padding: clamp(36px, 5vw, 64px) 0 0;
}

.cz-feedback-section {
  padding: clamp(34px, 5vw, 62px) 0 clamp(52px, 7vw, 82px);
}

.cz-feedback-card {
  background: linear-gradient(180deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  padding: clamp(26px, 5vw, 54px);
}

.cz-feedback-card__accent {
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 999px;
  display: block;
  height: 3px;
  margin-bottom: 18px;
  width: 74px;
}

.cz-feedback-card h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.cz-feedback-card__intro p,
.cz-feedback-privacy,
.cz-feedback-consent span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.cz-feedback-card__intro p {
  max-width: 760px;
}

.cz-feedback-form {
  margin-top: 26px;
}

.cz-feedback-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cz-feedback-field {
  margin: 0 0 18px;
}

.cz-feedback-field label,
.cz-feedback-consent label {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.cz-feedback-field label span {
  color: var(--cz-gold, var(--cz-yellow));
}

.cz-feedback-field input,
.cz-feedback-field select,
.cz-feedback-field textarea {
  background: var(--cz-warm-white);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.cz-feedback-field textarea {
  min-height: 150px;
  resize: vertical;
}

.cz-feedback-field input:focus,
.cz-feedback-field select:focus,
.cz-feedback-field textarea:focus {
  border-color: var(--cz-gold, var(--cz-yellow));
  outline: 2px solid rgba(201, 162, 39, 0.3);
  outline-offset: 2px;
}

.cz-feedback-consent {
  margin: 2px 0 16px;
}

.cz-feedback-consent label {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin: 0;
}

.cz-feedback-consent input {
  accent-color: var(--cz-gold, var(--cz-yellow));
  flex: 0 0 auto;
  margin-top: 6px;
}

.cz-feedback-privacy {
  margin: 0 0 20px;
}

.cz-feedback-privacy a {
  color: var(--cz-gold, var(--cz-yellow));
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cz-feedback-submit {
  align-items: center;
  background: var(--cz-gold, var(--cz-yellow));
  border: 1px solid var(--cz-gold, var(--cz-yellow));
  border-radius: 10px;
  color: var(--cz-charcoal);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  min-height: 48px;
  padding: 12px 22px;
  text-transform: uppercase;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cz-feedback-submit:hover,
.cz-feedback-submit:focus-visible {
  background: var(--cz-gold);
  border-color: var(--cz-gold);
  color: var(--cz-charcoal);
  transform: translateY(-1px);
}

.cz-feedback-notice {
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.55;
  margin: 22px 0;
  padding: 14px 16px;
}

.cz-feedback-notice--success {
  background: rgba(66, 175, 116, 0.14);
  border: 1px solid rgba(66, 175, 116, 0.42);
  color: #d8ffe8;
}

.cz-feedback-notice--error {
  background: rgba(220, 66, 66, 0.13);
  border: 1px solid rgba(220, 66, 66, 0.42);
  color: #ffe0e0;
}

.cz-feedback-honeypot {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 760px) {
  .cz-feedback-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cz-feedback-card {
    border-radius: 14px;
  }

  .cz-feedback-submit {
    width: 100%;
  }
}

/* ------------------------------------------------------------
   CASHZONE KLAVIYO NEWSLETTER SIGNUP
------------------------------------------------------------ */
.cz-newsletter {
  background: linear-gradient(180deg, var(--cz-charcoal) 0%, var(--cz-charcoal) 58%, var(--cz-charcoal) 100%);
  color: rgba(255, 255, 255, 0.88);
}

.cz-newsletter--home {
  padding: clamp(46px, 5vw, 76px) 20px;
}

.cz-newsletter--footer {
  padding: 34px 20px 0;
}

.cz-newsletter__inner {
  align-items: center;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent 42%), var(--cz-charcoal);
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(24px, 3vw, 38px);
}

.cz-newsletter--footer .cz-newsletter__inner {
  max-width: 1600px;
}

.cz-newsletter__accent {
  background: var(--cz-gold, var(--cz-yellow));
  border-radius: 999px;
  display: block;
  height: 4px;
  margin-bottom: 16px;
  width: 58px;
}

.cz-newsletter h2 {
  color: var(--cz-gold, var(--cz-yellow));
  font-family: var(--font-heading, "Poppins", var(--cz-font));
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  letter-spacing: 0;
  margin: 0 0 10px;
}

.cz-newsletter p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

.cz-newsletter-form {
  min-width: 0;
}

.cz-newsletter-form__row {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
}

.cz-newsletter-form label {
  display: block;
  min-width: 0;
}

.cz-newsletter-form label span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cz-newsletter-form input[type="text"],
.cz-newsletter-form input[type="email"] {
  background: var(--cz-warm-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--cz-warm-white);
  min-height: 48px;
  padding: 12px 16px;
  width: 100%;
}

.cz-newsletter-form input:focus {
  border-color: rgba(201, 162, 39, 0.78);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
  outline: 0;
}

.cz-newsletter-form button {
  background: linear-gradient(145deg, var(--cz-gold), var(--cz-gold));
  border: 1px solid rgba(201, 162, 39, 0.8);
  border-radius: 999px;
  color: var(--cz-charcoal);
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.cz-newsletter-form button:hover,
.cz-newsletter-form button:focus-visible {
  box-shadow: 0 14px 32px rgba(201, 162, 39, 0.24);
  outline: 0;
  transform: translateY(-1px);
}

.cz-newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.cz-newsletter-form__consent,
.cz-newsletter-form__privacy,
.cz-newsletter-form__message {
  font-size: 0.86rem;
  margin-top: 12px !important;
}

.cz-newsletter-form__privacy a {
  color: var(--cz-gold, var(--cz-yellow));
  font-weight: 800;
  text-decoration: none;
}

.cz-newsletter-form__privacy a:hover,
.cz-newsletter-form__privacy a:focus {
  text-decoration: underline;
}

.cz-newsletter-form__message {
  min-height: 1.35em;
}

.cz-newsletter-form__message[data-state="success"] {
  color: var(--cz-gold);
}

.cz-newsletter-form__message[data-state="error"] {
  color: #ffb7b7;
}

.cz-newsletter-form__website {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px !important;
  overflow: hidden;
  position: absolute !important;
  width: 1px !important;
}

.woocommerce .cz-marketing-optin,
.woocommerce .cz-marketing-optin-field {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .cz-newsletter__inner,
  .cz-newsletter-form__row {
    grid-template-columns: 1fr;
  }

  .cz-newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .cz-newsletter--home {
    padding: 34px 16px;
  }

  .cz-newsletter--footer {
    padding: 24px 18px 0;
  }

  .cz-newsletter__inner {
    border-radius: 16px;
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .cz-shipping-mobile-nav,
  .cz-policy-mobile-nav {
    display: flex;
    margin: 0 0 4px;
  }

  .cz-mobile-quick-actions {
    display: flex;
  }
}

@media (max-width: 640px) {
  .cz-privacy-hero__title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .cz-privacy-quicklinks,
  .cz-privacy-contact__actions {
    flex-direction: column;
  }

  .cz-privacy-quicklinks a,
  .cz-privacy-contact__button {
    width: 100%;
  }

  .cz-privacy-card {
    border-radius: 14px;
  }
}

/* ------------------------------------------------------------
   CASHZONE POLISH PASS
   Small shared rules to keep page-level buttons/forms visually aligned.
------------------------------------------------------------ */
.cz-btn,
.cz-btn-primary,
.cz-btn-secondary,
.cz-btn-gold,
.cz-btn-outline,
.cz-about-btn,
.cz-location-btn,
.cz-we-buy-btn,
.cz-loan-btn,
.cz-pawn-btn,
.cz-contact-btn,
.cz-privacy-contact__button,
.wp-block-button__link {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  min-height: 48px;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cz-btn:hover,
.cz-btn:focus,
.cz-btn-primary:hover,
.cz-btn-primary:focus,
.cz-btn-secondary:hover,
.cz-btn-secondary:focus,
.cz-btn-gold:hover,
.cz-btn-gold:focus,
.cz-btn-outline:hover,
.cz-btn-outline:focus,
.cz-about-btn:hover,
.cz-about-btn:focus,
.cz-location-btn:hover,
.cz-location-btn:focus,
.cz-we-buy-btn:hover,
.cz-we-buy-btn:focus,
.cz-loan-btn:hover,
.cz-loan-btn:focus,
.cz-pawn-btn:hover,
.cz-pawn-btn:focus-visible,
.cz-contact-btn:hover,
.cz-contact-btn:focus,
.cz-privacy-contact__button:hover,
.cz-privacy-contact__button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  transform: translateY(-1px);
}

.cz-form input[type=text],
.cz-form input[type=email],
.cz-form input[type=tel],
.cz-form input[type=url],
.cz-form select,
.cz-form textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 select,
.wpcf7 textarea {
  background: var(--cz-warm-white);
  border-color: rgba(201, 162, 39, 0.28);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  min-height: 48px;
}

.cz-form label,
.wpcf7 label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.cz-form input::placeholder,
.cz-form textarea::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/*# sourceMappingURL=style.fixed.css.map */
