/*
Theme Name:   PYP Racing
Theme URI:    https://pyp.ro
Description:  PYP Hot Tuning - Design 2026. Dark, aggressive, automotive. Child of Storefront.
Author:       PYP Hot Tuning
Template:     storefront
Version:      1.4.6
Text Domain:  pyp-racing
*/

/* ============================================================
   PYP RACING — DESIGN SYSTEM 2026
   Dark · Aggressive · Automotive
   ============================================================ */

/* ---- DESIGN TOKENS ----------------------------------------- */
:root {
  --pyp-black:        #080808;
  --pyp-dark:         #111111;
  --pyp-dark2:        #181818;
  --pyp-dark3:        #222222;

  /* GOLD / ORANGE ACCENT SCHEME */
  --pyp-red:          #f0a500;             /* main gold accent */
  --pyp-red-deep:     #c47a00;             /* deep amber */
  --pyp-red-glow:     rgba(240, 165, 0, 0.40);
  --pyp-red-subtle:   rgba(240, 165, 0, 0.09);
  --pyp-orange:       #ff6b00;             /* hot orange */
  --pyp-gold:         #ffd700;             /* bright gold */
  --pyp-grad:         linear-gradient(135deg, #ffd700 0%, #f0a500 45%, #ff6b00 100%);
  --pyp-grad-h:       linear-gradient(135deg, #ffe44d 0%, #ffb830 45%, #ff8500 100%);

  --pyp-silver:       #a0a0a0;
  --pyp-chrome:       #d0d0d0;
  --pyp-white:        #f2f2f2;
  --pyp-text:         #c8c8c8;
  --pyp-border:       rgba(255,255,255,0.07);
  --pyp-border-gold:  rgba(240,165,0,0.18);
  --pyp-glass:        rgba(18,18,18,0.85);
  --pyp-glass-light:  rgba(40,40,40,0.6);

  --font-display:     'Barlow Condensed', 'Impact', sans-serif;
  --font-tech:        'Orbitron', monospace;
  --font-body:        'DM Sans', 'Helvetica Neue', sans-serif;

  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        32px;

  --shadow-gold:      0 0 30px var(--pyp-red-glow), 0 4px 20px rgba(0,0,0,0.6);
  --shadow-card:      0 8px 40px rgba(0,0,0,0.7);
  --shadow-inset:     inset 0 1px 0 rgba(255,255,255,0.05);

  --transition:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:  0.15s ease;
  --transition-slow:  0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- GLOBAL RESET & BASE ------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--pyp-black) !important;
  color: var(--pyp-text) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  min-height: 100vh;
  position: relative;
}

/* Fix sticky header — Storefront sets overflow-x:hidden on .site
   which creates a new scroll container and breaks position:sticky.
   `overflow-x: clip` clips visually but does NOT create a scroll
   container, so sticky still tracks the viewport. */
#page,
.site {
  overflow-x: clip !important;
}

/* Subtle racing grid pattern on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,165,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,165,0,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* ---- TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--pyp-white) !important;
  line-height: 1.05 !important;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem) !important; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem) !important; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem) !important; }
h4 { font-size: 1.3rem !important; }

p {
  color: var(--pyp-text);
  font-size: 0.95rem;
  margin-bottom: 1em;
}

a {
  color: var(--pyp-red) !important;
  text-decoration: none !important;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--pyp-gold) !important;
}

strong, b { color: var(--pyp-chrome); }

/* ---- SELECTION --------------------------------------------- */
::selection {
  background: var(--pyp-red-deep);
  color: #fff;
}

/* ---- SCROLLBAR --------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pyp-black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pyp-gold), var(--pyp-red));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--pyp-gold); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  background: rgba(8,8,8,0.97) !important;
  border-bottom: 1px solid var(--pyp-border) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  position: sticky !important;
  top: 36px !important;
  z-index: 1000 !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
  box-shadow: 0 1px 40px rgba(0,0,0,0.8);
  transition: box-shadow var(--transition);
}

/* Gold shimmer accent line at top of header */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pyp-gold), var(--pyp-red), var(--pyp-orange), var(--pyp-red), var(--pyp-gold), transparent);
  background-size: 300% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── Header 2-row grid layout ──────────────────────────────────
   Row 1: Logo (left)  |  Cart (right)
   Row 2: Navigation menu — full width
   ──────────────────────────────────────────────────────────── */

/* Top .col-full — holds logo + cart */
.site-header .col-full {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 40px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  gap: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Nav wrapper — full-bleed dark strip below logo row */
.storefront-primary-navigation {
  width: 100% !important;
  background: rgba(8,8,8,0.6) !important;
  border-top: 1px solid var(--pyp-border) !important;
}

/* Nav inner col-full — just the nav, no cart */
.storefront-primary-navigation .col-full {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 8px 40px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  gap: 0 !important;
}

/* Hide cart from nav row — it lives in the top logo row */
.storefront-primary-navigation .site-header-cart {
  display: none !important;
}

/* Hide ONLY Storefront's fallback pages div.menu (direct child of nav) */
#site-navigation > div.menu,
.main-navigation > div.menu {
  display: none !important;
}

/* Force menu to single non-wrapping line */
.main-navigation,
.main-navigation .primary-navigation {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  overflow: visible !important;
}

.main-navigation ul.nav-menu,
.main-navigation ul.menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Hide site search from header */
.site-header .site-search {
  display: none !important;
}

/* Cart pinned to far right via space-between on parent */
.site-header .col-full > .site-header-cart,
.woocommerce-active .site-header .site-header-cart {
  flex-shrink: 0 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* LOGO */
.site-header .site-branding,
.woocommerce-active .site-header .site-branding {
  flex-shrink: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Kill Storefront clearfix on .col-full that shifts logo right */
.site-header .col-full::before,
.site-header .col-full::after {
  display: none !important;
}

.site-header .site-logo img,
.site-branding img {
  height: 54px !important;
  width: auto !important;
  filter: brightness(1.1) !important;
  transition: filter var(--transition), transform var(--transition-fast) !important;
}

.site-header .site-logo img:hover,
.site-branding img:hover {
  filter: brightness(1.3) drop-shadow(0 0 12px var(--pyp-red)) !important;
  transform: scale(1.03);
}

.site-title a {
  font-family: var(--font-display) !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  background: var(--pyp-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
}

.site-description {
  font-family: var(--font-tech) !important;
  font-size: 0.6rem !important;
  color: var(--pyp-red) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
}

/* Custom logo */
.custom-logo-link {
  display: flex !important;
  align-items: center !important;
}
.custom-logo-link img,
.custom-logo-link svg,
a.custom-logo-link img {
  max-height: 64px !important;
  width: auto !important;
  max-width: 200px !important;
  filter: drop-shadow(0 0 8px rgba(240,165,0,0.3)) !important;
  transition: filter var(--transition), transform var(--transition) !important;
}
.custom-logo-link:hover img,
.custom-logo-link:hover svg {
  filter: drop-shadow(0 0 16px rgba(240,165,0,0.65)) brightness(1.1) !important;
  transform: scale(1.04) !important;
}

/* ---- NAVIGATION -------------------------------------------- */
/* Nav now lives in its own full-width row below the logo/cart row */
.main-navigation {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  flex: 1;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

/* Menu toggle button (mobile) */
.menu-toggle {
  display: none !important;
  background: transparent !important;
  border: 1px solid var(--pyp-border-gold) !important;
  color: var(--pyp-gold) !important;
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
}

.main-navigation ul {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main-navigation > div > ul {
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
}

.main-navigation li {
  position: relative;
}

.main-navigation li a {
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--pyp-white) !important;
  padding: 6px 15px !important;
  border-radius: 100px !important;
  border: none !important;
  transition: color 0.2s ease, background 0.2s ease !important;
  position: relative;
  white-space: nowrap;
  display: block;
  -webkit-text-fill-color: var(--pyp-white) !important;
}

/* No underline animation — pill hover instead */
.main-navigation li a::after { display: none !important; }

.main-navigation li a:hover {
  color: var(--pyp-white) !important;
  background: rgba(255,255,255,0.07) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
}

.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a {
  color: var(--pyp-gold) !important;
  background: rgba(240,165,0,0.13) !important;
  -webkit-text-fill-color: var(--pyp-gold) !important;
}

/* Active indicator dot */
.main-navigation li.current-menu-item > a::before,
.main-navigation li.current_page_item > a::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pyp-gold);
  opacity: 0.6;
}

/* Nav bar separator between nav and cart */
.main-navigation > div > ul > li:last-child {
  margin-right: 0;
}

/* Dropdown menus */
.main-navigation ul ul {
  flex-direction: column !important;
  position: absolute !important;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(10,10,10,0.98) !important;
  border: 1px solid var(--pyp-border-gold) !important;
  border-top: 2px solid var(--pyp-red) !important;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md) !important;
  padding: 8px !important;
  min-width: 210px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px rgba(240,165,0,0.08) !important;
  backdrop-filter: blur(20px);
  gap: 2px !important;
  z-index: 1001;
  display: none;
}

.main-navigation ul li:hover > ul {
  display: flex !important;
}

.main-navigation ul ul li a {
  font-size: 0.82rem !important;
  padding: 8px 14px !important;
  white-space: nowrap;
}

/* ---- CART ICON BUTTON ------------------------------------ */
.site-header-cart {
  position: relative;
  flex-shrink: 0;
  width: auto !important;
}

.site-header-cart .cart-contents,
.storefront-handheld-footer-bar .site-header-cart .cart-contents {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 16px 8px 13px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 100px !important;
  color: var(--pyp-chrome) !important;
  -webkit-text-fill-color: var(--pyp-chrome) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

/* Cart SVG icon */
.site-header-cart .cart-contents::before {
  content: '' !important;
  display: inline-block !important;
  width: 17px !important;
  height: 17px !important;
  flex-shrink: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d0d0d0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.site-header-cart .cart-contents:hover {
  border-color: var(--pyp-border-gold) !important;
  color: var(--pyp-gold) !important;
  -webkit-text-fill-color: var(--pyp-gold) !important;
  background: var(--pyp-red-subtle) !important;
  box-shadow: 0 0 18px rgba(240,165,0,0.2) !important;
}

.site-header-cart .cart-contents:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") !important;
}

/* Remove any ::after Storefront/WooCommerce adds on cart-contents */
.site-header-cart .cart-contents::after {
  display: none !important;
  content: none !important;
}

/* Price text inside cart */
.site-header-cart .cart-contents .amount {
  font-family: var(--font-tech) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* Item count — badge overlay */
.site-header-cart .cart-contents .count {
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  min-width: 20px !important;
  height: 20px !important;
  padding: 0 5px !important;
  background: #f0a500 !important;
  background-color: #f0a500 !important;
  opacity: 1 !important;
  border-radius: 100px !important;
  font-size: 0 !important;
  font-weight: 900 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-family: var(--font-display) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
  box-sizing: border-box !important;
  z-index: 2 !important;
  line-height: 1 !important;
  overflow: hidden !important;
}

.site-header-cart .cart-contents .count::before {
  content: attr(data-count) !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-family: var(--font-display) !important;
  line-height: 1 !important;
}

.site-header-cart .cart-contents .count::after {
  display: none !important;
}

/* ============================================================
   PAGE LAYOUT / WRAPPER
   ============================================================ */

.col-full {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  box-sizing: border-box !important;
}

.site-content {
  background: transparent !important;
  padding: 0 !important;
}

.site-main {
  background: transparent !important;
}

/* ============================================================
   HERO / HOMEPAGE BANNER
   ============================================================ */

/* If user uses homepage template or first section */
.type-page.home-page-header,
.page-template-template-homepage > .site-main > article > .entry-content > *:first-child {
  position: relative;
}

/* Custom hero section styles (for Elementor / custom blocks) */
.pyp-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--pyp-black);
}

.pyp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(240,165,0,0.10) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0,0,0,0.8) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Diagonal red stripe accent ----------------------------- */
.pyp-diagonal-stripe {
  position: absolute;
  top: 0; right: -100px;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(240,165,0,0.06) 50%, transparent 70%);
  transform: skewX(-10deg);
  pointer-events: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */

section,
.site-main > * + * {
  position: relative;
}

/* Section separator lines */
.wp-block-separator,
hr {
  border: none !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--pyp-border), transparent) !important;
  margin: 48px 0 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

button:not(.lg-next):not(.lg-prev):not(.lg-close):not(.lg-icon):not(.lg-thumb-outer):not(.pswp__button):not([class^="pswp"]),
.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button__link,
a.button,
.added_to_cart {
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

/* PRIMARY button */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .checkout-button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"],
.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 20px rgba(240,165,0,0.35) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .cart .button:hover,
.woocommerce .checkout-button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--pyp-grad-h) !important;
  box-shadow: 0 6px 30px rgba(240,165,0,0.55), 0 0 0 1px rgba(240,165,0,0.3) !important;
  transform: translateY(-2px) !important;
  color: #0a0a0a !important;
}

/* Button shimmer effect */
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce a.button.alt::before,
.wp-block-button__link::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.woocommerce a.button:hover::before,
.woocommerce button.button:hover::before,
.woocommerce a.button.alt:hover::before,
.wp-block-button__link:hover::before {
  left: 150%;
}

/* ── Reset global button styles inside lightGallery & PhotoSwipe ── */
.lg-outer button,
.lg-outer input[type="button"],
.lg-container button,
.lg-container input[type="button"],
.pswp button,
.pswp__button,
.pswp__ui button {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: visible !important;
  transition: none !important;
  margin-top: 0 !important;
}

/* SECONDARY / outline button */
.woocommerce a.button.secondary,
a.button.secondary,
.added_to_cart {
  background: transparent !important;
  color: var(--pyp-red) !important;
  border: 1px solid var(--pyp-border-gold) !important;
  box-shadow: none !important;
}

.woocommerce a.button.secondary:hover,
a.button.secondary:hover,
.added_to_cart:hover {
  background: var(--pyp-red-subtle) !important;
  box-shadow: 0 0 20px var(--pyp-red-glow) !important;
  transform: translateY(-2px) !important;
  color: var(--pyp-gold) !important;
}

/* ============================================================
   FORMS & INPUTS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select,
.select2-container .select2-selection {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  color: var(--pyp-white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
  outline: none !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: var(--pyp-red) !important;
  box-shadow: 0 0 0 3px var(--pyp-red-glow) !important;
  background: var(--pyp-dark3) !important;
}

a:focus,
a:focus-visible,
a:focus-within,
button:focus,
button:focus-visible,
*:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}

a:focus-visible {
  outline: none !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(160,160,160,0.5) !important;
}

label {
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--pyp-silver) !important;
  font-weight: 700 !important;
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   WOOCOMMERCE — SHOP / PRODUCT ARCHIVE
   ============================================================ */

/* Shop title */
.woocommerce-products-header__title,
.page-title,
.woocommerce-page h1.page-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  text-transform: uppercase !important;
  color: var(--pyp-white) !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-shadow: 0 2px 30px rgba(240,165,0,0.25);
}
.woocommerce-products-header__title::after,
.page-title::after,
.woocommerce-page h1.page-title::after {
  content: '' !important;
  display: block !important;
  width: 60px !important;
  height: 3px !important;
  background: var(--pyp-red) !important;
  border-radius: 2px !important;
  margin-top: 12px !important;
  box-shadow: 0 0 12px var(--pyp-red-glow) !important;
}

/* Shop toolbar bar */
.storefront-sorting {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  padding: 12px 20px !important;
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 32px !important;
  flex-wrap: wrap !important;
}

@media (max-width: 640px) {
  .storefront-sorting {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 12px 14px !important;
  }

  .woocommerce-ordering {
    width: 100% !important;
  }

  .woocommerce-ordering select {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .woocommerce .woocommerce-result-count {
    text-align: left !important;
    flex: none !important;
  }

  .storefront-sorting .woocommerce-pagination {
    width: 100% !important;
  }

  .storefront-sorting .woocommerce-pagination ul {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
}

.storefront-sorting .woocommerce-notices-wrapper {
  display: none !important;
}

/* Result count — centered, white */
.woocommerce .woocommerce-result-count {
  color: var(--pyp-white) !important;
  font-size: 0.82rem !important;
  font-family: var(--font-body) !important;
  margin: 0 !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
  opacity: 0.7 !important;
  flex: 1 !important;
  text-align: center !important;
}

/* Product ordering dropdown */
.woocommerce-ordering {
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.woocommerce-ordering select,
.woocommerce form .form-row select {
  background: var(--pyp-dark3) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--pyp-white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  padding: 7px 32px 7px 12px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a0a0a0'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 10px !important;
  cursor: pointer !important;
  transition: border-color 0.2s !important;
  outline: none !important;
  min-width: 160px !important;
}

.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus {
  border-color: var(--pyp-border-gold) !important;
}

/* Product pages — kill entry-content width cap */
body.woocommerce #primary,
body.woocommerce-page #primary,
body.tax-product_cat #primary,
body.post-type-archive-product #primary {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}

body.woocommerce .woocommerce,
body.woocommerce-page .woocommerce {
  width: 100% !important;
  max-width: none !important;
}

/* Kill Storefront clearfix pseudo-elements — break grid layout */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
  display: none !important;
}

/* Kill Storefront float layout on product items — let grid control sizing */
.woocommerce ul.products li.product,
.site-main ul.products li.product,
.site-main ul.products.columns-3 li.product,
ul.products li.product {
  width: auto !important;
  float: none !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  clear: none !important;
}

/* Hide blank/empty li injected by WooCommerce */
.woocommerce ul.products li:empty,
.woocommerce ul.products li:not(.product),
.woocommerce ul.products li.product-category {
  display: none !important;
}

/* ---- PRODUCT GRID ------------------------------------------ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  width: 100% !important;
}
@media (max-width: 900px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARD  —  Full-bleed image + glass info panel
   ══════════════════════════════════════════════════════════════ */

/*
  WooCommerce loop markup:
    li.product
      a.woocommerce-loop-product__link   ← image + h2 inside
        img
        h2.woocommerce-loop-product__title
      span.price
      a.button.add_to_cart_button

  Strategy: li = position:relative / aspect-ratio 3:4 / overflow:hidden.
  Every child becomes position:absolute.
  Info row (h2 + price) is always visible at bottom.
  Button slides up from below on hover.
*/

.woocommerce ul.products li.product {
  background: var(--pyp-dark3) !important;
  border: none !important;
  border-radius: 16px !important;
  overflow: visible !important;
  position: relative !important;
  display: block !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06) !important;
  cursor: pointer;
  aspect-ratio: 3 / 3.5 !important;
  /* Force GPU layer — fixes blurry rounded-corner edges */
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease !important;
}

.woocommerce ul.products li.product::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 16px !important;
  box-shadow:
    inset 0 0 0 4px rgba(240,165,0,0.35),
    inset 0 0 8px 2px rgba(0,0,0,0.4) !important;
  z-index: 10 !important;
  pointer-events: none !important;
  transition: box-shadow 0.4s ease !important;
}

.woocommerce ul.products li.product:hover::before {
  box-shadow:
    inset 0 0 0 6px rgba(240,165,0,0.65),
    inset 0 0 20px 6px rgba(240,165,0,0.18) !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateZ(0) !important;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.6),
    inset 0 0 0 6px rgba(240,165,0,0.6),
    inset 0 0 18px 6px rgba(240,165,0,0.12) !important;
}

/* ── Image link — fills the whole card ──────────────────── */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: var(--pyp-dark3) !important;
  aspect-ratio: unset !important;
  z-index: 1 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1) !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
  transform: scale(1.09) !important;
}

/* Warm glow overlay — invisible by default, glows on hover */
.woocommerce ul.products li.product .woocommerce-loop-product__link::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(240, 130, 0, 0.18) !important;
  pointer-events: none !important;
  z-index: 3 !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__link::before {
  opacity: 1 !important;
}

/* Dark scrim — light at top, heavy at bottom */
.woocommerce ul.products li.product .woocommerce-loop-product__link::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    transparent    35%,
    rgba(4,4,4,0.5) 62%,
    rgba(4,4,4,0.88) 82%,
    rgba(4,4,4,0.97) 100%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Title (inside the link, drawn on top of the scrim) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  position: absolute !important;
  bottom: 44px !important;           /* sits above price zone */
  left: 0 !important;
  right: 0 !important;
  z-index: 3 !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #fff !important;
  line-height: 1.2 !important;
  padding: 0 16px 4px !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85) !important;
  transition: color 0.2s ease,
              bottom 0.32s cubic-bezier(0.4,0,0.2,1) !important;
  /* 2-line clamp */
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
  color: var(--pyp-gold) !important;
  bottom: 88px !important;           /* shift up when button slides in */
}

/* ── Price — absolute, just above button ────────────────── */
.woocommerce ul.products li.product .price {
  position: absolute !important;
  bottom: 14px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 4 !important;
  font-family: var(--font-tech) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--pyp-gold) !important;
  padding: 0 16px !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7) !important;
  transition: bottom 0.32s cubic-bezier(0.4,0,0.2,1) !important;
}

.woocommerce ul.products li.product:hover .price {
  bottom: 58px !important;           /* shift up when button slides in */
}

.woocommerce ul.products li.product .price del {
  color: #ffffff !important;
  font-size: 0.76em !important;
  margin-right: 5px !important;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
  color: var(--pyp-gold) !important;
}

/* ── Add to Cart — slides up from below on hover ─────────── */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .add_to_cart_button {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 11 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100% !important;
  text-align: center !important;
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 15px 20px !important;
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  transform: translateY(8px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border-radius: 0 0 16px 16px !important;
  clip-path: inset(0 0 100% 0 round 0 0 16px 16px) !important;
  transition: clip-path 0.32s cubic-bezier(0.4,0,0.2,1), transform 0.32s cubic-bezier(0.4,0,0.2,1), gap 0.3s ease, letter-spacing 0.3s ease !important;
  box-sizing: border-box !important;
}

.woocommerce ul.products li.product .button.add_to_cart_button::before,
.woocommerce ul.products li.product .add_to_cart_button::before {
  content: '' !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  transition: none !important;
  background: none !important;
  display: inline-block !important;
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Hover: spread icon from text via gap + letter-spacing on button */
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product .button.add_to_cart_button:hover {
  gap: 16px !important;
  letter-spacing: 0.24em !important;
}

.woocommerce ul.products li.product:hover .button.add_to_cart_button,
.woocommerce ul.products li.product:hover .add_to_cart_button {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  clip-path: inset(0 round 0 0 16px 16px) !important;
}

/* Cancel shimmer hover animation on card button */
.woocommerce ul.products li.product:hover .button.add_to_cart_button::before,
.woocommerce ul.products li.product:hover .add_to_cart_button::before {
  left: auto !important;
}



/* ── Category badge ──────────────────────────────────────── */
.pyp-cat-badge,
.woocommerce ul.products li.product .category-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(6,6,6,0.72) !important;
  color: var(--pyp-gold) !important;
  font-family: var(--font-display) !important;
  font-size: 0.58rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  padding: 4px 10px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(240,165,0,0.28) !important;
  z-index: 6 !important;
}

/* ONSALE badge */
.woocommerce span.onsale {
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  border-radius: 999px !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em !important;
  padding: 5px 14px !important;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 1 !important;
  border: none !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 12px rgba(240,165,0,0.45) !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 10 !important;
  white-space: nowrap !important;
}

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
   ============================================================ */

/* Reposition onsale badge inside gallery corner, not centered on edge */
.single-product .woocommerce-product-gallery {
  position: relative !important;
}
/* After JS moves badge into gallery */
.single-product .woocommerce-product-gallery span.onsale {
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  right: auto !important;
  bottom: auto !important;
}
/* Before JS runs / fallback: badge is direct child of div.product grid */
.single-product div.product > span.onsale {
  position: absolute !important;
  top: 16px !important;
  left: 25% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  bottom: auto !important;
}

.single-product .woocommerce-product-gallery {
  border-radius: var(--radius-lg) !important;
  overflow: visible !important;
  border: 1px solid var(--pyp-border) !important;
  background: var(--pyp-dark2) !important;
  box-shadow: var(--shadow-card) !important;
  margin-bottom: 0 !important;
}


/* Decorative "+" icon — bottom-right of single product gallery */
.pyp-gallery-plus {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pyp-gold);
  color: #0a0a0a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 2px 14px rgba(240,165,0,0.5);
  display: block;
  user-select: none;
}

/* Disable WooCommerce hover zoom (prevents blurry zoomed image on hover) */
.woocommerce-product-gallery .zoomImg {
  display: none !important;
}
.woocommerce-product-gallery figure.images {
  cursor: default !important;
}
.single-product .woocommerce-product-gallery .flex-viewport {
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
  background: var(--pyp-dark2) !important;
  margin-bottom: 0 !important;
}
.single-product .woocommerce-product-gallery .flex-viewport img,
.single-product .woocommerce-product-gallery__image img,
.single-product .woocommerce-product-gallery .wp-post-image {
  width: 100% !important;
  height: auto !important;
  max-height: 480px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: var(--pyp-dark2) !important;
  border-radius: var(--radius-md) !important;
}

.single-product .product_title {
  font-size: clamp(1.6rem, 3vw, 2.6rem) !important;
  line-height: 1.05 !important;
  margin-bottom: 6px !important;
  margin-top: 0 !important;
  position: relative !important;
}
.single-product .product_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pyp-red);
  border-radius: 2px;
  margin-top: 12px;
  box-shadow: 0 0 12px var(--pyp-red-glow);
}

.single-product .woocommerce-product-details__short-description {
  color: var(--pyp-text) !important;
  font-size: 0.88rem !important;
  border-left: 3px solid var(--pyp-red) !important;
  margin: 10px 0 !important;
  background: var(--pyp-red-subtle) !important;
  padding: 10px 12px 10px 16px !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}
.single-product .woocommerce-product-details__short-description *,
.single-product .woocommerce-product-details__short-description p,
.single-product .woocommerce-product-details__short-description span,
.single-product .woocommerce-product-details__short-description strong,
.single-product .woocommerce-product-details__short-description em {
  color: var(--pyp-text) !important;
}
.single-product .woocommerce-product-details__short-description p {
  margin-bottom: 0 !important;
}
.single-product .woocommerce-product-details__short-description h1,
.single-product .woocommerce-product-details__short-description h2,
.single-product .woocommerce-product-details__short-description h3,
.single-product .woocommerce-product-details__short-description h4,
.single-product .woocommerce-product-details__short-description h5,
.single-product .woocommerce-product-details__short-description h6 {
  margin: 0 !important;
}

/* Price on single product */
.single-product p.price,
.woocommerce div.product p.price {
  font-family: var(--font-tech) !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  background: var(--pyp-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none;
  margin: 6px 0 10px !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}
/* Struck-through original price */
.single-product p.price del,
.woocommerce div.product p.price del {
  font-size: 1.1rem !important;
  opacity: 0.45 !important;
  font-weight: 400 !important;
  background: none !important;
  -webkit-text-fill-color: var(--pyp-chrome) !important;
  color: var(--pyp-chrome) !important;
}
/* Current / sale price */
.single-product p.price ins,
.woocommerce div.product p.price ins {
  text-decoration: none !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
}

/* Cart form — compact, no heavy box */
.woocommerce form.cart {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin-top: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  justify-content: space-between !important;
}
.woocommerce form.cart .single_add_to_cart_button {
  flex: 0 0 auto !important;
  margin: 0 !important;
}
.single-product div.product form.cart::before,
.single-product div.product form.cart::after {
  display: none !important;
  content: none !important;
}

/* Quantity input */
.woocommerce .quantity .qty {
  background: var(--pyp-dark3) !important;
  border: 1px solid var(--pyp-border) !important;
  color: var(--pyp-white) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 1rem !important;
  width: 70px !important;
  text-align: center !important;
  padding: 12px !important;
}

/* Product tabs */
.woocommerce-tabs {
  margin-top: 0 !important;
  padding-top: 28px !important;
  padding-bottom: 0 !important;
  border-top: 1px solid var(--pyp-border-gold) !important;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--pyp-border) !important;
  padding: 0 !important;
  margin: 0 0 30px !important;
  display: flex;
  align-items: stretch;
  gap: 4px;
  list-style: none;
}

.woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce-tabs ul.tabs li a {
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--pyp-silver) !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
  border: 1px solid transparent !important;
  border-bottom: none !important;
  transition: all var(--transition) !important;
  display: flex !important;
  flex: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
  color: var(--pyp-white) !important;
  background: var(--pyp-dark2) !important;
  border-color: var(--pyp-border) !important;
  border-bottom-color: var(--pyp-dark2) !important;
}

.woocommerce-tabs ul.tabs li.active a {
  border-top: 2px solid var(--pyp-red) !important;
}
/* Hide toggle arrow on tab labels */
.woocommerce-tabs ul.tabs li a::after,
.woocommerce-tabs ul.tabs li a::before,
.woocommerce-tabs ul.tabs li::after,
.woocommerce-tabs ul.tabs li::before {
  display: none !important;
  content: none !important;
}
.woocommerce-tabs ul.tabs li a .toggle,
.woocommerce-tabs ul.tabs li .toggle {
  display: none !important;
}

.woocommerce-tabs .panel {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md) !important;
  padding: 24px 28px !important;
  color: var(--pyp-text) !important;
  width: calc(50% - 18px) !important;
  float: none !important;
  box-sizing: border-box !important;
}

/* ---- Reviews panel ---- */
#tab-reviews #reviews {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}
#tab-reviews #reviews #comments h2 {
  display: none !important;
}
/* No-reviews message */
#tab-reviews #reviews #comments .woocommerce-noreviews,
#tab-reviews .woocommerce-info,
#tab-reviews .woocommerce-message {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--pyp-silver) !important;
  font-size: 0.9rem !important;
}
#tab-reviews #reviews #comments .woocommerce-noreviews::before {
  display: none !important;
}
/* Remove box-in-box from form wrapper */
#tab-reviews #reviews #review_form_wrapper {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
/* Kill Storefront's huge #respond padding */
#tab-reviews #reviews #respond.comment-respond {
  padding: 0 !important;
}
/* Divider between reviews list and form */
#tab-reviews #reviews #review_form_wrapper {
  border-top: 1px solid var(--pyp-border) !important;
  padding-top: 14px !important;
  width: 100% !important;
}
/* Hide clutter */
#review_form_wrapper #reply-title,
#review_form .comment-notes,
#review_form .comment-form-cookies-consent {
  display: none !important;
}
/* Form layout */
#review_form .comment-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
/* Rating + textarea full width; name+email side by side */
#review_form .comment-form-author,
#review_form .comment-form-email {
  flex: 1 !important;
}
#review_form .comment-form-author,
#review_form .comment-form-email {
  min-width: 0 !important;
}
/* Row for name + email */
#review_form .comment-form-author ~ .comment-form-email {
  margin-top: 0 !important;
}
/* Wrap name + email in a flex row via adjacent sibling — use a wrapper approach */
/* Strip default <p> margins from form fields */
#review_form .comment-form p {
  margin: 0 !important;
  padding: 0 !important;
}
/* Labels — contact-form style */
#review_form .comment-form label {
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--pyp-silver) !important;
  margin-bottom: 4px !important;
}
/* Inputs — contact-form style */
#review_form .comment-form input[type="text"],
#review_form .comment-form input[type="email"],
#review_form .comment-form textarea {
  width: 100% !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--pyp-white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 7px 12px !important;
  box-sizing: border-box !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
  outline: none !important;
}
#review_form .comment-form input[type="text"]:focus,
#review_form .comment-form input[type="email"]:focus,
#review_form .comment-form textarea:focus {
  border-color: rgba(240,165,0,0.5) !important;
  box-shadow: 0 0 0 3px rgba(240,165,0,0.07) !important;
  background: rgba(255,255,255,0.07) !important;
}
#review_form .comment-form textarea {
  min-height: 80px !important;
  resize: vertical !important;
}
/* Name + email side by side */
#review_form .comment-form-author,
#review_form .comment-form-email {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
/* Use a sub-grid for the name+email row */
#review_form .comment-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}
#review_form .comment-form .comment-form-rating,
#review_form .comment-form .comment-form-comment,
#review_form .comment-form .form-submit {
  grid-column: 1 / -1 !important;
}
/* Submit button — full width, gold gradient */
#review_form .comment-form .form-submit {
  margin: 0 !important;
  margin-top: 8px !important;
}
#review_form .comment-form .form-submit #submit {
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 10px 32px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background var(--transition), transform var(--transition) !important;
}
#review_form .comment-form .form-submit #submit:hover {
  background: var(--pyp-grad-h) !important;
  transform: translateY(-1px) !important;
}
/* Star rating */
.woocommerce .comment-form-rating .stars a {
  color: var(--pyp-gold) !important;
}
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: var(--pyp-gold) !important;
}

.woocommerce-tabs .panel h2 {
  font-size: 1.1rem !important;
  margin-bottom: 16px !important;
  display: none !important;
}

/* Force light text in description — overrides inline color="#000000" from editor */
.woocommerce-tabs .panel *,
.woocommerce-tabs .panel p,
.woocommerce-tabs .panel span,
.woocommerce-tabs .panel strong,
.woocommerce-tabs .panel em {
  color: var(--pyp-text) !important;
}

.woocommerce-tabs .panel ul,
.woocommerce-tabs .panel ol {
  color: var(--pyp-text);
  padding-left: 20px;
}

.woocommerce-tabs .panel ul li {
  margin-bottom: 8px;
  position: relative;
}

.woocommerce-tabs .panel ul li::marker {
  color: var(--pyp-red);
}

/* Attributes / variations table */
.woocommerce-product-attributes {
  width: 100% !important;
  border-collapse: collapse !important;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  border: 1px solid var(--pyp-border) !important;
  padding: 12px 16px !important;
  font-size: 0.88rem !important;
}

.woocommerce-product-attributes th {
  background: var(--pyp-dark3) !important;
  color: var(--pyp-chrome) !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  width: 180px;
}

.woocommerce-product-attributes td {
  color: var(--pyp-text) !important;
}

/* Variation selector */
.woocommerce-variation-add-to-cart .variations {
  width: 100%;
}

.woocommerce-variation-add-to-cart .variations tr td {
  padding: 8px 0 !important;
}

.woocommerce div.product form.cart .variations select {
  background: var(--pyp-dark3) !important;
  border: 1px solid var(--pyp-border) !important;
  color: var(--pyp-white) !important;
  min-width: 200px;
}

/* Gallery thumbs */
.woocommerce-product-gallery .flex-viewport {
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

/* Kill the FlexSlider clearfix that pushes thumbs to the right */
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs::before,
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs::after {
  content: none !important;
  display: none !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li {
  border-radius: var(--radius-sm) !important;
  overflow: hidden !important;
  transition: all var(--transition) !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li img {
  border-radius: var(--radius-sm) !important;
  opacity: 0.6 !important;
  transition: opacity var(--transition) !important;
  border: 2px solid transparent !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li img:hover,
.woocommerce-product-gallery ol.flex-control-thumbs li img.flex-active {
  opacity: 1 !important;
  border-color: var(--pyp-red) !important;
}

/* Product page breadcrumb */
.woocommerce-breadcrumb,
.storefront-breadcrumb {
  font-size: 0.78rem !important;
  color: var(--pyp-chrome) !important;
  padding: 12px 0 !important;
  background: transparent !important;
  border: none !important;
  margin-bottom: 0 !important;
}
.woocommerce-breadcrumb a,
.storefront-breadcrumb a {
  color: var(--pyp-chrome) !important;
  text-decoration: none !important;
  transition: color var(--transition) !important;
}
.woocommerce-breadcrumb a:hover,
.storefront-breadcrumb a:hover {
  color: var(--pyp-gold) !important;
}
.woocommerce-breadcrumb .separator {
  color: rgba(255,255,255,0.25) !important;
  margin: 0 6px !important;
}

/* Modern two-column grid for product hero */
.single-product div.product,
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto !important;
  column-gap: 36px !important;
  row-gap: 16px !important;
  align-items: start !important;
  overflow: visible !important;
}
.single-product div.product .woocommerce-product-gallery,
.woocommerce div.product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}
.single-product div.product .summary,
.woocommerce div.product .summary {
  width: 100% !important;
  float: none !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
}
.single-product div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
}
.single-product div.product .related.products,
.single-product div.product .up-sells.products,
.woocommerce div.product .related.products,
.woocommerce div.product .up-sells.products {
  grid-column: 1 / -1 !important;
}
@media (max-width: 768px) {
  .single-product div.product,
  .woocommerce div.product {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .single-product div.product .summary,
  .woocommerce div.product .summary {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-bottom: 0 !important;
  }
  .woocommerce-tabs .panel {
    width: 100% !important;
  }
}

/* Add-to-cart CTA button — the big gold one */
.single-product .single_add_to_cart_button,
.single-product button.alt,
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product button.alt {
  background: var(--pyp-grad) !important;
  background-color: transparent !important;
  color: #0a0a0a !important;
  border: none !important;
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 11px 24px !important;
  border-radius: var(--radius-sm) !important;
  width: auto !important;
  cursor: pointer !important;
  transition: opacity var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 4px 20px rgba(240,165,0,0.35) !important;
  margin-top: 0 !important;
}
.single-product .single_add_to_cart_button:hover,
.single-product button.alt:hover,
.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce div.product button.alt:hover {
  opacity: 0.88 !important;
  box-shadow: 0 6px 28px rgba(240,165,0,0.55) !important;
  color: #0a0a0a !important;
}
.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button.loading {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* QTY +/- buttons */
.woocommerce .quantity {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.woocommerce .quantity input.qty {
  height: 36px !important;
  width: 52px !important;
  text-align: center !important;
  background: var(--pyp-dark3) !important;
  border: 1px solid var(--pyp-border) !important;
  color: var(--pyp-white) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0 !important;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.pyp-qty-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  background: var(--pyp-dark3) !important;
  border: 1px solid var(--pyp-border-gold) !important;
  color: var(--pyp-gold) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  line-height: 36px !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
  transition: background var(--transition-fast), border-color var(--transition-fast) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  font-family: Arial, sans-serif !important;
  flex-shrink: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.pyp-qty-btn:hover {
  background: rgba(240,165,0,0.15) !important;
  border-color: var(--pyp-gold) !important;
  color: var(--pyp-gold) !important;
}
.pyp-qty-btn:active {
  transform: scale(0.92) !important;
}

/* Product meta (SKU, categories, tags) */
.woocommerce div.product .product_meta {
  margin-top: 12px !important;
  padding-top: 12px !important;
  border-top: 1px solid var(--pyp-border) !important;
  font-size: 0.78rem !important;
}
.woocommerce div.product .product_meta span.sku_wrapper,
.woocommerce div.product .product_meta span.posted_in,
.woocommerce div.product .product_meta span.tagged_as {
  display: block !important;
  margin-bottom: 6px !important;
  color: var(--pyp-chrome) !important;
}
.woocommerce div.product .product_meta span.sku_wrapper .sku {
  color: var(--pyp-text) !important;
  font-family: var(--font-tech) !important;
  font-size: 0.78rem !important;
}
.woocommerce div.product .product_meta a {
  color: var(--pyp-gold) !important;
  text-decoration: none !important;
  transition: color var(--transition) !important;
}
.woocommerce div.product .product_meta a:hover {
  color: var(--pyp-white) !important;
}

/* Short description border — use gold accent instead of red */
.single-product .woocommerce-product-details__short-description {
  border-left-color: var(--pyp-red) !important;
  background: var(--pyp-red-subtle) !important;
}

/* Variation price display */
.woocommerce-variation-price .price {
  font-family: var(--font-tech) !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  background: var(--pyp-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Related and upsells section */
.single-product .related.products,
.single-product .up-sells.products {
  padding-top: 28px !important;
  margin-top: 48px !important;
  position: relative !important;
}
.single-product .related.products::before,
.single-product .up-sells.products::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240,165,0,0.15) 15%,
    rgba(240,165,0,0.55) 40%,
    var(--pyp-red) 50%,
    rgba(240,165,0,0.55) 60%,
    rgba(240,165,0,0.15) 85%,
    transparent 100%
  ) !important;
}
.single-product .related.products > h2,
.single-product .up-sells.products > h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--pyp-white) !important;
  padding-bottom: 16px !important;
  margin-bottom: 32px !important;
  border-bottom: none !important;
  position: relative !important;
}
.single-product .related.products > h2::after,
.single-product .up-sells.products > h2::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: var(--pyp-grad) !important;
  opacity: 0.7 !important;
}

/* Notices on product page */
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .woocommerce-info {
  border-top-color: var(--pyp-red) !important;
  background: var(--pyp-dark2) !important;
  color: var(--pyp-text) !important;
}

/* Storefront sticky add-to-cart bar */
.storefront-sticky-add-to-cart {
  background: var(--pyp-dark3) !important;
  border-top: 2px solid var(--pyp-red) !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5) !important;
}
.storefront-sticky-add-to-cart a.button {
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border: none !important;
}
.storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-product-title {
  color: var(--pyp-white) !important;
  font-family: var(--font-display) !important;
}
.storefront-sticky-add-to-cart .storefront-sticky-add-to-cart__content-product-price .price {
  color: var(--pyp-gold) !important;
}

/* ============================================================
   WOOCOMMERCE — CART PAGE
   ============================================================ */

.woocommerce-cart .woocommerce-cart-form {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
  box-shadow: var(--shadow-card) !important;
}

.woocommerce table.shop_table {
  border-collapse: collapse !important;
  width: 100% !important;
  background: transparent !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
}

.woocommerce table.shop_table thead tr th {
  background: var(--pyp-dark3) !important;
  border-bottom: 2px solid var(--pyp-red) !important;
  color: var(--pyp-chrome) !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.8rem !important;
  padding: 16px 20px !important;
}

.woocommerce table.shop_table tbody tr td {
  border-bottom: 1px solid var(--pyp-border) !important;
  background: transparent !important;
  color: var(--pyp-text) !important;
  padding: 20px !important;
  vertical-align: middle !important;
}

.woocommerce table.shop_table tbody tr:last-child td {
  border-bottom: none !important;
}

.woocommerce table.shop_table tbody tr:hover td {
  background: rgba(255,255,255,0.02) !important;
}

/* Cart totals */
.cart-collaterals .cart_totals {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
  border-top: 3px solid var(--pyp-red) !important;
}

.cart_totals h2 {
  font-size: 1.4rem !important;
  margin-bottom: 24px !important;
}

.woocommerce table.shop_table tfoot tr th,
.woocommerce table.shop_table tfoot tr td {
  background: var(--pyp-dark3) !important;
  color: var(--pyp-chrome) !important;
  border-top: 1px solid var(--pyp-border) !important;
  padding: 16px 20px !important;
  font-size: 0.9rem !important;
}

.woocommerce table.shop_table tfoot .order-total th,
.woocommerce table.shop_table tfoot .order-total td {
  border-top: 2px solid var(--pyp-red) !important;
  color: var(--pyp-white) !important;
  font-size: 1.1rem !important;
}

.woocommerce table.shop_table tfoot .order-total td .amount {
  font-family: var(--font-tech) !important;
  color: var(--pyp-red) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
}

/* ============================================================
   WOOCOMMERCE — CHECKOUT
   ============================================================ */

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 32px !important;
}

.woocommerce-checkout #order_review_heading {
  font-size: 1.3rem !important;
  margin-bottom: 20px !important;
}

.woocommerce #payment {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-lg) !important;
  border-top: 3px solid var(--pyp-red) !important;
}

.woocommerce #payment ul.payment_methods {
  border-bottom: 1px solid var(--pyp-border) !important;
  padding: 20px !important;
}

.woocommerce #payment ul.payment_methods li {
  color: var(--pyp-text) !important;
}

.woocommerce #payment div.payment_box {
  background: var(--pyp-dark3) !important;
  color: var(--pyp-text) !important;
  border-radius: var(--radius-sm) !important;
}

/* ============================================================
   WIDGET AREAS & SIDEBAR
   ============================================================ */

.widget-area {
  background: transparent !important;
}

.widget {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
  box-shadow: var(--shadow-card) !important;
  border-top: 2px solid var(--pyp-red) !important;
}

.widget-title,
.widgettitle {
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: var(--pyp-red) !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--pyp-border) !important;
}

.widget ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.widget ul li {
  border-bottom: 1px solid var(--pyp-border) !important;
  padding: 8px 0 !important;
  font-size: 0.88rem !important;
}

.widget ul li:last-child { border-bottom: none !important; }

.widget ul li a {
  color: var(--pyp-text) !important;
  transition: color var(--transition-fast), padding var(--transition-fast) !important;
}

.widget ul li a:hover {
  color: var(--pyp-red) !important;
  padding-left: 6px !important;
}

/* Price filter */
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--pyp-dark3) !important;
}

.widget_price_filter .ui-slider-range {
  background: var(--pyp-red) !important;
}

.widget_price_filter .ui-slider-handle {
  background: var(--pyp-red) !important;
  border-color: var(--pyp-red) !important;
  box-shadow: 0 0 8px var(--pyp-red-glow) !important;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.storefront-breadcrumb {
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-breadcrumb,
.yoast-breadcrumb {
  background: var(--pyp-dark2) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.78rem !important;
  color: var(--pyp-silver) !important;
  margin: 0 0 16px !important;
  border-left: 3px solid var(--pyp-red) !important;
}

.woocommerce-breadcrumb a {
  color: var(--pyp-silver) !important;
}

.woocommerce-breadcrumb a:hover {
  color: var(--pyp-red) !important;
}

/* ============================================================
   WOOCOMMERCE — NOTICES & MESSAGES
   ============================================================ */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-md) !important;
  padding: 16px 20px !important;
  background: var(--pyp-dark2) !important;
  font-size: 0.88rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}

.woocommerce-message {
  border-left: 4px solid #22c55e !important;
  color: #4ade80 !important;
}

.woocommerce-error {
  border-left: 4px solid var(--pyp-red) !important;
  color: #ff6b6b !important;
}

.woocommerce-info {
  border-left: 4px solid #3b82f6 !important;
  color: #93c5fd !important;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--pyp-dark) !important;
  border-top: 1px solid var(--pyp-border) !important;
  color: var(--pyp-silver) !important;
  margin-top: 80px !important;
  position: relative;
  overflow: hidden;
}

/* Gold gradient stripe at top of footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pyp-grad);
}

.site-footer .col-full {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.site-footer .widget-area {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}

.site-footer .widget {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-top: none !important;
}

.site-footer .widget-title,
.site-footer .widgettitle {
  font-size: 0.75rem !important;
  color: var(--pyp-red) !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid var(--pyp-border) !important;
  padding-bottom: 10px !important;
}

.site-footer p,
.site-footer .widget ul li {
  font-size: 0.83rem !important;
  color: var(--pyp-silver) !important;
}

.site-footer .widget ul li {
  border-bottom-color: rgba(255,255,255,0.04) !important;
  padding: 6px 0 !important;
}

.site-footer a {
  color: var(--pyp-white) !important;
}

.site-footer a:hover {
  color: var(--pyp-red) !important;
}

/* Footer bottom bar — ascuns */
.site-info {
  display: none !important;
}

/* WooCommerce search widget — ascuns */
.widget_product_search,
.woocommerce-product-search,
.widget.woocommerce.widget_product_search {
  display: none !important;
}

/* ============================================================
   PAGES — ABOUT / CONTACT / etc.
   ============================================================ */

.entry-header {
  padding: 0 0 24px !important;
  border-bottom: 1px solid var(--pyp-border) !important;
  margin-bottom: 32px !important;
}

.entry-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  position: relative !important;
}

/* Red underline on entry title */
.entry-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pyp-red);
  border-radius: 2px;
  margin-top: 12px;
  box-shadow: 0 0 12px var(--pyp-red-glow);
}

.hentry {
  margin-bottom: 0 !important;
}

.entry-content {
  color: var(--pyp-text) !important;
  max-width: none;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 40px !important;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.entry-content ul li {
  margin-bottom: 8px;
  color: var(--pyp-text);
}

.entry-content ul li::marker { color: var(--pyp-red); }

/* ============================================================
   GUTENBERG / BLOCK EDITOR OVERRIDES
   ============================================================ */

.wp-block-cover {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
}

.wp-block-cover .wp-block-cover__inner-container {
  color: var(--pyp-white) !important;
}

.wp-block-quote {
  border-left: 4px solid var(--pyp-red) !important;
  margin: 32px 0 !important;
  padding: 20px 24px !important;
  background: var(--pyp-red-subtle) !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  font-style: italic;
  color: var(--pyp-chrome) !important;
}

.wp-block-quote cite {
  color: var(--pyp-red) !important;
  font-style: normal !important;
  font-family: var(--font-display) !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

.wp-block-pullquote {
  border-top: 3px solid var(--pyp-red) !important;
  border-bottom: 3px solid var(--pyp-red) !important;
  padding: 40px 0 !important;
  text-align: center;
  color: var(--pyp-white) !important;
}

.wp-block-table table {
  border-collapse: collapse !important;
  width: 100% !important;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid var(--pyp-border) !important;
  padding: 12px 16px !important;
  color: var(--pyp-text) !important;
  background: var(--pyp-dark2) !important;
}

.wp-block-table th {
  background: var(--pyp-dark3) !important;
  color: var(--pyp-chrome) !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.82rem !important;
}

.wp-block-table tr:hover td {
  background: var(--pyp-dark2) !important;
}

/* Override Storefront white tbody cells globally */
table:not(.has-background) tbody td {
  background-color: var(--pyp-dark2) !important;
}

/* Columns */
.wp-block-columns {
  gap: 32px !important;
}

/* Buttons block */
.wp-block-buttons .wp-block-button {
  margin: 0 !important;
}

/* ============================================================
   STARRATING
   ============================================================ */

.woocommerce .star-rating span,
.woocommerce .star-rating::before {
  color: var(--pyp-gold) !important;
}

.woocommerce .star-rating {
  color: var(--pyp-gold) !important;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.woocommerce-pagination ul,
.page-numbers {
  display: flex !important;
  gap: 4px !important;
  justify-content: flex-end !important;
  align-items: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Pagination inside storefront-sorting gets no top/bottom padding */
.storefront-sorting .woocommerce-pagination ul {
  padding: 0 !important;
}

/* Standalone pagination below grid */
.woocommerce-pagination {
  padding: 0 !important;
}

.woocommerce-pagination:not(.storefront-sorting .woocommerce-pagination) ul {
  justify-content: center !important;
}

.page-numbers li .page-numbers,
.woocommerce-pagination ul .page-numbers {
  padding: 10px 16px !important;
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--pyp-silver) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
  display: block !important;
}

.page-numbers li .page-numbers:hover,
.page-numbers li .page-numbers.current {
  background: var(--pyp-red) !important;
  border-color: var(--pyp-red) !important;
  color: #fff !important;
  box-shadow: 0 0 15px var(--pyp-red-glow) !important;
}

/* ============================================================
   RELATED / UPSELL PRODUCTS
   ============================================================ */

.related,
.upsells,
.cross-sells {
  margin-top: 80px !important;
}

.related > h2,
.upsells > h2,
.cross-sells > h2 {
  font-size: 1.6rem !important;
  position: relative;
  display: inline-block;
  margin-bottom: 32px !important;
  padding-bottom: 12px !important;
}

.related > h2::after,
.upsells > h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--pyp-red);
  border-radius: 2px;
}

/* ============================================================
   CATEGORY TABS / FILTER (if using Product Filter plugin)
   ============================================================ */

/* ============================================================
   LOADING STATES
   ============================================================ */

.blockOverlay {
  background: rgba(8,8,8,0.85) !important;
  backdrop-filter: blur(4px) !important;
}

.blockUI.blockMsg {
  background: var(--pyp-dark2) !important;
  border: 1px solid var(--pyp-border) !important;
  border-radius: var(--radius-md) !important;
  color: var(--pyp-white) !important;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.pyp-tag {
  display: inline-block;
  background: var(--pyp-red-subtle);
  color: var(--pyp-red);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pyp-glow {
  text-shadow: 0 0 30px var(--pyp-red-glow);
}

.pyp-gradient-text {
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Speed line decoration */
.pyp-speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pyp-speed-lines::before {
  content: '';
  position: absolute;
  top: 50%; left: -20%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,165,0,0.3) 40%, rgba(240,165,0,0.1) 60%, transparent);
  transform: rotate(-3deg);
  box-shadow:
    0 -40px 0 rgba(240,165,0,0.05),
    0 40px 0 rgba(240,165,0,0.05),
    0 -80px 0 rgba(240,165,0,0.03),
    0 80px 0 rgba(240,165,0,0.03);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 var(--pyp-red-glow); }
  50%       { box-shadow: 0 0 20px 6px var(--pyp-red-glow); }
}

@keyframes border-glow {
  0%, 100% { border-color: rgba(240,165,0,0.2); }
  50%       { border-color: rgba(240,165,0,0.6); }
}

/* Animate products in on page load */
.woocommerce ul.products li.product {
  animation: fadeInUp 0.5s ease both;
}

.woocommerce ul.products li.product:nth-child(1) { animation-delay: 0.05s; }
.woocommerce ul.products li.product:nth-child(2) { animation-delay: 0.10s; }
.woocommerce ul.products li.product:nth-child(3) { animation-delay: 0.15s; }
.woocommerce ul.products li.product:nth-child(4) { animation-delay: 0.20s; }
.woocommerce ul.products li.product:nth-child(5) { animation-delay: 0.25s; }
.woocommerce ul.products li.product:nth-child(6) { animation-delay: 0.30s; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .site-header .col-full {
    padding: 12px 24px !important;
  }

  .col-full {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 768px) {
  .site-header .col-full {
    padding: 12px 16px !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .col-full {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .site-footer {
    margin-top: 48px !important;
  }

  .site-footer .col-full {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .woocommerce form.cart {
    padding: 16px !important;
  }

  .woocommerce-cart .woocommerce-cart-form {
    padding: 16px !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.6rem !important; }
}

/* ============================================================
   STOREFRONT SPECIFIC OVERRIDES
   ============================================================ */

/* Remove default storefront colors */
.storefront-primary-background,
#masthead,
.woocommerce-active .woocommerce-store-notice {
  background: var(--pyp-black) !important;
}

/* Storefront handheld footer bar */
.storefront-handheld-footer-bar {
  background: rgba(8,8,8,0.97) !important;
  border-top: 1px solid var(--pyp-border) !important;
  backdrop-filter: blur(20px) !important;
}

.storefront-handheld-footer-bar ul li a {
  color: var(--pyp-silver) !important;
}

.storefront-handheld-footer-bar ul li.search > a::before,
.storefront-handheld-footer-bar ul li.cart > a::before,
.storefront-handheld-footer-bar ul li.menu > a::before,
.storefront-handheld-footer-bar ul li.account > a::before {
  color: var(--pyp-silver) !important;
}

.storefront-handheld-footer-bar ul li.cart .count {
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
}

/* storefront layout adjustments */
#content {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* Storefront adds large margin-bottom on .site-header for home/shop pages — keep our 16px */
.home.blog .site-header,
.home.page:not(.page-template-template-homepage) .site-header,
.home.post-type-archive-product .site-header {
  margin-bottom: 16px !important;
}

/* Remove storefront header background color */
.storefront-primary-background {
  background-color: var(--pyp-black) !important;
}

/* Homepage widget areas */
.storefront-homepage-widget-areas {
  background: var(--pyp-black) !important;
}

.storefront-homepage-widget-areas .widget {
  background: var(--pyp-dark2) !important;
}

/* Featured products section */
section.featured-products,
section.sale-products,
section.best-selling-products,
section.top-rated-products,
section.recent-products,
section.product-category {
  padding: 60px 0 !important;
}

section.featured-products h2,
section.sale-products h2,
section.best-selling-products h2 {
  font-size: 2rem !important;
  margin-bottom: 32px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

section.featured-products h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--pyp-grad);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--pyp-red-glow);
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT CATEGORIES PAGE
   ============================================================ */

.product-category.product .woocommerce-loop-category__title {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 16px 20px !important;
  color: var(--pyp-white) !important;
}

.product-category.product .woocommerce-loop-category__title mark {
  background: transparent !important;
  color: var(--pyp-silver) !important;
  font-size: 0.75em !important;
  display: block !important;
  font-weight: 400 !important;
  margin-top: 4px;
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */

.search-results .entry-title {
  font-size: 1.4rem !important;
}

.search-no-results .page-header {
  padding: 80px 0 !important;
  text-align: center;
}

/* ============================================================
   MINI CART DROPDOWN
   ============================================================ */

.site-header-cart .widget_shopping_cart {
  background: rgba(12,12,12,0.98) !important;
  border: 1px solid var(--pyp-border) !important;
  border-top: 2px solid var(--pyp-red) !important;
  border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8) !important;
  backdrop-filter: blur(20px) !important;
  padding: 20px !important;
  min-width: 320px;
  right: 0 !important;
  left: auto !important;
  margin-top: 10px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-6px) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
}

.site-header-cart:hover .widget_shopping_cart {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
  transform: translateY(0) !important;
}

.site-header-cart .widget_shopping_cart::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--pyp-red);
}

.site-header-cart .widget_shopping_cart::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 17px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid rgba(12,12,12,0.98);
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  border-bottom: 1px solid var(--pyp-border) !important;
  padding: 12px 0 !important;
  color: var(--pyp-text) !important;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  color: var(--pyp-white) !important;
  font-size: 0.88rem !important;
}

.woocommerce ul.cart_list li .amount,
.widget_shopping_cart_content .total .amount {
  font-family: var(--font-tech) !important;
  color: var(--pyp-red) !important;
  font-weight: 700 !important;
}

.widget_shopping_cart_content .total {
  border-top: 1px solid var(--pyp-border) !important;
  padding-top: 16px !important;
  margin: 16px 0 !important;
  color: var(--pyp-chrome) !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.08em !important;
}

.widget_shopping_cart_content .buttons {
  display: flex;
  gap: 8px;
}

.widget_shopping_cart_content .buttons a {
  flex: 1 !important;
  text-align: center !important;
  padding: 10px !important;
  font-size: 0.78rem !important;
}

/* ============================================================
   PRINT — hide decorative elements
   ============================================================ */

@media print {
  body::before,
  .site-header::before,
  .site-footer::before {
    display: none;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }
}

/* ============================================================
   NO SIDEBAR — FULL WIDTH LAYOUT
   ============================================================ */

/* Force full-width on primary content */
#primary,
.content-area,
.site-main,
.pyp-no-sidebar #primary,
.pyp-no-sidebar .content-area {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

/* Hide sidebar completely */
#secondary,
.widget-area.secondary,
.pyp-no-sidebar #secondary,
.pyp-no-sidebar .widget-area {
  display: none !important;
  width: 0 !important;
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */

.pyp-top-bar {
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(240,165,0,1);
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 1002;
  backdrop-filter: blur(10px);
}

.pyp-top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pyp-top-bar-left,
.pyp-top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pyp-top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--pyp-white);
}

.pyp-top-bar-item svg {
  flex-shrink: 0;
  opacity: 1;
}

.pyp-top-bar-item a {
  color: var(--pyp-white) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
  transition: color var(--transition-fast) !important;
}

.pyp-top-bar-item a:hover {
  color: var(--pyp-gold) !important;
  -webkit-text-fill-color: var(--pyp-gold) !important;
}

.pyp-top-bar-schedule {
  font-size: 0.73rem;
  opacity: 1;
}

/* ============================================================
   HEADER REDESIGN — Tall, distinctive layout
   ============================================================ */

/* Reset storefront header height */
.site-header {
  padding: 0 !important;
}

/* Cart icon area */
.site-header-cart {
  flex-shrink: 0 !important;
  width: auto !important;
  margin: 0 !important;
}

/* ============================================================
   ABOUT PAGE — pyp-about-*
   ============================================================ */

.pyp-about-wrap {
  max-width: none;
  width: 100%;
  padding: 0 20px;
}

/* ── Hero ── */
.pyp-about-hero {
  text-align: center;
  padding: 48px 20px 44px;
  border-bottom: 1px solid var(--pyp-border);
  margin-bottom: 48px;
}

.pyp-about-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--pyp-white) !important;
  margin: 0 0 20px !important;
  line-height: 1.1 !important;
}

.pyp-gold-text {
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pyp-about-lead {
  font-size: 1.06rem !important;
  color: var(--pyp-silver) !important;
  max-width: 680px;
  margin: 0 auto 28px !important;
  line-height: 1.8 !important;
}

/* ── CTA button ── */
.pyp-about-cta-btn {
  display: inline-block;
  background: var(--pyp-grad) !important;
  color: #000 !important;
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 14px 36px !important;
  border-radius: var(--radius-sm) !important;
  text-decoration: none !important;
  transition: opacity var(--transition), transform var(--transition);
}
.pyp-about-cta-btn:hover {
  opacity: 0.85 !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
  color: #000 !important;
}

/* ── Stats ── */
.pyp-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.pyp-about-stat {
  background: var(--pyp-dark2);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--transition);
}
.pyp-about-stat:hover {
  border-color: var(--pyp-border-gold);
}

.pyp-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.pyp-stat-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pyp-silver);
}

/* ── Section header ── */
.pyp-about-section {
  margin-bottom: 56px;
}

.pyp-about-section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: var(--pyp-white) !important;
  margin: 0 0 28px !important;
  text-align: center !important;
}

/* ── Product category cards ── */
.pyp-cat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pyp-cat-card {
  background: var(--pyp-dark2);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.pyp-cat-card:hover {
  border-color: var(--pyp-border-gold);
  transform: translateY(-4px);
}

.pyp-cat-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.pyp-cat-card h3 {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--pyp-chrome) !important;
  margin: 0 0 10px !important;
}

.pyp-cat-card p {
  font-size: 0.83rem !important;
  color: var(--pyp-silver) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ── Content blocks ── */
.pyp-about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--pyp-border);
}

.pyp-about-block--rev .pyp-about-img-wrap { order: 2; }
.pyp-about-block--rev .pyp-about-text    { order: 1; }

.pyp-about-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--pyp-border);
}

.pyp-about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pyp-about-img-wrap:hover .pyp-about-img {
  transform: scale(1.04);
}

.pyp-about-text h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: var(--pyp-white) !important;
  margin: 0 0 18px !important;
  line-height: 1.15 !important;
}

.pyp-about-text p {
  color: var(--pyp-text) !important;
  line-height: 1.75 !important;
  margin-bottom: 18px !important;
  font-size: 0.95rem !important;
}

.pyp-about-text strong { color: var(--pyp-chrome) !important; }

/* ── Feature list ── */
.pyp-feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pyp-feature-list li {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  color: var(--pyp-text) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  line-height: 1.6 !important;
  padding: 5px 0 !important;
  border-bottom: 1px solid var(--pyp-border) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  margin: 0 !important;
}
.pyp-feature-list li:last-child {
  border-bottom: none !important;
}

.pyp-check {
  flex-shrink: 0;
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  font-weight: 700;
}

/* ── Closing block ── */
.pyp-about-closing {
  text-align: center;
  padding: 0 20px 0;
}

.pyp-about-closing-text {
  font-family: var(--font-display) !important;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  color: var(--pyp-silver) !important;
  font-style: italic !important;
  margin-bottom: 28px !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pyp-cat-cards { grid-template-columns: repeat(2, 1fr); }
  .pyp-about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pyp-about-block { grid-template-columns: 1fr; gap: 28px; }
  .pyp-about-block--rev .pyp-about-img-wrap { order: 0; }
  .pyp-about-block--rev .pyp-about-text    { order: 0; }
}

@media (max-width: 480px) {
  .pyp-cat-cards  { grid-template-columns: 1fr; }
  .pyp-about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.pyp-portfolio-wrap {
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero */
.pyp-portfolio-hero {
  text-align: center;
  padding: 0 20px 40px;
  border-bottom: 1px solid var(--pyp-border);
  margin-bottom: 40px;
  width: 100%;
}
.pyp-portfolio-hero > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pyp-portfolio-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pyp-white) !important;
  margin-bottom: 14px;
  line-height: 1.18;
}
.entry-content .pyp-portfolio-title {
  margin-top: 0 !important;
}

.pyp-portfolio-title .pyp-gold-text {
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pyp-portfolio-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: .98rem;
  color: var(--pyp-silver);
  line-height: 1.65;
}

/* Filter tabs */
.pyp-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 0 20px;
  max-width: 100%;
  width: 100%;
}

.pyp-pf-btn {
  background: var(--pyp-dark2);
  border: 1px solid var(--pyp-border);
  color: var(--pyp-silver);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.pyp-pf-btn:hover,
.pyp-pf-btn.active {
  background: var(--pyp-grad);
  border-color: transparent;
  color: #0a0a0a;
}

/* Grid */
.pyp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0;
  grid-auto-rows: 280px;
  max-width: 1360px;
  margin: 0 auto;
}

.pyp-portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--pyp-dark2);
  border-radius: var(--radius-sm);
}

.pyp-portfolio-item.hidden {
  display: none;
}

.pyp-portfolio-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.pyp-portfolio-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

.pyp-portfolio-item:hover .pyp-portfolio-link img {
  transform: scale(1.06);
}

.pyp-portfolio-link img {
  border-radius: var(--radius-sm);
}

/* Overlay */
.pyp-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px 16px;
  opacity: 0;
  transition: opacity .3s ease;
}

.pyp-portfolio-item:hover .pyp-portfolio-overlay {
  opacity: 1;
}

.pyp-portfolio-cat {
  display: inline-block;
  background: var(--pyp-grad);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 1px;
  margin-bottom: 6px;
  width: fit-content;
}

.pyp-portfolio-caption {
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  margin: 0;
  line-height: 1.4;
}

.pyp-portfolio-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: rgba(10,10,10,.65);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pyp-chrome);
  line-height: 1;
  transition: background .2s, border-color .2s, color .2s;
}

.pyp-portfolio-item:hover .pyp-portfolio-zoom {
  background: var(--pyp-grad);
  color: #0a0a0a;
  border-color: transparent;
  -webkit-text-fill-color: #0a0a0a;
}

/* CTA strip */
.pyp-portfolio-cta {
  text-align: center;
  margin-top: 56px;
  padding: 48px 20px 16px;
  border-top: 1px solid var(--pyp-border);
}

.pyp-portfolio-cta p {
  font-size: 1.05rem;
  color: var(--pyp-silver);
  margin-bottom: 20px;
}

.pyp-portfolio-cta strong {
  color: var(--pyp-chrome);
}

/* Responsive */
@media (max-width: 1024px) {
  .pyp-portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .pyp-portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

@media (max-width: 400px) {
  .pyp-portfolio-grid { grid-template-columns: 1fr; }
}

/* ── LightGallery — windowed + dark/gold theme ── */

/* Ensure the lg icon font loads from CDN absolute URL (failsafe over relative paths in bundle CSS) */
@font-face {
  font-family: 'lg';
  src: url('https://cdn.jsdelivr.net/npm/lightgallery@2.7.2/fonts/lg.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/npm/lightgallery@2.7.2/fonts/lg.woff') format('woff'),
       url('https://cdn.jsdelivr.net/npm/lightgallery@2.7.2/fonts/lg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* Backdrop */
.lg-backdrop {
  background: rgba(0, 0, 0, 0.88) !important;
}

/* Windowed outer container */
.lg-outer {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(94vw, 1100px) !important;
  height: min(90vh, 800px) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 32px 100px rgba(0,0,0,0.85) !important;
}

/* Toolbar */
.lg-toolbar {
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
}

/* ── Base reset for all LG icon buttons ── */
.lg-outer button.lg-icon {
  font-family: lg !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  padding: 8px 10px !important;
  border-radius: 4px !important;
  background: rgba(0,0,0,0.55) !important;
  background-image: none !important;
  color: #e0e0e0 !important;
  -webkit-text-fill-color: #e0e0e0 !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: block !important;
  position: absolute !important;
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  text-shadow: none !important;
}

/* Force icon font family on all pseudo-elements */
.lg-outer button.lg-icon::before,
.lg-outer button.lg-icon::after {
  font-family: lg !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none !important;
  speak: never !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
}

/* ── Prev / Next buttons ── */
.lg-outer .lg-prev,
.lg-outer .lg-next {
  background: rgba(10,10,10,0.85) !important;
  background-image: none !important;
  border: 1px solid rgba(240,165,0,0.45) !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  padding: 12px 16px !important;
  font-size: 24px !important;
  font-family: lg !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  border-radius: 6px !important;
  top: 50% !important;
  margin-top: -24px !important;
  position: absolute !important;
  display: block !important;
  cursor: pointer !important;
  z-index: 1084 !important;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

.lg-outer .lg-prev { left: 20px !important; right: auto !important; }
.lg-outer .lg-next { right: 20px !important; left: auto !important; }

/* lg-prev icon is on ::after — content from LG bundle */
.lg-outer .lg-prev::after {
  content: '\e094' !important;
  font-family: lg !important;
  font-weight: 400 !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* lg-next icon is on ::before — content from LG bundle */
.lg-outer .lg-next::before {
  content: '\e095' !important;
  font-family: lg !important;
  font-weight: 400 !important;
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  display: inline-block !important;
  line-height: 1 !important;
}

.lg-outer .lg-prev:hover,
.lg-outer .lg-next:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f0a500 45%, #ff6b00 100%) !important;
  border-color: transparent !important;
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
  box-shadow: 0 0 24px rgba(240,165,0,0.55) !important;
}

.lg-outer .lg-prev:hover::after,
.lg-outer .lg-next:hover::before {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

/* ── All toolbar icon buttons — unified style ── */
.lg-outer .lg-toolbar .lg-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  margin: 6px 4px 0 !important;
  padding: 0 !important;
  float: right !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  font-size: 18px !important;
  color: #c8c8c8 !important;
  -webkit-text-fill-color: #c8c8c8 !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.lg-outer .lg-toolbar .lg-icon::after,
.lg-outer .lg-toolbar .lg-icon::before {
  font-family: lg !important;
  font-weight: 400 !important;
  color: #c8c8c8 !important;
  -webkit-text-fill-color: #c8c8c8 !important;
  display: block !important;
  line-height: 1 !important;
}

.lg-outer .lg-toolbar .lg-icon:hover {
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
  background: rgba(240,165,0,0.15) !important;
  border-color: rgba(240,165,0,0.4) !important;
}

.lg-outer .lg-toolbar .lg-icon:hover::after,
.lg-outer .lg-toolbar .lg-icon:hover::before {
  color: #ffd700 !important;
  -webkit-text-fill-color: #ffd700 !important;
}

/* Explicit icon content */
.lg-outer .lg-toolbar .lg-close::after   { content: '\e070' !important; }
.lg-outer .lg-toolbar .lg-zoom-in::after  { content: '\e311' !important; }
.lg-outer .lg-toolbar .lg-zoom-out::after { content: '\e312' !important; }
.lg-outer .lg-toolbar .lg-actual-size::after { content: '\e033' !important; }
.lg-outer .lg-toolbar .lg-fullscreen::after  { content: '\e20c' !important; }

/* Caption */
.lg-sub-html {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%) !important;
  color: #a0a0a0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 24px 24px 16px !important;
}

.lg-sub-html p {
  color: #a0a0a0 !important;
  margin: 0 !important;
}

/* Thumbnail strip */
.lg-thumb-outer {
  background: rgba(8,8,8,0.95) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}

.lg-thumb-item {
  border: 2px solid transparent !important;
  border-radius: 3px !important;
  overflow: hidden !important;
}

.lg-thumb-item.active,
.lg-thumb-item:hover {
  border-color: #ffd700 !important;
}

/* Counter */
.lg-counter {
  color: #a0a0a0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* ============================================================
   NEW FOOTER DESIGN
   ============================================================ */

/* Override old footer background */
.site-footer {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%) !important;
  border-top: none !important;
  margin-top: 24px !important;
  padding: 0 !important;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--pyp-grad);
  opacity: 0.3;
}

/* Footer inner layout */
.pyp-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}

/* Brand column */
.pyp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pyp-footer-logo-link {
  display: inline-flex;
}

.pyp-footer-logo {
  max-height: 60px !important;
  width: auto !important;
  filter: drop-shadow(0 0 10px rgba(240,165,0,0.25));
  transition: filter 0.3s;
}

.pyp-footer-logo:hover {
  filter: drop-shadow(0 0 18px rgba(240,165,0,0.55));
}

.pyp-footer-site-name {
  font-family: var(--font-display) !important;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  background: var(--pyp-grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.pyp-footer-tagline {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pyp-white) !important;
  margin: 0;
}

.pyp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.pyp-footer-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.83rem !important;
  color: var(--pyp-white) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
  transition: color 0.2s !important;
}

.pyp-footer-contact-item:hover {
  color: var(--pyp-gold) !important;
  -webkit-text-fill-color: var(--pyp-gold) !important;
}

.pyp-footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 1;
}

/* Footer columns */
.pyp-footer-col {}

.pyp-footer-heading {
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: var(--pyp-red) !important;
  margin: 0 0 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(240,165,0,0.15) !important;
}

.pyp-footer-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pyp-footer-links li {}

.pyp-footer-links a {
  display: block;
  font-size: 0.83rem !important;
  color: var(--pyp-white) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
  padding: 6px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.03) !important;
  transition: color 0.2s, padding-left 0.2s !important;
  position: relative;
}

.pyp-footer-links a::before {
  content: '›';
  position: absolute;
  left: -14px;
  opacity: 0;
  color: var(--pyp-red);
  transition: opacity 0.2s, left 0.2s;
}

.pyp-footer-links a:hover {
  color: var(--pyp-white) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
  padding-left: 14px !important;
}

.pyp-footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Social buttons */
.pyp-footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.site-footer .pyp-social-btn {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 14px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.82rem !important;
  color: var(--pyp-white) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
  transition: all 0.2s !important;
}

.site-footer .pyp-social-btn:hover {
  background: var(--pyp-red-subtle) !important;
  border-color: var(--pyp-border-gold) !important;
  color: var(--pyp-gold) !important;
  -webkit-text-fill-color: var(--pyp-gold) !important;
  transform: translateX(4px);
}

.pyp-social-btn svg {
  flex-shrink: 0;
}

/* Schedule */
.pyp-footer-schedule-title {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pyp-white);
  margin: 0 0 8px;
}

.pyp-footer-schedule p {
  font-size: 0.78rem !important;
  color: var(--pyp-white) !important;
  margin: 0 0 4px !important;
}

/* Footer bottom bar — full viewport width */
.pyp-footer-bottom {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}

.pyp-footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Links group — pushed to the right */
.pyp-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pyp-footer-bottom-inner span,
.pyp-footer-bottom-inner a {
  font-size: 0.74rem !important;
  color: var(--pyp-white) !important;
  -webkit-text-fill-color: var(--pyp-white) !important;
}

.pyp-footer-bottom-inner a:hover {
  color: var(--pyp-gold) !important;
  -webkit-text-fill-color: var(--pyp-gold) !important;
}

.pyp-footer-bottom-sep {
  opacity: 0.3;
}

/* Fix Storefront wrapper inside footer */
.site-footer > .col-full {
  padding: 0 !important;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

.pyp-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 60px;
}

/* Hero */
.pyp-faq-hero {
  text-align: center;
  padding: 56px 24px 48px;
  border-bottom: 1px solid var(--pyp-border-gold);
  margin-bottom: 48px;
}
.pyp-faq-label {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--pyp-red);
  background: var(--pyp-red-subtle);
  border: 1px solid var(--pyp-border-gold);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pyp-faq-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px !important;
  line-height: 1.1 !important;
}
.pyp-faq-sub {
  color: var(--pyp-silver);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section */
.pyp-faq-section {
  margin-bottom: 40px;
}
.pyp-faq-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pyp-border);
}
.pyp-faq-section-header > * {
  flex-shrink: 0;
}
.pyp-faq-section-header p {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none !important;
}
.pyp-faq-section-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}
.pyp-faq-section-icon img,
.pyp-faq-section-icon .emoji {
  vertical-align: middle !important;
  display: block !important;
  width: 1.3rem !important;
  height: 1.3rem !important;
  filter: grayscale(100%) brightness(0.6) !important;
}
.pyp-faq-section-title,
.pyp-faq-section-header .pyp-faq-section-title,
.entry-content .pyp-faq-section-title,
.entry-content h2.pyp-faq-section-title {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--pyp-chrome) !important;
  margin: 0 !important;
  line-height: 1 !important;
}

/* FAQ items — details/summary accordion */
.pyp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pyp-faq-item {
  background: var(--pyp-dark2);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.pyp-faq-item[open] {
  border-color: var(--pyp-border-gold);
}
.pyp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: var(--pyp-white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition-fast);
}
.pyp-faq-q::-webkit-details-marker { display: none; }
.pyp-faq-q::marker { display: none; }
.pyp-faq-item[open] .pyp-faq-q {
  background: var(--pyp-red-subtle);
  color: var(--pyp-gold);
}
.pyp-faq-q:hover {
  background: var(--pyp-dark3);
}
.pyp-faq-q-text {
  flex: 1;
}
.pyp-faq-chevron {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--pyp-red);
  transition: transform var(--transition);
  display: inline-block;
  transform: rotate(0deg);
}
.pyp-faq-item[open] .pyp-faq-chevron {
  transform: rotate(90deg);
}
.pyp-faq-a {
  padding: 4px 20px 20px;
  color: var(--pyp-text);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid var(--pyp-border);
}

/* CTA block */
.pyp-faq-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--pyp-dark2) 0%, var(--pyp-dark3) 100%);
  border: 1px solid var(--pyp-border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.pyp-faq-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pyp-grad);
}
.pyp-faq-cta-inner {
  padding: 40px 36px;
  text-align: center;
}
.pyp-faq-cta-title {
  font-family: var(--font-display) !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--pyp-white) !important;
  margin: 0 0 10px !important;
}
.pyp-faq-cta-text {
  color: var(--pyp-silver);
  font-size: 0.92rem;
  margin: 0 0 24px !important;
  max-width: 420px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.pyp-faq-cta-btn {
  display: inline-block;
  background: var(--pyp-grad);
  color: #0a0a0a !important;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 13px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: opacity var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px var(--pyp-red-glow);
}
.pyp-faq-cta-btn:hover {
  opacity: 0.88;
  box-shadow: 0 6px 32px var(--pyp-red-glow);
  color: #ffffff !important;
}

/* ============================================================
   RESPONSIVE — No sidebar + new elements
   ============================================================ */

@media (max-width: 1024px) {
  .pyp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }
  .pyp-top-bar-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .pyp-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 24px;
  }
  .pyp-top-bar-left {
    flex-wrap: wrap;
    gap: 10px;
  }
  .pyp-footer-bottom-inner {
    padding: 14px 20px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
  .site-header .col-full {
    padding: 12px 20px !important;
  }
}

/* ============================================================
   DYNAMIC FILTERS — Sidebar Layout
   ============================================================ */

/* ── Shop layout: 28% sidebar + 72% products ── */
#pyp-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

#pyp-products-col {
  min-width: 0;
}

/* ── Sticky sidebar ── */
#pyp-filter-sidebar {
  position: sticky;
  top: 120px;
  background: var(--pyp-dark2);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  padding: 20px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,165,0,0.25) transparent;
}
#pyp-filter-sidebar::-webkit-scrollbar { width: 4px; }
#pyp-filter-sidebar::-webkit-scrollbar-track { background: transparent; }
#pyp-filter-sidebar::-webkit-scrollbar-thumb { background: rgba(240,165,0,0.25); border-radius: 2px; }

/* ── Sidebar header ── */
.pyp-fs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pyp-border);
}
.pyp-fs-title-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pyp-white);
}

.pyp-fb-clear {
  background: none !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: var(--pyp-silver) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  padding: 0 !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  text-decoration: none !important;
}
.pyp-fb-clear:hover {
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--pyp-chrome) !important;
  text-decoration: none !important;
}

/* ── Filter section ── */
.pyp-fs-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pyp-border);
}
.pyp-fs-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.pyp-fs-heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pyp-silver);
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.pyp-fs-unknown {
  color: var(--pyp-silver);
  font-size: 0.82rem;
}

/* ── Range slider ── */
.pyp-range-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--pyp-white);
  font-weight: 600;
}
.rv-sep { color: var(--pyp-silver); }

.pyp-range-track-wrap {
  position: relative;
  height: 36px;
}
.pyp-rt {
  position: absolute;
  left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  pointer-events: none;
}
.pyp-rf {
  position: absolute;
  height: 100%;
  background: var(--pyp-grad);
  border-radius: 2px;
}
.pyp-range {
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 100%;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  height: 36px;
  outline: none;
}
.pyp-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pyp-gold);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 8px rgba(240,165,0,0.5);
  cursor: pointer;
  pointer-events: all;
}
.pyp-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pyp-gold);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 8px rgba(240,165,0,0.5);
  cursor: pointer;
  pointer-events: all;
}

/* ── Checkboxes ── */
.pyp-cbl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}
.pyp-cb {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  color: var(--pyp-silver) !important;
  font-size: 0.88rem !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0 !important;
  transition: color 0.2s;
}
.pyp-cb:hover,
.pyp-cb.on { color: var(--pyp-white) !important; }
.pyp-cb input { display: none; }
.pyp-cbx {
  width: 18px; height: 18px;
  border: 1px solid var(--pyp-border);
  border-radius: 4px;
  background: var(--pyp-dark3);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.pyp-cb.on .pyp-cbx,
.pyp-cb input:checked ~ .pyp-cbx {
  background: var(--pyp-grad);
  border-color: var(--pyp-gold);
}
.pyp-cb.on .pyp-cbx::after,
.pyp-cb input:checked ~ .pyp-cbx::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: 2px solid #0a0a0a;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* ── Active chips ── */
.pyp-fb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.pyp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 12px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.35);
  border-radius: 999px;
  color: var(--pyp-gold);
  font-size: 0.78rem;
  font-weight: 600;
}
.pyp-chip-x {
  background: none !important;
  border: none !important;
  color: var(--pyp-gold) !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  padding: 0 !important;
  opacity: 0.7;
}

/* ── No focus outlines on filter UI elements ── */
.pyp-fb-clear:focus,
.pyp-fb-clear:focus-visible,
.pyp-chip-x:focus,
.pyp-chip-x:focus-visible,
#pyp-filter-sidebar input[type="range"]:focus,
#pyp-filter-sidebar input[type="range"]:focus-visible,
#pyp-filter-sidebar input[type="checkbox"]:focus,
#pyp-filter-sidebar input[type="checkbox"]:focus-visible,
.page-numbers:focus,
.page-numbers:focus-visible,
.pyp-ajax-page:focus,
.pyp-ajax-page:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ── AJAX pagination — flex item inside .storefront-sorting ── */
.pyp-ajax-nav {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}
/* Span items inside our ajax nav are clickable */
.pyp-ajax-nav .pyp-ajax-page {
  cursor: pointer !important;
}

/* ── Loading overlay ── */
#pyp-products-col.pyp-loading ul.products,
.woocommerce.pyp-loading ul.products {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* ── Empty results message ── */
.woocommerce-info.pyp-no-results {
  color: var(--pyp-silver) !important;
  background: var(--pyp-dark2) !important;
  border-top-color: var(--pyp-border-gold) !important;
  border-radius: var(--radius-md) !important;
}

/* ── Responsive: collapse sidebar below 900px ── */
@media (max-width: 900px) {
  #pyp-shop-layout {
    grid-template-columns: 1fr;
  }
  #pyp-filter-sidebar {
    position: static;
    max-height: none;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.pyp-contact-wrap {
  max-width: none;
  width: 100%;
  padding: 0;
}

/* ── Hero ── */
.pyp-contact-hero {
  text-align: center;
  padding: 0 20px 40px;
  border-bottom: 1px solid var(--pyp-border);
  margin-bottom: 48px;
  width: 100%;
}
.pyp-contact-hero > * {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pyp-contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.1 !important;
  color: var(--pyp-white) !important;
  margin: 0 auto 16px !important;
  text-align: center !important;
}

.pyp-contact-lead {
  color: var(--pyp-silver);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  display: block;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Main two-column layout ── */
.pyp-contact-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 56px;
  align-items: start;
}

/* ── Info column ── */
.pyp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pyp-contact-card {
  background: var(--pyp-dark3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pyp-contact-card:hover {
  border-color: var(--pyp-border-gold);
  box-shadow: 0 4px 24px rgba(240,165,0,0.08);
}

.pyp-contact-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.35);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  color: #ffd700 !important;
}
.pyp-contact-card-icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

.pyp-contact-card-body {
  flex: 1;
  min-width: 0;
}

.pyp-contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pyp-silver);
  margin: 0 0 4px;
  font-family: var(--font-display);
}

.pyp-contact-card-value {
  font-size: 0.97rem;
  color: var(--pyp-chrome);
  margin: 0;
  line-height: 1.5;
}
.pyp-contact-card-value a {
  color: var(--pyp-chrome) !important;
  text-decoration: none !important;
}
.pyp-contact-card-value a:hover {
  color: #ffd700 !important;
}

.pyp-contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.pyp-contact-hours-day {
  color: var(--pyp-silver);
  font-size: 0.88rem;
}
.pyp-contact-hours-time {
  color: var(--pyp-chrome);
  font-size: 0.88rem;
  text-align: right;
}
.pyp-contact-hours-time.open {
  color: #4ade80;
}
.pyp-contact-hours-time.closed {
  color: #f87171;
}

/* ── Form column ── */
.pyp-contact-form-wrap {
  background: var(--pyp-dark3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 30px;
}

.pyp-contact-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--pyp-white) !important;
  margin: 0 0 24px !important;
}

.pyp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pyp-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pyp-cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pyp-cf-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pyp-silver);
  font-family: var(--font-display);
}

.pyp-cf-input,
.pyp-cf-textarea,
.pyp-cf-select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--pyp-white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 10px 14px !important;
  width: 100% !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none;
  display: block !important;
}
.pyp-cf-input::placeholder,
.pyp-cf-textarea::placeholder {
  color: var(--pyp-silver);
  opacity: 0.6;
}
.pyp-cf-input:focus,
.pyp-cf-textarea:focus,
.pyp-cf-select:focus {
  border-color: rgba(240,165,0,0.5) !important;
  box-shadow: 0 0 0 3px rgba(240,165,0,0.07) !important;
  background: rgba(255,255,255,0.06) !important;
}

.pyp-cf-textarea {
  resize: vertical !important;
  min-height: 120px;
}

.pyp-cf-select option {
  background: var(--pyp-dark2);
  color: var(--pyp-chrome);
}

.pyp-cf-submit {
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 13px 32px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background var(--transition), transform var(--transition) !important;
  margin-top: 4px;
  -webkit-text-fill-color: #0a0a0a !important;
}
.pyp-cf-submit:hover {
  background: var(--pyp-grad-h) !important;
  transform: translateY(-1px);
}

/* Notice / response messages */
.pyp-contact-notice {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.pyp-contact-notice.success {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}
.pyp-contact-notice.error {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f87171;
}

/* ── Map embed strip ── */
.pyp-contact-map {
  margin: 0;
  border-top: 1px solid var(--pyp-border);
  line-height: 0;
  overflow: hidden;
}
.pyp-contact-map iframe {
  width: 100%;
  height: 480px;
  filter: grayscale(80%) invert(90%) contrast(85%);
  display: block;
  border: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pyp-contact-body {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 32px;
  }
}
@media (max-width: 580px) {
  .pyp-cf-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOMEPAGE — page-home.php
   ============================================================ */

/* Wrapper global */
.pyp-home-wrap {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ── Hero ── */
.pyp-home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 48px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(220,38,38,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(240,165,0,0.10) 0%, transparent 60%),
    var(--pyp-black);
  /* Breakout din col-full → full viewport width */
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
.pyp-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.20) 50%,
    rgba(8,8,8,0.70) 100%
  );
  pointer-events: none;
}
.pyp-home-hero__glow {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pyp-home-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.pyp-home-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pyp-red);
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 28px;
}
.pyp-home-hero__title {
  font-family: var(--font-display) !important;
  font-size: clamp(3rem, 7vw, 5.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--pyp-white) !important;
  margin: 0 0 24px !important;
}
.pyp-home-hero__title--accent {
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pyp-home-hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem) !important;
  color: var(--pyp-silver);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 100%;
}
.pyp-home-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.pyp-home-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pyp-home-btn--primary {
  background: var(--pyp-grad);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(220,38,38,0.35);
}
.pyp-home-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.50);
  color: #fff !important;
}
.pyp-home-btn--ghost {
  background: transparent;
  color: var(--pyp-white) !important;
  border: 1px solid rgba(255,255,255,0.25);
}
.pyp-home-btn--ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  color: #fff !important;
}
.pyp-home-btn--outline {
  background: transparent;
  color: var(--pyp-white) !important;
  border: 1px solid var(--pyp-border-gold);
}
.pyp-home-btn--outline:hover {
  background: rgba(240,165,0,0.08);
  border-color: rgba(240,165,0,0.55);
  color: #fff !important;
}

/* ── Stats bar ── */
.pyp-home-stats {
  background: var(--pyp-dark2);
  border-top: 1px solid var(--pyp-border);
  border-bottom: 1px solid var(--pyp-border);
  padding: 40px 0;
}
.pyp-home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pyp-home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  border-right: 1px solid var(--pyp-border);
  text-align: center;
}
.pyp-home-stat:last-child {
  border-right: none;
}
.pyp-home-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--pyp-white);
  line-height: 1;
  background: var(--pyp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pyp-home-stat__plus {
  font-size: 0.65em;
  vertical-align: super;
}
.pyp-home-stat__label {
  font-size: 0.78rem;
  color: var(--pyp-silver);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections ── */
.pyp-home-section {
  padding: 48px 0;
}
.pyp-home-section--dark {
  background: var(--pyp-dark2);
  border-top: 1px solid var(--pyp-border);
  border-bottom: 1px solid var(--pyp-border);
}
.pyp-home-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.pyp-home-section__title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--pyp-white) !important;
  margin: 0 0 8px !important;
  position: relative;
  display: inline-block;
}
.pyp-home-section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--pyp-red);
  border-radius: 2px;
  margin: 14px auto 0;
  box-shadow: 0 0 10px var(--pyp-red-glow);
}
.pyp-home-section__sub {
  color: var(--pyp-silver);
  font-size: 0.95rem;
  margin: 18px 0 0;
}
.pyp-home-section__footer {
  text-align: center;
  margin-top: 40px;
}

/* ── Category cards ── */
.pyp-home-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pyp-home-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px 24px;
  background: var(--pyp-black);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.pyp-home-cat:hover {
  border-color: var(--pyp-border-gold);
  background: var(--pyp-dark3);
  transform: translateY(-4px);
}
.pyp-home-cat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  color: var(--pyp-red);
}
.pyp-home-cat__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--pyp-red);
  transition: stroke var(--transition);
}
.pyp-home-cat:hover .pyp-home-cat__icon svg {
  stroke: var(--pyp-gold);
}
.pyp-home-cat__label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pyp-white);
}
.pyp-home-cat__count {
  font-size: 0.72rem;
  color: var(--pyp-silver);
  opacity: 0.7;
}

/* ── Featured products area ── */
.pyp-home-products .products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

/* ── Features / De ce PYP ── */
.pyp-home-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pyp-home-feature {
  background: var(--pyp-black);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.pyp-home-feature:hover {
  border-color: var(--pyp-border-gold);
  transform: translateY(-3px);
}
.pyp-home-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--pyp-red);
}
.pyp-home-feature__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--pyp-red);
  transition: stroke var(--transition);
}
.pyp-home-feature:hover .pyp-home-feature__icon svg {
  stroke: var(--pyp-gold);
}
.pyp-home-feature__title {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--pyp-white) !important;
  margin: 0 !important;
}
.pyp-home-feature__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pyp-home-feature__text {
  font-size: 0.88rem;
  color: var(--pyp-silver);
  line-height: 1.65;
  margin: 0;
}

/* ── Shipping strip (below features) ── */
.pyp-home-shipping-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px 28px;
  background: linear-gradient(90deg, rgba(240,165,0,0.06) 0%, rgba(240,165,0,0.12) 50%, rgba(240,165,0,0.06) 100%);
  border: 1px solid rgba(240,165,0,0.28);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--pyp-text);
  position: relative;
  overflow: hidden;
}
.pyp-home-shipping-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.04) 50%, transparent 100%);
  pointer-events: none;
}
.pyp-home-shipping-strip__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--pyp-gold);
}
.pyp-home-shipping-strip__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--pyp-gold);
}
.pyp-home-shipping-strip__text strong {
  color: var(--pyp-gold);
}
@media (max-width: 640px) {
  .pyp-home-shipping-strip {
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}

/* ── CTA Banner ── */
.pyp-home-cta-banner {
  background:
    linear-gradient(135deg, rgba(220,38,38,0.14) 0%, rgba(8,8,8,0) 60%),
    var(--pyp-dark3);
  border-top: 1px solid rgba(220,38,38,0.2);
  border-bottom: 1px solid rgba(220,38,38,0.2);
  padding: 64px 0;
}
.pyp-home-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.pyp-home-cta-banner__title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: var(--pyp-white) !important;
  margin: 0 0 10px !important;
}
.pyp-home-cta-banner__sub {
  color: var(--pyp-silver);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0;
}
.pyp-home-cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Section dividers ── */
.pyp-section-divider {
  position: relative;
  height: 1px;
  margin: 48px 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240,165,0,0.15) 15%,
    rgba(240,165,0,0.55) 40%,
    var(--pyp-red) 50%,
    rgba(240,165,0,0.55) 60%,
    rgba(240,165,0,0.15) 85%,
    transparent 100%
  );
  overflow: visible;
}
.pyp-section-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--pyp-red);
  box-shadow: 0 0 10px var(--pyp-red-glow), 0 0 20px var(--pyp-red-glow);
  display: block;
}
.pyp-section-divider span::before,
.pyp-section-divider span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(240,165,0,0.25);
}
.pyp-section-divider span::before {
  width: 18px;
  height: 18px;
}
.pyp-section-divider span::after {
  width: 30px;
  height: 30px;
  border-color: rgba(240,165,0,0.10);
}

/* ── Homepage: ascunde titlul și breadcrumbs generate de Storefront ── */
.page-template-page-home .entry-title,
.page-template-page-home .woocommerce-breadcrumb,
.page-template-page-home .storefront-breadcrumb,
.page-template-page-home .entry-header {
  display: none !important;
}
/* Reverts — lasăm Storefront să gestioneze layout-ul normal */
.page-template-page-home .site-main,
.page-template-page-home .entry-content,
.page-template-page-home article.page {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.page-template-page-home .hentry {
  margin: 0 !important;
}

/* ── Responsive homepage ── */
@media (max-width: 1024px) {
  .pyp-home-cats     { grid-template-columns: repeat(4, 1fr); }
  .pyp-home-features { grid-template-columns: repeat(2, 1fr); }
  .pyp-home-products .products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .pyp-home-hero__inner { margin: 0 auto; text-align: center; }
  .pyp-home-hero__sub   { max-width: 100%; }
  .pyp-home-hero__actions { justify-content: center; }
  .pyp-home-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .pyp-home-stat        { border-right: none; border-bottom: 1px solid var(--pyp-border); }
  .pyp-home-stat:nth-child(2n) { border-right: none; }
  .pyp-home-cats        { grid-template-columns: repeat(2, 1fr); }
  .pyp-home-features    { grid-template-columns: 1fr; }
  .pyp-home-products .products { grid-template-columns: repeat(2, 1fr) !important; }
  .pyp-home-cta-banner__inner { flex-direction: column; text-align: center; }
  .pyp-home-cta-banner__actions { justify-content: center; }
}
@media (max-width: 480px) {
  .pyp-home-cats     { grid-template-columns: repeat(2, 1fr); }
  .pyp-home-products .products { grid-template-columns: 1fr !important; }
}

/* ============================================================
   BURGER MENU MOBIL
   ============================================================ */

/* ── Butonul burger ──────────────────────────────────────── */
.pyp-burger {
  display: none;                        /* ascuns pe desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  order: 10;                            /* apare dupa logo */
  margin-left: auto;                    /* impinge cart la dreapta */
  position: relative;
  z-index: 9999;
  transition: background 0.2s;
}
.pyp-burger:hover,
.pyp-burger:focus-visible {
  background: rgba(255,255,255,0.08);
  outline: none;
}
.pyp-burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pyp-white, #ffffff);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
/* Animatie X cand e deschis */
.pyp-burger.is-active .pyp-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pyp-burger.is-active .pyp-burger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.pyp-burger.is-active .pyp-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Overlay + Panel ─────────────────────────────────────── */
.pyp-mobile-menu {
  display: none;                        /* DOM prezent, inceput ascuns */
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}
.pyp-mobile-menu.is-open {
  display: block;
  pointer-events: all;
}

/* fundal semi-opac */
.pyp-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pyp-mobile-menu.is-open .pyp-mobile-menu__backdrop {
  opacity: 1;
}

/* panoul lateral */
.pyp-mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--pyp-dark2, #111317);
  border-left: 2px solid var(--pyp-border-gold, rgba(240,165,0,0.25));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.pyp-mobile-menu.is-open .pyp-mobile-menu__panel {
  transform: translateX(0);
}

/* buton inchidere */
.pyp-mobile-menu__close {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  padding: 0;
  line-height: 1;
}
.pyp-mobile-menu__close svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  pointer-events: none;
  overflow: visible;
}
.pyp-mobile-menu__close svg line {
  stroke: #ffffff !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
}
.pyp-mobile-menu__close:hover {
  background: rgba(255,255,255,0.25);
}

/* logo in panel */
.pyp-mobile-menu__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.pyp-mobile-menu__logo-img {
  display: flex;
  align-items: center;
}
.pyp-mobile-logo-img {
  max-height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.1);
}
.pyp-mobile-site-name {
  font-family: var(--font-tech, 'Orbitron', sans-serif);
  font-size: 1rem;
  color: var(--pyp-chrome, #e0e0e0);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* lista nav */
.pyp-mobile-nav {
  flex: 1;
  padding: 0 0 16px;
}
.pyp-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pyp-mobile-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pyp-mobile-nav li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pyp-chrome, #d0d0d0) !important;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.pyp-mobile-nav li a:hover,
.pyp-mobile-nav li:focus-within > a {
  color: var(--pyp-gold, #f0a500) !important;
  background: rgba(240,165,0,0.06);
}
.pyp-mobile-nav li.current-menu-item > a,
.pyp-mobile-nav li.current_page_item > a {
  color: var(--pyp-gold, #f0a500) !important;
  border-left: 3px solid var(--pyp-gold, #f0a500);
  padding-left: 21px;
}
/* submeniuri */
.pyp-mobile-nav ul ul {
  background: rgba(0,0,0,0.25);
}
.pyp-mobile-nav ul ul li a {
  padding-left: 40px;
  font-size: 0.9rem;
}

/* buton CTA jos */
.pyp-mobile-menu__footer {
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pyp-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--pyp-grad, linear-gradient(135deg,#f0a500,#e08800));
  color: #000 !important;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pyp-mobile-cta:hover {
  opacity: 0.88;
  color: #000 !important;
}

/* ── Previne scroll body cand meniu e deschis ──────────────── */
body.pyp-menu-open {
  overflow: hidden;
}

/* ── Activare mobil ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Arata burgerul */
  .pyp-burger {
    display: flex;
  }
  /* Ascunde bara de navigatie desktop */
  .storefront-primary-navigation {
    display: none !important;
  }
  /* Ascunde footer bar Storefront */
  .storefront-handheld-footer-bar {
    display: none !important;
  }
  /* Activeaza mobile menu DOM */
  .pyp-mobile-menu {
    display: none;   /* controlat de JS cu .is-open */
  }
  .pyp-mobile-menu.is-open {
    display: block;
  }
}

/* ============================================================
   PAGINA SERVICII
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.pyp-services-hero {
  background: linear-gradient(160deg, var(--pyp-dark2) 0%, var(--pyp-dark) 60%, #0d0d0d 100%);
  border-bottom: none;
  padding: 80px 20px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pyp-services-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(240,165,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.pyp-services-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--pyp-gold) 30%, var(--pyp-red) 70%, transparent 100%);
  opacity: 0.6;
}
.pyp-services-hero__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.pyp-services-hero__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pyp-gold);
  border: 1px solid var(--pyp-border-gold);
  border-radius: 100px;
  padding: 6px 22px;
  margin-bottom: 20px;
}
.pyp-services-hero__title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--pyp-white) !important;
  margin: 0 0 16px !important;
  line-height: 1.05 !important;
}
.pyp-services-hero__sub {
  font-size: 1rem;
  color: var(--pyp-silver);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 520px;
}

/* ── Grid servicii ─────────────────────────────────────────── */
.pyp-services-grid-section {
  padding: 40px 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.pyp-services-grid-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--pyp-border-gold) 20%, rgba(240,165,0,0.35) 50%, var(--pyp-border-gold) 80%, transparent 100%);
}
.pyp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card serviciu ─────────────────────────────────────────── */
.pyp-service-card {
  background: var(--pyp-dark2);
  border: 1px solid var(--pyp-border);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
/* Elimina <p> goale injectate de wpautop */
.pyp-service-card > p:empty,
.pyp-services-grid > p:empty {
  display: none !important;
  margin: 0 !important;
}
.pyp-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pyp-grad);
  opacity: 0;
  transition: opacity 0.25s;
}
.pyp-service-card:hover {
  border-color: var(--pyp-border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--pyp-border-gold);
}
.pyp-service-card:hover::before {
  opacity: 1;
}

.pyp-service-card__icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  transition: background 0.25s;
}
.pyp-service-card__icon svg {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  stroke: rgba(255,255,255,0.45) !important;
  fill: none !important;
  color: rgba(255,255,255,0.45) !important;
  overflow: visible;
}
.pyp-service-card:hover .pyp-service-card__icon {
  background: rgba(255,255,255,0.07);
}

.pyp-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pyp-service-card__title {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--pyp-white) !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}
.pyp-service-card__desc {
  font-size: 0.88rem;
  color: var(--pyp-silver);
  line-height: 1.65;
  margin: 0;
}
.pyp-service-card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pyp-service-card__list li {
  font-size: 0.82rem;
  color: var(--pyp-text);
  padding-left: 16px;
  position: relative;
}
.pyp-service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pyp-gold);
  opacity: 0.7;
}

/* ── CTA de jos ────────────────────────────────────────────── */
.pyp-services-cta {
  background: linear-gradient(135deg, var(--pyp-dark2) 0%, #0f0f0f 100%);
  border-top: none;
  padding: 56px 20px 64px;
  position: relative;
}
.pyp-services-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--pyp-gold) 30%, var(--pyp-red) 70%, transparent 100%);
  opacity: 0.6;
}
.pyp-services-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.pyp-services-cta__title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--pyp-white) !important;
  margin: 0 0 14px !important;
}
.pyp-services-cta__sub {
  font-size: 0.95rem;
  color: var(--pyp-silver);
  line-height: 1.7;
  margin: 0 0 32px;
}
.pyp-services-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pyp-services-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pyp-services-cta__btn--primary {
  background: var(--pyp-grad);
  color: #000 !important;
}
.pyp-services-cta__btn--primary:hover {
  opacity: 0.88;
  color: #ffffff !important;
  box-shadow: 0 6px 28px var(--pyp-red-glow);
  transform: translateY(-1px);
}
.pyp-services-cta__btn--outline {
  background: transparent;
  color: var(--pyp-white) !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.pyp-services-cta__btn--outline:hover {
  border-color: var(--pyp-border-gold);
  color: var(--pyp-gold) !important;
  transform: translateY(-1px);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pyp-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pyp-services-grid { grid-template-columns: 1fr; }
  .pyp-services-hero { padding: 56px 16px 48px; }
  .pyp-services-grid-section { padding: 48px 16px 56px; }
}

/* ── Override container pe pagina servicii ─────────────────── */
.page-template-template-fullwidth .entry-content,
.page-id-229 .entry-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-template-template-fullwidth .site-main,
.page-id-229 .site-main {
  padding: 0 !important;
  margin: 0 !important;
}
.page-template-template-fullwidth .entry-header {
  display: none !important;
}
.page-id-229 .entry-header {
  display: block !important;
  padding: 0 0 24px !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.page-id-229 .pyp-services-hero__title {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PARTENERI CAROUSEL
═══════════════════════════════════════════════════════════════════ */
/* ── Partners carousel ───────────────────────────────────────────── */
.pyp-partners-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

/* Overflow-hidden wrapper that masks the scrolling track */
.pyp-partners-track-wrap {
  position: relative;
  overflow: hidden !important;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The actual scrolling strip — MUST stay a single horizontal row */
.pyp-partners-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: pyp-scroll-partners 90s linear infinite;
  will-change: transform;
}

.pyp-partners-track-wrap:hover .pyp-partners-track {
  animation-play-state: paused;
}

@keyframes pyp-scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual partner item */
.pyp-partner-item {
  flex: 0 0 auto !important;
  display: block;
}

.pyp-partner-item a {
  display: block;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
}

/* Logo container: fixed size, stacking context for absolute hover image */
.pyp-partner-logo {
  position: relative !important;
  width: 160px;
  height: 72px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Both images share common styles */
.pyp-partner-logo__default,
.pyp-partner-logo__hover {
  max-width: 140px;
  max-height: 64px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Default: visible but muted */
.pyp-partner-logo__default {
  display: block !important;
  position: relative;
  z-index: 1;
  filter: grayscale(40%) brightness(0.8);
  opacity: 0.7;
}

/* Hover image: absolutely overlaid, invisible by default */
.pyp-partner-logo__hover {
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2;
  opacity: 0 !important;
}

/* On hover: swap visibility */
.pyp-partner-item:hover .pyp-partner-logo__default {
  opacity: 0 !important;
}

.pyp-partner-item:hover .pyp-partner-logo__hover {
  opacity: 1 !important;
}

/* Fallback: if no hover image, brighten default */
.pyp-partner-item:hover .pyp-partner-logo__default:only-child {
  opacity: 1 !important;
  filter: grayscale(0%) brightness(1) !important;
}
/* ── end Partners carousel ───────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════
   WC BLOCK GRID  —  PYP card design (matches li.product)
   ══════════════════════════════════════════════════════════════ */

/* Grid layout — mirrors ul.products */
.wc-block-grid .wc-block-grid__products,
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: stretch !important;
}
.wc-block-grid.has-4-columns .wc-block-grid__products { grid-template-columns: repeat(4, 1fr) !important; }
.wc-block-grid.has-3-columns .wc-block-grid__products { grid-template-columns: repeat(3, 1fr) !important; }
.wc-block-grid.has-2-columns .wc-block-grid__products { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 900px) {
  .wc-block-grid .wc-block-grid__products,
  .wc-block-grid__products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .wc-block-grid .wc-block-grid__products,
  .wc-block-grid__products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

/* ── Card shell ────────────────────────────────────────────── */
/* Borderul gold e pe ::before (identic cu li.product).
   Link-ul NU are z-index → nu formeaza stacking context propriu
   → badge-ul (z-index:12) e evaluat in contextul li-ului si NU e acoperit. */
.wc-block-grid__product {
  background: var(--pyp-dark3) !important;
  border: none !important;
  border-radius: 16px !important;
  overflow: visible !important;
  position: relative !important;
  display: block !important;
  flex-direction: unset !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06) !important;
  cursor: pointer;
  aspect-ratio: 3 / 3.5 !important;
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease !important;
}
.wc-block-grid__product::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 16px !important;
  box-shadow:
    inset 0 0 0 4px rgba(240,165,0,0.35),
    inset 0 0 8px 2px rgba(0,0,0,0.4) !important;
  z-index: 10 !important;
  pointer-events: none !important;
  transition: box-shadow 0.4s ease !important;
}
.wc-block-grid__product:hover::before {
  box-shadow:
    inset 0 0 0 6px rgba(240,165,0,0.65),
    inset 0 0 20px 6px rgba(240,165,0,0.18) !important;
}
.wc-block-grid__product:hover {
  transform: translateZ(0) !important;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.6),
    inset 0 0 0 6px rgba(240,165,0,0.6),
    inset 0 0 18px 6px rgba(240,165,0,0.12) !important;
}

/* ── Product link — fills the whole card ───────────────────── */
/* FARA z-index intentionat: fara z-index nu se formeaza stacking context,
   asa ca badge-ul din interior (z-index:12) e evaluat in contextul li-ului
   si apare deasupra ::before (z-index:10), exact ca span.onsale pe li.product */
.wc-block-grid__product-link {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  overflow: visible !important;
  border-radius: 16px !important;
  background: var(--pyp-dark3) !important;
  aspect-ratio: unset !important;
  /* z-index intentionat absent — nu trebuie stacking context propriu */
}

/* ── Image — clips the photo inside rounded corners ─────────────── */
.wc-block-grid__product-image {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;    /* clip the photo here, not on the link */
  border-radius: 16px !important;
}
.wc-block-grid__product-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1) !important;
}
.wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: scale(1.09) !important;
}

/* Warm glow overlay */
.wc-block-grid__product-link::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 16px !important;
  background: rgba(240,130,0,0.18) !important;
  pointer-events: none !important;
  z-index: 3 !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}
.wc-block-grid__product:hover .wc-block-grid__product-link::before {
  opacity: 1 !important;
}

/* Dark gradient scrim */
.wc-block-grid__product-link::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    transparent    35%,
    rgba(4,4,4,0.5) 62%,
    rgba(4,4,4,0.88) 82%,
    rgba(4,4,4,0.97) 100%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* ── Title (inside link) ────────────────────────────────────── */
.wc-block-grid__product-title {
  position: absolute !important;
  bottom: 44px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 3 !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #fff !important;
  line-height: 1.2 !important;
  padding: 0 16px 4px !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85) !important;
  transition: color 0.2s ease,
              bottom 0.32s cubic-bezier(0.4,0,0.2,1) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.wc-block-grid__product:hover .wc-block-grid__product-title {
  color: var(--pyp-gold) !important;
  bottom: 88px !important;
}

/* ── Price ──────────────────────────────────────────────────── */
.wc-block-grid__product-price {
  position: absolute !important;
  bottom: 14px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 4 !important;
  font-family: var(--font-tech) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--pyp-gold) !important;
  padding: 0 16px !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7) !important;
  transition: bottom 0.32s cubic-bezier(0.4,0,0.2,1) !important;
}
.wc-block-grid__product:hover .wc-block-grid__product-price {
  bottom: 58px !important;
}
.wc-block-grid__product-price del {
  color: #ffffff !important;
  font-size: 0.76em !important;
  margin-right: 5px !important;
}
.wc-block-grid__product-price ins {
  text-decoration: none !important;
  color: var(--pyp-gold) !important;
}

/* ── Add to Cart button — slides up on hover ────────────────── */
.wc-block-grid__product-add-to-cart {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 11 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wc-block-grid__product-add-to-cart a,
.wc-block-grid__product .wp-block-button__link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100% !important;
  text-align: center !important;
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 0 0 16px 16px !important;
  padding: 15px 20px !important;
  font-family: var(--font-display) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  transform: translateY(8px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip-path: inset(0 0 100% 0 round 0 0 16px 16px) !important;
  transition: clip-path 0.32s cubic-bezier(0.4,0,0.2,1),
              transform 0.32s cubic-bezier(0.4,0,0.2,1),
              gap 0.3s ease,
              letter-spacing 0.3s ease !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
}
.wc-block-grid__product:hover .wc-block-grid__product-add-to-cart a,
.wc-block-grid__product:hover .wp-block-button__link {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  clip-path: inset(0 round 0 0 16px 16px) !important;
}
.wc-block-grid__product-add-to-cart a:hover,
.wc-block-grid__product .wp-block-button__link:hover {
  gap: 16px !important;
  letter-spacing: 0.24em !important;
  color: #0a0a0a !important;
}

/* ── Empty cart block — full width + spacing ───────────────────── */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-cart.alignwide,
.wp-block-woocommerce-empty-cart-block,
.wc-block-grid.wp-block-product-new,
.wc-block-grid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* ── Empty cart heading ─────────────────────────────────────── */
.wc-block-cart__empty-cart__title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 1rem !important;
}

/* ── Section heading 'Noutăți în magazin' (sibling of .wc-block-grid) ──── */
.wp-block-woocommerce-empty-cart-block h2.wp-block-heading:not(.wc-block-cart__empty-cart__title) {
  font-family: var(--font-display) !important;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--pyp-gold) !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}

/* ── On-sale badge ─────────────────────────────────────────────────────── */
/* Identic cu span.onsale — centrat pe muchia de sus a cardului */
.wc-block-grid__product-onsale {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 12 !important;
  background: var(--pyp-grad) !important;
  color: #0a0a0a !important;
  border-radius: 999px !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em !important;
  padding: 5px 14px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 12px rgba(240,165,0,0.45) !important;
  pointer-events: none !important;
  white-space: nowrap !important;
  min-height: unset !important;
  min-width: unset !important;
}
.wc-block-grid__product-onsale .screen-reader-text {
  display: none !important;
}

/* ── end WC Block Grid ────────────────────────────────────────── */

.woocommerce-message{
  margin-top: 0 !important;
  justify-content: space-between !important;
}

.woocommerce-message::before{
  position: relative !important;
  top: auto !important;
  left: auto !important;
}

.woocommerce-message::after{
  content: none !important;
}

.woocommerce-message .button{
  margin-left: auto !important;
}

.variations_form.cart{
  flex-direction: column;
}

.single-product div.product table.variations td {
  margin-bottom: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.reset_variations{
  margin-right: 1rem;
}

.single_variation_wrap{
  width: 100%;
}

.single_variation_wrap .single_variation .price{
  margin-bottom: 0 !important;
}

.single_variation_wrap .variations_button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single_variation_wrap .variations_button:before,
.single_variation_wrap .variations_button::after {
    content: none !important;
}

.widget_shopping_cart p.buttons{
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.site-header-cart .widget_shopping_cart a.button{
  margin-bottom: 0 !important;
}

.woocommerce-mini-cart__total strong,
.woocommerce-mini-cart__total span{
  color: #000 !important;
}

.wp-block-woocommerce-empty-cart-block h2.wp-block-heading:not(.wc-block-cart__empty-cart__title){
  margin-bottom: 3rem !important;
}

.wc-block-grid .wc-block-grid__product-onsale{
  border: none !important;
  color: #fff !important;
}

.woocommerce span.onsale{
  color: #fff !important;
}

.pyp-home-btn--primary:hover{
  color: #000 !important;
}

.woocommerce ul.products li.product .button.add_to_cart_button, .woocommerce ul.products li.product .add_to_cart_button{
  padding: 15px 10px !important;
}

.pyp-about-cta-btn,
.pyp-services-cta__btn,
button:not(.lg-next):not(.lg-prev):not(.lg-close):not(.lg-icon):not(.lg-thumb-outer):not(.pswp__button):not([class^="pswp"]){
  color: #fff !important;
  transition: all 0.2s ease !important;
}

.pyp-about-cta-btn:hover,
.pyp-services-cta__btn:hover{
  color: #000 !important;
  transition: all 0.2s ease !important;
}

.pyp-services-cta__btn.pyp-services-cta__btn--outline:hover{
  color: #fff !important;
}