/* ==========================================================================
   Components
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  padding: 0 20px;
}

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  text-align: center;
  padding: 20px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background-color: var(--color-white);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: var(--color-black);
}

/* Product carousel navigation arrows */
.product-carousel__arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-black);
  z-index: 2;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-carousel__arrow:hover {
  background-color: var(--color-gray-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- Product Detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail__info {
  padding-top: 10px;
}

.product-detail__breadcrumb {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-detail__breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.product-detail__breadcrumb a:hover {
  color: var(--color-black);
}

.product-detail__breadcrumb span {
  margin: 0 8px;
}

.product-detail__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-detail__subtitle {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

.product-detail__description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 25px;
}

.product-detail__share-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-detail__share {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.product-detail__share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 14px;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.product-detail__share-btn:hover {
  opacity: 0.85;
}

.share-whatsapp {
  background-color: var(--color-green);
}

.share-facebook {
  background-color: var(--color-facebook);
}

.share-twitter {
  background-color: var(--color-twitter);
}

.share-email {
  background-color: var(--color-red);
}

.product-detail__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid var(--color-gray-border-light);
  padding-top: 20px;
}

.product-detail__nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.product-detail__nav a:hover {
  opacity: 0.7;
}

/* ---------- Image Tabs ---------- */
.image-tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-tabs__content {
  width: 100%;
  min-height: 400px;
  position: relative;
}

.image-tabs__panel {
  display: none;
  width: 100%;
  min-height: 400px;
  align-items: center;
  justify-content: center;
}

.image-tabs__panel.active {
  display: flex;
}

.image-tabs__content img {
  max-height: 400px;
  object-fit: contain;
}

.image-tabs__nav {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.image-tabs__tab {
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-gray-border);
  cursor: pointer;
  padding: 5px;
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.image-tabs__tab:hover {
  border-color: var(--color-gray-medium);
}

.image-tabs__tab.active {
  border-color: var(--color-black);
}

.image-tabs__tab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- FAQ Accordion ---------- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--color-gray-border-light);
}

.accordion__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-align: left;
  color: var(--color-black);
  letter-spacing: 0.5px;
}

.accordion__button:hover {
  opacity: 0.8;
}

.accordion__icon {
  font-size: 24px;
  transition: transform var(--transition-normal);
  color: var(--color-gray-medium);
  flex-shrink: 0;
  margin-left: 15px;
}

.accordion__item.open .accordion__icon {
  transform: none;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__item.open .accordion__content {
  max-height: 500px;
}

.accordion__content-inner {
  padding: 0 0 20px;
  color: var(--color-gray-dark);
  line-height: 1.8;
  font-size: 15px;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form__group {
  position: relative;
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-gray-border);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
  background-color: var(--color-white);
  color: var(--color-black);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-black);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #aaa;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__phone-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-gray-border);
}

.form__phone-wrapper .form__input {
  border: none;
}

.form__phone-flag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-right: 1px solid var(--color-gray-border);
  font-size: 14px;
  white-space: nowrap;
}

.form__submit {
  width: 100%;
  padding: 15px;
  background-color: var(--color-white);
  border: 2px solid var(--color-black);
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  font-weight: 600;
}

.form__submit:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ---------- Certifications Bar ---------- */
.certifications {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.certifications__item {
  width: 100px;
  height: 100px;
}

.certifications__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Awards ---------- */
.awards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.awards__item {
  text-align: center;
}

.awards__item img {
  height: 60px;
  margin: 0 auto;
}

.awards__label {
  font-size: 12px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.awards-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.awards-badges img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.awards__stars {
  color: #f4c430;
  font-size: 16px;
  margin-top: 8px;
}

/* ---------- Benefits Grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefits-grid--full {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4vw;
  row-gap: 0;
}

#benefits.section {
  padding: 5vw 15vw;
}

.benefit-card {
  text-align: center;
  padding: 30px;
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.benefit-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-card__text {
  display: block;
  font-size: 18px;
  color: var(--color-gray-dark);
  line-height: 1.7;
}

/* ---------- Timeline (About Page) ---------- */
.timeline {
  position: relative;
  max-width: 520px;
  margin: 30px 0 0 0;
  padding: 0;
}

.timeline__track {
  position: absolute;
  left: 33px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: #c3c3c3;
}

.timeline__track-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: #000;
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.timeline__node {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e8e8e8;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background-color 0.4s ease, color 0.4s ease;
  position: relative;
  z-index: 1;
}

.timeline__item.active .timeline__node {
  background: var(--color-black);
  color: var(--color-white);
}

.timeline__content {
  flex: 1;
  background: #ececec;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-black);
  font-family: var(--font-body);
}

/* ---------- Section Intro Text ---------- */
.section__intro {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  color: var(--color-gray-dark);
  font-size: 15px;
  line-height: 1.8;
}

/* ---------- Video Embed ---------- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Two Column Layout (About) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image img {
  width: 100%;
  object-fit: cover;
}

.two-col__content {
  padding: 20px 0;
}

/* ---------- Section Decoration (Leaves) - removed, no longer used ---------- */

/* ---------- About Page: Intro Section ---------- */
.about-intro-section {
  padding: 7vw 25vw;
}

.about-intro-section .container {
  max-width: 100%;
}

.about-intro-section .section__intro {
  font-size: 20px;
  max-width: 100%;
}

.about-hero-video {
  margin-bottom: 30px;
}

.about-hero-video .video-wrapper {
  max-width: 100%;
}

/* ---------- About Page: Joy Section ---------- */
.about-joy-section {
  padding: 0;
}

.about-joy-layout {
  display: flex;
  min-height: 60vh;
}

.about-joy-bg {
  flex: 1;
  background-image: url('/assets/images/about/joy-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
}

.about-joy-content {
  flex: 1;
  padding: 5vw 10vw;
  background-color: #E4E4E4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-joy-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  opacity: 0.6;
  pointer-events: none;
}

.about-joy-content > * {
  position: relative;
  z-index: 1;
}

.about-joy-content h2 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-joy-content p {
  font-size: 20px;
  line-height: 1.8;
  text-align: justify;
}

/* ---------- About Page: Vision Section ---------- */
.about-vision-section {
  background-color: var(--color-white);
  padding: 7vw 0 3vw;
  position: relative;
  overflow: visible;
}

.about-vision-image {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.about-vision-image img {
  max-width: 450px;
  width: 60%;
  height: auto;
}

.about-vision-text {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--color-white);
  border-radius: 30px;
  padding: 2vw;
}

.about-vision-text .section__intro {
  font-size: 20px;
  max-width: 100%;
  margin-bottom: 0;
}

.about-vision-text h3 {
  margin-bottom: 0;
}

.about-vision-text h2 {
  margin-bottom: 0;
}

.about-wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.about-wave-divider svg {
  width: calc(100% + 1.3px);
  height: 72px;
  display: block;
}

/* Vision text h2 heading size is set in the h2 sizes rule block below */

/* ---------- About Page: Rewards Section ---------- */
.about-rewards-section {
  background-color: #E4E4E4;
  padding: 10vw 10vw 5vw;
  overflow: hidden;
}

.about-rewards-section .section__intro {
  font-size: 20px;
  max-width: 100%;
}

.rewards-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.reward-card {
  text-align: center;
  padding: 20px;
}

.reward-card__icon {
  width: 225px;
  height: 225px;
  margin: 0 auto 15px;
}

.reward-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reward-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.about-best-cheese {
  margin-top: 40px;
}

.about-best-cheese h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* ---------- About Page: Pioneering / Sustainability Section ---------- */
.about-pioneering-section {
  background-color: #F1F1F1;
  padding: 0 10vw;
}

.about-product-showcase {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 3vw 0;
}

.about-product-showcase__image {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: 400px;
  padding: 0;
}

.about-rotated-product {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1025px) {
  .about-showcase-img--primary {
    transform: translateX(86px) translateY(-60px) rotate(48deg);
    margin: 0 6vw -5vw 0;
  }

  .about-showcase-img--secondary {
    transform: rotate(-31deg);
    margin: 0 -41px 47px -30px;
  }
}

.about-product-showcase__content {
  flex: 0 0 50%;
  padding: 0;
}

.about-product-showcase__content h2 {
  margin-bottom: 20px;
}

.about-product-showcase__content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-product-showcase--reverse {
  flex-direction: row-reverse;
}

.about-product-showcase--reverse .about-product-showcase__content {
  padding: 0;
}

/* ---------- About Page: History Section ---------- */
.about-history-section {
  background-color: var(--color-white);
  padding: 0 10vw;
}

.about-history-text {
  text-align: left;
  padding: 2vw 0 3vw;
}

.about-timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-history-text h2 {
  margin-bottom: 20px;
}

.about-history-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 15px;
}

.about-history-text .timeline {
  margin-top: 30px;
}

.about-history-product {
  flex: 0 0 45%;
  position: sticky;
  top: calc(50vh - 210px);
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.about-spinning-product {
  width: 100%;
  max-width: 350px;
}

.about-history-section .btn {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* ---------- About Page: Pill CTA Button ---------- */
.btn--pill {
  background-color: white;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  border-radius: 30px;
  padding: 12px 24px;
}

.btn--pill:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ---------- About Page: H2 Heading Sizes ---------- */
.about-intro-section h2,
.about-vision-text h2,
.about-rewards-section h2,
#benefits h2,
.about-product-showcase__content h2,
.about-history-text h2 {
  font-size: 48px;
}

/* ---------- About Page Responsive ---------- */

/* Tablet: heading drops to 2rem (matches Elementor tablet breakpoint) */
@media (max-width: 1147px) {
  .about-product-showcase__content h2 {
    font-size: 2rem;
  }
}

/* Tablet/mid: collapse rewards grid to single column */
@media (max-width: 900px) {
  .rewards-cards {
    grid-template-columns: 1fr;
  }

  .reward-card__icon {
    width: 150px;
    height: 150px;
  }
}

/* Tablet/mid: stack product showcase vertically to avoid rotated image overlapping text */
@media (max-width: 1024px) {
  .about-product-showcase {
    flex-direction: column;
    padding: 6vw 5vw;
  }

  .about-product-showcase--reverse {
    flex-direction: column;
  }

  .about-product-showcase__image {
    min-height: auto;
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
  }

  .about-product-showcase__content {
    flex: none;
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  /* All about-page body text → 1rem on mobile (matches Elementor) */
  .about-product-showcase__content p,
  .about-joy-content p,
  .about-vision-text .section__intro,
  .about-rewards-section .section__intro,
  .about-rewards-section p,
  .about-history-text p,
  .benefit-card__text {
    font-size: 0.85rem;
  }

  .about-intro-section {
    padding: 8vw;
  }

  #benefits.section {
    padding: 5vw;
  }

  .benefits-grid--full {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3vw;
    row-gap: 3vw;
  }

  /* Reset image transform on mobile so it doesn't overlap text */
  .about-rotated-product {
    transform: none !important;
    margin: 0 !important;
  }

  .about-pioneering-section {
    padding: 5vw;
    overflow: hidden;
  }

  .benefit-card {
    padding: 15px;
  }

  .about-joy-layout {
    flex-direction: column;
    min-height: auto;
  }

  .about-joy-bg {
    display: none;
  }

  .about-rewards-section {
    padding: 5vw;
  }

  .rewards-cards {
    grid-template-columns: 1fr;
  }

  .reward-card__icon {
    width: 150px;
    height: 150px;
  }

  .about-product-showcase {
    flex-direction: column;
    padding: 6vw 5vw;
  }

  .about-product-showcase--reverse {
    flex-direction: column;
  }

  .about-product-showcase__image {
    min-height: auto;
    padding: 0;
    flex: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 20px;
    overflow: visible;
  }

  .about-product-showcase__content {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .about-product-showcase__content h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .about-product-showcase--reverse .about-product-showcase__content {
    padding: 0;
  }

  .about-timeline-row {
    flex-direction: column;
  }

  .about-history-product {
    flex: none;
    width: 100%;
    position: static;
  }

  .about-history-section {
    padding: 0 5vw;
  }

  .about-wave-divider svg {
    height: 36px;
  }
}

/* ---------- Hero Slider ---------- */
.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slides with full product arrangement need contain so nothing is cropped */
.hero-slider .swiper-slide.slide--contain img {
  object-fit: contain;
}

/* ---------- Homepage Sections ---------- */
.about-intro,
.awards-section,
.products-section,
.video-section,
.benefits-section,
.about-summary,
.contact-section {
  text-align: center;
}

.section-white { background-color: var(--color-white); }
.section-gray { background-color: var(--color-gray-light); }

/* Homepage about-intro: decorative product background */
.about-intro {
  position: relative;
  overflow: hidden;
  padding: 8vw 10vw 10vw;
}

.about-intro h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-intro h3 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-intro p {
  max-width: 68%;
  margin-left: auto;
  margin-right: auto;
}

.about-intro--with-bg {
  background-image: url('/assets/images/about/about-intro-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.about-intro--with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.about-intro--with-bg > .container {
  position: relative;
  z-index: 1;
}

.btn--dark {
  border-color: #333;
  color: #333;
  background-color: rgba(255, 255, 255, 0.7);
}

.btn--dark:hover {
  background-color: #333;
  color: white;
}

@media (max-width: 768px) {
  .about-intro {
    padding: 9vw;
  }

  .about-intro p {
    max-width: 87vw;
  }

  .about-intro h2 {
    font-size: 3rem;
  }

  .about-intro h3 {
    font-size: 1rem;
  }
}

/* Awards section */
.awards-section {
  padding: 5vw 10vw;
}

.awards-section h2 {
  font-size: 3rem;
  margin-bottom: 6px;
}

.awards-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 13px;
}

@media (max-width: 768px) {
  .awards-section {
    padding: 10vw;
  }

  .awards-section h2 {
    font-size: 2rem;
  }
}

/* Products section with wave dividers */
.section-white-to-gray { background: linear-gradient(to bottom, var(--color-white), var(--color-gray-light)); }

.products-section {
  position: relative;
  padding: 5vw 10vw;
  background-color: var(--color-white);
  z-index: 1;
}

.products-section h2 {
  font-size: 3rem;
}

.products-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.products-section .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 20px;
  margin-bottom: 5px;
}

.products-section .btn {
  margin-top: 15px;
}

/* Wave shape dividers for products section */
.products-section .wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.products-section .wave-divider--top {
  top: -1px;
}

.products-section .wave-divider--bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.products-section .wave-divider svg {
  width: calc(100% + 1.3px);
  height: 72px;
  display: block;
}

@media (max-width: 768px) {
  .products-section .wave-divider svg {
    height: 36px;
  }
}

/* Video section */
.video-section {
  padding: 5vw 0 7vw;
  background-color: var(--color-gray-light);
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 40px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Benefits icons */
.benefits-section {
  padding: 8vw 0 4vw;
}

.benefits-section h2 {
  font-size: 3rem;
}

.benefits-icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: 0 5vw 2vw;
  gap: 15px;
}

.benefits-icons img {
  width: 100%;
  max-width: 90px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.benefits-section > .container > p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10vw;
}

@media (max-width: 768px) {
  .benefits-icons {
    grid-template-columns: repeat(4, 1fr);
    padding: 5vw;
    gap: 0;
  }

  .benefits-section > .container > p {
    padding: 0 10px;
  }
}

/* ---------- Homepage About Summary ---------- */
.about-summary {
  padding: 0;
}

.about-summary-layout {
  display: flex;
  min-height: 60vh;
}

.about-summary-bg {
  flex: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
}

.about-summary-content {
  flex: 1;
  padding: 5vw 10vw 5vw 5vw;
  background-color: #DDDDDD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-summary-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  opacity: 0.6;
  pointer-events: none;
}

.about-summary-content > * {
  position: relative;
  z-index: 1;
}

.about-summary-content h2 {
  font-size: 3rem;
  text-transform: none;
  margin-bottom: 10px;
}

.about-summary-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 20px;
}

.about-summary-content p {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-summary-layout {
    flex-direction: column;
    min-height: auto;
  }

  .about-summary-bg {
    min-height: 250px;
  }

  .about-summary-content {
    padding: 5vw;
  }

  .about-summary-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-summary-content h3 {
    text-align: center;
  }
}

/* ---------- Homepage Contact Section ---------- */
.contact-section {
  padding: 0;
}

.contact-section-layout {
  display: flex;
  min-height: 60vh;
  flex-direction: row-reverse;
}

.contact-section-bg {
  flex: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 302px;
}

.contact-section-form {
  flex: 1;
  padding: 5vw;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-section-form h2 {
  font-size: 3rem;
}

.contact-section-form h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-section-form .contact-form {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-section-layout {
    flex-direction: column;
    min-height: auto;
  }

  .contact-section-bg {
    min-height: 250px;
  }

  .contact-section-form {
    padding: 5vw;
  }

  .contact-section-form h2 {
    font-size: 2rem;
  }
}

/* ---------- Contact Hero (Dark Background) ---------- */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  min-height: 100vh;
}

.contact-hero h2,
.contact-hero h3 {
  color: var(--color-white);
}

.contact-hero .section__intro {
  color: rgba(255, 255, 255, 0.8);
}

.contact-hero .form__label {
  color: var(--color-white);
}

.contact-hero .form__input,
.contact-hero .form__textarea {
  background-color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-black);
}

.contact-hero .form__input::placeholder,
.contact-hero .form__textarea::placeholder {
  color: #999;
}

.form__submit--light {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.form__submit--light:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* ---------- Floating Product Images (Contact Page) ---------- */
.floating-products {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-products__item {
  position: absolute;
  width: 140px;
  opacity: 0.7;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* ---------- Product Grid Wrapper (with arrows) ---------- */
.product-grid-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-grid-wrapper .product-grid {
  flex: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail__info {
    order: 2;
  }

  .image-tabs {
    order: 1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .certifications {
    gap: 20px;
  }

  .certifications__item {
    width: 60px;
    height: 60px;
  }

  .product-carousel__arrow {
    display: none;
  }

  .floating-products__item {
    width: 80px !important;
    opacity: 0.4;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* (about-intro h3 weight now set in main about-intro block above) */

/* ---------- About page Joy heading: non-uppercase ---------- */
.about-joy-content h2 {
  text-transform: none;
}

/* ---------- FAQ Page ---------- */
.faq-intro-section {
  background-color: var(--color-white);
  padding: 5vw 0 3vw;
}

.faq-banner-image {
  max-width: 500px;
  margin: 20px auto 30px;
}

.faq-banner-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------- Hide form labels (placeholder-only approach) ---------- */
.form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
