:root {
  --bl-primary: #e40063;
  --bl-primary-dark: #be0053;
  --bl-accent: #6abf4b;
  --bl-bg: #f7f5f7;
  --bl-card: #ffffff;
  --bl-text: #22212a;
  --bl-muted: #6c6a74;
  --bl-border: #e6e1e7;
  --bl-radius: 24px;
  --bl-shadow: 0 10px 30px rgba(25, 20, 31, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bl-bg);
  color: var(--bl-text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container {
  width: min(100% - 24px, 1180px);
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bl-primary);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.menu-toggle {
  appearance: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: grid;
  gap: 4px;
  place-content: center;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}
.site-branding {
  display: flex;
  justify-content: center;
}
.custom-logo-link,
.site-title {
  background: #fff;
  color: var(--bl-text);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--bl-shadow);
}
.custom-logo { max-height: 52px; width: auto; }
.header-cart {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
}
.header-cart-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  border-radius: 99px;
  background: #ff5d2a;
  color: #fff;
  font-size: .75rem;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(255,255,255,.2);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px;
}
.mobile-menu li a {
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
}
.mobile-menu li a:hover { background: #f4eef3; }
.site-shell { padding: 20px 0 48px; }
.hero-card,
.content-card {
  background: var(--bl-card);
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  box-shadow: var(--bl-shadow);
}
.hero-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4f8, #fff7f1);
  padding: 30px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 8px 0 14px;
}
.hero-content p {
  color: var(--bl-muted);
  max-width: 48ch;
  margin-bottom: 22px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bl-primary);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-visual {
  min-height: 280px;
  position: relative;
}
.hero-bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
}
.hero-bubble-one {
  inset: 10% 8% auto auto;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle at 30% 30%, #ffebc9, #ffc6da 65%, #fff0f6);
}
.hero-bubble-two {
  inset: auto auto 8% 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, #fff, #ffe4f1 60%, #ffd4ad);
}
.catalog-section { margin-top: 26px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.section-heading h2,
.entry-title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin: 0;
}
.section-heading a {
  color: var(--bl-primary);
  font-weight: 700;
}
.category-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(110px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.category-pill {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--bl-border);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--bl-shadow);
}
.category-pill-icon {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  background: #fff3f8;
  overflow: hidden;
}
.default-content { display: grid; gap: 16px; }
.entry-content { color: var(--bl-muted); line-height: 1.7; }
.bl-button,
.button,
button,
input[type='submit'] {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: .22s ease;
}
.bl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 700;
}
.bl-button-primary,
.button.alt,
button.alt,
.single_add_to_cart_button {
  background: linear-gradient(180deg, var(--bl-primary), var(--bl-primary-dark));
  color: #fff;
}
.bl-button-outline {
  background: #fff;
  color: var(--bl-primary);
  border: 1px solid var(--bl-primary);
}
.bl-button-whatsapp {
  background: linear-gradient(180deg, #72c857, #57ad3d);
  color: #fff;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--bl-accent);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 28px rgba(0,0,0,.18);
  color: #fff;
  font-size: 1.6rem;
  z-index: 90;
}
.site-footer {
  background: #1f1722;
  color: rgba(255,255,255,.85);
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.footer-grid h3,
.widget-title { color: #fff; margin-top: 0; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li + li { margin-top: 8px; }
.shop-header-block { margin-bottom: 10px; }
.empty-plugin-box { padding: 24px; }

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .hero-visual { min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-shell { padding-top: 14px; }
  .container { width: min(100% - 18px, 1180px); }
  .hero-content h1 { font-size: 2.2rem; }
  .category-scroll { grid-auto-columns: 105px; }
  .custom-logo-link,
  .site-title { padding: 8px 18px; }
}
