@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f8f6f1;
  --accent: #c8102e;
  --accent-dark: #a00d24;
  --gray: #6b6b6b;
  --light: #eeece7;
  --border: #d8d5ce;
  --card-bg: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT ── */
.pp-announcement {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── NAV ── */
#pp-nav {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
#pp-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}

.pp-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--black);
  text-decoration: none;
}
.pp-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav-links a:hover::after,
.nav-links a.current-menu-item > a::after,
.nav-links li.current-menu-item > a::after { width: 100%; }
.nav-links a:hover,
.nav-links li.current-menu-item > a { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.btn-nav-login {
  border: 2px solid var(--black);
  background: transparent;
  padding: 8px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--black);
  display: inline-block;
}
.btn-nav-login:hover { background: var(--black); color: white; }

.btn-cart-nav {
  background: var(--accent);
  color: white !important;
  border: none;
  padding: 8px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  text-decoration: none !important;
}
.btn-cart-nav:hover { background: var(--accent-dark); }

.pp-cart-count {
  background: white;
  color: var(--accent);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.pp-hamburger { display: none; cursor: pointer; font-size: 24px; background: none; border: none; }

/* ── PAGE HERO ── */
.pp-page-hero {
  background: var(--black);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.pp-page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -20px; top: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(255,255,255,0.03);
  letter-spacing: -5px;
  pointer-events: none;
  line-height: 1;
}

.pp-page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.pp-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.pp-breadcrumb a:hover { color: var(--accent); }
.pp-breadcrumb span { color: rgba(255,255,255,0.7); }

.pp-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  color: white;
  letter-spacing: 2px;
  line-height: 0.95;
}
.pp-page-title em { color: var(--accent); font-style: normal; }

.pp-page-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 300;
  margin-top: 14px;
  max-width: 500px;
}

/* ── CONTAINER & SECTIONS ── */
.pp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-section { padding: 80px 0; }

.section-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: 1px; line-height: 1;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary, a.btn-primary, button.btn-primary {
  background: var(--accent); color: white !important; border: none;
  padding: 15px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; text-decoration: none !important;
  display: inline-block; transition: all 0.2s;
  line-height: 1;
}
.btn-primary:hover, a.btn-primary:hover { background: var(--black); }

.btn-outline, a.btn-outline {
  background: transparent; color: var(--black) !important;
  border: 2px solid var(--black);
  padding: 13px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; text-decoration: none !important;
  display: inline-block; transition: all 0.2s;
  line-height: 1;
}
.btn-outline:hover { background: var(--black); color: white !important; }

.btn-outline-white, a.btn-outline-white {
  background: transparent; color: white !important;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; text-decoration: none !important;
  display: inline-block; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── PRODUCT CARD ── */
.pp-product-card {
  background: white; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.pp-product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

.pp-product-img {
  position: relative; height: 280px; overflow: hidden; background: var(--light);
}
.pp-product-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
  display: block;
}
.pp-product-card:hover .pp-product-img img { transform: scale(1.04); }

.pp-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; z-index: 2;
}
.pp-badge.new-badge { background: var(--black); }
.pp-badge.sale-badge { background: var(--accent); }

.pp-product-overlay {
  position: absolute; bottom: -60px; left: 0; right: 0;
  display: flex; transition: bottom 0.3s;
}
.pp-product-card:hover .pp-product-overlay { bottom: 0; }

.pp-btn-add-cart {
  flex: 1; background: var(--black); color: white; border: none;
  padding: 14px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pp-btn-add-cart:hover { background: var(--accent); }

.pp-btn-wishlist {
  background: white; border: none; width: 46px; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border);
}
.pp-btn-wishlist:hover { background: var(--light); }

.pp-product-info { padding: 18px 20px 22px; }
.pp-product-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 6px; }
.pp-product-name { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }

.pp-price-login {
  font-size: 13px; color: var(--gray); font-style: italic;
  display: flex; align-items: center; gap: 6px;
}
.pp-price-login a { color: var(--accent); font-weight: 600; font-style: normal; text-decoration: none; }
.pp-price-login a:hover { text-decoration: underline; }

.pp-price-actual { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--black); }
.pp-price-old { font-size: 14px; color: var(--gray); text-decoration: line-through; margin-right: 6px; }

/* ── FORMS ── */
.pp-form-group { margin-bottom: 20px; }
.pp-form-group label,
.pp-form-group > span.label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px; color: var(--black);
}
.pp-form-group input,
.pp-form-group select,
.pp-form-group textarea,
.pp-input {
  width: 100%; border: 2px solid var(--border);
  background: var(--white); padding: 13px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--black); outline: none; transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.pp-form-group input:focus,
.pp-form-group select:focus,
.pp-form-group textarea:focus,
.pp-input:focus { border-color: var(--black); }
.pp-form-group textarea { resize: vertical; min-height: 120px; }
.pp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── TOAST ── */
.pp-toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--black); color: white;
  padding: 16px 24px; font-size: 14px; font-weight: 500;
  z-index: 9999; transform: translateY(100px); opacity: 0;
  transition: all 0.35s; display: flex; align-items: center; gap: 12px;
  max-width: 340px; pointer-events: none;
}
.pp-toast.show { transform: translateY(0); opacity: 1; }

/* ── FOOTER ── */
#pp-footer { background: var(--black); padding: 70px 0 30px; }

.footer-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}

.footer-brand .pp-logo { display: inline-block; margin-bottom: 0; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; font-weight: 300; max-width: 300px; margin: 16px 0 28px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 15px; text-decoration: none; transition: all 0.2s;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); }

.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: white; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ── FADE IN ── */
.pp-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.pp-fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── OVERLAY ── */
.pp-overlay-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9000; display: none; }
.pp-overlay-bg.active { display: block; }

/* ════════════════════════════════════════
   WOOCOMMERCE RESET & INTEGRATION
════════════════════════════════════════ */
.woocommerce-notices-wrapper { max-width: 1400px; margin: 20px auto; padding: 0 40px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 14px 20px; margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  border-left: 4px solid var(--accent); background: white;
  list-style: none;
}
.woocommerce-message::before { display: none; }
.woocommerce-error { border-left-color: var(--accent); }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media(max-width:900px) {
  .nav-links { display: none; }
  .pp-hamburger { display: block; }
  .nav-inner { padding: 0 24px; }
  .pp-container { padding: 0 24px; }
  .footer-grid { padding: 0 24px; }
  .footer-bottom { padding: 24px 24px 0; }
  .pp-form-row { grid-template-columns: 1fr; }
  .pp-page-hero-inner { padding: 0 24px; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
/* Mobile nav */
#pp-nav.mobile-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--black);
  padding: 20px 40px;
  gap: 16px;
  z-index: 999;
}
