/*
Theme Name: Hellobrow.s Academy
Theme URI: https://hellobrows.fr
Author: Hellobrow.s Academy
Author URI: https://hellobrows.fr
Description: Thème e-commerce premium pour Hellobrow.s Academy — formations ebooks pour brow artists. Design féminin, rose poudré, optimisé WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: hellobrows
Tags: e-commerce, woocommerce, beauty, feminine, one-page, custom-header, custom-menu

Hellobrow.s Academy — Thème WordPress sur mesure
*/

/* ============================================
   CSS VARIABLES — PALETTE HELLOBROW.S
   ============================================ */
:root {
  --hb-rose-poudre: #E8A0BF;
  --hb-rose-fuchsia: #C85588;
  --hb-bordeaux: #8B2252;
  --hb-bordeaux-dark: #5E1538;
  --hb-blanc-casse: #FFFAF8;
  --hb-beige-rose: #FFF0F5;
  --hb-rose-pale: #FFF5F9;
  --hb-rose-clair: #FFE4EE;
  --hb-rose-deep: #FFB5D2;
  --hb-text-dark: #2D1B2E;
  --hb-text-medium: #666666;
  --hb-text-light: #888888;
  --hb-text-muted: #999999;
  --hb-white: #ffffff;
  --hb-shadow-sm: 0 2px 12px rgba(0,0,0,0.03);
  --hb-shadow-md: 0 4px 20px rgba(0,0,0,0.04);
  --hb-shadow-lg: 0 20px 40px rgba(200,85,136,0.15);
  --hb-shadow-btn: 0 4px 15px rgba(200,85,136,0.25);
  --hb-radius-sm: 12px;
  --hb-radius-md: 16px;
  --hb-radius-lg: 24px;
  --hb-radius-btn: 28px;
  --hb-font-heading: 'Playfair Display', Georgia, serif;
  --hb-font-body: 'Montserrat', -apple-system, sans-serif;
  --hb-transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--hb-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--hb-text-dark);
  background: var(--hb-blanc-casse);
  overflow-x: hidden;
}

a {
  color: var(--hb-rose-fuchsia);
  text-decoration: none;
  transition: var(--hb-transition);
}
a:hover { color: var(--hb-bordeaux); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hb-font-heading);
  font-weight: 700;
  color: var(--hb-text-dark);
  line-height: 1.2;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hb-animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hb-animate.visible { opacity: 1; transform: translateY(0); }
.hb-animate-delay-1 { transition-delay: 0.1s; }
.hb-animate-delay-2 { transition-delay: 0.2s; }
.hb-animate-delay-3 { transition-delay: 0.3s; }

/* ============================================
   LAYOUT
   ============================================ */
.hb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hb-section {
  padding: 80px 0;
}
.hb-section--alt {
  background: var(--hb-rose-pale);
}
.hb-text-center { text-align: center; }
.hb-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hb-rose-fuchsia);
  font-family: var(--hb-font-body);
  margin-bottom: 10px;
  display: block;
}

/* ============================================
   HEADER
   ============================================ */
.hb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,160,191,0.15);
  transition: var(--hb-transition);
}
.hb-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.hb-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hb-header__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hb-rose-poudre), var(--hb-rose-fuchsia));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--hb-font-body);
}
.hb-header__logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--hb-text-dark);
  font-family: var(--hb-font-heading);
  letter-spacing: -0.5px;
}
.hb-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hb-header__nav a {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.3px;
  position: relative;
  font-family: var(--hb-font-body);
}
.hb-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hb-rose-fuchsia);
  transition: width 0.3s;
}
.hb-header__nav a:hover::after,
.hb-header__nav a.current::after { width: 100%; }
.hb-header__nav a:hover { color: var(--hb-rose-fuchsia); }
.hb-header__nav a.current { color: var(--hb-rose-fuchsia); }

.hb-header__cta {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: white !important;
  background: linear-gradient(135deg, var(--hb-rose-fuchsia), var(--hb-bordeaux)) !important;
  padding: 8px 20px !important;
  border-radius: 24px !important;
  letter-spacing: 0.5px;
}
.hb-header__cta::after { display: none !important; }
.hb-header__cta:hover { color: white !important; opacity: 0.9; }

.hb-header__cart {
  position: relative;
  color: var(--hb-rose-fuchsia);
  font-size: 18px;
}
.hb-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--hb-rose-fuchsia);
  color: white;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Mobile menu */
.hb-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hb-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hb-text-dark);
  transition: var(--hb-transition);
}

@media (max-width: 768px) {
  .hb-header__nav { display: none; }
  .hb-header__toggle { display: flex; }
  .hb-header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,250,248,0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(232,160,191,0.15);
    animation: fadeIn 0.3s ease;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.hb-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--hb-radius-btn);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--hb-font-body);
  text-decoration: none;
  transition: var(--hb-transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.hb-btn--primary {
  background: linear-gradient(135deg, var(--hb-rose-fuchsia), var(--hb-bordeaux));
  color: white;
  box-shadow: var(--hb-shadow-btn);
}
.hb-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,85,136,0.35);
  color: white;
}
.hb-btn--outline {
  background: transparent;
  color: var(--hb-rose-fuchsia);
  border: 1.5px solid var(--hb-rose-poudre);
}
.hb-btn--outline:hover {
  background: var(--hb-beige-rose);
  color: var(--hb-rose-fuchsia);
}
.hb-btn--white {
  background: white;
  color: var(--hb-bordeaux);
}
.hb-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  color: var(--hb-bordeaux);
}
.hb-btn--shimmer {
  background: linear-gradient(110deg, #C85588 0%, #E8A0BF 40%, #FFD4E8 50%, #E8A0BF 60%, #C85588 100%);
  background-size: 200%;
  animation: shimmer 3s linear infinite;
  color: white;
}

/* ============================================
   HERO
   ============================================ */
.hb-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--hb-blanc-casse);
}
.hb-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,160,191,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hb-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,85,136,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hb-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hb-hero__content { flex: 1; }
.hb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--hb-beige-rose), var(--hb-rose-clair));
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--hb-rose-fuchsia);
  letter-spacing: 1px;
  animation: float 3s ease-in-out infinite;
}
.hb-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hb-rose-fuchsia);
}
.hb-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hb-hero__title span {
  background: linear-gradient(135deg, var(--hb-rose-fuchsia), var(--hb-bordeaux));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hb-hero__desc {
  font-size: 16px;
  color: var(--hb-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hb-hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hb-hero__stats {
  display: flex;
  gap: 40px;
}
.hb-hero__stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--hb-rose-fuchsia);
  font-family: var(--hb-font-body);
}
.hb-hero__stat-label {
  font-size: 11px;
  color: var(--hb-text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Hero card */
.hb-hero__visual {
  flex: 0 0 340px;
  max-width: 340px;
}
.hb-hero__card {
  width: 300px;
  border-radius: var(--hb-radius-lg);
  background: linear-gradient(145deg, var(--hb-rose-clair), var(--hb-rose-poudre), var(--hb-rose-fuchsia));
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(200,85,136,0.25);
  position: relative;
}
.hb-hero__card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: white;
  font-weight: 700;
}
.hb-hero__card-name { color: white; font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.hb-hero__card-role { color: rgba(255,255,255,0.8); font-size: 12px; margin-bottom: 16px; }
.hb-hero__card-quote {
  background: rgba(255,255,255,0.2);
  border-radius: var(--hb-radius-sm);
  padding: 10px 16px;
  font-size: 12px;
  color: white;
  line-height: 1.5;
  font-style: italic;
}
.hb-hero__certified {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: var(--hb-beige-rose);
  border: 2px solid var(--hb-rose-clair);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(200,85,136,0.15);
  font-size: 22px;
}
.hb-hero__certified-text {
  font-size: 9px;
  color: var(--hb-rose-fuchsia);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hb-hero__inner { flex-direction: column; text-align: center; }
  .hb-hero__desc { margin-left: auto; margin-right: auto; }
  .hb-hero__buttons { justify-content: center; }
  .hb-hero__stats { justify-content: center; }
  .hb-hero__visual { display: none; }
}

/* ============================================
   DIVIDER
   ============================================ */
.hb-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hb-rose-poudre), var(--hb-rose-fuchsia), var(--hb-rose-poudre), transparent);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   SECTION: FORMATIONS
   ============================================ */
.hb-formations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* ============================================
   CARDS
   ============================================ */
.hb-card {
  background: white;
  border-radius: var(--hb-radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--hb-shadow-md);
}
.hb-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hb-shadow-lg);
}
.hb-card__header {
  padding: 28px 20px 22px;
  position: relative;
}
.hb-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  color: var(--hb-bordeaux);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hb-card__pretitle {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hb-card__title {
  font-size: 19px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin: 0;
}
.hb-card__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-top: 6px;
}
.hb-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hb-card__desc {
  font-size: 13px;
  color: var(--hb-text-medium);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.hb-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hb-card__pages {
  font-size: 12px;
  color: var(--hb-text-muted);
}
.hb-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--hb-bordeaux);
}

/* ============================================
   SECTION: STEPS
   ============================================ */
.hb-steps {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}
.hb-step {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 28px;
  border-radius: var(--hb-radius-md);
  background: white;
  box-shadow: var(--hb-shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hb-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--hb-shadow-lg);
}
.hb-step__number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hb-rose-clair), var(--hb-rose-poudre));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--hb-bordeaux);
}
.hb-step__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hb-step__desc {
  font-size: 13px;
  color: var(--hb-text-light);
  line-height: 1.6;
}

/* ============================================
   SECTION: TESTIMONIALS
   ============================================ */
.hb-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.hb-testimonial {
  background: white;
  border-radius: var(--hb-radius-md);
  padding: 24px;
  box-shadow: var(--hb-shadow-md);
  transition: transform 0.3s ease;
}
.hb-testimonial:hover { transform: translateY(-4px); }
.hb-testimonial__stars {
  color: var(--hb-rose-poudre);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hb-testimonial__text {
  font-size: 13px;
  color: var(--hb-text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hb-testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hb-testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hb-rose-poudre), var(--hb-rose-fuchsia));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
}
.hb-testimonial__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-text-dark);
}

/* ============================================
   CTA BANNER
   ============================================ */
.hb-cta {
  margin: 0 24px 60px;
  border-radius: var(--hb-radius-lg);
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--hb-rose-fuchsia) 0%, var(--hb-bordeaux) 50%, var(--hb-bordeaux-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hb-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hb-cta__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  position: relative;
}
.hb-cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ============================================
   FAQ
   ============================================ */
.hb-faq { max-width: 640px; margin: 0 auto; }
.hb-faq details {
  margin-bottom: 12px;
  border-radius: 14px;
  background: white;
  box-shadow: var(--hb-shadow-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.hb-faq details[open] { border-color: var(--hb-rose-poudre); }
.hb-faq summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--hb-text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hb-faq summary::-webkit-details-marker { display: none; }
.hb-faq summary::after {
  content: '+';
  font-size: 18px;
  color: var(--hb-rose-fuchsia);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.hb-faq details[open] summary::after { transform: rotate(45deg); }
.hb-faq details p {
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--hb-text-light);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.hb-footer {
  background: var(--hb-text-dark);
  color: white;
  padding: 48px 0 24px;
}
.hb-footer__inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hb-footer__brand { flex: 1 1 260px; }
.hb-footer__brand-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 14px;
}
.hb-footer__col { flex: 1 1 160px; }
.hb-footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--hb-rose-poudre);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hb-footer__col a, .hb-footer__col p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.hb-footer__col a:hover { color: var(--hb-rose-poudre); }
.hb-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .hb-footer__inner { flex-direction: column; gap: 24px; }
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce ul.products li.product {
  border-radius: var(--hb-radius-md) !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  background: white;
  box-shadow: var(--hb-shadow-md);
  padding: 16px;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--hb-shadow-lg) !important;
}
.woocommerce ul.products li.product img {
  border-radius: var(--hb-radius-sm) !important;
}
.woocommerce .price .amount,
.woocommerce-Price-amount {
  color: var(--hb-bordeaux) !important;
  font-weight: 700 !important;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce .single_add_to_cart_button,
.wc-proceed-to-checkout a.button,
.woocommerce #payment #place_order {
  background: linear-gradient(135deg, var(--hb-rose-fuchsia), var(--hb-bordeaux)) !important;
  color: white !important;
  border-radius: var(--hb-radius-btn) !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  transition: var(--hb-transition) !important;
  box-shadow: var(--hb-shadow-btn) !important;
  font-family: var(--hb-font-body) !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce .single_add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(200,85,136,0.35) !important;
}
.woocommerce a.added_to_cart {
  display: block !important;
  text-align: center !important;
  margin-top: 8px !important;
  padding: 8px 20px !important;
  background: var(--hb-beige-rose) !important;
  color: var(--hb-rose-fuchsia) !important;
  border: 1.5px solid var(--hb-rose-poudre) !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.woocommerce-message {
  border-top-color: var(--hb-rose-fuchsia) !important;
  background: var(--hb-beige-rose) !important;
}
.woocommerce-message a.button {
  background: var(--hb-rose-fuchsia) !important;
  color: white !important;
  border-radius: 20px !important;
}

/* Pills/badges */
.hb-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--hb-beige-rose);
  color: var(--hb-rose-fuchsia);
  border: 1px solid var(--hb-rose-clair);
}
