:root {
  /* Brand core */
  --bb-primary: #6D28D9;        /* Electric Indigo */
  --bb-secondary: #F1E9FF;      /* Lavender Fog */
  --bb-dark: #140A2E;           /* Deep Violet Night */
  --bb-light: #FAF9FF;          /* Editorial Violet White */
  --bb-light-hero: #F3EEFF;     /* Hero Lavender Glow */

  /* Accents */
  --bb-accent: #16A34A;         /* Vital Green */
  --bb-attention: #F59E0B;      /* Bold Amber */
  --bb-critical: #DC2626;       /* Clinical Red */
  --bb-info: #2563EB;           /* Modern Blue */
  --bb-article-tag: #6d28d926;  /* Indigo @ low opacity */
  --bb-bg-article: #6d28d91a;   /* Indigo soft background */

  /* Text */
  --bb-ink: #0F0726;            /* Deep Editorial Ink */
  --bb-text-primary: #18102F;   /* High-contrast reading */
  --bb-text-secondary: #6B6386; /* Muted violet gray */

  /* Surfaces & dividers */
  --bb-divider: #E5E0F4;        /* Soft violet divider */
  --bb-surface: #FFFFFF;       /* Cards */

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows (subtle, journal-like) */
  --shadow-soft: 0 14px 36px rgba(20, 10, 46, 0.10);
  --shadow-strong: 0 22px 60px rgba(20, 10, 46, 0.18);

  /* Motion */
  --transition: 200ms ease;
}






*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--bb-light);
  color: var(--bb-text-primary);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--bb-primary);
  text-decoration: none;
}
a:hover {
  color: var(--bb-text);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bb-secondary);
  outline-offset: 3px;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
  color: var(--bb-dark);
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--bb-dark);
  letter-spacing: -0.01em;
}

h1 {
  line-height: 1.1;
}

h2,
h3 {
  line-height: 1.3;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 10px;
  background: rgba(139, 30, 63, 0.12);
  color: var(--bb-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(58, 12, 27, 0.06);
  color: var(--bb-text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.button, .article-cta .cta-button, .ghost-button, .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.button-primary, .article-cta .cta-button, .hero-cta {
  background: var(--bb-primary);
  color: var(--bb-surface);
  box-shadow: var(--shadow-soft);
}
.button-primary:hover, .article-cta .cta-button:hover, .hero-cta:hover, .button-primary:focus-visible, .article-cta .cta-button:focus-visible, .hero-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
  background: var(--bb-critical);
}

.hero-cta:hover{
  color: #fff;
}

.button-ghost, .ghost-button {
  background: transparent;
  color: var(--bb-primary);
  border-color: var(--bb-primary);
}
.button-ghost:hover, .ghost-button:hover, .button-ghost:focus-visible, .ghost-button:focus-visible {
  border-color: var(--bb-primary);
  background: var(--bb-bg-article);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--bb-divider);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.site-header .header-top {
  background: var(--bb-dark);
  color: var(--bb-surface);
  font-size: 0.95rem;
  text-align: center;
  padding: 0.65rem 1rem;
  letter-spacing: 0.01em;
}
.site-header .header-main {
  padding: 1rem 0;
}
.site-header .header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bb-dark);
  text-decoration: none;
}
.brand .brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand .brand-text {
  display: grid;
  gap: 0.15rem;
}
.brand .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand .brand-tagline {
  font-size: 0.95rem;
  color: var(--bb-text-secondary);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.primary-nav .nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--bb-text-secondary);
  padding: 0.35rem 0;
  transition: color 200ms ease;
}
.primary-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bb-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.primary-nav .nav-link:hover, .primary-nav .nav-link:focus-visible {
  color: var(--bb-dark);
}
.primary-nav .nav-link.is-active::after, .primary-nav .nav-link:hover::after, .primary-nav .nav-link:focus-visible::after {
  transform: scaleX(1);
}
.primary-nav .nav-cta {
  padding-left: 1rem;
}

.hero {
  background: var(--bb-light-hero);
  padding: 4rem 0 4.5rem;
}
.hero .hero-content {
  max-width: 680px;
  display: grid;
  gap: 1rem;
}
.hero .hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
}
.hero .hero-content p {
  color: var(--bb-text-secondary);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.article-list {
  padding: 3.5rem 0 4.5rem;
  background: var(--bb-article-tag);
}
.article-list .section-header {
  text-align: center;
  margin-bottom: 2.4rem;
  display: grid;
  gap: 0.65rem;
}
.article-list .section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}
.article-list .section-header p {
  color: var(--bb-text-secondary);
  font-size: 1rem;
}
.article-list .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.article-list .show-more {
  margin-top: 1.5rem;
  text-align: center;
}

.is-hidden {
  display: none !important;
}

.card {
  background-color: var(--bb-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bb-divider);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  box-shadow: var(--shadow-soft);
}
.card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(139, 30, 63, 0.26);
}
.card .card-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(139, 30, 63, 0.12), rgba(232, 166, 184, 0.3));
  overflow: hidden;
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}
.card:hover .card-media img, .card:focus-within .card-media img {
  transform: scale(1.04);
}
.card .card-body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.card .card-body h3 {
  font-size: 1.2rem;
}
.card .card-body p {
  color: var(--bb-text-secondary);
  font-size: 0.98rem;
}
.card .meta {
  color: var(--bb-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bb-primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--bb-divider);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: var(--bb-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.8rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.site-footer .footer-info {
  display: grid;
  gap: 0.75rem;
}
.site-footer .footer-info p {
  margin: 0;
}
.site-footer .footer-info .copyright {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}
.site-footer .footer-info .footer-address,
.site-footer .footer-info .footer-contact {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.site-footer .footer-info a {
  color: var(--bb-secondary);
  font-weight: 600;
}
.site-footer .footer-info a:hover, .site-footer .footer-info a:focus-visible {
  color: var(--bb-surface);
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 200ms ease;
}
.site-footer .footer-nav a:hover, .site-footer .footer-nav a:focus-visible {
  color: var(--bb-secondary);
}

.products-hero {
  background: var(--bb-light-hero);
  padding: 3rem 0 3.5rem;
}
.products-hero .products-hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.products-hero .products-hero-content h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}
.products-hero .products-hero-content p {
  color: var(--bb-text-secondary);
  font-size: 1.05rem;
}

.features-bar {
  background-color: var(--bb-dark);
  padding: 1.3rem 0;
}
.features-bar .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  align-items: center;
}
.features-bar .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.features-bar .feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background-color: rgba(232, 166, 184, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.products-list {
  padding: 3.5rem 0 4.5rem;
  background-color: var(--bb-surface);
}
.products-list .section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}
.products-list .section-header h2 {
  font-size: 2rem;
}
.products-list .section-header p {
  color: var(--bb-text-secondary);
  margin-top: 0.65rem;
}
.products-list .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.product-card {
  position: relative;
  background-color: var(--bb-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bb-divider);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(139, 30, 63, 0.26);
}
.product-card .product-media {
  aspect-ratio: 1/1;
  background: var(--bb-light-hero);
  overflow: hidden;
}
.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.04);
}
.product-card .product-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}
.product-card .product-body h3 {
  font-size: 1.1rem;
  color: var(--bb-dark);
  min-height: 2.6rem;
}
.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card .product-rating .stars {
  color: var(--bb-accent);
  font-size: 0.9rem;
}
.product-card .product-rating .rating-value {
  color: var(--bb-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}
.product-card .product-btn {
  background: linear-gradient(135deg, var(--bb-primary) 0%, var(--bb-critical) 100%);
  color: var(--bb-surface);
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 200ms ease, transform 200ms ease;
  width: 100%;
  display: inline-block;
}
.product-card .product-btn:hover, .product-card .product-btn:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--bb-critical) 0%, var(--bb-dark) 100%);
}

.guarantee-section {
  background-color: var(--bb-surface);
  padding: 3.2rem 0;
}
.guarantee-section .guarantee-box {
  background: linear-gradient(135deg, rgba(58, 12, 27, 0.95), rgba(90, 15, 37, 0.92));
  border-radius: var(--radius-md);
  padding: 2.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-strong);
}
.guarantee-section .guarantee-icon .guarantee-seal {
  width: 96px;
  height: 96px;
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--bb-primary);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}
.guarantee-section .guarantee-content {
  color: #ffffff;
}
.guarantee-section .guarantee-content h2 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.guarantee-section .guarantee-content p {
  font-size: 1.02rem;
  opacity: 0.92;
}
.guarantee-section .guarantee-btn {
  background-color: #ffffff;
  color: var(--bb-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: var(--shadow-soft);
}
.guarantee-section .guarantee-btn:hover, .guarantee-section .guarantee-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(232, 166, 184, 0.12), rgba(251, 242, 245, 0.92));
  padding: 3.2rem 0 4rem;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}
.testimonials-section .section-header h2 {
  font-size: 1.8rem;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background-color: var(--bb-surface);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  border: 1px solid var(--bb-divider);
}
.testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.testimonial-card .testimonial-header strong {
  color: var(--bb-dark);
  font-size: 0.98rem;
}
.testimonial-card .testimonial-header .stars {
  color: var(--bb-accent);
  font-size: 0.9rem;
}
.testimonial-card p {
  color: var(--bb-text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.article-main {
  background: var(--bb-surface);
  padding: 3.5rem 0 4.5rem;
}

.article-page {
  display: grid;
  gap: 2.8rem;
  max-width: 860px;
  margin: 0 auto;
}

.article-lede {
  display: grid;
  gap: 1rem;
}
.article-lede .article-tag {
  background-color: var(--bb-article-tag);
  color: var(--bb-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.article-lede h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.article-lede .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  color: var(--bb-text-secondary);
  font-size: 0.95rem;
}
.article-lede .article-intro {
  font-size: 1.05rem;
  color: var(--bb-text-secondary);
}

.article-hero {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-strong);
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-hero figcaption {
  background-color: rgba(58, 12, 27, 0.06);
  color: var(--bb-text-secondary);
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
}

.article-content {
  display: grid;
  gap: 1.6rem;
  color: var(--bb-text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
}
.article-content h2,
.article-content h3 {
  color: var(--bb-dark);
}
.article-content h2 {
  font-size: 1.65rem;
}
.article-content h3 {
  font-size: 1.22rem;
}
.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.article-content li {
  position: relative;
}
.article-content blockquote {
  border-left: 4px solid var(--bb-primary);
  padding: 1rem 1.5rem;
  background-color: var(--bb-bg-article);
  color: var(--bb-dark);
  font-style: italic;
}
.article-content a {
  color: var(--bb-primary);
  font-weight: 700;
}

.article-highlight {
  background: var(--bb-bg-article);
  border: 1px solid var(--bb-divider);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.article-highlight h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--bb-dark);
}
.article-highlight p {
  margin: 0;
}

.article-cta {
  background: var(--bb-bg-article);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--bb-divider);
}
.article-cta h2 {
  color: var(--bb-dark);
  font-size: 1.45rem;
}
.article-cta p {
  color: var(--bb-text-secondary);
}
.article-cta .cta-button {
  width: fit-content;
}

.article-related {
  border-top: 1px solid var(--bb-divider);
  padding-top: 2rem;
  display: grid;
  gap: 1.4rem;
}
.article-related h2 {
  font-size: 1.35rem;
  color: var(--bb-dark);
}

.article-related-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.article-related-link {
  background-color: var(--bb-bg-article);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--bb-dark);
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: background-color 200ms ease, transform 200ms ease, border-color 200ms ease;
  border: 1px solid var(--bb-divider);
}
.article-related-link span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bb-text);
  margin-bottom: 0.35rem;
}
.article-related-link:hover, .article-related-link:focus-visible {
  background-color: var(--bb-bg-article);
  transform: translateY(-2px);
  border-color: var(--bb-bg-article);
}

.page-content {
  padding: 3rem 0 4rem;
  background-color: var(--bb-surface);
}

.page-header {
  text-align: center;
  margin-bottom: 2.3rem;
  padding-bottom: 1.4rem;
  border-bottom: 2px solid rgba(139, 30, 63, 0.18);
}
.page-header h1 {
  font-size: 2.4rem;
  color: var(--bb-dark);
  font-weight: 800;
}

.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}
.content-wrapper p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--bb-text-secondary);
  margin-bottom: 1.2rem;
}
.content-wrapper p:last-child {
  margin-bottom: 0;
}
.content-wrapper a {
  color: var(--bb-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease;
}
.content-wrapper a:hover, .content-wrapper a:focus-visible {
  color: var(--bb-critical);
  text-decoration: underline;
}

.product-page {
  background-color: var(--bb-light);
}

.product-hero {
  padding: 3.2rem 0;
  background: var(--bb-light-hero);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: center;
}

.product-hero-image {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  background: var(--bb-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--bb-divider);
}

.product-hero-image img {
  max-width: 420px;
  margin: 0 auto;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--bb-article-tag);
  color: var(--bb-primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-hero-content h1 {
  font-size: 2.4rem;
  color: var(--bb-dark);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.product-subtitle {
  font-size: 1.15rem;
  color: var(--bb-accent);
  margin-bottom: 1.3rem;
  font-weight: 700;
}

.product-description {
  margin-bottom: 1.6rem;
}
.product-description p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--bb-text-secondary);
}

.product-benefits h3 {
  font-size: 1.22rem;
  color: var(--bb-dark);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.product-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem;
  background-color: var(--bb-article-tag);
  border-radius: var(--radius-md);
  color: var(--bb-dark);
  font-weight: 700;
  border: 1px solid var(--bb-divider);
}
.product-benefits li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  background: url("../img/check.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.product-checkout {
  padding: 3.2rem 0;
}

.checkout-box {
  background: var(--bb-light-hero);
  border-radius: var(--radius-md);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
}

.checkout-box h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--bb-dark);
  margin-bottom: 2rem;
  font-weight: 800;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
  background-color: var(--bb-surface);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--bb-divider);
}

.product-package {
  position: relative;
  text-align: center;
  padding: 1.5rem;
}

.package-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bb-primary) 0%, var(--bb-critical) 100%);
  color: var(--bb-surface);
  padding: 0.7rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.package-image {
  max-width: 250px;
  margin: 2rem auto 0;
}

.package-details {
  text-align: center;
}

.package-title {
  font-size: 1.7rem;
  color: var(--bb-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}

.package-title span {
  color: var(--bb-primary);
  font-weight: 800;
}

.package-pricing {
  margin-bottom: 1.6rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: var(--bb-dark);
}

.price-label {
  background: rgba(139, 30, 63, 0.12);
  color: var(--bb-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.price-save {
  color: var(--bb-accent);
}

.price-value {
  font-size: 3rem;
}

.price-unit {
  font-size: 1.2rem;
  color: var(--bb-text-secondary);
}

.price-details {
  font-size: 1rem;
}

.price-details p {
  margin-bottom: 0.35rem;
  color: var(--bb-text-secondary);
}

.price-old {
  text-decoration: line-through;
  color: rgba(94, 94, 102, 0.7);
  margin-right: 0.35rem;
}

.shipping-info {
  font-size: 0.95rem;
  color: var(--bb-text-secondary);
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--bb-primary) 0%, var(--bb-critical) 100%);
  color: var(--bb-surface);
  border: none;
  padding: 1.05rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.1rem;
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  background-color: var(--bb-article-tag);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--bb-dark);
  border: 1px solid var(--bb-divider);
}

.feature-icon {
  color: var(--bb-accent);
  font-weight: 800;
  font-size: 1.15rem;
}

.product-guarantee {
  padding: 3rem 0 3.5rem;
  background-color: var(--bb-surface);
}

.product-guarantee .guarantee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  text-align: center;
  padding: 1.8rem;
  background-color: var(--bb-article-tag);
  border-radius: var(--radius-md);
  border: 1px solid var(--bb-divider);
}

.product-guarantee .guarantee-seal {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bb-primary) 0%, var(--bb-critical) 100%);
  color: var(--bb-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.product-guarantee .guarantee-text h2 {
  font-size: 1.6rem;
  color: var(--bb-dark);
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.product-guarantee .guarantee-text p {
  font-size: 1.02rem;
  color: var(--bb-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }
  .site-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .article-main {
    padding: 4rem 0 5rem;
  }
  .article-content {
    font-size: 1.05rem;
  }
  .article-cta {
    padding: 2rem 2.3rem;
  }
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .package-details {
    text-align: left;
  }
  .price-main {
    justify-content: flex-start;
  }
  .product-guarantee .guarantee-content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .primary-nav {
    gap: 1rem;
  }
  .hero {
    padding: 3.5rem 0 4rem;
  }
  .article-list .grid {
    gap: 1.4rem;
  }
  .features-bar .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .guarantee-section .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.4rem;
  }
  .guarantee-section .guarantee-icon .guarantee-seal {
    margin: 0 auto;
  }
  .product-benefits ul {
    grid-template-columns: 1fr;
  }
  .checkout-box {
    padding: 1.5rem;
  }
  .checkout-content {
    padding: 1.4rem;
  }
  .price-value {
    font-size: 2.6rem;
  }
  .product-guarantee .guarantee-content {
    flex-direction: column;
  }
  .site-header {
    position: relative;
  }
}

/*# sourceMappingURL=style.css.map */
