
:root {
  --brand-main: #c13047;
  --brand-alt: #005dab;
  --brand-orange: #ff781f;
  --brand-yellow: #ffc107;
  --brand-bg-dark: #031e23;
  --accent-green: #2ecc71;
  --text-dark: #0a1f44;
}

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

body {
  font-family: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  color: #333;
  background: #f8fafc;
  overflow-x: hidden;

  font-size: 16px; 
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; 
}

.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
}

.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.3;
}

.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
}

p {
  margin: 0 0 1rem;
}

a,
button {
  line-height: 1.4;
  text-decoration: none;
}

input,
textarea,
select {
  font-size: 16px;
  font-family: inherit;
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }
}

.shadow-soft { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.shadow-hero { box-shadow: 0 25px 70px rgba(0,0,0,0.35); }

.card-soft {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
}

.btn-cta {
  font-weight: 800;
  border-radius: 999px;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.btn-cta--yellow {
  background: var(--brand-yellow);
  color: #000;
}

.btn-cta--yellow:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

.mbr-fallback-image.disabled { display: none !important; }

.menu.menu2 {
  position: relative;
  z-index: 1000;
}

.menu.menu2 .navbar {
  background-color: #f8e5cd;
  padding: 0.5rem 1rem;
  min-height: 70px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.menu.menu2 .navbar.premium-navbar {
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.menu.menu2 .navbar.premium-navbar.is-scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.menu.menu2 .navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.menu.menu2 .navbar-caption img {
  height: 40px;
  display: block;
  transition: transform 0.2s ease;
}

.menu.menu2 .navbar-caption:hover img {
  transform: scale(1.05);
}

.menu.menu2 .navbar-nav .nav-link {
  font-family: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #123046;
  padding: 0.4rem 0.9rem;
  transition: color 0.2s ease;
}

.menu.menu2 .nav-link.premium-link {
  position: relative;
  color: #123046 !important;
}

.menu.menu2 .nav-link.premium-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-main), #f72585);
  transition: width 0.25s ease;
}

.menu.menu2 .nav-link.premium-link:hover,
.menu.menu2 .nav-link.premium-link:focus,
.menu.menu2 .nav-link.premium-link.active {
  color: #f72585 !important;
}

.menu.menu2 .nav-link.premium-link:hover::after,
.menu.menu2 .nav-link.premium-link.active::after {
  width: 100%;
}

.menu.menu2 .navbar-buttons .premium-btn {
  background: var(--brand-yellow);
  color: #0b1620 !important;
  font-family: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.7rem;
  border: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.menu.menu2 .navbar-buttons .premium-btn:hover {
  background: #ffb300;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

@media (max-width: 991.98px) {
  .menu.menu2 .navbar-buttons {
    margin-top: 0.75rem;
  }
}

.brand-text {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Georgia', serif; 
}

.brand-green {
  color: #2e7d32;
}

.brand-red {
  color: #c62828; 
  font-weight: 700;
}
.menu.menu2 .navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 0.25rem 0;
  background: transparent;
}

.menu.menu2 .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu.menu2 .navbar-toggler-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #15467d;
  transition: background-color 0.25s ease;
}

.menu.menu2 .navbar-toggler-icon::before,
.menu.menu2 .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #15467d;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.25s ease;
}

.menu.menu2 .navbar-toggler-icon::before { top: -6px; }
.menu.menu2 .navbar-toggler-icon::after  { top: 6px; }

/* When opened, turn into “X” */
.menu.menu2 .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.menu.menu2 .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu.menu2 .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 767.98px) {
  .menu.menu2 .navbar-caption img {
    height: 34px;
  }

  .menu.menu2 .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}x

.nav-tabs .nav-link.active {
  color: #ffffff;
  border-radius: 100px !important;
}

.nav-tabs .nav-link:not(.active) {
  color: #232323;
  border-radius: 100px !important;
}

.premium-btn {
  background: var(--brand-yellow);
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  color: #000 !important;
  text-decoration: none;
}

.premium-btn:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-2px);
}

.topbar-offer {
  background: #000000;
  padding: 16px 0;
  text-align: center;
}

.offer-text {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 10px;
}

@media (max-width: 768px) {
  .offer-text {
    font-size: 18px;
    letter-spacing: 4px;
  }
  .topbar-offer h2 { font-size: 1.3rem; }
}

:root {
  --brand-burgundy: #a6192e;
  --brand-gold: #f9c22e;
  --brand-gold-hover: #e5af24;

  --bg-light: #f9e6ce;
  --white: #ffffff;

  --text-dark: #1a1a1a;
  --text-muted: #555;
  --text-light: #777;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
}

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

input, select, textarea {
  font-size: 16px;
}

.afp-hero * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.afp-hero {
  background: #ffffff;
  padding: 60px 15px;
  padding-left: max(15px, env(safe-area-inset-left));
  padding-right: max(15px, env(safe-area-inset-right));
  padding-bottom: max(60px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  margin-top: 40px;
}

.afp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 45px;

  display: grid;
  grid-template-columns: 44% 56%;
  gap: 40px;
  align-items: start;

  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.afp-image img {
  width: 97%;
  border-radius: 12px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

.afp-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.afp-testimonials {
  margin-top: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid #c22b45;
}

.testimonial-item {
  margin-bottom: 15px;
}

.testimonial-item:last-child {
  margin-bottom: 0;
}

.testimonial-item p {
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-dark);
  margin: 8px 0;
}

.testimonial-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.customer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.customer-img {
  width: 85px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.customer-text .customer-name {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.customer-text .verified {
  font-size: 0.75rem;
  color: #2e7d32;
  font-weight: bold;
}

.afp-content h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #111;
}

.afp-content h1 .highlight {
  color: #f9c22e;
}

.afp-content h1 .accent {
  color: #a6192e;
}

.afp-content h1 .highlight,
.afp-content h1 .accent {
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.afp-benefit-gallery {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-top: 30px;
  padding-bottom: 5px;

  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.afp-benefit-gallery::-webkit-scrollbar {
  display: none;
}

.afp-benefit-gallery img {
  flex: 0 0 auto;
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.afp-description p {
  font-size: 18px;
  color: #1d1d1f; 
  line-height: 1.6; 
  letter-spacing: -0.015em; 
  margin-bottom: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  max-width: 65ch;
}

.afp-description p:first-of-type {
  font-weight: 500;
  color: #000; 
}

@media (max-width: 430px) {
  .afp-description p {
    font-size: 17px;
    line-height: 1.55;
  }
}

.afp-cta-box {
  background: #ffffff;
  padding: 30px 25px; 
  border-radius: 20px;
  margin-top: 20px;
  border: 1px solid #eee;
  text-align: center;
 
  animation: slideInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.afp-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--brand-burgundy);
  margin-bottom: 12px;
  line-height: 1;
}

.afp-buy-btn, .buy-btn {
 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 25px;

  background: #8f0825;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: inset 0 0 0 2px #f9c22e, 0 10px 30px rgba(0, 18, 56, 0.2);

  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
 
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  touch-action: manipulation;
  user-select: none;
}

.afp-buy-btn::before, .buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  animation: shimmerEffect 3s infinite ease-in-out;
  pointer-events: none;
}

.afp-cta-box {
  animation: slideInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}


@keyframes shimmerEffect {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .afp-buy-btn:hover, .buy-btn:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 2px #f9c22e, 0 15px 40px rgba(0, 18, 56, 0.4);
    filter: brightness(1.1);
  }
}

.afp-buy-btn:active, .buy-btn:active {
  transform: scale(0.96);
  filter: brightness(0.8);
  transition: transform 0.1s ease;
}


.afp-secure {
  font-size: 12px;
  color: #777; 
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.bottom-image-box.slider {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 260px;
  margin: 20px auto;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.dynamic-offer {
  text-align: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #eee;
  max-width: 480px;
  margin: 20px auto;
}

.dynamic-price h2 {
  font-size: 48px;
  color: var(--brand-burgundy);
  font-weight: 900;
}

.payment-strip img {
  max-width: 280px;
  margin: 10px auto;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .afp-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .afp-content h1 {
    font-size: 30px;
  }

  .afp-image {
    order: -1;
  }

  .customer-profile {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .afp-container {
    padding: 20px 15px;
  }

  .afp-content h1 {
    font-size: 24px;
  }

  .afp-price {
    font-size: 34px;
  }

  .bottom-image-box.slider {
    height: 280px;
  }

  .dynamic-price h2 {
    font-size: 36px;
  }

  .buy-btn {
    font-size: 16px;
  }
}

.bottles-section {
    background: #ffffff;
    padding: 2rem 0;
}

.dynamic-offer {
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dynamic-price {
    background: #ffffff;
    color: #000000;
}
.savings-tag {
    color: #2e7d32;
    background: #f0f9f0; 
    padding: 4px 12px;
    border-radius: 4px;
}
.guarantee-section {
  background: linear-gradient(180deg, #cfdad6 0%, #e2ebe7 100%);
  padding: 80px 20px calc(70px + env(safe-area-inset-bottom));
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.guarantee-section .container {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.guarantee-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0d5c4d;
  margin-bottom: 10px;
  letter-spacing: -0.5px; 
  line-height: 1.1;
}

.guarantee-header p {
  font-size: 17px; 
  color: #5f6f6a;
  margin-bottom: 40px;
  line-height: 1.5;
}

.guarantee-card {
  background: #ffffff;
  border-radius: 24px; 
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  margin-bottom: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5); 
}

.guarantee-badge img {
  width: 115px;
  min-width: 115px;
  height: auto;
  -webkit-user-drag: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
}

.guarantee-text {
  text-align: left;
}

.guarantee-text p {
  font-size: 16px;
  color: #2e3a37;
  line-height: 1.6;
}

.highlight {
  color: #18a058;
  font-weight: 700;
}

.guarantee-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.guarantee-icons img {
  height: 175px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.guarantee-footer {
  font-size: 13px;
  color: #111;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .guarantee-section {
    padding-top: 60px;
  }

  .guarantee-header h2 { 
    font-size: 32px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    gap: 20px;
  }

  .guarantee-text {
    text-align: center;
  }

  .guarantee-badge img { 
    width: 140px; 
    min-width: auto;
  }

  .guarantee-icons {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .guarantee-icons img { 
    height: 70px; 
    margin: 0 auto;
  }
}

.what-section {
  background: #f3f3f3;
  padding-bottom: 60px;
  font-family: "Georgia", serif;
}

.what-header {
  background:linear-gradient(135deg, #af273f 0%, #8f0825 100%);
  text-align: center;
  position: relative;
  padding: 1.7rem 0;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 30px 10px 24px 14px; 
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.75),
    inset 0 0 20px rgba(249, 230, 204, 0.3);
  overflow: hidden;
  max-width: 980px;
  margin: 1.5rem auto 0.5rem auto;
}

.what-header h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  font-family: 'Inter Tight', sans-serif;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}

.what-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 60px;
}

.what-image img {
  width: 100%;
  border-radius: 20px;
}

.what-content p {
  font-size: 22px;
  font-family: 'Inter Tight', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.floating-cta {
  display: inline-block;
  background: #fbbf24;
  color: #000;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  margin: 10px 0 25px;
  text-decoration: none;
}

.what-benefits {
  background: #a8bb87;
  border-radius: 15px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefit {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.what-bottom-cta {
  text-align: center;
  margin-top: 30px;
}

.what-bottom-cta button {
  background: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  background: #22c55e;
  color: #000;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

@media (max-width: 992px) {
  .what-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .what-content p { font-size: 18px; }
  .what-benefits { grid-template-columns: 1fr; }
  .floating-cta { display: block; }
}

:root {
  --primary-dark: #002f36;
  --secondary-teal: #0c3d3d;
  --accent-yellow: #ffd978;
  --text-dark: #1f2937;
  --text-muted: #4b5563;
  --bg-light: #f4f4f4;
  --white: #ffffff;
  --border-gray: #e5e7eb;
  --error-red: #a90000;
  --font-heading: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tracking-tight: -0.025em;
  --tracking-wide: 0.01em;
}

.works-section {
  background: var(--bg-light);
  padding-bottom: 70px;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.works-header {
  background: linear-gradient(90deg, var(--secondary-teal), var(--primary-dark));
  text-align: center;
  padding: 40px 0;
}

.works-header h2 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: var(--tracking-tight);
  margin: 0;
}

.works-intro {
  max-width: 800px;
  margin: 48px auto;
  text-align: center;
  font-size: 21px;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.9;
}

.works-cards {
  max-width: 900px;
  margin: auto;
}

.work-card {
  background: var(--white);
  border-radius: 24px; 
  padding: 30px 35px;
  margin-bottom: 25px;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.work-card h4 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: var(--tracking-wide);
  display: flex;
  align-items: center;
}

.work-card p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.works-summary {
  margin-top: 60px;
  padding: 50px 40px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--primary-dark);
}

.works-summary h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 18px;
}

.works-summary p {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.cid-tUhVzNsCEv {
  padding: 1.5rem 0;
  background-color: var(--error-red);
}

.cid-uyR3fH7oWY,
.cid-tB83YwBUMj {
  padding: 2rem 0;
  background: linear-gradient(180deg, #c13047 80%, #005dab 100%);
}

.card-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .works-header h2 { 
    font-size: 30px; 
    padding: 0 15px;
  }
  
  .works-intro { 
    font-size: 18px; 
    padding: 0 20px;
    margin: 30px auto;
  }

  .work-card { 
    padding: 25px; 
    margin-left: 15px; 
    margin-right: 15px;
  }

  .work-card h4 { font-size: 19px; }
  .work-card p { font-size: 16px; }

  .works-summary { 
    margin: 40px 15px 0;
    padding: 35px 20px; 
  }
  
  .works-summary h3 { font-size: 26px; }
  .works-summary p { font-size: 17px; }
}

@media (max-width: 768px) {
  .works-header h2 {
    font-size: 26px;
  }

  .works-intro {
    font-size: 16px;
    padding: 0 15px;
    margin: 25px auto;
  }

  .work-card {
    padding: 20px;
    border-radius: 20px;
  }

  .work-card h4 {
    font-size: 20px;
  }

  .work-card p {
    font-size: 15px;
  }

  .works-summary {
    padding: 25px;
    margin-top: 30px;
  }
  
  .works-summary h3 {
    font-size: 22px;
  }
}

.brand-section-header {
  position: relative;
  background-color: #7a061d; 
  background-image: 
    radial-gradient(at 0% 0%, rgba(175, 39, 63, 0.8) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(143, 8, 37, 0.8) 0, transparent 50%),
    linear-gradient(135deg, #8f0825 0%, #5a0314 100%);
  padding: 60px 0 30px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-section-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(25deg);
  pointer-events: none;
}

.brand-section-header h2 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.brand-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

.brand-section-header .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .brand-section-header {
    padding: 40px 15px 20px;
  }
  .brand-section-header h2 {
    font-size: 32px;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.brand-orange { color: var(--brand-orange); }

.header-divider {
  width: 60px;
  height: 4px;
  background: var(--brand-orange);
  margin: 15px auto;
}

.testimonial-section {
  background-color: #ffffff;
  padding: 15px 0;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  position: relative;
  max-width: 1000px;
  width: 95%;
  display: flex;
  background: #fff;
  border: 2px solid #333333;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
}

.reviewer-sidebar {
  flex: 0 0 150px;
  text-align: center;
  padding-right: 20px;
}

.reviewer-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--brand-orange);
  object-fit: cover;
  margin-bottom: 10px;
}

.reviewer-meta .name {
  display: block;
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
}

.reviewer-meta .location {
  font-size: 0.8rem;
  color: #000;
}

.review-body {
  flex: 1;
  padding-left: 20px;
}

.stars-row {
  color: var(--brand-yellow);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.review-status {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  color: #000;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
}

.order-float-btn {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--brand-yellow);
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-size: 0.9rem;
}

.reviews-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: #f8e5cd;
  border: 1px solid black;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  display: block;
}

.stat-desc {
  color: #000;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.buy-btn-large {
  display: inline-block;
  background: var(--brand-yellow);
  color: #000;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 900;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
  transition: transform 0.2s;
}

.buy-btn-large:hover {
  transform: scale(1.02);
  color: #000;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }
  .reviewer-sidebar {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .order-float-btn {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
  }
  .reviews-summary-grid {
    grid-template-columns: 1fr;
  }
}

.bottles-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.bottles-header {
    background: linear-gradient(135deg, #6e0202 0%, #ff0202 100%);
    color: white;
    text-align: center;
    padding: 3rem 0 5rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.bottles-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.bottles-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.bottles-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.bottles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.bottle-package {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl, 0 10px 30px rgba(0, 0, 0, 0.1));
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    position: relative;
}

.bottle-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--success-color, #10b981);
}

.bottle-package.best-value {
    background: #f8e5cd;
    border: 3px solid #28a745;
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.bottle-package.best-value:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.3);
}

.package-header {
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    position: relative;
    background: linear-gradient(135deg, #af273f 0%, #ff0202 100%);
}

.package-header h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.package-header p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
}

.best-value-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: var(--secondary-color, #ffcc00);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
    z-index: 5;
}

.best-value-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid var(--secondary-color, #ffcc00);
}

.package-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.product-image-container {
    margin-bottom: 2rem;
    position: relative;
}

.bottle-image {
    display: block;             
    max-width: 200px; 
    width: 100%; 
    height: auto;   
    object-fit: contain; 
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;            
}

.bottle-image:hover {
    transform: scale(1.05);
}

.bottles-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bottle-image.multiple1 {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.bottle-image.multiple2 {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.bonus-ebooks {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.15));
    border: 2px dashed rgba(255, 255, 255, 0.8);
}

.bonus-ebooks i {
    font-size: 1.1rem;
}

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

.price-per-bottle {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 800;
    color: var(--success-color, #10b981);
    font-family: 'Poppins', sans-serif;
}

.price-label {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary, #64748b);
    font-weight: 600;
}

.btn-buy-now,
.btn-best-value {
    display: inline-block;
    border: 2px solid yellow;
    color: black;
    font-size: clamp(0.7rem, 2.1vw, 1.0rem);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 220px;
    font-family: 'Poppins', jost;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.btn-buy-now {
    background: #ffc107;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-best-value {
    background: linear-gradient(135deg, #28a745 0%, #3ddc84 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-best-value:hover {
    background: linear-gradient(135deg, #218838 0%, #2ecc71 100%);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.total-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
    flex-wrap: wrap;
}

.total-label {
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    font-size: 1.2rem;
}

.original-total {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 600;
}

.discounted-total {
    color: #000;
    font-size: 2.4rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.payment-methods {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.payment-icon {
    max-width: 150px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.guarantee-text {
    font-size: 16px;
    color: #081515;
    margin-bottom: 8px;
    text-align: center;
}

.payment-img {
    max-width: 240px;
    width: 100%;
    margin: 8px auto 0;
    display: block;
}

.total-price {
    font-size: 28px;
    margin-top: 10px;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #555;
    margin-right: 4px;
    font-size: 18px;
}

.shipping-info {
    font-size: 13px;
    color: #444;
    margin-top: 6px;
}

.mbr-text {
    text-align: center;
    font-size: 14px;
    color: #444;
}

@media (max-width: 991.98px) {
    .bottles-header {
        padding: 2rem 0 4rem;
    }
    
    .bottles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: -1rem;
    }
    
    .bottle-package.best-value {
        transform: none;
        order: -1;
    }
    
    .bottle-package.best-value:hover {
        transform: translateY(-5px);
    }
    
    .package-content {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .bottles-header {
        padding: 1.5rem 0 3rem;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }
    
    .bottle-package {
        border-radius: 15px;
    }
    
    .package-header,
    .package-content {
        padding: 1.2rem 0.8rem;
    }
    
    .bottle-image {
        max-width: 140px;
        height: auto;
    }
    
    .bottle-image.multiple1,
    .bottle-image.multiple2 {
        max-width: 100px;
        height: auto;
    }
    
    .btn-buy-now,
    .btn-best-value {
        padding: 0.9rem 2rem;
    }
    
    .bonus-ebooks {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .bottle-package:hover,
    .bottle-package.best-value:hover,
    .btn-buy-now:hover,
    .btn-best-value:hover {
        transform: none;
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }
}

@media (max-width: 575.98px) {
    .bottles-grid {
        gap: 1rem;
    }
    
    .package-content {
        padding: 1rem 0.8rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .btn-buy-now,
    .btn-best-value {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .total-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .payment-icon {
        max-width: 120px;
    }

    .best-value-badge {
        top: 6px;
        right: 10px;
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 390px) {
    .bottles-section {
        padding: 0 8px;
    }

    .bottle-package {
        border-radius: 12px;
    }

    .bottle-image {
        max-width: 110px;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .discounted-total {
        font-size: 2rem;
    }

    .bottles-header {
        padding: 1.2rem 0 2.5rem;
    }
}

@media (max-width: 768px) {
  .pricing-card,
  .pricing-card1 {
    padding: 22px 18px;
  }

  .pricing-card1.highlighted {
    transform: none;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  }

  .main-price {
    font-size: 60px;
  }
}

#ReduBurn-Ingredients .display-2 {
    color: #fff;
    font-weight: 800;
    background-color: #c24455;
    padding: 20px;
    margin-bottom: 30px !important;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #f9c22e;
    border-radius: 8px 8px 0 0;
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.rb-ingredients-hero {
  background: #fff5d6;
  padding: 40px 15px;
}

.rb-ingredients-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 20px;
  align-items: center;
}

.rb-ingredients-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rb-ingredient-card {
  background: #f8e5cd;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rb-ingredient-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111;
}
.rb-ingredient-card {
  border: 2px solid #ccc;
  padding: 15px;
  border-radius: 8px;
}
.rb-ingredient-info p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

.rb-ingredient-image img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
}

.rb-ingredients-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rb-bottle-wrap {
  background: #fff5d6;
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

.rb-bottle-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.rb-ingredients-left .rb-ingredient-card {
  flex-direction: row;
}

.rb-ingredients-right .rb-ingredient-card {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .rb-ingredients-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rb-ingredients-center {
    order: -1;
  }
}

@media (max-width: 576px) {
  .rb-ingredient-card {
    padding: 12px 14px;
  }

  .rb-ingredient-info h4 {
    font-size: 15px;
  }

  .rb-ingredient-info p {
    font-size: 12px;
  }

  .rb-ingredient-image img {
    width: 48px;
    height: 48px;
  }
}

#ReduBurn-Ingredients .align-center {
    display: flex;
    justify-content: center;
}

#reduburn-ingredients {
    background-color: #f9e6cc;
    padding: 60px 0;
}

#reduburn-ingredients .ingredient-card {
    background: #f9e6cc;
    padding: 20px;
    border-radius: 12px;
    height: 100%;   
    border: 2px solid #fff; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

#reduburn-ingredients .ingredient-title {
    color: #a6192e;
    font-weight: 700;
    margin-bottom: 10px;
}

#reduburn-ingredients .ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000;
    font-size: 18px;
}

#reduburn-ingredients .ingredient-list li {
    margin-bottom: 5px;
}

.product-feature-wrap {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}


.product-feature-wrap {
	border: 2px solid #fff; 
    background: #f9e6cc;
    padding: 0px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-container {
    width: 100%;
    margin-bottom: 20px;
}

.product-image-container img.img-fluid {
    max-width: 100%;
    height: auto;
    max-height: 250px; 
    object-fit: contain;
    transition: transform 0.3s ease;
}

.features-check-list {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    color: #333;
}

.features-check-list {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    color: #333;
}

.features-check-list .check-item {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}
.features-check-list .check-item::before {
    content: "✓";
    color: #a6192e;
    font-weight: bold;
    margin-right: 10px;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff9a00 0%, #ff5a00 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.features6 .card-wrapper {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.features6 .card-wrapper:hover {
    transform: translateY(-5px);
}

.currentcost {
    font-weight: 800;
    color: #2d3436;
}

.oldcost {
    text-decoration: line-through;
    color: #ff3f34;
    opacity: 0.8;
    margin-left: 10px;
}

.btn-warning {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    padding: 18px 35px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(255, 154, 0, 0.4);
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 154, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 4px 25px rgba(255, 154, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 154, 0, 0.4); }
}

#content5-3b {
    background-color: #f9fbff;
    padding: 4rem 0;
}

#content5-3b h4 {
    color: #2d3436;
    position: relative;
    padding-bottom: 10px;
}

#content5-3b h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff9a00;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    margin: 0 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ff9a00;
    color: #fff;
    transform: rotate(360deg);
}

#content4-1g {
    border-top: 1px solid #eee;
    padding: 3rem 0;
}

.mbr-section-subtitle strong {
    line-height: 1.8;
    display: block;
    opacity: 0.85;
}

#content13-1f {
    background-color: #c82446; 
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin: 2rem auto; 
    max-width: 95%; 
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    overflow: hidden; 
}

#content13-1f a.text-black {
    color: #2d3436 !important;
    transition: all 0.3s ease;
}

#content13-1f a.text-black:hover {
    color: #000000 !important;
    text-decoration: underline;
    opacity: 0.8;
}

#content13-1f .list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

#content13-1f .list li {
    padding: 8px 0;
    border-bottom: 1px dashed #f1f1f1; 
    transition: all 0.3s ease;
}

#content13-1f .list li:last-child {
    border-bottom: none;
}

#content13-1f .list li a {
    color: #333333 !important;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.2s ease-in-out;
}

#content13-1f .list li a::before {
    content: "→"; 
    margin-right: 10px;
    color: #ff9a00; 
    font-weight: bold;
    transition: transform 0.2s ease;
}

#content13-1f .list li:hover {
    padding-left: 5px; 
}

#content13-1f .list li a:hover {
    color: #ff9a00 !important;
}

#content13-1f .list li a:hover::before {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    #content13-1f .col-12 {
        margin-bottom: 20px;
    }
    
    #content13-1f .list li {
        text-align: center;
        justify-content: center;
    }
    
    #content13-1f .list li a {
        justify-content: center;
    }
}
:root {
  --brand-burgundy: #a6192e;
  --brand-gold: #f9c22e;
  --bg-cream: #f9e6cc;
}

.lab-intro {
  background: #ffffff;
  border-radius: 12px;
  border-left: 6px solid var(--brand-gold);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(166, 25, 46, 0.05);
}

.study-box {
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 30px;
  background: #ffffff;
  transition: all 0.4s ease;
  display: flex;
}

.study-box:hover {
  border-color: var(--brand-burgundy);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(166, 25, 46, 0.1);
}

.study-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-burgundy);
  margin-right: 25px;
  opacity: 0.2;
}

.study-content h6 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-burgundy);
  margin-bottom: 12px;
  font-weight: 800;
}

.study-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.study-tag {
  font-size: 0.8rem;
  background: #fdf2e9;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--brand-burgundy);
  display: inline-block;
  border: 1px solid rgba(166, 25, 46, 0.1);
}

.lab-conclusion {
  background-color: #fffaf0;
  border: 2px dashed var(--brand-gold);
  border-radius: 12px;
}

.journal-wrapper {
  background: #ffffff;
  border-left: 10px solid var(--brand-burgundy);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(166, 25, 46, 0.08);
}

.evidence-block {
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.evidence-block:hover {
  padding-left: 20px;
  border-left: 5px solid var(--brand-gold);
}

.italic {
  font-style: italic;
  color: #666;
}

.cid-tSWAlyYWsl {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.cid-tSWAlyYWsl .card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.cid-tSWAlyYWsl .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-main);
}

.cid-tSWAlyYWsl .card-header {
  background: transparent !important;
  padding: 1.5rem 2rem;
  border: none;
  cursor: pointer;
}

.cid-tSWAlyYWsl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none !important;
}

.cid-tSWAlyYWsl .panel-title-edit {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.cid-tSWAlyYWsl .mbr-iconfont {
  font-size: 1.1rem !important;
  color: var(--brand-main);
  background: #fff1f2;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cid-tSWAlyYWsl .card-header:not(.collapsed) .mbr-iconfont,
.cid-tSWAlyYWsl a[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
  background: var(--brand-main);
  color: #ffffff;
}

.cid-tSWAlyYWsl .panel-body {
  padding: 0 2rem 2rem;
  background-color: #ffffff;
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
}

.cid-tSWAlyYWsl .card:last-child {
  border: 2px dashed #e2e8f0;
  background: #fdfdfd;
}

@media (max-width: 768px) {
  .cid-tSWAlyYWsl .card-header {
    padding: 1.25rem 1.5rem;
  }
  .cid-tSWAlyYWsl .panel-title-edit {
    font-size: 1.1rem;
  }
  .cid-tSWAlyYWsl .panel-body {
    padding: 0 1.5rem 1.5rem;
  }
}

.cid-uyP7FK1hDn {
  padding: 3rem 0;
  background: radial-gradient(circle at top,
    #2b0a12 0%, 
    #12040a 55%,
    #050308 100%  
  );
}

.cid-uyP7FK1hDn .card-wrapper {
  --brand-main: #a6192e; 
  --brand-alt: #f9e6cc;  

  background: linear-gradient(180deg, var(--brand-main) 60%, var(--brand-alt) 100%);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cid-uyP7FK1hDn .row.align-items-center {
  row-gap: 2rem;
}

.cid-uyP7FK1hDn .image-wrapper {
  text-align: center;
}

.cid-uyP7FK1hDn .image-wrapper img {
  max-width: 270px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.cid-uyP7FK1hDn .text-box {
  color: #fffdf8;
}

.cid-uyP7FK1hDn .mbr-title {
  font-family: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cid-uyP7FK1hDn .mbr-title strong {
  color: #fff7e5; 
}

.cid-uyP7FK1hDn .cost {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5rem;
}

.cid-uyP7FK1hDn .currentcost {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.96;
  color: #fff7e5;
}

.cid-uyP7FK1hDn .oldcost {
  font-size: 24px;
  font-weight: 800;
  text-decoration: line-through;
  opacity: 0.75;
  color: rgba(255, 248, 234, 0.8);
}

.cid-uyP7FK1hDn .mbr-section-btn .btn.btn-warning {
  --brand-yellow: #f9c22e; 
  background: var(--brand-yellow) !important;
  border-color: var(--brand-yellow) !important;
  color: #1a0a10 !important;
  font-weight: 800;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.cid-uyP7FK1hDn .mbr-section-btn .btn.btn-warning:hover {
  background: #ffb300 !important;
  border-color: #ffb300 !important;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .cid-uyP7FK1hDn {
    padding: 2.5rem 1.25rem;
  }
  .cid-uyP7FK1hDn .card-wrapper {
    padding: 2rem 1.5rem;
  }
  .cid-uyP7FK1hDn .mbr-title {
    text-align: center;
  }
  .cid-uyP7FK1hDn .cost {
    justify-content: center;
  }
  .cid-uyP7FK1hDn .mbr-section-btn {
    text-align: center;
  }
}
.backlink-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  background-color: #fff;
}

.backlink-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
  background-color: #ffffff;
  border: 1px solid #fff;
  border-radius: 6px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  min-width: 140px;
  text-align: center;
}

.backlink-link:hover {
  border-color: #fff;
  color: #fff;
  box-shadow: 0 2px 5px rgba(26, 115, 232, 0.2);
}

.backlink-title {
  font-weight: 500;
  margin-bottom: 4px;
}

.backlink-domain {
  font-size: 12px;
  color: #fff;
}

.popup {
  position: fixed;
  bottom: -160px;
  left: 20px;
  width: 350px;
  background: #fff; 
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(249, 194, 46, 0.35); 
  color: #fff;
}

.popup.show { bottom: 30px; }

@media (max-width: 768px) {
  .popup { display: none !important; }
}

.popup .premium-btn {
  --brand-yellow: #f9c22e;
  background: var(--brand-yellow);
  color: #1a0a10 !important;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(249, 194, 46, 0.35);
}

.popup .premium-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(249, 194, 46, 0.55);
}
 .scrollToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateZ(0); /* iOS fix */
}

.scrollToTop.show {
    opacity: 0.9;
}

.scrollToTop a {
    display: block;
    width: 45px;
    height: 45px;
    background: #2d5f3a;
    border: 1px solid #f59e0b;
    border-radius: 50%;
    text-align: center;
    line-height: 39px;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(160, 11, 14, 0.3);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.scrollToTop a:hover,
.scrollToTop a:active {
    background: #f59e0b;
    border-color: #a00b0e;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.mbr-arrow-up-icon {
    font-size: 1.2rem !important;
    line-height: 1;
}

/* Mobile: Center bottom, larger target */
@media screen and (max-width: 768px) {
    .scrollToTop {
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translateX(-50%) translateZ(0);
    }
    
    .scrollToTop a {
        width: 56px;
        height: 56px;
        line-height: 50px;
        font-size: 1.3rem;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .scrollToTop {
        bottom: 15px;
    }
    
    .scrollToTop a {
        width: 60px;
        height: 60px;
        line-height: 54px;
    }
}

body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}