/* Reset for whitespace fix */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
}

/* Hero section styles */
.hero-section {
  background: linear-gradient(to right, #87ceeb, #1e9dc8);
  display: flex;
  align-items: center;
  padding: 40px 20px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  overflow: hidden;
}

/* Add background movement */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: 1;
  transition: transform 0.3s ease-out;
}

/* Container with exact proportions from image */
.content-wrapper {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Left image section */
.image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woman-image {
  width: 400px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
}

.b-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 0;
  object-fit: contain;
  border: none;
  box-shadow: none;
  border-color: none;
}

/* Right text section */
.text-section {
  color: white;
  padding-left: 20px;
}

/* Main headline */
.main-title {
  font-size: 44px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: "pro-display-bold", sans-serif;
}

/* Subheadline */
.subtitle {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "pro-display-medium", sans-serif;
}

/* Body text paragraphs */
.description-text {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 300;
}

/* Product introduction paragraph */
.product-description {
  font-size: 19px;
  line-height: 1.4;
  font-family: "pro-display-regular", sans-serif;
  font-weight: 300;
}

/* Orange CTA button */
.order-button {
  background-color: #ff8c00;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 25px;
  font-family: "pro-display-bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.order-button:hover {
  background-color: #ff7f00;
  transform: translateY(-1px);
}

/* Bottom tagline */
.final-tagline {
  color: #F2F2F2;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin-top: 17px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-section {
    padding: 30px 20px;
  }

  .content-wrapper {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .hero-section::before {
    transform: translateX(-5%);
  }

  .woman-image {
    width: 320px;
    height: 400px;
  }

  .main-title {
    font-size: 38px;
  }

  .subtitle {
    font-size: 20px;
  }

  .description-text,
  .product-description {
    font-size: 18px;
  }

  .final-tagline {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 15px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Adjust background for stacked layout */
  .hero-section::before {
    transform: translateY(0);
    background: linear-gradient(to bottom, #87ceeb, #1e9dc8);
  }

  .image-section {
    order: -1;
    /* Move image to top */
    margin: 0 auto;
    max-width: 320px;
  }

  .text-section {
    text-align: center;
    padding: 0;
  }

  .main-title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .subtitle {
    font-size: 19px;
    margin-bottom: 25px;
  }

  .description-text,
  .product-description {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .final-tagline {
    font-size: 17px;
  }

  .order-button {
    font-size: 16px;
    padding: 12px 35px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 25px 15px;
  }

  .content-wrapper {
    gap: 25px;
  }

  .image-section {
    max-width: 280px;
  }

  /* Adjust background gradient stops for mobile */
  .hero-section::before {
    background: linear-gradient(to bottom,
        #87ceeb 0%,
        #5dade2 60%,
        #5dade2 100%);
  }

  .main-title {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .description-text,
  .product-description {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .final-tagline {
    font-size: 16px;
  }
}

.main2 {
  font-family: "pro-display-regular", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Main product effectiveness showcase section */
.intellident-effectiveness-showcase {
  background-color: #f5f5f5;
  padding: 92px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centralized content container */
.centered-content-wrapper {
  max-width: 1070px;
  margin: 0 auto;
  text-align: center;
}

/* Primary brand statement headline - exact size from image */
.primary-brand-statement {
  color: #000;
  text-align: center;
  font-family: "SF Pro Display";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 20px;
}

/* Highlighted brand name styling */
.highlighted-brand-name {
  color: #000000;
  font-weight: bold;
}

/* Product differentiation messaging - exact size from image */
.product-differentiation-text {
  color: #000;
  text-align: center;
  font-family: "SF Pro Display";
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 161.905% */
}

/* Formula benefits detailed description - exact size from image */
.formula-benefits-description {
  font-size: 24px;
  line-height: 1.4;
  font-family: "pro-display-regular", sans-serif;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .intellident-effectiveness-showcase {
    padding: 40px 20px;
  }

  .primary-brand-statement {
    font-size: 2.75rem;
  }

  .product-differentiation-text,
  .formula-benefits-description {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .intellident-effectiveness-showcase {
    padding: 30px 15px;
  }

  .centered-content-wrapper {
    padding: 0 15px;
  }

  .primary-brand-statement {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .product-differentiation-text,
  .formula-benefits-description {
    font-size: 20px;
    line-height: 1.3;
  }

  .formula-benefits-description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .intellident-effectiveness-showcase {
    padding: 25px 10px;
  }

  .centered-content-wrapper {
    padding: 0 10px;
  }

  .primary-brand-statement {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }

  .product-differentiation-text,
  .formula-benefits-description {
    font-size: 16px;
  }
}

/* Ensure smooth transitions */
.primary-brand-statement,
.product-differentiation-text,
.formula-benefits-description {
  transition: font-size 0.3s ease-out;
}

/* Main ingredients showcase section */
.ingredients-showcase-section {
  background-color: #f5f5f5;
  min-height: auto;
  padding-bottom: 99px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  justify-items: center;
}

/* Container wrapper for all content */
.ingredients-container-wrapper {
  max-width: 1070px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  align-items: center;
}

/* Ingredients grid layout - 2 columns, 3 rows */
.ingredients-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px 6px;
  margin-bottom: 70px;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

/* Individual ingredient card styling */
.individual-ingredient-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Ingredient visual content container */
.ingredient-visual-content {
  flex-shrink: 0;
}

/* Circular ingredient images */
.ingredient-circular-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ingredient text content container */
.ingredient-text-content {
  flex: 1;
  padding-top: 5px;
}

/* Ingredient name titles */
.ingredient-name-title {
  color: #000;
  font-family: "SF Pro Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  /* 161.111% */
}

/* Ingredient benefit descriptions */
.ingredient-benefit-description {
  color: #000;
  font-family: "SF Pro Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 29px;
  /* 161.111% */
}

/* Product summary section */
.product-summary-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

/* Intellident effectiveness statement */
.intellident-effectiveness-statement {
  font-size: 19px;
  line-height: 24px;
  max-width: 667px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  font-family: "pro-display-regular", sans-serif;
  transition: font-size 0.3s ease, margin 0.3s ease;
}


/* Transformation tagline text */
.transformation-tagline-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "pro-display-regular", sans-serif;
  margin: 0;
  transition: font-size 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .ingredients-container-wrapper {
    padding: 0 15px;
  }

  .ingredients-grid-layout {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }


  .ingredient-name-title {
    font-size: 20px;
  }

  .ingredient-benefit-description {
    font-size: 19px;
  }

  /* Product summary responsive */
  .product-summary-section {
    margin: 35px 0;
    padding: 0 15px;
  }

  .intellident-effectiveness-statement {
    font-size: 24px;
    max-width: 800px;
  }

  .primary-order-cta-button {
    font-size: 18px;
    padding: 14px 40px;
  }

  .transformation-tagline-text {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .ingredients-showcase-section {
    padding: 0px 15px 20px;
  }

  .ingredients-container-wrapper {
    padding: 0 10px;
  }

  .ingredients-grid-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .individual-ingredient-card {
    gap: 15px;
  }


  .ingredient-name-title {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .ingredient-benefit-description {
    font-size: 17px;
    line-height: 1.3;
  }

  /* Product summary responsive */
  .product-summary-section {
    margin: 30px 0;
    padding: 0 12px;
  }

  .intellident-effectiveness-statement {
    font-size: 22px;
    max-width: 600px;
    line-height: 1.4;
  }

  .primary-order-cta-button {
    font-size: 17px;
    padding: 12px 35px;
    margin-bottom: 25px;
  }

  .transformation-tagline-text {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .ingredients-showcase-section {
    padding: 0px 10px 15px;
  }

  .ingredients-container-wrapper {
    padding: 0 5px;
  }

  .ingredients-grid-layout {
    gap: 25px;
    margin-bottom: 30px;
  }

  .individual-ingredient-card {
    gap: 12px;
  }


  .ingredient-name-title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .ingredient-benefit-description {
    font-size: 16px;
    line-height: 1.3;
  }

  /* Product summary responsive */
  .product-summary-section {
    margin: 25px 0;
    padding: 0 10px;
  }

  .product-summary-section button {
    width: 100%;
  }

  .intellident-effectiveness-statement {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.35;
    width: 100%;
  }

  .transformation-tagline-text {
    font-size: 16px;
    line-height: 1.3;
    padding: 0;
  }
}

/* High contrast accessibility support */
@media (prefers-contrast: high) {
  .ingredient-name-title {
    color: #000000;
  }

  .ingredient-benefit-description {
    color: #222222;
  }

  .intellident-effectiveness-statement,
  .transformation-tagline-text {
    color: #000000;
  }

  .primary-order-cta-button {
    border: 2px solid #000000;
  }
}

/* Print styles */
@media print {
  .ingredients-showcase-section {
    background-color: white;
    padding: 30px 20px;
  }

  .primary-order-cta-button {
    background-color: #ddd;
    color: #000;
    border: 1px solid #999;
  }

  .ingredient-circular-image {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Focus states for accessibility */
.primary-order-cta-button:focus {
  outline: 3px solid #00bfff;
  outline-offset: 2px;
}

.individual-ingredient-card:focus-within {
  outline: 2px solid #00bfff;
  outline-offset: 4px;
  border-radius: 8px;
}

/* Smooth transitions */
.ingredient-circular-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.individual-ingredient-card:hover .ingredient-circular-image {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Grid layout enhancements */
.ingredients-grid-layout {
  position: relative;
}

/* Ensure proper alignment */
.ingredient-text-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 280px;
}

/* Loading states for dynamic content */
.ingredients-container-wrapper[data-loading="true"] {
  opacity: 0.7;
  pointer-events: none;
}

.ingredients-container-wrapper[data-loading="false"] {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}


/* Main showcase section - exact turquoise background from image */
.product-showcase-main-section {
  background: linear-gradient(to right, #87ceeb, #1e9dc8);
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.showcase-main-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Add a pseudo-element for the moving background */
.product-showcase-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
  transition: transform 0.3s ease-out;
}

/* Left side - Product image */
.product-left-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Product image wrapper */
.product-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bottle container */
.bottle-main-container {
  position: relative;
  z-index: -1;
  margin-left: -2rem;
}

.bottle-main-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 808.596px;
  height: 573.295px;
  transform: translate(-50%, -50%);
  max-width: 808.596px;
}

@media (max-width: 1024px) {
  .bottle-main-container img {
    width: 100%;
    height: 100%;
    transform: none;
    max-width: 100%;
    position: static;
  }
}

@media (max-width: 767.98px) {
  .bottle-main-container img {
    width: 100%;
    height: 100%;
    transform: none;
    max-width: 100%;
    position: static;
  }
}

/* Main product bottle */
.main-product-bottle {
  width: 120%;
  height: auto;
  margin-left: -20px;
  object-fit: contain;
}

/* Right side - Content */
.content-right-side {
  max-width: 620px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Primary main headline */
.primary-main-headline {
  color: #FFF;
  font-family: "SF Pro Display";
  font-size: 53px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* White text in headline */
.headline-white-text {
  color: #ffffff;
  font-family: "pro-display-bold", sans-serif;
}

@media (max-width: 767.98px) {
  .primary-main-headline {
    font-size: 24px !important;
  }
}

/* Blue text in headline */
.headline-blue-text {
  color: #1b4f72;
  font-weight: 600;
}

/* Primary subheading */
.primary-subheading {
  font-size: 18px;
  font-family: "pro-display-bold", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0.95;
  padding-top: 46px;
}

/* Content description paragraphs */
.content-description-paragraph {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 18px;
  opacity: 0.92;
}

/* Science section heading */
.science-section-heading {
  font-size: 18px;
  font-family: "pro-display-bold", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 8px;
}


/* Final tagline text */
.final-tagline-text {
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.95;
  margin-top: 17px;
}

@media (max-width: 767.98px) {
  .final-tagline-text {
    text-align: center;
    font-size: 11px;
    margin-top: 20px;
  }
}

/* Tablet responsive */
@media (max-width: 1200px) {
  .content-right-side {
    margin-left: -20px;
    max-width: 550px;
  }

  .main-product-bottle {
    width: 180px;
    max-height: 280px;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .content-right-side {
    margin-left: 0;
    max-width: 500px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-product-bottle {
    width: 180px;
    max-height: 280px;
  }

  .product-image-wrapper {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .product-showcase-main-section {
    padding: 35px 15px;
    min-height: auto;
  }

  .showcase-main-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    max-width: 100%;
  }

  .content-right-side {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
    order: 2;
  }

  .product-left-side {
    margin: 0 auto;
    max-width: 300px;
  }

  .product-image-wrapper {
    padding: 10px;
  }

  .main-product-bottle {
    width: 160px;
    max-height: 260px;
    margin: 0 auto;
  }


  /* Restore and improve background movement */
  .product-showcase-main-section::before {
    transform: translateY(0);
    background: linear-gradient(to bottom,
        #add6eb 0%,
        #47a3d1 50%,
        #3399cc 100%);
    transition: transform 0.3s ease-out, background 0.3s ease-out;
  }

  .primary-main-headline {
    font-size: 28px;
    margin-bottom: 14px;
    text-align: center;
  }

  .primary-subheading,
  .content-description-paragraph,
  .science-section-heading {
    text-align: center;
    font-size: 16px;
  }

  .main-order-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .product-showcase-main-section {
    padding: 30px 10px;
  }

  /* Adjust background for smaller screens */
  .product-showcase-main-section::before {
    background: linear-gradient(to bottom,
        #add6eb 0%,
        #47a3d1 60%,
        #3399cc 100%);
  }

  .content-right-side {
    padding: 0 10px;
  }

  .content-right-side button {
    width: 100%;
  }

  .main-product-bottle {
    width: 140px;
    max-height: 230px;
  }
}

/* Accessibility focus states */
.main-order-button:focus {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

  .headline-white-text,
  .primary-subheading,
  .content-description-paragraph,
  .science-section-heading,
  .final-tagline-text {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  .headline-blue-text {
    color: #000080;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  }
}

/* Smooth animations */
.product-image-wrapper {
  transition: transform 0.3s ease;
}

.product-image-wrapper:hover {
  transform: scale(1.02);
}

@keyframes gentle-glow {

  0%,
  100% {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  }

  50% {
    filter: drop-shadow(0 6px 16px rgba(255, 215, 0, 0.3));
  }
}

/* Print styles */
@media print {
  .product-showcase-main-section {
    background-color: white;
    color: black;
    min-height: auto;
    padding: 30px;
  }

  .headline-white-text,
  .primary-subheading,
  .content-description-paragraph,
  .science-section-heading,
  .final-tagline-text {
    color: black;
  }

  .headline-blue-text {
    color: #1b4f72;
  }

  .main-order-button {
    background-color: #ddd;
    color: black;
    border: 2px solid #999;
  }
}

/* Loading states */
.showcase-main-container[data-loading="true"] {
  opacity: 0.7;
  pointer-events: none;
}

.showcase-main-container[data-loading="false"] {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Main Section */
.guarantee-section {
  background: linear-gradient(135deg,
      #00bfff 0%,
      #1e90ff 30%,
      #4169e1 70%,
      #0000cd 100%);
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Diagonal line pattern overlay */
.guarantee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.05) 1px,
      rgba(255, 255, 255, 0.05) 2px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.05) 1px,
      rgba(255, 255, 255, 0.05) 2px);
  z-index: 1;
}

/* Container */
.guarantee-container {
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Certificate Frame - Dark Border (OUTERMOST) */
.certificate-frame {
  background: #064b84;
  padding: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* White Frame (MIDDLE LAYER) */
.white-frame {
  background: #ffffff;
  padding: 15px;
  position: relative;
}

/* Blue Decorative Border Frame */
.blue-border {
  background: linear-gradient(45deg, #5dade2, #3498db);
  padding: 15px;
  position: relative;
  border: 4px solid #000000;
  /* Black border on blue frame */
}

/* Blue border pattern */
.blue-border::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: linear-gradient(135deg,
      #00bfff 0%,
      #1e90ff 30%,
      #00bfff 70%,
      #00bfff 100%);
  z-index: 1;
}

/* Content Card with THICK BLACK BORDER */
.content-card {
  background: #ffffff;
  padding: 35px 30px;
  border: 4px solid #000000;
  /* THICK BLACK BORDER */
  position: relative;
  z-index: 2;
  text-align: center;
  background-image: radial-gradient(circle at 25% 25%,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 25px 25px;
}

/* Header */
.header {
  margin-bottom: 25px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tooth-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.brand-text {
  font-size: 16px;
  font-weight: bold;
  color: #2c3e50;
  letter-spacing: 1px;
}

/* Title Section */
.title-section {
  margin-bottom: 25px;
}

.ironclad-title {
  font-size: 46px;
  font-weight: bold;
  font-family: "pro-display-bold", sans-serif;
  color: #3498db;
  letter-spacing: -0.02em;
}

.guarantee-title {
  font-size: 64px;
  font-weight: bold;
  font-family: "pro-display-bold", sans-serif;
  color: #3498db;
  letter-spacing: 3px;
  margin-bottom: 12px;
  line-height: 1;
}

.main-subtitle {
  font-size: 40px;
  font-family: "pro-display-bold", sans-serif;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0px;
}

/* Content Text */
.content-text {
  margin-bottom: 24px;
  line-height: 1.5;
  font-family: "pro-display-regular", sans-serif;
}

.coverage-line {
  font-size: 20px;
  margin-bottom: 18px;
}

.body-text {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "pro-display-regular", sans-serif;
}

.condition-line {
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1.4;
  font-family: "pro-display-regular", sans-serif;
}

.no-hassle {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 600;
  font-family: "pro-display-medium", sans-serif;
  font-style: italic;
}

.reason-header {
  font-size: 20px;
  margin: 18px 0 8px 0;
  font-weight: 600;
}

.reason-item {
  font-size: 19px;
  color: #2c3e50;
  margin-bottom: 6px;
  line-height: 1.4;
}

.contact-info {
  font-size: 19px;
  color: #2c3e50;
  margin-top: 18px;
  line-height: 1.5;
}

/* Money Back Seal Image */
.seal-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border-color: #000000;
}

.money-back-seal-image {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 999px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 30px 15px;
  }

  .certificate-frame {
    padding: 12px;
  }

  .white-frame {
    padding: 12px;
  }

  .blue-border {
    padding: 10px;
  }

  .content-card {
    padding: 25px 20px;
    border-width: 12px;
    /* Reduced thick border for mobile */
  }

  .guarantee-title {
    font-size: 46px;
    letter-spacing: 2px;
  }

  .ironclad-title {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .main-subtitle {
    font-size: 28px;
  }

  .money-back-seal-image {
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 480px) {
  .certificate-frame {
    padding: 10px;
  }

  .white-frame {
    padding: 10px;
  }

  .blue-border {
    padding: 8px;
  }

  .content-card {
    padding: 20px 15px;
    border-width: 10px;
    /* Further reduced for small mobile */
  }

  .guarantee-title {
    font-size: 38px;
    letter-spacing: 1px;
  }

  .ironclad-title {
    font-size: 28px;
  }

  .main-subtitle {
    font-size: 26px;
  }

  .body-text,
  .condition-line,
  .no-hassle,
  .reason-item,
  .contact-info {
    font-size: 18px;
  }

  .money-back-seal-image {
    width: 75px;
    height: 75px;
  }
}

/* Print Styles */
@media print {
  .guarantee-section {
    background: white !important;
    min-height: auto;
  }

  .guarantee-section::before {
    display: none;
  }

  .certificate-frame {
    background: #ddd !important;
  }

  .white-frame {
    background: #fff !important;
  }

  .blue-border {
    background: #bbb !important;
    border-color: #333 !important;
  }

  .content-card {
    border-color: #333 !important;
  }

  .ironclad-title,
  .guarantee-title {
    color: #333 !important;
  }
}

/* Add smooth transitions */
.product-showcase-main-section,
.showcase-main-container,
.product-left-side,
.content-right-side {
  transition: all 0.3s ease-out;
}

/* Ensure content stays above background */
.product-left-side,
.content-right-side {
  position: relative;
  z-index: 2;
}

/* Ensure smooth image transitions */
.main-product-bottle {
  will-change: transform;
  transform-origin: center center;
}

/* Ensure smooth transitions */
.hero-section,
.hero-section::before,
.content-wrapper,
.image-section,
.text-section {
  transition: all 0.3s ease-out;
}

/* Ingredients section header - exact size from image */
.ingredients-section-header {
  font-size: 24px;
  margin-bottom: 40px;
  font-family: "pro-display-bold", sans-serif;
  font-weight: 700;
  text-align: center;
  color: black;
}

/* High contrast accessibility support */
@media (prefers-contrast: high) {
  .highlighted-brand-name {
    color: #0066cc;
  }

  .primary-brand-statement,
  .product-differentiation-text,
  .formula-benefits-description,
  .ingredients-section-header {
    color: #000000;
  }
}

/* Print-friendly styling */
@media print {
  .intellident-effectiveness-showcase {
    background-color: white;
    padding: 30px 20px;
  }

  .highlighted-brand-name {
    color: #000000;
    text-decoration: underline;
  }
}

/* Responsive adjustments for ingredients section */
@media (max-width: 1024px) {
  .ingredients-section-header {
    font-size: 22px;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .ingredients-section-header {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .ingredients-section-header {
    font-size: 18px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
}