/* ═══════════════════════════════════════════════════
   AREEZZ — Premium Streetwear Redesign
   Black + Gold | Modern | Animated
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --az-bg: #0a0a0b;
  --az-bg-elevated: #111111;
  --az-card: #141414;
  --az-card-hover: #1a1a1a;
  --az-border: rgba(212, 168, 75, 0.1);
  --az-border-hover: rgba(212, 168, 75, 0.25);
  --az-gold: #d4a84b;
  --az-gold-light: #e8c46a;
  --az-gold-dim: rgba(212, 168, 75, 0.6);
  --az-text: #f5f0e6;
  --az-text-muted: #8a8272;
  --az-text-dim: #5a5648;
  
  /* Emil: custom easing curves — never use built-in CSS easings */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Font stack */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ── Load Inter + Playfair Display ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ── Reset & Base ── */
body, .site, .site-container, .content-area, .site-content {
  background-color: var(--az-bg) !important;
  color: var(--az-text) !important;
  font-family: var(--font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6, .entry-title, .product-title, .wp-block-heading {
  color: var(--az-text) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem) !important; line-height: 1.05 !important; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem) !important; line-height: 1.15 !important; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important; line-height: 1.25 !important; }

p { color: var(--az-text-muted) !important; line-height: 1.7 !important; }

a { color: var(--az-gold) !important; text-decoration: none !important; transition: color 160ms var(--ease-out) !important; }
a:hover { color: var(--az-gold-light) !important; }

/* ── Scroll reveal animations ── */
@keyframes az-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes az-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes az-slide-right {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes az-gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes az-line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes az-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll-triggered class */
.az-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.az-reveal.az-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.az-delay-1 { transition-delay: 80ms !important; }
.az-delay-2 { transition-delay: 160ms !important; }
.az-delay-3 { transition-delay: 240ms !important; }
.az-delay-4 { transition-delay: 320ms !important; }

/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION — Premium Desktop + Mobile
   ═══════════════════════════════════════════════════ */

/* ── Hide WP admin bar for visitors ── */
#wpadminbar { display: none !important; }
body.admin-bar { margin-top: 0 !important; }

/* ── Header container ── */
#masthead, .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background-color: rgba(10, 10, 11, 0.92) !important;
  backdrop-filter: blur(20px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
  border-bottom: 1px solid var(--az-border) !important;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out) !important;
}

#masthead.scrolled {
  border-bottom-color: var(--az-border-hover) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4) !important;
}

/* CRITICAL: Force #main-header visible on desktop */
@media (min-width: 1024px) {
  #main-header {
    display: block !important;
  }
  .site-header-main-section-left {
    display: flex !important;
  }
  .site-header-main-section-right {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  .main-navigation .primary-menu-container {
    display: flex !important;
  }
  #primary-menu {
    display: flex !important;
    gap: 0.25rem !important;
    align-items: center !important;
  }
  #primary-menu > li {
    display: list-item !important;
  }
  /* Hide mobile toggle on desktop */
  .menu-toggle-open,
  .menu-toggle-close,
  .kadence-header-menu-toggle,
  #mobile-toggle,
  .mobile-toggle-open-container,
  .site-header-item-nav {
    display: none !important;
  }
  /* Hide mobile drawer */
  .mobile-navigation, #mobile-menu, .header-navigation-wrap.mobile {
    display: none !important;
  }
}

/* ── Logo image in header ── */
.custom-logo, .az-logo {
  height: 56px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  transition: opacity 160ms var(--ease-out) !important;
}
.custom-logo:hover, .az-logo:hover {
  opacity: 0.8 !important;
}
@media (min-width: 1024px) {
  .custom-logo, .az-logo {
    height: 52px !important;
  }
}
.site-title-wrap {
  display: flex !important;
  align-items: center !important;
}
.site-branding .brand {
  display: flex !important;
  align-items: center !important;
}

/* ── Footer cleanup ── */

/* Kill empty footer sections that create \n whitespace */
.site-top-footer-wrap,
.site-middle-footer-wrap {
  padding: 0 !important;
}
.site-footer-row-container-inner {
  padding: 0 !important;
}
/* Hide empty footer column sections */
.site-footer-top-section-1,
.site-footer-top-section-3,
.site-footer-middle-section-1,
.site-footer-middle-section-3 {
  display: none !important;
}
/* Footer widget area tight layout */
.site-top-footer-inner-wrap {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
  grid-column-gap: 0 !important;
  grid-row-gap: 0 !important;
}
.site-middle-footer-inner-wrap {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  grid-column-gap: 0 !important;
  grid-row-gap: 0 !important;
}
.footer-widget-area-inner {
  gap: 0 !important;
  text-align: center !important;
}
/* Footer menu centered */
.site-footer-middle-section-2:has(#footer-navigation) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.footer-navigation,
#footer-navigation,
.site-footer .footer-navigation-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.footer-widget-area.widget-area.site-footer-focus-item.footer-navigation-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.footer-widget-area-inner.footer-navigation-inner {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.footer-menu-container,
#footer-navigation .footer-menu-container,
.site-footer .footer-menu-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.footer-navigation ul,
#footer-navigation ul,
.site-footer .menu {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px 24px !important;
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
}
.footer-navigation li,
#footer-navigation li,
.site-footer .menu li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}
.footer-navigation a,
#footer-navigation a,
.site-footer .menu a {
  color: var(--az-text-muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 6px 12px !important;
  display: inline-block !important;
  transition: color 160ms var(--ease-out) !important;
}
.footer-navigation a:hover,
#footer-navigation a:hover,
.site-footer .menu a:hover {
  color: var(--az-gold) !important;
}
.site-footer .footer-widget-area,
.site-footer .widget h2,
.site-footer .widget p {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

/* Hide Kadence credit */
.site-footer .kadence-credits,
.site-footer a[href*="kadencewp"],
.site-bottom-footer-wrap .site-info:empty,
.site-footer .powered-by-wordpress {
  display: none !important;
}
/* Hide Checkout/Cart/Terms/Privacy from footer nav */
.footer-nav-li a[href*="/checkout"],
.footer-nav-li a[href*="/cart"],
.footer-nav-li a[href*="/terms"],
.footer-nav-li a[href*="/privacy"],
#footer-navigation a[href*="checkout"],
#footer-navigation a[href*="cart"],
#footer-navigation a[href*="terms"],
#footer-navigation a[href*="privacy"],
.footer-navigation a[href*="/checkout"],
.footer-navigation a[href*="/cart"],
.footer-navigation a[href*="/terms"],
.footer-navigation a[href*="/privacy"] {
  display: none !important;
}
/* Bottom footer (copyright) tight */
.site-bottom-footer-inner-wrap {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  border-top: 1px solid var(--az-border) !important;
}


.site-logo img, .custom-logo, .site-title a {
  transition: opacity 160ms var(--ease-out) !important;
}
.site-logo:hover img, .custom-logo:hover {
  opacity: 0.8 !important;
}
.site-title, .site-title a {
  color: var(--az-text) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1 !important;
}
.site-title a:hover {
  color: var(--az-gold) !important;
}
.site-description {
  color: var(--az-text-dim) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-top: 0.25rem !important;
}
/* Hide long tagline, show only brand name */
@media (min-width: 1024px) {
  .site-title a {
    font-size: 1.25rem !important;
  }
  .site-description {
    display: none !important;
  }
}

/* ── Desktop nav links — premium underline animation ── */
#primary-menu > li > a,
.main-navigation .primary-menu-container > ul > li > a {
  color: var(--az-text-muted) !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  position: relative !important;
  padding: 0.5rem 1rem !important;
  transition: color 160ms var(--ease-out) !important;
}

/* Gold underline on hover — slides from left */
#primary-menu > li > a::after,
.main-navigation .primary-menu-container > ul > li > a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 2px !important;
  left: 1rem !important;
  right: 1rem !important;
  height: 1px !important;
  background: var(--az-gold) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 250ms var(--ease-out) !important;
}

#primary-menu > li > a:hover::after,
.main-navigation .primary-menu-container > ul > li > a:hover::after {
  transform: scaleX(1) !important;
}

#primary-menu > li > a:hover,
.main-navigation .primary-menu-container > ul > li > a:hover {
  color: var(--az-text) !important;
}

/* Active page — gold dot indicator */
#primary-menu > li.current-menu-item > a,
.main-navigation .primary-menu-container > ul > li.current-menu-item > a {
  color: var(--az-gold) !important;
}
#primary-menu > li.current-menu-item > a::after,
.main-navigation .primary-menu-container > ul > li.current-menu-item > a::after {
  transform: scaleX(1) !important;
}

/* ── Mobile menu toggle — premium hamburger ── */
.menu-toggle-open, .menu-toggle-close {
  color: var(--az-text) !important;
  background: transparent !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 0.5rem !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color 160ms var(--ease-out), color 160ms var(--ease-out) !important;
}
.menu-toggle-open:hover, .menu-toggle-close:hover {
  border-color: var(--az-gold) !important;
  color: var(--az-gold) !important;
}

/* Mobile drawer */
.mobile-navigation, #mobile-menu {
  background: var(--az-bg) !important;
}
.mobile-navigation a, #mobile-menu a {
  color: var(--az-text-muted) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 1rem 1.5rem !important;
  border-bottom: 1px solid var(--az-border) !important;
  display: block !important;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out) !important;
}
.mobile-navigation a:hover, #mobile-menu a:hover {
  color: var(--az-gold) !important;
  background: rgba(212, 168, 75, 0.04) !important;
}
.mobile-navigation li.current-menu-item a, #mobile-menu li.current-menu-item a {
  color: var(--az-gold) !important;
}

/* ── Header row layout fix: Logo left, Nav right ── */
@media (min-width: 1024px) {
  .site-main-header-inner-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 72px !important;
    gap: 0 !important;
  }
  /* Kadence: left=nav, right=logo. We swap with order */
  .site-header-main-section-left {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }
  .site-header-main-section-right {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }
  .site-header-row-container-inner {
    padding: 0 2rem !important;
  }
}

/* ── Hero Section ── */
.entry-content .wp-block-cover,
.home .entry-content > *:first-child,
.site-main > article:first-child {
  animation: az-fade-up 800ms var(--ease-out) both !important;
}

/* Hero headings with gold shimmer */
.entry-content h1, .home h1, .wp-block-cover h1 {
  background: linear-gradient(90deg, var(--az-text) 40%, var(--az-gold) 50%, var(--az-text) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: az-gold-shimmer 6s linear infinite !important;
}

/* ── Buttons — Emil: must feel responsive ── */
.button, .single_add_to_cart_button, .wp-block-button__link,
.woocommerce a.button, .woocommerce button.button,
a.button:not(.wp-block-button__link) {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 0.875rem 2rem !important;
  transition: transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out), background 160ms var(--ease-out) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Emil: scale(0.97) on :active — buttons must feel responsive */
.button:active, .single_add_to_cart_button:active, .wp-block-button__link:active,
.woocommerce a.button:active, .woocommerce button.button:active {
  transform: scale(0.97) !important;
}

.button:hover, .single_add_to_cart_button:hover, .wp-block-button__link:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--az-gold-light) !important;
  color: #000 !important;
  box-shadow: 0 0 30px rgba(212, 168, 75, 0.15), 0 0 60px rgba(212, 168, 75, 0.05) !important;
}

/* Outline button variant */
.button.outline, .az-btn-outline {
  background: transparent !important;
  color: var(--az-gold) !important;
  border: 1px solid var(--az-gold) !important;
}
.button.outline:hover, .az-btn-outline:hover {
  background: rgba(212, 168, 75, 0.08) !important;
  color: var(--az-gold-light) !important;
}

/* ── CTA Buttons — Home hero (.az-btn) ── */
.az-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  padding: 14px 32px !important;
  cursor: pointer !important;
  transition: all 160ms var(--ease-out) !important;
}
a.az-btn-primary,
.az-btn-primary {
  background: var(--az-gold) !important;
  color: #0a0a0b !important;
  border: 2px solid var(--az-gold) !important;
}
a.az-btn-primary:hover,
.az-btn-primary:hover {
  background: var(--az-gold-light) !important;
  border-color: var(--az-gold-light) !important;
  color: #000 !important;
  box-shadow: 0 0 30px rgba(212,168,75,0.15), 0 0 60px rgba(212,168,75,0.05) !important;
  transform: translateY(-1px) !important;
}
a.az-btn-primary:active,
.az-btn-primary:active {
  transform: scale(0.97) !important;
}
a.az-btn-secondary,
.az-btn-secondary {
  background: transparent !important;
  color: var(--az-gold) !important;
  border: 2px solid var(--az-gold) !important;
}
a.az-btn-secondary:hover,
.az-btn-secondary:hover {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  transform: translateY(-1px) !important;
}
a.az-btn-secondary:active,
.az-btn-secondary:active {
  transform: scale(0.97) !important;
}

/* ── Product Cards — flat 1px borders, no glassmorphism ── */
.woocommerce ul.products li.product,
.type-product,
.wp-block-post,
.wc-block-grid__product,
.kb-card,
.entry.loop-entry,
.wp-block-kadence-advancedgridItem {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: border-color 200ms var(--ease-out), transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out) !important;
}

.woocommerce ul.products li.product:hover,
.type-product:hover,
.wp-block-post:hover {
  border-color: var(--az-border-hover) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212, 168, 75, 0.04) !important;
}

/* Product images — zoom on hover */
.woocommerce ul.products li.product a img,
.type-product img,
.wp-block-post img {
  transition: transform 500ms var(--ease-out) !important;
}
.woocommerce ul.products li.product:hover a img,
.type-product:hover img,
.wp-block-post:hover img {
  transform: scale(1.04) !important;
}

/* Product titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-title, .wp-block-post-title {
  color: var(--az-text) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  letter-spacing: -0.01em !important;
  transition: color 160ms var(--ease-out) !important;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.type-product:hover .product-title {
  color: var(--az-gold) !important;
}

/* Product prices */
.woocommerce ul.products li.product .price,
.product .price, .price {
  color: var(--az-gold) !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
}

/* On-sale badge */
.onsale, .wc-block-grid__product-onsale {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 0.25rem 0.625rem !important;
}

/* Star ratings */
.woocommerce .star-rating span, .star-rating span {
  color: var(--az-gold) !important;
}

/* ── Section Dividers — gold accent line ── */
.az-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--az-gold-dim), transparent) !important;
  margin: 4rem auto !important;
  max-width: 200px !important;
  animation: az-line-grow 800ms var(--ease-out) both !important;
  transform-origin: center !important;
}

/* ── Featured Section — "Why it works" style ── */
.entry-content h2, .home h2 {
  position: relative !important;
  padding-bottom: 1rem !important;
}
.entry-content h2::after, .home h2::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--az-gold) !important;
  animation: az-line-grow 600ms var(--ease-out) both !important;
  animation-delay: 200ms !important;
}

/* Feature cards */
.az-feature-card {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  transition: border-color 200ms var(--ease-out), transform 300ms var(--ease-out) !important;
}
.az-feature-card:hover {
  border-color: var(--az-border-hover) !important;
  transform: translateY(-2px) !important;
}

.az-feature-number {
  font-family: var(--font-display) !important;
  font-size: 3rem !important;
  color: var(--az-gold-dim) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

/* ── Footer ── */
.site-footer, #colophon, .footer-container {
  background-color: rgba(10, 10, 11, 0.95) !important;
  color: var(--az-text-muted) !important;
  border-top: 1px solid var(--az-border) !important;
  padding-top: 3rem !important;
}

/* Footer branding */
.site-footer h2, #colophon h2,
.site-footer .footer-heading, #colophon .footer-heading {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--az-text) !important;
}

.site-footer a, #colophon a {
  color: var(--az-text-dim) !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.02em !important;
  transition: color 160ms var(--ease-out) !important;
}
.site-footer a:hover, #colophon a:hover {
  color: var(--az-gold) !important;
}

/* Footer navigation — horizontal */
.footer-navigation ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem 1.5rem !important;
  justify-content: center !important;
}
.footer-navigation li {
  list-style: none !important;
}

/* Footer copyright */
.site-footer .site-info, #colophon .site-info {
  color: var(--az-text-dim) !important;
  font-size: 0.75rem !important;
}
.site-footer .site-info a, #colophon .site-info a {
  color: var(--az-text-dim) !important;
}
.site-footer .site-info a:hover, #colophon .site-info a:hover {
  color: var(--az-gold) !important;
}

/* ── Inputs ── */
input, textarea, select, .input-text, .woocommerce input[type=number] {
  background: var(--az-card) !important;
  color: var(--az-text) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  transition: border-color 160ms var(--ease-out), box-shadow 200ms var(--ease-out) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--az-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1) !important;
  outline: none !important;
}

/* ── WooCommerce Cart / Checkout ── */
.woocommerce-cart-form, .cart-collaterals,
.woocommerce-checkout, #order_review {
  background: transparent !important;
}

.cart_item td, .shop_table th, .shop_table td {
  background: var(--az-card) !important;
  color: var(--az-text) !important;
  border-bottom: 1px solid var(--az-border) !important;
}

.woocommerce-breadcrumb { color: var(--az-text-dim) !important; }
.woocommerce-breadcrumb a { color: var(--az-gold) !important; }

.woocommerce-pagination ul li a {
  background: var(--az-card) !important;
  color: var(--az-gold) !important;
  border: 1px solid var(--az-border) !important;
}
.woocommerce-pagination ul li span.current {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border-color: var(--az-gold) !important;
}

.product_meta, .sku_wrapper, .posted_in, .tagged_as {
  color: var(--az-text-dim) !important;
}

.woocommerce-tabs, .panel {
  background: var(--az-bg) !important;
  border: 1px solid var(--az-border) !important;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--az-bg); }
::-webkit-scrollbar-thumb { background: var(--az-text-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--az-gold-dim); }

/* ── Selection ── */
::selection {
  background: rgba(212, 168, 75, 0.3);
  color: var(--az-text);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }
  
  .woocommerce ul.products li.product:hover {
    transform: none !important;
  }
  
  .woocommerce ul.products li.product:hover a img {
    transform: none !important;
  }
}

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Page load animation ── */
.site-main {
  animation: az-fade-up 600ms var(--ease-out) both !important;
  animation-delay: 100ms !important;
}

/* ═══════════════════════════════════════════════════
   INTERNAL PAGES — About / Contact / FAQ / Blog / Testimonials / Shipping / Returns
   ═══════════════════════════════════════════════════ */

/* Page container */
.page .entry-content,
.single-page .site-main-inner,
.error404 .site-main-inner {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

/* Inner page hero */
.page .entry-content > .wp-block-group.alignfull,
.page .entry-content > *:first-child {
  animation: az-fade-up 700ms var(--ease-out) both !important;
}

/* WordPress columns on internal pages — premium cards */
.page .entry-content .wp-block-columns .wp-block-column {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  transition: border-color 200ms var(--ease-out), transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out) !important;
}

.page .entry-content .wp-block-columns .wp-block-column:hover {
  border-color: var(--az-border-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3) !important;
}

/* Kill any inline kawaii pastel backgrounds on columns */
.page .entry-content .wp-block-column[style*="background"] {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
}

/* Separator / divider on pages */
.page .entry-content .wp-block-separator,
.page hr {
  border: none !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--az-gold-dim), transparent) !important;
  max-width: 80px !important;
  margin: 3rem auto !important;
}

/* Internal page headings */
.page .entry-content h1 {
  margin-bottom: 1rem !important;
}

.page .entry-content h2 {
  margin-top: 3rem !important;
  margin-bottom: 1rem !important;
}

.page .entry-content h3 {
  color: var(--az-gold) !important;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem !important;
}

/* ── Tables — Shipping / Returns pages ── */
.page table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 1.5rem 0 !important;
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.page table th {
  background: rgba(212, 168, 75, 0.08) !important;
  color: var(--az-gold) !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.875rem 1rem !important;
  text-align: left !important;
  border-bottom: 1px solid var(--az-border) !important;
}

.page table td {
  color: var(--az-text-muted) !important;
  padding: 0.75rem 1rem !important;
  border-bottom: 1px solid var(--az-border) !important;
  font-size: 0.9375rem !important;
}

.page table tr:last-child td {
  border-bottom: none !important;
}

.page table tr:hover td {
  background: rgba(212, 168, 75, 0.03) !important;
}

/* Kill any inline table styles from old content */
.page table[style],
.page table th[style*="background"],
.page table td[style*="background"],
.page table th[style*="border"],
.page table td[style*="border"] {
  background: unset !important;
  border-color: var(--az-border) !important;
}

.page table th[style*="padding"],
.page table td[style*="padding"] {
  /* preserve padding from inline, just fix colors */
}

/* ── Lists on internal pages ── */
.page .entry-content ul,
.page .entry-content ol {
  padding-left: 1.25rem !important;
  margin: 1rem 0 !important;
}

.page .entry-content li {
  color: var(--az-text-muted) !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.7 !important;
}

.page .entry-content li::marker {
  color: var(--az-gold-dim) !important;
}

/* ── Contact Form 7 ── */
.wpcf7-form {
  margin-top: 2rem !important;
}

.wpcf7-form label {
  color: var(--az-text-muted) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}

.wpcf7-form input,
.wpcf7-form textarea {
  width: 100% !important;
  margin-bottom: 1.25rem !important;
}

.wpcf7-form input[type=submit] {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  cursor: pointer !important;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out) !important;
}

.wpcf7-form input[type=submit]:active {
  transform: scale(0.97) !important;
}

.wpcf7-form input[type=submit]:hover {
  background: var(--az-gold-light) !important;
}

/* ── WooCommerce Single Product Page ── */
.single-product .product {
  animation: az-fade-up 600ms var(--ease-out) both !important;
}

.single-product .summary h1 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  -webkit-text-fill-color: var(--az-text) !important;
  background: none !important;
}

.single-product .woocommerce-product-gallery {
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.single-product .price {
  font-size: 1.5rem !important;
  color: var(--az-gold) !important;
}

.single-product .quantity input {
  width: 80px !important;
  text-align: center !important;
}

/* Product tabs */
.woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--az-border) !important;
  margin-bottom: 0 !important;
}

.woocommerce-tabs ul.tabs li {
  border: 1px solid transparent !important;
  border-bottom: none !important;
  background: transparent !important;
}

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

.woocommerce-tabs ul.tabs li a {
  color: var(--az-text-dim) !important;
  font-weight: 500 !important;
}

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

/* Related products */
.related.products h2 {
  color: var(--az-text) !important;
  margin-bottom: 1.5rem !important;
}

/* ── Breadcrumbs ── */
.woocommerce-breadcrumb,
.kadence-breadcrumb {
  font-size: 0.8125rem !important;
  color: var(--az-text-dim) !important;
  padding: 1rem 0 !important;
}

.woocommerce-breadcrumb a,
.kadence-breadcrumb a {
  color: var(--az-gold-dim) !important;
}

.woocommerce-breadcrumb a:hover,
.kadence-breadcrumb a:hover {
  color: var(--az-gold) !important;
}

/* ═══════════════════════════════════════════════════
   SHOP PAGE — Full Premium Redesign
   ═══════════════════════════════════════════════════ */

/* ── Shop page header ── */
.woocommerce-products-header {
  padding: 3rem 0 1.5rem !important;
  animation: az-fade-up 600ms var(--ease-out) both !important;
}

.woocommerce-products-header h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  -webkit-text-fill-color: var(--az-text) !important;
  background: none !important;
}

/* ── Kill the sidebar on shop — full-width grid ── */
@media (min-width: 1024px) {
  body.woocommerce-shop .content-area,
  body.post-type-archive-product .content-area {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
  }
  body.woocommerce-shop .widget-area,
  body.post-type-archive-product .widget-area,
  body.woocommerce-shop #secondary,
  body.post-type-archive-product #secondary {
    display: none !important;
  }
}

/* ── Shop toolbar: result count + ordering ── */
.woocommerce-result-count {
  color: var(--az-text-dim) !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.woocommerce-ordering select {
  background: var(--az-card) !important;
  color: var(--az-text) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

/* ── Grid/List toggle ── */
.woocommerce .gridlist-toggle {
  display: flex !important;
  gap: 0.25rem !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.woocommerce .gridlist-toggle a {
  color: var(--az-text-dim) !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  border: none !important;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out) !important;
}
.woocommerce .gridlist-toggle a:hover,
.woocommerce .gridlist-toggle a.active {
  color: var(--az-gold) !important;
  background: rgba(212, 168, 75, 0.06) !important;
}

/* ── Product grid layout ── */
@media (min-width: 1024px) {
  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}
@media (max-width: 767px) {
  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

/* ── Product card — premium dark ── */
.woocommerce ul.products li.product {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 12px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  transition: border-color 200ms var(--ease-out), transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out) !important;
  position: relative !important;
}

.woocommerce ul.products li.product:hover {
  border-color: var(--az-border-hover) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,75,0.08) !important;
}

/* Product image container */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product a img {
  margin: 0 !important;
  border-radius: 0 !important;
  transition: transform 500ms var(--ease-out) !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* Product info area inside card */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--az-text) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  padding: 1rem 1rem 0.25rem !important;
  transition: color 160ms var(--ease-out) !important;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
  color: var(--az-gold) !important;
}

/* Product price */
.woocommerce ul.products li.product .price {
  color: var(--az-gold) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 0 1rem 0.5rem !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--az-text-dim) !important;
  opacity: 0.6 !important;
}
.woocommerce ul.products li.product .price ins {
  color: var(--az-gold) !important;
  text-decoration: none !important;
}

/* Add to cart / Select options button */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a[href*="add-to-cart"] {
  background: transparent !important;
  color: var(--az-gold) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0.5rem 1rem !important;
  margin: 0 1rem 1rem !important;
  display: block !important;
  text-align: center !important;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out) !important;
}
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border-color: var(--az-gold) !important;
}
.woocommerce ul.products li.product a.button:active {
  transform: scale(0.97) !important;
}

/* ── Hide "Top rated products" block on shop page (WooCommerce Product Collection block) ── */
.wp-block-woocommerce-product-collection,
.wp-block-woocommerce-product-new,
.wp-block-woocommerce-product-on-sale,
.wp-block-woocommerce-product-top-rated,
.page-description .wp-block-woocommerce-product-collection {
  display: none !important;
}

/* ── Hide old-style sidebar widgets that might appear in content ── */
.widget_top_rated_products,
.widget_top_rated,
[class*="top-rated"],
.woocommerce .widget_product_categories,
.woocommerce .widget_price_filter,
.woocommerce .widget_product_tag_cloud,
.woocommerce .widget_rating_filter {
  display: none !important;
}

/* ── Pagination ── */
.woocommerce-pagination ul {
  display: flex !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 3rem 0 !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  background: var(--az-card) !important;
  color: var(--az-text-muted) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 0.5rem 0.875rem !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  min-width: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out), background 160ms var(--ease-out) !important;
}
.woocommerce-pagination ul li a:hover {
  color: var(--az-gold) !important;
  border-color: var(--az-border-hover) !important;
}
.woocommerce-pagination ul li span.current {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border-color: var(--az-gold) !important;
  font-weight: 700 !important;
}

/* ── Cart icon in header ── */
.site-header .cart-containing-div,
.site-header .header-cart,
.kadence-header .header-cart {
  color: var(--az-text-muted) !important;
}
.site-header .cart-containing-div:hover,
.site-header .header-cart:hover {
  color: var(--az-gold) !important;
}
.site-header .cart-count {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  border-radius: 50% !important;
  min-width: 16px !important;
  height: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — My Account / Cart / Checkout
   ═══════════════════════════════════════════════════ */

.woocommerce-account .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  color: var(--az-text) !important;
}

/* My Account page */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 24px !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block !important;
  padding: 12px 16px !important;
  color: var(--az-text-muted) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--az-border) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: all 160ms var(--ease-out) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a {
  border-bottom: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  color: var(--az-gold) !important;
  background: rgba(212,168,75,0.06) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  font-weight: 700 !important;
  border-left: 2px solid var(--az-gold) !important;
  padding-left: 14px !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  color: var(--az-text) !important;
}
.woocommerce-account .woocommerce-MyAccount-content h1,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  color: #fff !important;
}
.woocommerce-account .woocommerce-MyAccount-content p {
  color: var(--az-text) !important;
}
.woocommerce-account .woocommerce-MyAccount-content table {
  1border: 1px solid var(--az-border) !important;
}

/* Cart page */
.woocommerce-cart .woocommerce,
.woocommerce-cart .cart_totals {
  color: var(--az-text) !important;
}
.woocommerce-cart table.cart {
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.woocommerce-cart table.cart th {
  background: var(--az-card) !important;
  color: var(--az-gold) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--az-border) !important;
}
.woocommerce-cart table.cart td {
  1border-top: 1px solid var(--az-border) !important;
  padding: 16px !important;
  color: var(--az-text) !important;
}
.woocommerce-cart table.cart .product-name a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.woocommerce-cart table.cart .product-name a:hover {
  color: var(--az-gold) !important;
}
.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
  color: var(--az-gold) !important;
  font-weight: 700 !important;
}
.woocommerce-cart table.cart .actions .coupon .input-text {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  color: var(--az-text) !important;
  padding: 10px 14px !important;
  border-radius: 4px !important;
}
.woocommerce-cart table.cart .remove {
  color: #e74c3c !important;
  text-decoration: none !important;
  font-size: 20px !important;
}
.woocommerce-cart table.cart .remove:hover {
  background: rgba(231,76,60,0.1) !important;
  color: #c0392b !important;
}

/* Cart totals */
.woocommerce-cart .cart_totals {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 24px !important;
}
.woocommerce-cart .cart_totals h2 {
  color: var(--az-gold) !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.woocommerce-cart .cart_totals th {
  color: var(--az-text-muted) !important;
}
.woocommerce-cart .cart_totals td {
  1color: var(--az-text) !important;
}
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  color: var(--az-gold) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Checkout page */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
  color: var(--az-gold) !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.woocommerce-checkout .form-row label {
  color: var(--az-text-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  color: var(--az-text) !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
  transition: border-color 160ms var(--ease-out) !important;
}
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: var(--az-gold) !important;
  outline: none !important;
}
.woocommerce-checkout .form-row .input-text::placeholder {
  color: var(--az-text-dim) !important;
}
.woocommerce-checkout #order_review {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 24px !important;
}
.woocommerce-checkout #order_review table th {
  color: var(--az-text-muted) !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
}
.woocommerce-checkout #order_review table td {
  color: var(--az-text) !important;
}
.woocommerce-checkout #order_review table .product-name a {
  color: #fff !important;
}
.woocommerce-checkout #order_review table .product-total {
  color: var(--az-gold) !important;
  font-weight: 700 !important;
}
.woocommerce-checkout #order_review .order-total th,
.woocommerce-checkout #order_review .order-total td {
  color: var(--az-gold) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* WooCommerce buttons (global) */
.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 .button {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border: none !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  padding: 14px 28px !important;
  border-radius: 4px !important;
  transition: all 160ms var(--ease-out) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .button:hover {
  background: var(--az-gold-light) !important;
  transform: translateY(-1px) !important;
}
.woocommerce a.button.wc-forward {
  background: transparent !important;
  color: var(--az-gold) !important;
  border: 1px solid var(--az-gold) !important;
}
.woocommerce a.button.wc-forward:hover {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
}

/* WooCommerce info/messages */
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  color: var(--az-text) !important;
  border-radius: 6px !important;
}
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before {
  color: var(--az-gold) !important;
}
.woocommerce .woocommerce-error {
  border-color: rgba(231,76,60,0.3) !important;
}
.woocommerce .woocommerce-error::before {
  color: #e74c3c !important;
}

/* WooCommerce login/register form on My Account */
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  border-radius: 8px !important;
  padding: 32px !important;
}
.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2 {
  color: var(--az-gold) !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.woocommerce-account .woocommerce-form-row label {
  color: var(--az-text-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.woocommerce-account .woocommerce-form-row .input-text {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--az-border) !important;
  color: var(--az-text) !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
}
.woocommerce-account .woocommerce-form-row .input-text:focus {
  border-color: var(--az-gold) !important;
}
.woocommerce-account .woocommerce-form-row .input-text::placeholder {
  color: var(--az-text-dim) !important;
}
.woocommerce-account .woocommerce-LostPassword a {
  color: var(--az-gold) !important;
}

/* ═══════════════════════════════════════════════════
   BLOG — Post Archive & Single Post
   ═══════════════════════════════════════════════════ */

/* Blog archive */
.blog .entry-title,
.archive .entry-title,
.search .entry-title {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}
.blog .entry-title a,
.archive .entry-title a,
.search .entry-title a {
  color: #fff !important;
  text-decoration: none !important;
  transition: color 160ms var(--ease-out) !important;
}
.blog .entry-title a:hover,
.archive .entry-title a:hover {
  color: var(--az-gold) !important;
}
.blog .entry-meta,
.archive .entry-meta,
.search .entry-meta {
  color: var(--az-text-dim) !important;
  font-size: 13px !important;
  margin-bottom: 14px !important;
}
.blog .entry-meta a,
.archive .entry-meta a {
  color: var(--az-gold) !important;
  text-decoration: none !important;
}
.blog .entry-summary,
.archive .entry-summary {
  color: var(--az-text) !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
}
.blog .entry-content,
.blog article.post {
  border-bottom: 1px solid var(--az-border) !important;
  padding-bottom: 32px !important;
  margin-bottom: 32px !important;
}
.blog article.post:last-child {
  border-bottom: none !important;
}

/* Blog single post */
.single-post .entry-title {
  color: #fff !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}
.single-post .entry-meta {
  color: var(--az-text-dim) !important;
  font-size: 14px !important;
  margin-bottom: 24px !important;
}
.single-post .entry-meta a {
  color: var(--az-gold) !important;
}
.single-post .entry-content {
  color: var(--az-text) !important;
  line-height: 1.8 !important;
  font-size: 16px !important;
}
.single-post .entry-content h2 {
  color: var(--az-gold) !important;
  font-size: 22px !important;
  margin-top: 32px !important;
  margin-bottom: 14px !important;
}
.single-post .entry-content h3 {
  color: #fff !important;
  font-size: 18px !important;
  margin-top: 24px !important;
}
.single-post .entry-content p {
  margin-bottom: 18px !important;
}
.single-post .entry-content ul {
  color: var(--az-text) !important;
}
.single-post .entry-content li {
  margin-bottom: 8px !important;
}
.single-post .entry-content strong {
  color: #fff !important;
}
.single-post .entry-content a {
  color: var(--az-gold) !important;
  text-decoration: none !important;
}

/* Read More link */
.post-more-link,
.entry-footer .more-link-wrap a {
  color: var(--az-gold) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  transition: color 160ms var(--ease-out) !important;
}
.post-more-link:hover,
.entry-footer .more-link-wrap a:hover {
  color: var(--az-gold-light) !important;
}

/* Blog pagination */
.nav-links,
.woocommerce nav.woocommerce-pagination {
  display: flex !important;
  gap: 6px !important;
}
.nav-links .page-numbers,
.woocommerce nav.woocommerce-pagination .page-numbers {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  color: var(--az-text-muted) !important;
  padding: 8px 14px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 160ms var(--ease-out) !important;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover,
.woocommerce nav.woocommerce-pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination .page-numbers:hover {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border-color: var(--az-gold) !important;
}

/* ═══════════════════════════════════════════════════
   GLOBAL PAGE STYLES (About, Contact, FAQ, etc.)
   ═══════════════════════════════════════════════════ */

/* WordPress block groups — override white backgrounds */
.wp-block-group,
.entry-content .wp-block-group,
.page .entry-content .wp-block-group {
  background: transparent !important;
  border: none !important;
}

.page .entry-content h1,
.page .entry-content h2,
.page .entry-content h3 {
  color: #fff !important;
}
.page .entry-content p,
.page .entry-content li {
  color: var(--az-text) !important;
  line-height: 1.7 !important;
}
.page .entry-content a {
  color: var(--az-gold) !important;
  text-decoration: none !important;
}
.page .entry-content a:hover {
  color: var(--az-gold-light) !important;
}
.page .entry-title {
  color: var(--az-gold) !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
}

/* Page hero (Kadence) */
.entry-hero,
.page .entry-hero {
  background: transparent !important;
}
.entry-hero .entry-title {
  color: var(--az-gold) !important;
}

/* WooCommerce page titles */
.woocommerce .woocommerce-page-title,
.woocommerce-page .entry-title {
  color: var(--az-gold) !important;
}

/* Separator lines */
.wp-block-separator {
  border-color: var(--az-border) !important;
}

/* WordPress tables */
.page .entry-content table,
.woocommerce table {
  border-collapse: collapse !important;
}
.page .entry-content table th,
.page .entry-content table td,
.woocommerce table th,
.woocommerce table td {
  border: 1px solid var(--az-border) !important;
  padding: 12px 16px !important;
}
.page .entry-content table th {
  background: var(--az-card) !important;
  color: var(--az-gold) !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}
.page .entry-content table td {
  color: var(--az-text) !important;
}

/* Comments */
.comment-list .comment,
#comments {
  color: var(--az-text) !important;
}
.comment-list .comment-author {
  color: #fff !important;
}

/* Search form */
.search-form .search-field {
  background: var(--az-card) !important;
  border: 1px solid var(--az-border) !important;
  color: var(--az-text) !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
}
.search-form .search-submit {
  background: var(--az-gold) !important;
  color: var(--az-bg) !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}