/* ── PawLux Global Styles ─────────────────────────────────── */
:root {
  --primary: #1B998B;
  --primary-dark: #FF6B6B;
  --secondary: #2D3748;
  --accent: #FFF3EE;
  --text: #1A202C;
  --text-muted: #718096;
  --border: #E2E8F0;
  --success: #38A169;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Navbar ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.5rem; font-weight: 800; color: var(--primary);
}
.nav-logo span { color: var(--secondary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-search {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 50px; padding: .5rem 1rem;
}
.nav-search input {
  border: none; background: none; outline: none; font-size: .9rem;
  width: 180px; font-family: var(--font);
}
.cart-btn {
  position: relative; background: var(--primary); color: white;
  border: none; border-radius: 50px; padding: .6rem 1.2rem;
  font-weight: 600; display: flex; align-items: center; gap: .4rem;
  transition: background .2s, transform .1s;
}
.cart-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.cart-count {
  background: white; color: var(--primary);
  border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem;
  border: none; transition: all .2s; cursor: pointer;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: #1a2435; transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.2rem; font-size: .875rem; }
.btn-full { width: 100%; }

/* ── Badge ── */
.badge {
  display: inline-block; padding: .25rem .75rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.badge-sale { background: var(--primary); color: white; }
.badge-new { background: var(--success); color: white; }
.badge-cat { background: var(--accent); color: var(--primary); }

/* ── Product Card ── */
.product-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card-img {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: var(--accent);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-badge { position: absolute; top: 1rem; left: 1rem; }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.product-card-cat { font-size: .75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.product-card-name { font-weight: 700; font-size: 1rem; line-height: 1.35; }
.product-card-rating { display: flex; align-items: center; gap: .3rem; font-size: .85rem; color: var(--text-muted); }
.stars { color: #1B998B; }
.product-card-price { display: flex; align-items: center; gap: .6rem; margin-top: auto; padding-top: .5rem; }
.price-current { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.price-compare { font-size: .9rem; color: var(--text-muted); text-decoration: line-through; }
.product-card-actions { padding: 0 1.25rem 1.25rem; }

/* ── Product Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2435 100%);
  color: white; padding: 5rem 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="150" cy="50" r="80" fill="%23FF6B35" opacity="0.08"/><circle cx="20" cy="150" r="60" fill="%23FF6B35" opacity="0.05"/></svg>');
  background-size: cover;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-tag { display: inline-block; background: rgba(255,107,53,0.2); color: var(--primary); border: 1px solid rgba(255,107,53,0.3); border-radius: 50px; padding: .4rem 1rem; font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 420px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/3; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,0.6); }

/* ── Section ── */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; color: var(--primary); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ── Features Strip ── */
.features-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.feature-item { display: flex; align-items: center; gap: 1rem; }
.feature-icon { font-size: 2rem; }
.feature-text strong { display: block; font-weight: 700; }
.feature-text span { font-size: .85rem; color: var(--text-muted); }

/* ── Categories ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.category-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem 1rem;
  text-align: center; border: 2px solid transparent; transition: all .2s;
  cursor: pointer; box-shadow: var(--shadow);
}
.category-card:hover, .category-card.active { border-color: var(--primary); background: var(--accent); transform: translateY(-3px); }
.category-card .cat-icon { font-size: 2rem; margin-bottom: .5rem; }
.category-card .cat-name { font-weight: 600; font-size: .9rem; }

/* ── Filters ── */
.shop-filters {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.filter-btn {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 50px;
  padding: .5rem 1.25rem; font-weight: 600; font-size: .875rem; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.sort-select {
  margin-left: auto; padding: .5rem 1rem; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: var(--font); font-size: .875rem; outline: none;
  background: var(--white); cursor: pointer;
}

/* ── Cart ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 1rem; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid var(--border); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.cart-table td { padding: 1.25rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-item-name { font-weight: 600; margin-bottom: .25rem; }
.cart-qty { display: flex; align-items: center; gap: .5rem; }
.qty-btn { width: 30px; height: 30px; border: 1.5px solid var(--border); border-radius: 6px; background: none; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.qty-input { width: 40px; text-align: center; border: 1.5px solid var(--border); border-radius: 6px; padding: .3rem; font-family: var(--font); }
.remove-btn { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; transition: color .2s; }
.remove-btn:hover { color: red; }
.cart-summary { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.cart-summary-row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.cart-summary-row:last-of-type { border: none; font-weight: 800; font-size: 1.2rem; }
.empty-cart { text-align: center; padding: 5rem 1rem; }
.empty-cart-icon { font-size: 4rem; margin-bottom: 1rem; }

/* ── Checkout Form ── */
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
.form-section { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.form-section h3 { margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .4rem; }
.form-group input, .form-group select {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 1rem;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-methods { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.payment-tab {
  flex: 1; padding: 1rem; border: 2px solid var(--border); border-radius: var(--radius-sm);
  text-align: center; cursor: pointer; font-weight: 600; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.payment-tab.active { border-color: var(--primary); background: var(--accent); color: var(--primary); }
#stripe-container, #paypal-container { display: none; }
#stripe-container.active, #paypal-container.active { display: block; }
#stripe-card-element { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .85rem 1rem; background: white; }
.order-summary-box { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); position: sticky; top: 90px; }
.order-summary-item { display: flex; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.order-summary-item img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; }
.order-summary-item-info { flex: 1; }
.order-summary-item-info .name { font-weight: 600; font-size: .9rem; }
.order-summary-item-info .price { color: var(--primary); font-weight: 700; }
.summary-totals { margin-top: 1rem; }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .9rem; }
.summary-row.total { font-weight: 800; font-size: 1.15rem; border-top: 2px solid var(--border); padding-top: 1rem; margin-top: .5rem; }

/* ── Success Page ── */
.success-page { text-align: center; padding: 5rem 1.5rem; }
.success-icon { font-size: 5rem; margin-bottom: 1.5rem; animation: bounce .6s ease; }
@keyframes bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.success-order-id { background: var(--accent); border-radius: var(--radius-sm); padding: 1rem 1.5rem; display: inline-block; font-family: monospace; font-size: 1.2rem; font-weight: 800; color: var(--primary); margin: 1.5rem 0; }

/* ── Toast ── */
.toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: .75rem; }
.toast {
  background: var(--secondary); color: white; padding: 1rem 1.5rem;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-hover);
  display: flex; align-items: center; gap: .75rem; min-width: 280px;
  animation: slideIn .3s ease;
}
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid #E53E3E; }
@keyframes slideIn { from { transform: translateX(120%); opacity:0; } to { transform: translateX(0); opacity:1; } }

/* ── Footer ── */
footer {
  background: var(--secondary); color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { font-weight: 700; color: white; margin-bottom: 1.25rem; }
.footer-col a { display: block; margin-bottom: .6rem; font-size: .9rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,255,255,0.4); }
.payment-icons { display: flex; gap: .5rem; }
.payment-icon { background: rgba(255,255,255,0.1); border-radius: 4px; padding: .3rem .6rem; font-size: .75rem; font-weight: 700; color: white; }

/* ── Loading ── */
.loader { text-align: center; padding: 4rem; color: var(--text-muted); }
.spinner { display: inline-block; width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-search { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}



/* ========================================
   PAWLUX — TESLA HERO
   ======================================== */

/* Override ancien hero */
.hero { padding: 0 !important; background: #000 !important; display: block !important; }
.hero-inner, .hero-content, .hero-img, .hero-stats, .hero-tag { display: none !important; }

/* Video plein ecran */
.hero-video-wrap {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0a0a0a;
}
.hero-vid {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}
.hero-darken {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.80) 100%);
  z-index: 1;
}
.hero-tesla-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 860px;
  animation: heroIn 1.2s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroIn {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1B998B;
  margin-bottom: 22px;
  animation: heroIn 1.2s 0.15s both;
}
.hero-tesla-content h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
  animation: heroIn 1.2s 0.25s both;
}
.hero-tesla-content h1 span { color: #1B998B; }
.hero-tesla-content p {
  font-size: 1.15rem;
  opacity: 0.80;
  line-height: 1.7;
  margin-bottom: 42px;
  color: #fff;
  animation: heroIn 1.2s 0.35s both;
}
.hero-tesla-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 1.2s 0.45s both;
}
.hero-tesla-btns .btn-primary {
  padding: 15px 36px !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
}
.hero-btn-ghost {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, background 0.3s;
}
.hero-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.10);
}
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-stats-bar .hs-item {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.hero-stats-bar .hs-item:last-child { border-right: none; }
.hero-stats-bar .hs-num {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: #1B998B;
  line-height: 1;
}
.hero-stats-bar .hs-label {
  display: block;
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.65;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
  0%,100% { opacity:0.5; transform: translateX(-50%) translateY(0); }
  50%      { opacity:1;   transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 640px) {
  .hero-stats-bar .hs-item { padding: 14px 8px; }
  .hero-stats-bar .hs-num  { font-size: 1.2rem; }
  .hero-stats-bar          { flex-wrap: wrap; }
  .hero-scroll             { display: none; }
}

/* TESLA HERO — overlay lumineux */
.hero-darken {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.28) 55%,
    rgba(0,0,0,0.60) 100%
  ) !important;
}

/* HERO — trust pills premium */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
  animation: heroIn 1.2s 0.6s both;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.hero-trust-pill .tp-icon {
  font-size: 0.9rem;
}
.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* HERO — category chips + tagline */
.hero-cats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  animation: heroIn 1.2s 0.35s both;
}
.hero-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(27,153,139,0.18);
  border: 1px solid rgba(27,153,139,0.50);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}
.hero-cat-chip:hover {
  background: rgba(27,153,139,0.35);
  border-color: #1B998B;
}
.hero-tagline {
  font-size: 1rem !important;
  font-weight: 500 !important;
  opacity: 0.70 !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 38px !important;
  animation: heroIn 1.2s 0.42s both;
}

/* HERO — tagline decorative divider */
.hero-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  animation: heroIn 1.2s 0.42s both;
}
.hero-divider-line::before,
.hero-divider-line::after {
  content: '';
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35));
}
.hero-divider-line::after {
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.35));
}
.hero-divider-line span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  white-space: nowrap;
}


/* ================================================
   PAWLUX — PREMIUM DTC UPGRADE
   ================================================ */
.pl-section-eyebrow { display:inline-block; font-size:0.68rem; font-weight:800; letter-spacing:4px; text-transform:uppercase; color:#1B998B; margin-bottom:14px; }
.pl-section-title { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; line-height:1.15; color:#111; margin-bottom:16px; }
.pl-section-sub { font-size:1.05rem; color:#666; max-width:540px; margin:0 auto; line-height:1.7; }
.pl-section-head { text-align:center; margin-bottom:56px; padding:0 24px; }

.product-card { border-radius:16px!important; overflow:hidden!important; box-shadow:0 2px 12px rgba(0,0,0,0.06)!important; transition:transform 0.32s cubic-bezier(0.22,1,0.36,1),box-shadow 0.32s!important; background:#fff!important; position:relative!important; }
.product-card:hover { transform:translateY(-8px)!important; box-shadow:0 20px 48px rgba(0,0,0,0.13)!important; }
.product-card img { transition:transform 0.5s cubic-bezier(0.22,1,0.36,1)!important; }
.product-card:hover img { transform:scale(1.07)!important; }

.pl-cat-strip { padding:52px 24px; background:#fff; }
.pl-cat-strip-inner { max-width:880px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.pl-cat-card { position:relative; border-radius:22px; overflow:hidden; height:230px; display:flex; align-items:flex-end; text-decoration:none; box-shadow:0 4px 24px rgba(0,0,0,0.10); transition:transform 0.35s cubic-bezier(0.22,1,0.36,1),box-shadow 0.35s; }
.pl-cat-card:hover { transform:translateY(-5px) scale(1.01); box-shadow:0 24px 56px rgba(0,0,0,0.18); }
.pl-cat-card-bg { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.pl-cat-card:hover .pl-cat-card-bg { transform:scale(1.07); }
.pl-cat-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.78) 0%,rgba(0,0,0,0.08) 65%); }
.pl-cat-card-text { position:relative; z-index:2; padding:24px; color:#fff; }
.pl-cat-card-text h3 { font-size:1.45rem; font-weight:900; margin-bottom:4px; }
.pl-cat-card-text span { font-size:0.78rem; opacity:0.72; font-weight:600; }
.pl-cat-card-arrow { position:absolute; top:18px; right:18px; z-index:2; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.3); display:flex; align-items:center; justify-content:center; color:#fff; font-size:1rem; backdrop-filter:blur(4px); transition:background 0.2s,border-color 0.2s; }
.pl-cat-card:hover .pl-cat-card-arrow { background:#1B998B; border-color:#1B998B; }

.pl-benefits { background:#f8f9fa; padding:90px 0; }
.pl-benefits-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1100px; margin:0 auto; padding:0 24px; }
.pl-benefit-card { text-align:center; padding:40px 24px; background:#fff; border-radius:20px; box-shadow:0 2px 16px rgba(0,0,0,0.055); transition:transform 0.3s,box-shadow 0.3s; }
.pl-benefit-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(0,0,0,0.10); }
.pl-benefit-icon { width:68px; height:68px; background:linear-gradient(135deg,rgba(27,153,139,0.14),rgba(27,153,139,0.04)); border-radius:20px; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:2rem; }
.pl-benefit-card h3 { font-size:1rem; font-weight:800; color:#111; margin-bottom:10px; }
.pl-benefit-card p { font-size:0.88rem; color:#777; line-height:1.65; margin:0; }

.pl-reviews { padding:90px 0; background:#fff; }
.pl-reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:1100px; margin:0 auto; padding:0 24px; }
.pl-review-card { background:#f8f9fa; border-radius:20px; padding:32px 28px; transition:transform 0.3s,box-shadow 0.3s; border:1px solid rgba(0,0,0,0.04); }
.pl-review-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,0.08); background:#fff; }
.pl-review-stars { color:#F5A623; font-size:1rem; margin-bottom:16px; letter-spacing:2px; }
.pl-review-text { font-size:0.95rem; color:#333; line-height:1.75; margin-bottom:24px; font-style:italic; }
.pl-review-author { display:flex; align-items:center; gap:13px; }
.pl-review-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,#1B998B,#0d7a6e); display:flex; align-items:center; justify-content:center; font-size:1rem; color:#fff; font-weight:800; flex-shrink:0; }
.pl-review-name { font-weight:800; font-size:0.9rem; color:#111; }
.pl-review-location { font-size:0.75rem; color:#999; margin-top:2px; }
.pl-review-verified { display:inline-flex; align-items:center; gap:4px; font-size:0.68rem; font-weight:700; color:#1B998B; margin-top:4px; }

.pl-newsletter { background:linear-gradient(135deg,#0d7a6e 0%,#1B998B 60%,#22b8a8 100%); padding:90px 24px; text-align:center; }
.pl-newsletter .pl-section-eyebrow { color:rgba(255,255,255,0.65); }
.pl-newsletter h2 { font-size:clamp(1.7rem,3vw,2.5rem); font-weight:900; color:#fff; margin-bottom:14px; }
.pl-newsletter > p { color:rgba(255,255,255,0.78); font-size:1rem; margin-bottom:40px; max-width:440px; margin-left:auto; margin-right:auto; line-height:1.65; }
.pl-newsletter-form { display:flex; gap:12px; max-width:500px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.pl-newsletter-form input { flex:1; min-width:230px; padding:16px 22px; border-radius:12px; border:none; font-size:0.95rem; font-family:inherit; outline:none; box-shadow:0 4px 24px rgba(0,0,0,0.15); }
.pl-newsletter-form button { padding:16px 30px; border-radius:12px; border:none; background:#111; color:#fff; font-weight:800; font-size:0.92rem; font-family:inherit; cursor:pointer; transition:background 0.2s,transform 0.15s; white-space:nowrap; }
.pl-newsletter-form button:hover { background:#000; transform:translateY(-2px); }
.pl-newsletter-note { font-size:0.72rem; color:rgba(255,255,255,0.45); margin-top:16px; }

.pl-footer-premium { background:#0a0a0a; padding:72px 24px 40px; }
.pl-footer-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:52px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,0.07); }
.pl-footer-brand h3 { font-size:1.5rem; font-weight:900; color:#fff; margin-bottom:14px; }
.pl-footer-brand p { font-size:0.88rem; line-height:1.7; color:rgba(255,255,255,0.42); max-width:260px; }
.pl-footer-col h4 { font-size:0.70rem; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,0.28); margin-bottom:20px; }
.pl-footer-col ul { list-style:none; padding:0; margin:0; }
.pl-footer-col ul li { margin-bottom:12px; }
.pl-footer-col ul li a { color:rgba(255,255,255,0.52); text-decoration:none; font-size:0.9rem; transition:color 0.2s; }
.pl-footer-col ul li a:hover { color:#1B998B; }
.pl-footer-bottom { max-width:1100px; margin:36px auto 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.pl-footer-copy { font-size:0.78rem; color:rgba(255,255,255,0.22); }
.pl-footer-payments { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.pl-footer-payments span { display:inline-block; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.10); border-radius:7px; padding:5px 12px; font-size:0.65rem; font-weight:800; color:rgba(255,255,255,0.45); letter-spacing:0.8px; }

@media(max-width:900px){.pl-benefits-grid{grid-template-columns:repeat(2,1fr)}.pl-reviews-grid{grid-template-columns:1fr}.pl-footer-inner{grid-template-columns:1fr 1fr;gap:36px}.pl-cat-strip-inner{gap:14px}}
@media(max-width:560px){.pl-benefits-grid{grid-template-columns:1fr}.pl-footer-inner{grid-template-columns:1fr}.pl-cat-strip-inner{grid-template-columns:1fr}}

/* ===== LOGO UPGRADE ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #1B998B, #0d6e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  filter: drop-shadow(0 1px 4px rgba(27,153,139,0.18));
  transition: transform 0.2s, filter 0.2s;
}
.nav-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 8px rgba(27,153,139,0.35));
}
.nav-logo h3 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
