/**
 * Zulfaro WooCommerce Styles
 * Brands all shop, cart, and checkout pages with the Zulfaro color scheme.
 * Loaded only on WooCommerce pages.
 */

:root {
  --zf-gold: #c9a14a;
  --zf-gold-bright: #f0c674;
  --zf-gold-deep: #8a6018;
  --zf-gold-pale: #ecd9a8;
  --zf-dark-a: #0a0604;
  --zf-dark-b: #1a1108;
  --zf-cream: #f6f1e7;
  --zf-cream-2: #efe7d6;
  --zf-text-dark: #1a1108;
  --zf-text-muted: #6a5a3d;
}

/* ================================================================
   GLOBAL — fonts, base text on all woo pages
   ================================================================ */
.woocommerce, .woocommerce-page,
.woocommerce-cart, .woocommerce-checkout,
.woocommerce-account, .single-product, .archive.woocommerce {
  font-family: 'Manrope', sans-serif;
  color: var(--zf-text-dark);
}

.woocommerce h1, .woocommerce h2, .woocommerce h3,
.woocommerce-page h1, .woocommerce-page h2, .woocommerce-page h3,
.entry-title.woocommerce-products-header__title,
.woocommerce-cart h1, .woocommerce-checkout h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--zf-text-dark);
  letter-spacing: 0.5px;
}

/* ================================================================
   BUTTONS — primary actions, add to cart, checkout, place order
   ================================================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce-page a.button,
.woocommerce-page button.button,
.wc-block-components-button,
.wc-block-components-checkout-place-order-button {
  background: linear-gradient(135deg, var(--zf-gold-bright), var(--zf-gold), var(--zf-gold-deep)) !important;
  color: var(--zf-text-dark) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
  text-shadow: none !important;
  box-shadow: 0 6px 20px -6px rgba(201, 161, 74, 0.45) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wc-block-components-button:hover {
  background: linear-gradient(135deg, var(--zf-gold-bright), var(--zf-gold)) !important;
  color: var(--zf-text-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px -8px rgba(201, 161, 74, 0.6) !important;
}

/* "Place Order" + "Proceed to Checkout" — bigger emphasis */
.woocommerce #place_order,
.woocommerce .checkout-button,
.woocommerce .wc-proceed-to-checkout .checkout-button {
  padding: 16px 36px !important;
  font-size: 15px !important;
  width: auto;
  display: inline-block !important;
}

/* ================================================================
   PRODUCT GRID — shop page, related products, [products] shortcode
   ================================================================ */
.woocommerce ul.products,
.wc-block-grid__products {
  gap: 28px !important;
}

.woocommerce ul.products li.product,
.wc-block-grid__product {
  background: #fff;
  border: 1px solid rgba(201, 161, 74, 0.15);
  border-radius: 12px;
  padding: 20px !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  list-style: none;
  text-align: center;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 161, 74, 0.5);
  box-shadow: 0 14px 30px -10px rgba(201, 161, 74, 0.25);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--zf-text-dark) !important;
  margin: 12px 0 6px 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  color: var(--zf-gold-deep) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  font-family: 'Manrope', sans-serif !important;
}

.woocommerce ul.products li.product .price del {
  opacity: 0.5;
  font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
  background: none;
  color: var(--zf-gold-deep) !important;
}

.woocommerce ul.products li.product img,
.wc-block-grid__product-image img {
  border-radius: 8px;
  margin-bottom: 12px;
}

/* "Sale!" badge */
.woocommerce span.onsale,
.wc-block-grid__product-onsale {
  background: linear-gradient(135deg, var(--zf-gold-bright), var(--zf-gold)) !important;
  color: var(--zf-text-dark) !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.4 !important;
  border: none !important;
  text-shadow: none !important;
}

/* ================================================================
   SINGLE PRODUCT PAGE
   ================================================================ */
.single-product .product .product_title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 38px !important;
  font-weight: 500 !important;
  color: var(--zf-text-dark) !important;
}

.single-product .product .price {
  color: var(--zf-gold-deep) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  font-family: 'Manrope', sans-serif !important;
}

.single-product .product .woocommerce-product-details__short-description {
  color: var(--zf-text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.woocommerce-tabs ul.tabs li.active {
  background: var(--zf-cream) !important;
  border-bottom-color: var(--zf-cream) !important;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--zf-gold-deep) !important;
}

/* Quantity input */
.woocommerce .quantity .qty {
  border: 1px solid rgba(201, 161, 74, 0.3) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-family: 'Manrope', sans-serif !important;
  background: #fff;
  color: var(--zf-text-dark);
}

/* ================================================================
   CART PAGE
   ================================================================ */
.woocommerce-cart .shop_table,
.woocommerce table.shop_table {
  border: 1px solid rgba(201, 161, 74, 0.2) !important;
  border-radius: 12px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
  background: #fff;
}

.woocommerce table.shop_table th {
  background: var(--zf-cream-2) !important;
  color: var(--zf-text-dark) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 16px 20px !important;
  text-transform: none !important;
  letter-spacing: 0.5px;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(201, 161, 74, 0.12) !important;
  padding: 18px 20px !important;
  vertical-align: middle !important;
}

.woocommerce-cart .product-name a {
  color: var(--zf-text-dark) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
  color: var(--zf-gold-deep) !important;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-cart .product-quantity {
  color: var(--zf-text-dark);
  font-weight: 500;
}

.woocommerce-cart-form .actions {
  padding: 20px !important;
  background: var(--zf-cream-2) !important;
}

.woocommerce-cart-form .coupon input[type="text"] {
  border: 1px solid rgba(201, 161, 74, 0.3) !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-family: 'Manrope', sans-serif;
  background: #fff;
}

/* Cart totals box (right side) */
.woocommerce .cart_totals {
  background: linear-gradient(135deg, var(--zf-cream), #fff) !important;
  border: 1px solid rgba(201, 161, 74, 0.3) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px -15px rgba(201, 161, 74, 0.2);
}

.woocommerce .cart_totals h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  color: var(--zf-text-dark) !important;
  margin-bottom: 18px !important;
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
  padding-bottom: 12px;
}

.woocommerce .cart_totals table.shop_table {
  border: none !important;
  background: transparent;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
  background: transparent !important;
  border-top: 1px solid rgba(201, 161, 74, 0.1) !important;
  padding: 14px 0 !important;
}

.woocommerce .cart_totals .order-total .amount {
  color: var(--zf-gold-deep) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.woocommerce a.remove {
  color: var(--zf-gold-deep) !important;
  font-weight: 700;
  background: rgba(201, 161, 74, 0.1) !important;
}

.woocommerce a.remove:hover {
  background: var(--zf-gold) !important;
  color: #fff !important;
}

/* ================================================================
   CHECKOUT PAGE
   ================================================================ */
.woocommerce-checkout #customer_details {
  background: #fff;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px -10px rgba(201, 161, 74, 0.15);
}

.woocommerce-checkout h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: var(--zf-text-dark) !important;
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

/* Form fields */
.woocommerce form .form-row label {
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--zf-text-muted) !important;
  margin-bottom: 6px !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.select2-container--default .select2-selection--single {
  border: 1px solid rgba(201, 161, 74, 0.3) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  background: #fff !important;
  color: var(--zf-text-dark) !important;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: auto !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--zf-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.15) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 22px !important;
  padding: 12px 16px !important;
  color: var(--zf-text-dark) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 12px !important;
}

/* Order review (right side of checkout) */
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  background: linear-gradient(135deg, var(--zf-cream), #fff);
  border: 1px solid rgba(201, 161, 74, 0.3);
}

.woocommerce-checkout #order_review_heading {
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  padding: 24px 30px 0;
  margin: 0;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 500 !important;
}

.woocommerce-checkout #order_review {
  border-radius: 0 0 16px 16px;
  padding: 24px 30px 30px;
  box-shadow: 0 10px 30px -15px rgba(201, 161, 74, 0.2);
}

.woocommerce-checkout #order_review .shop_table {
  border: none !important;
  background: transparent;
}

.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td {
  background: transparent !important;
  border-top: 1px solid rgba(201, 161, 74, 0.12) !important;
  padding: 14px 0 !important;
}

.woocommerce-checkout #order_review .order-total .amount {
  color: var(--zf-gold-deep) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Payment methods */
.woocommerce-checkout #payment {
  background: transparent !important;
  border-radius: 12px;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(201, 161, 74, 0.15) !important;
  padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  background: #fff;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 10px;
  padding: 16px 20px !important;
  margin-bottom: 10px;
  transition: border-color 0.3s, background 0.3s;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
  border-color: rgba(201, 161, 74, 0.5);
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label {
  color: var(--zf-gold-deep);
  font-weight: 600;
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--zf-cream-2) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  margin-top: 12px !important;
  font-size: 13px;
  color: var(--zf-text-muted);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--zf-cream-2) !important;
}

/* ================================================================
   NOTICES (success / info / error messages)
   ================================================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  border-radius: 10px !important;
  padding: 16px 20px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  border-top: none !important;
  border-left-width: 4px !important;
  border-left-style: solid !important;
  margin-bottom: 20px !important;
}

.woocommerce-message {
  background: rgba(60, 90, 50, 0.08) !important;
  border-left-color: #6a9a4d !important;
  color: #2a4a1f !important;
}

.woocommerce-info {
  background: rgba(201, 161, 74, 0.08) !important;
  border-left-color: var(--zf-gold) !important;
  color: var(--zf-gold-deep) !important;
}

.woocommerce-error {
  background: rgba(180, 60, 60, 0.08) !important;
  border-left-color: #c54545 !important;
  color: #8a2222 !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: inherit !important;
}

/* ================================================================
   PAGINATION
   ================================================================ */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 999px !important;
  padding: 8px 14px !important;
  margin: 0 2px;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 500;
  background: transparent;
  color: var(--zf-text-dark) !important;
  transition: background 0.3s, color 0.3s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: linear-gradient(135deg, var(--zf-gold-bright), var(--zf-gold)) !important;
  color: var(--zf-text-dark) !important;
}

/* ================================================================
   MY ACCOUNT
   ================================================================ */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid rgba(201, 161, 74, 0.15);
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 18px;
  color: var(--zf-text-dark);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: linear-gradient(135deg, rgba(240, 198, 116, 0.15), rgba(201, 161, 74, 0.08));
  color: var(--zf-gold-deep);
  border-left: 3px solid var(--zf-gold);
  padding-left: 15px;
}

/* ================================================================
   ZULFARO BRANDED PAGE BANNERS (used by shop/cart/checkout templates)
   ================================================================ */
.zf-page-banner {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 161, 74, 0.3), transparent 60%),
    linear-gradient(135deg, var(--zf-dark-a), var(--zf-dark-b));
  padding: 70px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zf-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(240, 198, 116, 0.12) 0, transparent 1px),
    radial-gradient(circle at 75% 60%, rgba(240, 198, 116, 0.15) 0, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(240, 198, 116, 0.1) 0, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px;
  opacity: 0.7;
  pointer-events: none;
}

.zf-page-banner h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 500 !important;
  color: var(--zf-cream) !important;
  margin: 0 0 8px 0 !important;
  position: relative;
  z-index: 2;
}

.zf-page-banner h1 em,
.zf-page-banner h1 .accent {
  color: var(--zf-gold-bright);
  font-style: italic;
}

.zf-page-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--zf-gold-pale);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .woocommerce-cart-form .shop_table thead {
    display: none;
  }

  .woocommerce ul.products li.product {
    padding: 16px !important;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce .cart_totals,
  .woocommerce-checkout #order_review {
    padding: 20px !important;
  }

  .zf-page-banner {
    padding: 50px 20px;
  }
}

/* ================================================================
   ZULFARO INJECTED TOP BAR (renders via wp_body_open hook)
   ================================================================ */
.zsp-top-bar {
  background: linear-gradient(90deg, var(--zf-dark-a), var(--zf-dark-b));
  border-bottom: 1px solid rgba(201, 161, 74, 0.15);
  font-family: 'Manrope', sans-serif;
  position: relative;
  z-index: 100;
}
.zsp-top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.zsp-top-bar-logo {
  font-family: 'Allura', cursive;
  font-size: 36px;
  color: var(--zf-gold-bright) !important;
  text-decoration: none !important;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(240,198,116,0.3);
  flex-shrink: 0;
}
.zsp-top-bar-logo:hover {
  color: var(--zf-gold-light) !important;
}
.zsp-top-bar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.zsp-top-bar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}
.zsp-top-bar-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.zsp-top-bar-menu li a {
  color: var(--zf-cream) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.3s;
  position: relative;
}
.zsp-top-bar-menu li a:hover,
.zsp-top-bar-menu li.current-menu-item > a,
.zsp-top-bar-menu li.current_page_item > a {
  color: var(--zf-gold-bright) !important;
}
.zsp-top-bar-menu li.current-menu-item > a::after,
.zsp-top-bar-menu li.current_page_item > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--zf-gold);
}
.zsp-top-bar-cart {
  color: var(--zf-cream) !important;
  text-decoration: none !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  flex-shrink: 0;
}
.zsp-top-bar-cart:hover {
  color: var(--zf-gold-bright) !important;
}
.zsp-top-bar-cart svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.zsp-top-bar-count {
  background: var(--zf-gold);
  color: var(--zf-text-dark);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
  line-height: 1.4;
}

/* ================================================================
   ZULFARO INJECTED FOOTER BAR (renders via wp_footer hook)
   ================================================================ */
.zsp-footer-bar {
  background: var(--zf-dark-a);
  color: var(--zf-text-muted);
  padding: 60px 32px 30px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  margin-top: 60px;
}
.zsp-footer-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.zsp-footer-logo {
  font-family: 'Allura', cursive;
  font-size: 56px;
  color: var(--zf-gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  text-decoration: none;
  text-shadow: 0 2px 16px rgba(240,198,116,0.3);
}
.zsp-footer-tagline {
  color: var(--zf-text-muted);
  margin: 8px 0 30px;
  font-size: 14px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}
.zsp-footer-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  gap: 32px;
  flex-wrap: wrap;
}
.zsp-footer-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.zsp-footer-menu li a {
  color: var(--zf-text-muted) !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: color 0.3s;
}
.zsp-footer-menu li a:hover {
  color: var(--zf-gold-bright) !important;
}
.zsp-footer-copyright {
  border-top: 1px solid rgba(201, 161, 74, 0.15);
  padding-top: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(201, 161, 74, 0.5);
}

/* If the user prefers their own theme header, hide ours via this class on body */
body.zsp-hide-top-bar .zsp-top-bar { display: none !important; }
body.zsp-hide-footer-bar .zsp-footer-bar { display: none !important; }

/* Mobile responsive */
@media (max-width: 768px) {
  .zsp-top-bar-inner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
  }
  .zsp-top-bar-menu {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .zsp-footer-menu {
    gap: 18px;
  }
  .zsp-footer-bar { padding: 40px 20px 24px; }
  .zsp-footer-logo { font-size: 44px; }
}
