/* ============================================================================
   HEMA DIGITAL - BASE.CSS
   Global styles, CSS variables, header, footer, core layout
   ============================================================================ */

:root {
  /* ==========================================================================
     COLORS - Brand & Semantic
     ========================================================================== */
  
  /* Brand colors */
  --c-black: #0f0f0f;
  --c-white: #ffffff;
  --c-red: #f01128;
  --c-yellow: #ffdc15;
  
  /* Gray scale (50-900) */
  --c-gray-50: #fafafa;
  --c-gray-100: #f5f5f5;
  --c-gray-200: #eeeeee;
  --c-gray-300: #e0e0e0;
  --c-gray-400: #bdbdbd;
  --c-gray-500: #9e9e9e;
  --c-gray-600: #757575;
  --c-gray-700: #616161;
  --c-gray-800: #424242;
  --c-gray-900: #212121;
  
  /* Semantic text colors */
  --c-text-primary: #1a1a1a;
  --c-text-secondary: #5f5f5f;
  --c-text-muted: #757575;
  --c-text-inverse: #ffffff;
  
  /* Border colors */
  --c-border-light: rgba(0, 0, 0, 0.08);
  --c-border-medium: rgba(0, 0, 0, 0.12);
  --c-border-dark: rgba(0, 0, 0, 0.20);
  
  /* Overlay colors */
  --c-overlay-light: rgba(0, 0, 0, 0.25);
  --c-overlay-medium: rgba(0, 0, 0, 0.55);
  --c-overlay-dark: rgba(0, 0, 0, 0.75);
  
  /* Background colors */
  --c-bg-primary: #ffffff;
  --c-bg-secondary: #f5f5f5;
  --c-bg-tertiary: #eeeeee;
  
  /* ==========================================================================
     LAYOUT
     ========================================================================== */
  
  --wrap: 1464px;
  --pad: 24px;
  --sidebar-width: 280px;
  
  /* ==========================================================================
     BREAKPOINTS
     ========================================================================== */
  
  --bp-xs: 0px;
  --bp-sm: 520px;
  --bp-md: 720px;
  --bp-lg: 1024px;
  --bp-xl: 1100px;
  --bp-xxl: 1464px;
  
  /* ==========================================================================
     SPACING SCALE (4px base)
     ========================================================================== */
  
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-base: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --hd-header-h: 143px;

  
  /* ==========================================================================
     TYPOGRAPHY
     ========================================================================== */
  
  /* Font families */
  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: "Orbitron", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-price: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  
  /* Font sizes */
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 24px;
  --text-4xl: 30px;
  --text-5xl: 36px;
  --text-6xl: 44px;
  
  /* Line heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* ==========================================================================
     TRANSITIONS & ANIMATIONS
     ========================================================================== */
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* ==========================================================================
     SHADOWS
     ========================================================================== */
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 14px 26px rgba(0, 0, 0, 0.20);
  
  /* ==========================================================================
     BORDERS & RADIUS
     ========================================================================== */
  
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-full: 9999px;
}

/* Responsive padding adjustment */
@media (max-width: 720px) {
  :root {
    --pad: 8px;
  }
}

/* ==========================================================================
   GLOBAL RESETS
   ========================================================================== */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

a {
  color: inherit;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

/* ==========================================================================
   BASE TYPOGRAPHY
   ========================================================================== */

body {
  font-family: var(--font-body);
  color: var(--c-text-primary);
  background: var(--c-bg-primary);
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: none;
  margin: 0;
}

/* Responsive typography */
@media (max-width: 900px) {
  body {
    font-size: var(--text-base);
    line-height: var(--leading-snug);
  }
}

/* WooCommerce typography */
.woocommerce-products-header__title,
.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Category nav typography */
.aor-catnav a {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none !important;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

.hd-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  background: var(--c-black);
  color: var(--c-text-inverse);
}

.hd-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hd-top .hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.hd-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-text-inverse);
}

.hd-logo img,
.hd-logo .custom-logo {
  width: 150px;
  height: auto;
  display: block;
}

.hd-icons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hd-icon,
.hd-burger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--c-text-inverse);
  text-decoration: none;
  flex: 0 0 42px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.hd-icon svg,
.hd-burger svg {
  width: 24px;
  height: 24px;
  display: block;
}

.hd-icon:hover,
.hd-burger:hover {
  background: transparent !important;
}

.hd-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--c-red);
  color: var(--c-white);
  font-size: var(--text-xs);
  line-height: 18px;
  text-align: center;
  border: 2px solid var(--c-black);
  z-index: 3;
  pointer-events: none;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.hd-nav {
  background: var(--c-black);
  overflow: visible;
}

.hd-inner,
.main-nav {
  overflow: visible;
}

.menu-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  height: 56px;
}

.menu-primary > li {
  position: relative;
}

.menu-primary > li > a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: var(--text-base);
  padding: var(--space-xl) 0;
  display: inline-flex;
  align-items: center;
}

.menu-primary > li > a:hover {
  color: var(--c-white);
}

.hd-burger {
  display: none !important;
}

/* ==========================================================================
   MOBILE HEADER (<= 959px)
   ========================================================================== */

@media (max-width: 959px) {
  .hd-top .hd-inner {
    min-height: 68px;
  }

  .hd-logo img,
  .hd-logo .custom-logo {
    width: 120px;
  }

  .hd-burger {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
  }
  
  .hd-burger svg {
    width: 32px;
    height: 32px;
  }
  
    /* Hide account icon on mobile - it's in drawer footer */
  .hd-icon[href*="myaccount"],
  .hd-icon[aria-label="My account"] {
    display: none !important;
  }

  .hd-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-fast);
  }

  .site-header.is-menu-open .main-nav {
    max-height: 70vh;
    overflow: auto;
  }

  .menu-primary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-lg) 0 var(--space-base);
    min-height: auto;
  }

  .menu-primary > li {
    width: 100%;
  }

  .menu-primary > li > a {
    width: 100%;
    padding: var(--space-sm) 0;
    font-size: var(--text-base);
    text-decoration: none;
  }

  .menu-primary .mega {
    display: none !important;
  }
}

/* ==========================================================================
   MEGA MENU (>= 901px)
   ========================================================================== */

@media (min-width: 901px) {
  .hd-nav {
    position: relative;
  }

  .main-nav {
    position: relative;
  }

  .menu-primary > li {
    position: static;
  }

  .menu-primary > li > .mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100vw;
    transform: none;
    margin-left: calc(50% - 50vw);
    background: var(--c-bg-primary);
    color: var(--c-text-primary);
    border-radius: 0;
    border: 0;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    min-height: 35vh;
    max-height: 65vh;
    overflow: auto;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
  }

  .menu-primary > li:hover > .mega,
  .menu-primary > li:focus-within > .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-primary > li > a {
    position: relative;
  }

  .menu-primary > li:hover > a::after,
  .menu-primary > li:focus-within > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 14px;
  }

  .mega__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 26px var(--pad);
  }

  .mega__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-base) 22px;
    align-items: start;
  }

  .mega__headingText {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: var(--space-lg);
  }

  .menu-item-depth-2 {
    margin: 0;
    padding: 0;
  }

  .menu-item-depth-2 > a {
    display: block;
    padding: var(--space-xxs) 0;
    font-size: var(--text-base);
    color: var(--c-text-primary);
    text-decoration: none;
    opacity: 0.86;
    line-height: var(--leading-snug);
  }

  .menu-item-depth-2 > a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .mega__tile > .mega__tileLink {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-decoration: none;
    color: var(--c-text-primary);
  }

  .mega__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: var(--c-bg-primary);
    border-radius: 0;
    border: 1px solid var(--c-border-light);
    padding: var(--space-base);
  }

  .mega__tileTitle {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .mega .menu-item-depth-1 > a {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: var(--text-sm);
    line-height: var(--leading-tight);
    color: var(--c-text-primary) !important;
    opacity: 1 !important;
    letter-spacing: 0.06em;
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
  }

  .mega .menu-item-depth-1 > .sub-menu {
    margin-top: var(--space-lg) !important;
  }

  .mega__grid ul,
  .mega__grid li,
  .mega__grid .menu-item-depth-1 {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

/* ==========================================================================
   MODERN MOBILE MENU DRAWER
   ========================================================================== */

.mobile-menu-overlay,
.mobile-menu-drawer {
  display: none;
}

@media (max-width: 900px) {
  
  .mobile-menu-overlay,
  .mobile-menu-drawer {
    display: block;
  }
  
  /* Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer */
  .mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  }

  .mobile-menu-drawer.is-active {
    right: 0;
  }

  /* Header */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .mobile-menu-logo img {
    height: 40px;
    width: auto;
  }

  .mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
  }

  .mobile-menu-close:active {
    background: #000;
    color: #fff;
    transform: rotate(90deg);
  }

  /* Search Bar */
  .mobile-menu-search {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .mobile-menu-search-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    color: #666;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
  }

  .mobile-menu-search-btn:active {
    background: #eee;
    transform: scale(0.98);
  }

  .mobile-menu-search-btn svg {
    flex-shrink: 0;
  }

  /* Scrollable Content */
  .mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
  }

  .mobile-menu-nav {
    padding: 0;
  }

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Top level items */
  .mobile-menu-list > li {
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .mobile-menu-list > li:last-child {
    border-bottom: none;
  }

  .mobile-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    position: relative;
  }

  .mobile-menu-list > li > a:active {
    background: #fafafa;
  }

  /* Arrow for parent items */
  .mobile-menu-list > li.menu-item-has-children > a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
  }

  .mobile-menu-list > li.menu-item-has-children.is-open > a::after {
    transform: rotate(45deg);
  }

  /* Submenu */
  .mobile-menu-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu-list li.is-open > .sub-menu {
    max-height: 2000px;
  }

  .mobile-menu-list .sub-menu li a {
    display: block;
    padding: 14px 24px 14px 44px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    color: #333;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.2s;
  }

  .mobile-menu-list .sub-menu li a:active {
    background: #f0f0f0;
    color: #000;
  }

  /* Third level */
  .mobile-menu-list .sub-menu .sub-menu {
    background: #f5f5f5;
  }

  .mobile-menu-list .sub-menu .sub-menu li a {
    padding-left: 64px;
    font-size: 14px;
    color: #666;
  }

  /* Footer */
  .mobile-menu-footer {
    flex-shrink: 0;
    border-top: 1px solid #f0f0f0;
    padding: 20px 24px 24px;
    background: #fafafa;
  }

  .mobile-menu-footer-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 12px;
  }

  .mobile-menu-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mobile-menu-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: #fff;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
  }

  .mobile-menu-footer-link:active {
    background: #e8e8e8;
    transform: scale(0.96);
  }

  .mobile-menu-footer-link svg {
    flex-shrink: 0;
    opacity: 0.7;
  }

  /* Prevent body scroll when menu open */
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.site-main {
  padding: 0;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  margin-top: var(--space-4xl);
  font-family: var(--font-body);
  width: 100%;
}

.site-footer__main {
  background: var(--c-bg-secondary);
  width: 100%;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: 400px;
  max-width: 100%;
  margin: 0;
}

/* ==========================================================================
   LEFT SIDE - Membership CTA (Dark)
   ========================================================================== */

.site-footer__cta {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
}

.site-footer__cta-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--c-white);
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  width: fit-content;
  padding: var(--space-base) var(--space-xl);
  background: var(--c-white);
  color: var(--c-black);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.site-footer__cta-btn:hover {
  background: var(--c-gray-200);
  transform: translateX(4px);
}

.site-footer__cta-btn svg {
  transition: transform var(--transition-normal);
}

.site-footer__cta-btn:hover svg {
  transform: translateX(4px);
}

.site-footer__cta-terms {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
}

.site-footer__cta-terms a {
  color: var(--c-white);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.site-footer__cta-terms a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   RIGHT SIDE - Support & Info (Light)
   ========================================================================== */

.site-footer__info {
  background: var(--c-white);
  color: var(--c-text-primary);
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.site-footer__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-base);
}

.site-footer__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-text-primary);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer__nav a {
  color: var(--c-text-primary);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color var(--transition-fast);
  width: fit-content;
}

.site-footer__nav a:hover {
  color: var(--c-red);
}

.site-footer__social {
  display: flex;
  gap: var(--space-base);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.site-footer__social a:hover {
  background: var(--c-red);
  transform: translateY(-2px);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-base);
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--c-text-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.site-footer__contact-item:hover {
  color: var(--c-red);
}

.site-footer__contact-item svg {
  flex-shrink: 0;
}

.site-footer__payments {
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-base);
  align-items: center;
}

.site-footer__payments img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.site-footer__payments img:hover {
  opacity: 1;
}

.site-footer__legal {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.site-footer__legal a {
  color: var(--c-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.site-footer__legal a:hover {
  color: var(--c-text-primary);
}

/* ==========================================================================
   BOTTOM - Copyright
   ========================================================================== */

.site-footer__bottom {
  background: var(--c-bg-secondary);
  border-top: 1px solid var(--c-border-light);
  padding: var(--space-lg) 0;
}

.site-footer__copyright {
  margin: 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--c-text-secondary);
}

.site-footer__copyright a {
  color: var(--c-text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.site-footer__copyright a:hover {
  color: var(--c-red);
}

/* ==========================================================================
   FOOTER RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__cta,
  .site-footer__info {
    padding: var(--space-2xl);
  }
}

@media (max-width: 720px) {
  .site-footer__cta,
  .site-footer__info {
    padding: var(--space-xl);
  }

  .site-footer__cta-title {
    font-size: var(--text-2xl);
  }

  .site-footer__payments {
    gap: var(--space-sm);
  }

  .site-footer__payments img {
    height: 24px;
  }

  .site-footer__legal {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* ==========================================================================
   SHOP / ARCHIVE WIDTH
   ========================================================================== */

.woocommerce .site-main {
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  box-sizing: border-box;
}

/* ==========================================================================
   FILTER TITLE FIX
   ========================================================================== */

.aor-filters-inline .wpc-filter-header,
.aor-filters-inline .wpc-filter-header * {
  text-decoration: none !important;
  background-image: none !important;
}

.hd-page__inner {
  width: min(var(--wrap), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: 26px 0 44px;
}


/* ==========================================================================
   SIMPLE PAGE CONTENT STYLING (Legal, Privacy, Terms, etc.)
   ========================================================================== */

.hd-page .entry-content,
.page .entry-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.hd-page .entry-title,
.page .entry-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
  color: #000;
}

.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 20px;
  color: #000;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.entry-content h2:first-child {
  border-top: none;
  padding-top: 0;
}

.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: #000;
}

.entry-content p {
  margin: 16px 0;
}

.entry-content strong {
  font-weight: 600;
  color: #000;
}

.entry-content ul,
.entry-content ol {
  margin: 20px 0;
  padding-left: 32px;
}

.entry-content li {
  margin: 12px 0;
  line-height: 1.7;
}

.entry-content a {
  color: var(--c-red);
  text-decoration: underline;
  transition: color 0.2s;
}

.entry-content a:hover {
  color: #000;
}

.entry-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.entry-content th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .hd-page .entry-content,
  .page .entry-content {
    margin: 40px auto;
    padding: 0 20px;
    font-size: 14px;
  }

  .hd-page .entry-title,
  .page .entry-title {
    font-size: 32px;
    margin: 0 0 32px;
  }

  .entry-content h2 {
    font-size: 22px;
  }

  .entry-content h3 {
    font-size: 18px;
  }
}

