@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* body{
    font-family: 'Montserrat', sans-serif;
} */

#copyb {
  --primary-color: #381c78;
  --secondary-color: #9974e3;
  --primary-color-light: #9f7aea;
  --primary-color-dark: #553c9a;
  --contrast-color: #fcc961;
  --white: #fff;
  --black: #000;
  --gold: #fcd34d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(107, 70, 193, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #231f20;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#copyb .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#copyb .steps {
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

#copyb .steps .step {
  padding: 6px 18px !important;
  white-space: nowrap;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

#copyb #headline {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#copyb #headline .title {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  font-size: 56px;
   font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#copyb #headline .span-title {
  color: #f59e0b;
}

#copyb .rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: hsla(0, 0%, 100%, 0.1);
  padding: 8px 34px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

#copyb .stars {
  color: var(--gold);
  font-size: 20px;
}

#copyb .products {
  padding: 30px 0;
}

#copyb .products .container {
  width: 95%;
}

#copyb .products .productsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  align-items: center;
  justify-content: center;
}

#copyb .products .productsGrid > a {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
}

#copyb .products .productsGrid [data-offer="promo"] {
  order: 2;
}

#copyb .products .productsGrid [data-offer="mid"] {
  order: 3;
}

#copyb .products .productsGrid [data-offer="basic"] {
  order: 1;
}

#copyb .products .item {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  padding: 0;
  text-align: center;
  color: var(--primary-color);
  text-shadow: none;
}

#copyb .products .item:hover {
  transform: scale(1.025);
}

#copyb .products .item .wrapper {
  padding: 0 0 20px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

#copyb .card-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
}

#copyb .item-header {
  font-weight: 800;
  color: #fff;
  text-align: center;
  background-color: transparent !important;
  font-size: 20px;
}

#copyb .item-header-description {
  margin-top: -2px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
}

#copyb .products .item .item-mobile-title {
  display: none;
}

#copyb .products .item .item-img {
  max-width: 200px;
  margin: 20px auto;
  position: relative;
  overflow: visible;
}

#copyb .products .item .item-img img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

#copyb .products .item:hover .item-img img {
  transform: scale(1.1);
}

#copyb .products .item .item-img .guarantee-badge {
  position: absolute;
  top: 0;
  right: -40px;
  width: 72px;
  height: auto;
  display: block;
  pointer-events: none;
  animation: blackPageBounce 2s infinite;
}

#copyb .products .item .item-info .price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  width: fit-content;
  margin: 0 auto 15px !important;
  line-height: 1;
  color: var(--primary-color);
  text-align: start;
}

#copyb .products .item .item-info .price sup {
  font-size: 24px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--primary-color);
}

#copyb .products .item .item-info .price b {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
}

#copyb .products .item .item-info .price span {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.2;
  color: var(--gray-600);
  font-weight: 300 !important;
  text-align: center;
}

#copyb .products .item .item-info .savings {
  display: block !important;
  font-size: 14px;
  font-weight: 600;
}

#copyb .products .item .item-info .savings > div {
  border: none;
  padding: 16px !important;
  margin: 0;
}

#copyb .products .item .item-info .savings > div:first-child {
  background: #ffc300;
  color: #632804;
  padding: 0px 16px !important;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  border: none;
}

#copyb .products .item .item-info .savings > div:nth-child(2) {
  display: none;
}

#copyb .products .item .item-info .savings span {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1.4;
}

#copyb .products .item .item-info .savings span::before,
#copyb .products .item .item-buy .button span::before {
  display: none;
}

#copyb .products .item .item-info .guarantee {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 14px;
  border: none;
}

#copyb .products .item .item-buy .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
  gap: 2px;
  padding: 16px 36px !important;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 15px !important;
  position: relative;
  overflow: hidden;
  background: #fbbf24;
  color: #000;
  box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
  text-shadow: none;
  min-height: auto;
  /* line-height: 1.2; */
  justify-content: center;
}

#copyb .products .item .item-buy .button .button-text {
  display: block;
  font-weight: 700;
}

#copyb .products .item .item-buy .button .button-text-aux {
  display: block;
  font-size: 0.85em;
  font-weight: 600;
}

#copyb .products .item .item-buy .card-flags {
  max-width: 200px;
  margin-bottom: 0;
}

#copyb .products .item .item-totals {
  padding: 0;
  font-size: 1rem !important;
}

#copyb .products .item .item-totals .totals s.full-price {
  display: inline !important;
  text-decoration-color: var(--gray-600);
  text-decoration-thickness: 1px;
  font-weight: 500 !important;
}

#copyb .products .item .totals-label-mobile {
  display: none;
}

#copyb .products .item .item-totals .totals span {
  color: inherit;
}

#copyb .products .item .item-totals .totals b.total-price {
  font-size: 20px;
  font-weight: 700 !important;
  color: var(--gray-800);
}

#copyb .products .item .item-totals .shipping {
  color: #ef4444;
  font-weight: 600;
  font-size: 14px;
}

#copyb .products .item .item-totals .shipping span {
  color: #ef4444;
}

#copyb .products .item .item-totals .shipping.free,
#copyb .products .item .item-totals .shipping.free span {
  color: #10b981;
}

#copyb .products .item.promo {
  border-color: var(--primary-color-dark);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
}

#copyb .products .item.promo:hover {
  transform: scale(1.045);
}

#copyb .products .item.promo .wrapper {
  background-image: none !important;
  padding: 0 0 60px;
}

#copyb .products .item.promo .item-header {
  background-color: #f59e0b !important;
  color: #000;
  text-transform: uppercase;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 700;
  width: max-content;
  margin: -20px auto 8px;
  border-radius: 0 0 12px 12px;
}

#copyb .products .item.promo .item-img {
  max-width: 300px;
  margin: 20px auto;
}

#copyb .products .item.promo .item-img .guarantee-badge {
  width: 72px;
  right: 0;
}

#copyb .products .item.promo .item-info .savings > div {
  color: #000;
  border: none;
}

#copyb .products .item.promo .item-info .savings > div:nth-child(2) {
  background: #078d63;
  color: #fff;
  padding: 6px 16px !important;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  border: none;
}

#copyb .products .item.promo .item-info .savings {
  display: flex !important;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  row-gap: 12px;
  flex-wrap: wrap;
}

#copyb .products .item.promo .item-info .savings > div:first-child,
#copyb .products .item.promo .item-info .savings > div:nth-child(2) {
  margin: 0;
}

#copyb .products .item.promo .item-info .savings > div.guarantee {
  flex-basis: 100%;
  padding-top: 0 !important;
}

#copyb .products .item.promo .item-buy .button {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

#copyb .stock-message {
  font-size: 20px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0;
}

#copyb .stock-message .stock {
  font-size: 28px;
  font-weight: 700;
  color: inherit;
}

#copyb .stock-message-shipping {
  font-size: 16px;
  color: #000;
  text-align: center;
  padding: 20px 0 0;
}

#copyb .content {
  max-width: 800px;
  margin: 0 auto;
}

#copyb .text-aux-content {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

#copyb .text-aux-content.small {
  font-size: 16px;
  margin-bottom: 35px;
  color: var(--gray-800);
}

#copyb .title-aux {
  color: #000;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
}

#copyb .highlight-purple {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#copyb .bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark)) !important;
  color: #fff !important;
}

#copyb .cta-promo h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

#copyb .cta-promo p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: white;
}

#copyb .cta-promo p.text-yellow {
  color: #fcd34d;
  font-weight: 500;
  font-size: 18px;
}

#copyb .cta-promo h3 {
  font-size: 40px;
  padding: 10px 0;
}

#copyb .cta-promo h4.text-yellow,
#copyb .cta-headline h4.text-yellow {
  background: linear-gradient(90deg, var(--gold), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
}

#copyb .cta-promo .button {
  padding: 22px 36px !important;
  background-image: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

#copyb .bg-gray-light {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  padding: 50px 0 0;
}

#copyb > section:nth-of-type(4) {
  padding: 50px 0 42px;
  border-bottom: 0;
}

#copyb > section:nth-of-type(4) .title-aux {
  color: #000;
  font-size: 41px;
  line-height: 1.16;
  font-weight: 900;
  margin-bottom: 22px;
}

#copyb > section:nth-of-type(4) .text-aux-content {
  max-width: 800px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 15px;
}

#copyb > section:nth-of-type(4) .text-aux-content.small {
  max-width: 800px;
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 35px;
}

#copyb .ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#copyb .ingredient-card {
  text-align: center;
  padding: 25px;
  min-height: 132px;
  background: var(--gray-50);
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
}

#copyb .ingredient-card h3 {
  color: #000 !important;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 800;
}

#copyb .ingredient-card p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-800);
  margin: 0;
}

#copyb .ingredient-card:hover {
  background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

#copyb .ingredient-card:hover h3,
#copyb .ingredient-card:hover p {
  color: #fff !important;
}

#copyb #faq-b {
  background-image: linear-gradient(180deg, var(--gray-50), var(--white));
  color: #000;
}

#copyb #faq-b .container {
  max-width: 820px;
}

#copyb #faq-b h2 {
  font-weight: 800;
  line-height: 1.2;
  color: #000;
  font-size: 42px;
  margin-bottom: 2.5rem !important;
}

#copyb #faq-b .accordion-item {
  background: #fff;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

#copyb #faq-b .accordion-button {
  width: 100%;
  padding: 20px 25px;
  background: #fff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  color: var(--gray-800);
  position: relative;
  font-family: "Inter", sans-serif;
  box-shadow: none;
}

#copyb #faq-b .accordion-button::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background-image: none !important;
  transition: var(--transition);
  color: var(--primary-color);
}

#copyb #faq-b .accordion-button:not(.collapsed)::after {
  content: "x";
  font-size: 26px;
  color: var(--primary-color);
  font-weight: 600;
}

#copyb #faq-b .accordion-button:hover {
  background: var(--gray-50);
}

#copyb #faq-b .accordion-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  box-shadow: none;
}

#copyb #faq-b .accordion-body {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 14px;
}

@keyframes blackPageBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 767px) {
  #copyb #headline {
    padding: 40px 0 35px;
  }
  #copyb #headline .title {
    font-size: 30px;
  }
  #copyb .rating {
    flex-direction: column;
    gap: 4px;
  }
  #copyb .products .productsGrid {
    grid-template-columns: 1fr;
  }
  #copyb .ingredients-grid {
    grid-template-columns: 1fr;
  }
  #copyb > section:nth-of-type(4) .title-aux {
    font-size: 30px;
  }
  #copyb > section:nth-of-type(4) .text-aux-content,
  #copyb > section:nth-of-type(4) .text-aux-content.small {
    font-size: 16px;
  }
  #copyb #faq-b h2 {
    font-size: 30px;
  }
  #copyb .products .item.promo {
    transform: none;
  }
}

/* Final black-page fixes: keep promo badges inline and collapsed FAQs compact. */
#copyb .products .item.promo .item-info .savings {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

#copyb .products .item.promo .item-info .savings > div:first-child,
#copyb .products .item.promo .item-info .savings > div:nth-child(2) {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: max-content !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 6px 14px !important;
  border: 0 !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

#copyb .products .item.promo .item-info .savings > div:first-child span,
#copyb .products .item.promo .item-info .savings > div:nth-child(2) span {
  width: auto !important;
  max-width: max-content !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
}

#copyb .products .item.promo .item-info .savings > div.guarantee,
#copyb .products .item.promo .item-info .savings > div:nth-child(3) {
  flex: 0 0 100% !important;
  width: 100% !important;
  padding: 14px 0 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

#copyb #faq-b .accordion {
  display: block !important;
}

#copyb #faq-b .accordion-item {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 15px !important;
  padding: 0 !important;
}

#copyb #faq-b .accordion-header {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

#copyb #faq-b .accordion-button {
  min-height: 72px !important;
  height: 72px !important;
  padding: 20px 25px !important;
  line-height: 1.25 !important;
  display: flex !important;
  align-items: center !important;
}

#copyb #faq-b .accordion-collapse:not(.show) {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

#copyb #faq-b .accordion-collapse.show {
  display: block !important;
  height: auto !important;
}

#copyb #faq-b .accordion-body {
  padding: 24px 25px 20px !important;
  min-height: 0 !important;
}
