/*
Theme Name:  SimpleSkinz 2025
Description: Astra child theme – dark navy/cyan rebrand for simpleskinz.co.za
Template:    astra
Version:     2.0.0
Text Domain: simpleskinz-2025
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════ */
:root {
  --navy:     #040d1e;
  --navy-mid: #071530;
  --card:     #081a38;
  --blue:     #0a5fd4;
  --blue-lt:  #1a7aff;
  --cyan:     #00c8ff;
  --white:    #ffffff;
  --off:      #c8d8f0;
  --muted:    #5a7aaa;
  --border:   rgba(26,122,255,.18);
  --glow:     rgba(0,200,255,.12);
  --head:     'Barlow Condensed', sans-serif;
  --body:     'Barlow', sans-serif;
}

/* ═══════════════════════════════════════════════
   GLOBAL RESET / BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy) !important;
  color: var(--off) !important;
  font-family: var(--body) !important;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--head) !important;
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
}

p { color: var(--off); margin: 0 0 1em; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--white); }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════
   ASTRA HEADER OVERRIDES
   ═══════════════════════════════════════════════ */
#masthead,
.site-header,
.main-header-bar,
.ast-above-header-bar {
  background: rgba(4,13,30,.96) !important;
  border-bottom: 1px solid var(--border) !important;
  backdrop-filter: blur(16px) !important;
}

/* Logo */
.site-branding .site-title a,
.ast-site-title a {
  font-family: var(--head) !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
}

/* Desktop nav links */
.main-header-bar-navigation .menu-item > a,
.ast-builder-menu .menu-item > a,
#site-navigation .menu-item > a {
  font-family: var(--head) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--off) !important;
  padding: 8px 14px !important;
  transition: color .2s !important;
}
.main-header-bar-navigation .menu-item > a:hover,
.main-header-bar-navigation .current-menu-item > a,
.ast-builder-menu .menu-item > a:hover {
  color: var(--cyan) !important;
  background: transparent !important;
}

/* Dropdown */
.main-header-bar-navigation .sub-menu,
.ast-builder-menu .sub-menu {
  background: var(--navy) !important;
  border: 1px solid var(--border) !important;
  border-top: 2px solid var(--cyan) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.6) !important;
  border-radius: 0 !important;
  padding: 6px 0 !important;
}
.main-header-bar-navigation .sub-menu .menu-item > a {
  color: var(--off) !important;
  padding: 9px 20px !important;
  border-left: 2px solid transparent !important;
}
.main-header-bar-navigation .sub-menu .menu-item > a:hover {
  color: var(--cyan) !important;
  border-left-color: var(--cyan) !important;
  background: rgba(0,200,255,.05) !important;
}

/* Mobile header */
.ast-mobile-popup-drawer,
.ast-mobile-header-wrap,
.ast-header-break-point .main-header-bar {
  background: rgba(4,13,30,.98) !important;
}
.ast-mobile-popup-drawer .menu-item > a {
  color: var(--off) !important;
  font-family: var(--head) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}
.ast-mobile-menu-trigger-fill,
.ast-mobile-menu-buttons svg,
.hamburger-menu svg { color: var(--off) !important; }

/* Social icons in header */
.ast-header-social-icons a svg,
.ast-header-social-icons a { color: var(--off) !important; }
.ast-header-social-icons a:hover { color: var(--cyan) !important; }

/* Cart icon */
.ast-site-header-cart a,
.ast-cart-menu-wrap a { color: var(--off) !important; }
.woocommerce-cart-icon svg { color: var(--off) !important; }
.ast-cart-product-count {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-family: var(--head) !important;
  font-weight: 800 !important;
}

/* ═══════════════════════════════════════════════
   HERO / BANNER SECTION
   The Elementor hero section with full-screen bg
   ═══════════════════════════════════════════════ */
.ss-hero,
.elementor-section.ss-hero,
[data-id].ss-hero {
  min-height: 100vh;
  display: flex !important;
  align-items: flex-end !important;
  padding-bottom: 80px !important;
  position: relative;
  overflow: hidden;
}

/* Grid overlay on hero */
.ss-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 25s linear infinite;
  pointer-events: none; z-index: 1;
}
@keyframes gridPan { to { background-position: 60px 60px; } }

/* Cyan radial glow on hero */
.ss-hero::after {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  right: 5%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(0,200,255,.1) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

/* Hero content above overlays */
.ss-hero .elementor-container,
.ss-hero .elementor-row { position: relative; z-index: 2; }

/* Hero eyebrow label */
.ss-eyebrow {
  font-family: var(--head) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  color: var(--cyan) !important;
  margin-bottom: 12px !important;
}

/* Hero headline */
.ss-hero h1,
.ss-hero .elementor-heading-title {
  font-family: var(--head) !important;
  font-weight: 900 !important;
  font-size: clamp(52px, 7vw, 100px) !important;
  line-height: .95 !important;
  letter-spacing: -1px !important;
  color: var(--white) !important;
}
.ss-hero h1 .cyan,
.ss-hero .cyan { color: var(--cyan) !important; }

/* Hero subtitle */
.ss-hero p,
.ss-hero .elementor-text-editor p {
  font-size: 16px !important;
  color: var(--off) !important;
  font-weight: 300 !important;
  max-width: 480px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   BUTTONS — everywhere
   ═══════════════════════════════════════════════ */

/* Primary cyan-outline button */
.ss-btn-outline,
.elementor-button.ss-btn-outline {
  display: inline-block !important;
  background: transparent !important;
  border: 1.5px solid var(--cyan) !important;
  color: var(--cyan) !important;
  padding: 13px 32px !important;
  font-family: var(--head) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background .2s, color .2s !important;
  border-radius: 0 !important;
}
.ss-btn-outline:hover,
.elementor-button.ss-btn-outline:hover {
  background: var(--cyan) !important;
  color: var(--navy) !important;
}

/* Solid blue button */
.ss-btn-solid,
.elementor-button.ss-btn-solid,
.elementor-button-link.ss-btn-solid {
  display: inline-block !important;
  background: var(--blue) !important;
  border: none !important;
  color: var(--white) !important;
  padding: 14px 34px !important;
  font-family: var(--head) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background .2s !important;
  border-radius: 0 !important;
}
.ss-btn-solid:hover,
.elementor-button.ss-btn-solid:hover { background: var(--blue-lt) !important; }

/* Ghost white button */
.ss-btn-ghost {
  display: inline-block !important;
  background: transparent !important;
  border: 1px solid rgba(200,216,240,.3) !important;
  color: var(--off) !important;
  padding: 11px 28px !important;
  font-family: var(--head) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  transition: all .2s !important;
}
.ss-btn-ghost:hover { border-color: var(--cyan) !important; color: var(--cyan) !important; }

/* Kill Astra/Elementor default button styles */
.elementor-button,
.ast-button,
button,
input[type=submit] {
  border-radius: 0 !important;
}

/* ═══════════════════════════════════════════════
   SECTION WRAPPERS
   ═══════════════════════════════════════════════ */
.ss-section-dark  { background: var(--navy) !important; }
.ss-section-mid   { background: var(--navy-mid) !important; }
.ss-section-card  { background: var(--card) !important; }

/* Section label (small cyan uppercase above title) */
.ss-section-label,
.elementor-widget-text-editor .ss-section-label {
  display: block;
  font-family: var(--head) !important;
  font-size: 11px !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  color: var(--cyan) !important;
  margin-bottom: 10px !important;
}

/* Section titles */
.ss-section-title,
.ss-section-title.elementor-heading-title {
  font-family: var(--head) !important;
  font-weight: 900 !important;
  font-size: clamp(30px, 4vw, 52px) !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: var(--white) !important;
  margin-bottom: 40px !important;
}

/* ═══════════════════════════════════════════════
   FEATURE ROWS  (the text+image alternating rows)
   Target Elementor sections with class ss-feature-row
   ═══════════════════════════════════════════════ */
.ss-feature-row {
  background: var(--navy) !important;
  border-bottom: 1px solid var(--border) !important;
  position: relative;
  overflow: hidden;
}
.ss-feature-row::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,200,255,.03) 0%, transparent 60%);
  pointer-events: none;
}
.ss-feature-row:nth-child(even) { background: var(--navy-mid) !important; }
.ss-feature-row:nth-child(even)::before {
  background: linear-gradient(270deg, rgba(0,200,255,.03) 0%, transparent 60%);
}

/* Feature row text column */
.ss-feature-text {
  padding: 64px 56px !important;
}

/* Feature icon circle */
.ss-feature-icon {
  width: 56px; height: 56px;
  background: var(--glow);
  border: 1px solid rgba(0,200,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.ss-feature-icon svg { width: 26px; height: 26px; color: var(--cyan); }

/* Feature row heading */
.ss-feature-row h2,
.ss-feature-row h3,
.ss-feature-row .elementor-heading-title {
  font-family: var(--head) !important;
  font-weight: 900 !important;
  font-size: clamp(24px, 3vw, 40px) !important;
  line-height: 1.05 !important;
  margin-bottom: 16px !important;
  color: var(--white) !important;
}

/* Feature row body */
.ss-feature-row p,
.ss-feature-row .elementor-text-editor p {
  font-size: 15px !important;
  color: var(--off) !important;
  line-height: 1.8 !important;
  font-weight: 300 !important;
  max-width: 520px;
}

/* Feature row image */
.ss-feature-row .elementor-image img {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  filter: brightness(.75) saturate(1.1) !important;
  transition: transform .6s ease, filter .4s !important;
}
.ss-feature-row:hover .elementor-image img {
  transform: scale(1.03) !important;
  filter: brightness(.85) saturate(1.2) !important;
}

/* Left edge accent bar on feature rows */
.ss-feature-text::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  opacity: .4;
}

/* ═══════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════ */
.ss-stats {
  background: linear-gradient(135deg, #0a5fd4 0%, #041530 100%) !important;
  padding: 56px 60px !important;
}
.ss-stat-num {
  font-family: var(--head) !important;
  font-weight: 900 !important;
  font-size: clamp(40px, 5vw, 64px) !important;
  color: var(--white) !important;
  line-height: 1 !important;
}
.ss-stat-num span { color: var(--cyan); }
.ss-stat-label {
  font-family: var(--head) !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.55) !important;
  margin-top: 4px !important;
}

/* ═══════════════════════════════════════════════
   WOOCOMMERCE — SHOP PAGE
   ═══════════════════════════════════════════════ */
.woocommerce-page .site-main,
.woocommerce .site-main { background: var(--navy) !important; }

/* Remove default WC page title */
.woocommerce-page h1.page-title { display: none !important; }

/* Remove sidebar */
.woocommerce-sidebar,
.ast-woocommerce-content-layout-2-column .ast-woocommerce-product-layout { display: block; }

/* Product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Product card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  transition: border-color .3s, transform .3s !important;
  position: relative;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(0,200,255,.4) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.4) !important;
}

/* Product image */
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 220px !important;
  object-fit: contain !important;
  background: var(--navy-mid) !important;
  padding: 20px !important;
  display: block !important;
  transition: transform .5s !important;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.04) !important; }

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--head) !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  padding: 18px 20px 4px !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Product price */
.woocommerce ul.products li.product .price {
  color: var(--cyan) !important;
  font-family: var(--head) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 0 20px 4px !important;
  display: block !important;
  background: transparent !important;
}
.woocommerce ul.products li.product .price del { color: var(--muted) !important; font-size: 13px !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

/* Add to cart button — replace green with cyan/navy */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  display: block !important;
  margin: 10px 20px 20px !important;
  background: transparent !important;
  border: 1.5px solid var(--blue) !important;
  color: var(--blue-lt) !important;
  padding: 10px 20px !important;
  font-family: var(--head) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
  transition: background .2s, color .2s !important;
  border-radius: 0 !important;
  cursor: pointer !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: var(--blue-lt) !important;
  color: var(--white) !important;
  border-color: var(--blue-lt) !important;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-family: var(--head) !important;
  font-weight: 800 !important;
  border-radius: 0 !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  min-height: auto !important;
  line-height: 1.6 !important;
  top: 12px !important; left: 12px !important;
}

/* WC sorting / count bar */
.woocommerce-ordering select,
.woocommerce form.woocommerce-ordering select {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--off) !important;
  padding: 8px 14px !important;
  border-radius: 0 !important;
  font-family: var(--body) !important;
}
.woocommerce-result-count { color: var(--muted) !important; font-size: 13px !important; }

/* WC pagination */
.woocommerce-pagination ul {
  display: flex !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important; height: 40px !important;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--off) !important;
  font-family: var(--head) !important;
  transition: all .2s !important;
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: var(--white) !important;
}

/* ═══════════════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
   ═══════════════════════════════════════════════ */
.woocommerce div.product { background: var(--navy) !important; }

.woocommerce div.product .product_title {
  font-family: var(--head) !important;
  font-weight: 900 !important;
  font-size: clamp(30px, 4vw, 52px) !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  line-height: 1.05 !important;
  margin-bottom: 12px !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--cyan) !important;
  font-family: var(--head) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  color: var(--off) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

/* Product image area */
.woocommerce div.product div.images img {
  background: var(--card) !important;
  padding: 20px !important;
  border: 1px solid var(--border) !important;
}
img.woocommerce-placeholder,
.woocommerce-product-gallery__image--placeholder { display: none !important; }

/* Add to cart button */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button.alt {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-family: var(--head) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  padding: 14px 36px !important;
  border: none !important;
  border-radius: 0 !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background .2s !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--blue-lt) !important; }

/* Qty input */
.woocommerce .quantity input.qty {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  height: 46px !important;
  text-align: center !important;
  border-radius: 0 !important;
}

/* Tabs on single product */
.woocommerce-tabs .tabs { border-bottom: 1px solid var(--border) !important; }
.woocommerce-tabs .tabs li { background: transparent !important; border: none !important; }
.woocommerce-tabs .tabs li a {
  font-family: var(--head) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}
.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li.active { color: var(--cyan) !important; border-bottom: 2px solid var(--cyan) !important; }
.woocommerce-tabs .panel { background: var(--card) !important; border: 1px solid var(--border) !important; padding: 28px !important; color: var(--off) !important; }

/* ═══════════════════════════════════════════════
   WOOCOMMERCE — CART & CHECKOUT
   ═══════════════════════════════════════════════ */
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main { background: var(--navy) !important; color: var(--off) !important; }

.woocommerce table.shop_table {
  border: 1px solid var(--border) !important;
  background: var(--card) !important;
  color: var(--off) !important;
}
.woocommerce table.shop_table th {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
  font-family: var(--head) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  border: none !important;
}
.woocommerce table.shop_table td { border-top: 1px solid var(--border) !important; }
.woocommerce table.shop_table .product-name a { color: var(--off) !important; }
.woocommerce-cart-form .product-remove a { color: var(--muted) !important; }
.woocommerce-cart-form .product-remove a:hover { color: var(--cyan) !important; }

/* Cart totals */
.cart_totals { background: var(--card) !important; border: 1px solid var(--border) !important; padding: 24px !important; }
.cart_totals h2 { font-family: var(--head) !important; color: var(--white) !important; font-size: 20px !important; }
.woocommerce-shipping-destination { color: var(--off) !important; }

/* Checkout form inputs */
.woocommerce-billing-fields input,
.woocommerce-shipping-fields input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  padding: 10px 14px !important;
  font-family: var(--body) !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus { border-color: var(--cyan) !important; outline: none !important; box-shadow: none !important; }
.woocommerce form .form-row label { color: var(--off) !important; font-family: var(--head) !important; font-size: 12px !important; letter-spacing: 1px !important; text-transform: uppercase !important; }

/* Order review */
#order_review,
.woocommerce-checkout-review-order-table { background: var(--card) !important; border: 1px solid var(--border) !important; }
.woocommerce #payment { background: var(--card) !important; border: 1px solid var(--border) !important; }
.woocommerce #payment div.payment_box { background: var(--navy-mid) !important; color: var(--off) !important; }
.woocommerce #payment div.payment_box::before { border-bottom-color: var(--navy-mid) !important; }

/* Place order */
.woocommerce #payment #place_order {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-family: var(--head) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background .2s !important;
  width: 100% !important;
  padding: 14px !important;
}
.woocommerce #payment #place_order:hover { background: var(--blue-lt) !important; }

/* Back to cart */
.ss-back-btn {
  display: inline-block;
  margin-bottom: 24px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--off);
  padding: 10px 26px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
  transition: all .2s;
}
.ss-back-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* ═══════════════════════════════════════════════
   GENERAL ELEMENTOR SECTION OVERRIDES
   (so white sections turn dark)
   ═══════════════════════════════════════════════ */
.elementor-section,
.e-con,
.elementor-top-section {
  background-color: var(--navy) !important;
}

/* The white content between nav and footer */
#page,
.ast-page,
.site-content,
#content,
.ast-container,
.content-area { background: var(--navy) !important; }

/* Entry content */
.entry-content { background: var(--navy) !important; color: var(--off) !important; }
.entry-content p { color: var(--off) !important; }
.entry-content h1,.entry-content h2,.entry-content h3 { color: var(--white) !important; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer,
#colophon,
.ast-footer-overlay,
footer { background: #020a18 !important; color: var(--muted) !important; border-top: 1px solid var(--border) !important; }

.site-footer a { color: var(--muted) !important; transition: color .2s; }
.site-footer a:hover { color: var(--cyan) !important; }
.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4,.site-footer h5,.site-footer h6 {
  font-family: var(--head) !important;
  color: var(--white) !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
}
.site-footer p { color: var(--muted) !important; font-size: 13px !important; }
.ast-footer-copyright { color: var(--muted) !important; font-size: 12px !important; }
.ast-copyright-text { color: var(--muted) !important; }

/* ═══════════════════════════════════════════════
   UTILITY CLASSES  (add to Elementor Advanced > CSS Classes)
   ═══════════════════════════════════════════════ */

/* Cards */
.ss-card {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  transition: border-color .3s, transform .3s, box-shadow .3s !important;
  padding: 32px 28px !important;
}
.ss-card:hover {
  border-color: rgba(0,200,255,.35) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.4) !important;
}

/* Pricing card */
.ss-price-card {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  padding: 36px 30px !important;
  position: relative !important;
  transition: border-color .3s, transform .3s !important;
}
.ss-price-card:hover { border-color: rgba(0,200,255,.3) !important; transform: translateY(-4px) !important; }
.ss-price-card.featured { border-color: var(--cyan) !important; }
.ss-price-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy);
  font-family: var(--head); font-weight: 800; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 4px 16px; white-space: nowrap;
}

/* Price amount */
.ss-price-amount {
  font-family: var(--head) !important;
  font-weight: 900 !important;
  font-size: 44px !important;
  color: var(--white) !important;
  line-height: 1 !important;
}
.ss-price-period { font-size: 14px !important; color: var(--muted) !important; }

/* Feature list inside pricing */
.ss-plan-features { list-style: none !important; padding: 0 !important; margin: 0 0 28px !important; }
.ss-plan-features li { font-size: 14px !important; color: var(--off) !important; padding: 7px 0 !important; border-bottom: 1px solid rgba(255,255,255,.05) !important; }
.ss-plan-features li::before { content: '✓  '; color: var(--cyan) !important; }

/* Badge */
.ss-badge {
  display: inline-block !important;
  background: var(--glow) !important;
  border: 1px solid rgba(0,200,255,.25) !important;
  color: var(--cyan) !important;
  font-family: var(--head) !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  margin-bottom: 12px !important;
}

/* Divider line */
.ss-divider {
  border: none !important;
  border-top: 1px solid var(--border) !important;
  margin: 0 !important;
}

/* Icon boxes */
.ss-icon-box {
  padding: 24px !important;
  border-left: 2px solid var(--border) !important;
  background: var(--card) !important;
  transition: border-color .3s !important;
  margin-bottom: 20px !important;
}
.ss-icon-box:hover { border-left-color: var(--cyan) !important; }
.ss-icon-box h3, .ss-icon-box h4 { font-family: var(--head) !important; font-size: 15px !important; letter-spacing: 2px !important; margin-bottom: 6px !important; color: var(--white) !important; }
.ss-icon-box p { font-size: 14px !important; color: var(--off) !important; line-height: 1.65 !important; margin: 0 !important; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════ */
.ss-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.ss-reveal.visible { opacity: 1; transform: translateY(0); }
.ss-reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .8s, transform .8s; }
.ss-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════
   TRUST BAR  (icons row below products)
   ═══════════════════════════════════════════════ */
.ss-trust-bar {
  background: var(--navy-mid) !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 36px 60px !important;
}
.ss-trust-item {
  text-align: center !important;
}
.ss-trust-item .elementor-icon { color: var(--cyan) !important; }
.ss-trust-item h4, .ss-trust-item p {
  font-family: var(--head) !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--off) !important;
  margin: 8px 0 0 !important;
}

/* Replace grey trust icons with cyan */
.ss-trust-bar .elementor-icon-list-icon svg,
.ss-trust-bar .elementor-icon svg { fill: var(--cyan) !important; color: var(--cyan) !important; }
.ss-trust-bar .elementor-icon-list-text { color: var(--off) !important; font-family: var(--head) !important; letter-spacing: 2px !important; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ss-feature-text { padding: 44px 36px !important; }
}

@media (max-width: 768px) {
  .woocommerce ul.products, .woocommerce-page ul.products {
    grid-template-columns: repeat(2,1fr) !important;
  }
  .ss-stats { padding: 40px 24px !important; }
  .ss-trust-bar { padding: 28px 20px !important; }
}

@media (max-width: 480px) {
  .woocommerce ul.products, .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
  .ss-feature-text { padding: 32px 20px !important; }
}
