/* ============================================
   ABOUT US — pixel-match to design mockup
   ============================================ */

.about-page {
  --about-serif: var(--font-heading);
  --about-navy: #001d3d;
  --about-pink: #e91e8c;
  --about-pink-soft: #fdf2f6;
  --about-pink-card: #fce8f0;
}

.about-page .about-serif,
.about-page .about-page-title,
.about-page .about-hero-sub,
.about-page .section-title.about-serif,
.about-page .about-value-card h5,
.about-page .about-shop-title {
  font-family: var(--about-serif);
}

/* ----- Hero (matches live site) ----- */
.about-page-hero {
  position: relative;
  padding: 50px 0 50px;
  background-color: #f8f1f1;
  background-image: url('../images/title-shape-2.png');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 17% auto;
  overflow: hidden;
  text-align: center;
  min-height: 300px;
}

.about-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/title-shape-1.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 17% auto;
  pointer-events: none;
  z-index: 1;
}

.about-page-hero .container {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.about-hero-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--about-pink);
  margin-bottom: 16px;
}

.about-hero-emblem i {
  font-size: 13px;
}

.about-emblem-branch {
  width: 88px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
}

.about-emblem-branch--left {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 32'%3E%3Cpath fill='none' stroke='%23e889b8' stroke-width='1.3' d='M88 16 H24 Q10 16 6 10'/%3E%3Cpath fill='none' stroke='%23edb8cf' stroke-width='1' d='M88 16 H30 Q18 16 14 12'/%3E%3Ccircle cx='6' cy='10' r='3.5' fill='%23f0b0cc'/%3E%3Ccircle cx='16' cy='13' r='2.5' fill='%23f5c4dc'/%3E%3Ccircle cx='28' cy='15' r='2' fill='%23f8d4e6'/%3E%3Ccircle cx='38' cy='16' r='1.5' fill='%23fce4ef'/%3E%3C/svg%3E");
}

.about-emblem-branch--right {
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 32'%3E%3Cpath fill='none' stroke='%23e889b8' stroke-width='1.3' d='M88 16 H24 Q10 16 6 10'/%3E%3Cpath fill='none' stroke='%23edb8cf' stroke-width='1' d='M88 16 H30 Q18 16 14 12'/%3E%3Ccircle cx='6' cy='10' r='3.5' fill='%23f0b0cc'/%3E%3Ccircle cx='16' cy='13' r='2.5' fill='%23f5c4dc'/%3E%3Ccircle cx='28' cy='15' r='2' fill='%23f8d4e6'/%3E%3Ccircle cx='38' cy='16' r='1.5' fill='%23fce4ef'/%3E%3C/svg%3E");
}

.about-page-title {
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--about-navy);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.about-breadcrumb {
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 500;
}

.about-breadcrumb a {
  color: var(--about-navy);
  text-decoration: none;
}

.about-breadcrumb a:hover {
  color: var(--about-pink);
}

.about-breadcrumb .bc-sep {
  color: #8a94a6;
  margin: 0 6px;
}

.about-breadcrumb .bc-current {
  color: var(--about-pink);
}

/* Decorative icon + horizontal lines (——— ♥ ———) */
.about-icon-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--about-pink);
  line-height: 1;
}

.about-icon-divider i {
  font-size: 11px;
  flex-shrink: 0;
}

.about-icon-divider > span:not(.about-commit-heart) {
  flex: 1;
  height: 1.5px;
  min-width: 36px;
}

.about-icon-divider > span:first-of-type {
  background: linear-gradient(90deg, #f0b0cc, transparent);
}

.about-icon-divider > span:last-of-type {
  background: linear-gradient(90deg, transparent, #f0b0cc);
}

.about-icon-divider--center {
  justify-content: center;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.about-icon-divider--left {
  justify-content: flex-start;
  max-width: 200px;
}

.about-icon-divider--left > span:first-of-type {
  background: linear-gradient(90deg, #f0b0cc, transparent);
}

.about-icon-divider--left > span:last-of-type {
  background: linear-gradient(90deg, transparent, #f0b0cc);
}

.about-hero-sub {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--about-navy);
  margin-bottom: 14px;
  line-height: 1.35;
}

.about-hero-desc {
  font-size: 15px;
  color: #4a5568;
  margin: 0 auto;
  max-width: 460px;
  line-height: 1.75;
  font-weight: 400;
}

/* ----- Who We Are ----- */
.about-story-section {
  position: relative;
  padding: 50px 0 70px;
  background: #fff;
  overflow: hidden;
}

.about-story-section .container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px 48px;
  align-items: center;
}

.about-story-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: minmax(240px, auto) minmax(220px, auto);
  gap: 14px;
}

.about-exp-card {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(165deg, #fff5f9 0%, #fce8f2 45%, #f8d4e6 100%);
  border-radius: 12px;
  padding: 28px 16px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(208, 38, 137, 0.1);
  border: 1px solid rgba(208, 38, 137, 0.08);
  min-height: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(208, 38, 137, 0.14);
}

.about-exp-card .exp-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #d02689;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(208, 38, 137, 0.12);
}

.about-exp-card .exp-num {
  font-family: var(--about-serif);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  color: #152d6b;
  line-height: 1;
  margin-bottom: 4px;
}

.about-exp-card .exp-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #152d6b;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.about-exp-card .exp-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  color: #3d4a5c;
  line-height: 1.65;
  margin: 0;
  max-width: 160px;
}

.about-story-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(21, 45, 107, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-story-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(21, 45, 107, 0.14);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-story-img:hover img {
  transform: scale(1.03);
}

.about-story-img--top {
  grid-column: 2;
  grid-row: 1;
  min-height: 240px;
}

.about-story-img--wide {
  grid-column: 1 / 3;
  grid-row: 2;
  min-height: 220px;
}

.about-story-content {
  padding: 8px 0 8px 8px;
}

.about-story-content .section-tag {
  margin-bottom: 14px;
  letter-spacing: 1.8px;
  font-size: 15px;
  font-weight: 500;
  color: #d02689;
}

.about-story-content .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.95rem);
  line-height: 1.12;
  margin-bottom: 24px;
  color: #152d6b;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-story-content .section-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #042245;
  margin-bottom: 18px;
}

.about-story-content .section-text strong {
  color: #152d6b;
  font-weight: 600;
}

.about-quote-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff5f9;
  border-left: 3px solid #d02689;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 6px 0 28px;
  box-shadow: 0 4px 16px rgba(208, 38, 137, 0.06);
}

.about-quote-box .about-quote-icon {
  flex-shrink: 0;
  font-size: 22px;
  color: #d02689;
  margin-top: 2px;
}

.about-quote-box p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #042245;
  line-height: 1.75;
}

.about-story-content .about-know-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid #d02689;
  box-shadow: 0 6px 20px rgba(208, 38, 137, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-story-content .about-know-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(208, 38, 137, 0.32);
  border-color: #d02689;
}

.about-story-content .about-know-btn i {
  margin-left: 4px;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.about-story-content .about-know-btn:hover i {
  transform: translateX(3px);
}

/* ----- Vision & Mission ----- */
.about-mission-section {
  position: relative;
  padding: 0;
  background-color: #fff5f9;
  background-image:
    linear-gradient(90deg, #fff5f9 0%, #fff8fb 55%, #fff0f6 100%),
    url('../images/mission-bg.png');
  background-position: center center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, auto 92%;
  overflow: hidden;
}

.about-mission-inner {
  position: relative;
}

.about-mission-wrap {
  position: relative;
  z-index: 1;
  padding: 56px 15px 48px;
  max-width: 1300px;
}

.about-mission-header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: start;
  margin-bottom: 40px;
}

.about-mission-heading .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #d02689;
}

.about-mission-heading .section-tag::before,
.about-mission-heading .section-tag::after {
  content: '';
  width: 34px;
  height: 2px;
  background: #d02689;
  border-radius: 1px;
  opacity: 0.85;
}

.about-mission-header .section-title {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  margin-bottom: 0;
  line-height: 1.08;
  color: #152d6b;
  font-weight: 600;
}

.mission-amp {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.12em;
  color: #d02689;
  letter-spacing: -0.02em;
}

.about-mission-line {
  display: block;
  width: 72px;
  height: 3px;
  margin: 18px 0 14px;
  background: linear-gradient(90deg, #d02689 0%, #f5b8d4 100%);
  border-radius: 2px;
}

.about-mission-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #5b6478;
}

.about-mission-tagline i {
  color: #d02689;
  font-size: 11px;
}

.about-mission-right {
  text-align: left;
  padding-top: 34px;
}

.about-mission-intro {
  font-family: 'Poppins', sans-serif;
  color: #042245;
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 26px;
  max-width: 500px;
}

.about-mission-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 24px rgba(208, 38, 137, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-mission-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(208, 38, 137, 0.35);
}

.about-mission-btn i {
  transition: transform 0.25s ease;
}

.about-mission-btn:hover i {
  transform: translateX(3px);
}

.about-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.about-value-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 44px 30px 68px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(21, 45, 107, 0.08);
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(21, 45, 107, 0.11);
}

.about-value-card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.about-value-wave-img {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.38;
  filter: sepia(1) saturate(4) hue-rotate(290deg) brightness(1.08);
  transform: rotate(180deg);
  transform-origin: center center;
}

.about-value-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fde8f2 0%, #f5c8dc 100%);
  color: #d02689;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 6px 20px rgba(208, 38, 137, 0.14);
}

.about-value-card h5 {
  font-family: var(--about-serif);
  font-size: 1.3rem;
  color: #152d6b;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-value-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d02689;
  font-size: 9px;
  line-height: 1;
}

.about-value-divider span {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f0b0cc 50%, transparent);
}

.about-value-card p {
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #5b6478;
  line-height: 1.85;
  margin: 0;
  padding: 0 6px;
}

/* ----- Impact / Stats section ----- */
.about-impact-section {
  margin-top: 48px;
  padding: 0 0 80px;
  background: #fff;
}

.about-stats-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e8f0f8;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 24px 64px rgba(14, 31, 74, 0.1);
}

.about-stats-panel--has-bg {
  background-image: url('../../images/intro-bg-img.webp');
}

.about-stats-panel-overlay {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.35) 42%,
    rgba(255, 255, 255, 0.45) 100%
  );
}

.about-stats-hero {
  position: relative;
  min-height: 280px;
}

.about-stats-hero-overlay {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 32px 88px;
  background: transparent;
}

.about-impact-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #d02689;
}

.about-impact-tag::before,
.about-impact-tag::after {
  content: '';
  width: 34px;
  height: 2px;
  background: #d02689;
  border-radius: 1px;
  opacity: 0.85;
}

.about-stats-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  color: #152d6b;
  font-weight: 600;
  margin: 0 0 16px;
  max-width: 680px;
}

.about-stats-title .stats-accent {
  color: #d02689;
}

.about-stats-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #5b6478;
  margin: 0;
  max-width: 560px;
}

.about-stats-body {
  position: relative;
  padding: 0 28px 36px;
  margin-top: -56px;
}

.about-stats-connector {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18px;
  height: 48px;
  color: #f0b8d4;
  pointer-events: none;
  z-index: 1;
}

.about-stats-connector-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-stats-heart {
  position: absolute;
  font-size: 9px;
  color: #e889b8;
  transform: translate(-50%, -50%);
}

.about-stats-heart--1 { left: 18%; top: 62%; }
.about-stats-heart--2 { left: 50%; top: 38%; }
.about-stats-heart--3 { left: 82%; top: 58%; }

.about-stats-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}

.about-stat-card {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 52px 16px 28px;
  box-shadow: 0 12px 36px rgba(14, 31, 74, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(14, 31, 74, 0.14);
}

.about-stat-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fde8f2 0%, #f5c8dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(208, 38, 137, 0.18);
  border: 4px solid #fff;
}

.about-stat-icon i {
  font-size: 26px;
  color: #d02689;
}

.about-stat-card .stat-value {
  display: block;
  font-family: var(--about-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  color: #152d6b;
  margin-bottom: 10px;
}

.about-stat-card .stat-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #6b7280;
  max-width: 150px;
  margin: 0 auto 14px;
}

.about-stat-divider {
  display: block;
  width: 36px;
  height: 3px;
  margin: 0 auto;
  border-radius: 2px;
  background: linear-gradient(90deg, #f5b8d4, #d02689, #f5b8d4);
}

.about-stats-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #5b6478;
}

.about-stats-footer i {
  font-size: 10px;
  color: #d02689;
}

/* ----- Commitment ----- */
.about-commitment-section {
  padding: 96px 0 100px;
  background: linear-gradient(180deg, #fff 0%, #fff5f9 48%, #fff 100%);
}

.about-commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
}

.about-commitment-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(14, 31, 74, 0.12);
}

.about-commitment-img-wrap img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.about-commit-float-card {
  position: absolute;
  left: 22px;
  bottom: 26px;
  max-width: calc(100% - 44px);
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px 16px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 14px 36px rgba(14, 31, 74, 0.14);
}

.about-commit-float-dot {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e91e8c;
  border: 2px solid #fff;
}

.about-commit-float-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: url('../images/commit-icon-circle.png') no-repeat center / contain;
  color: #d02689;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-commit-float-card strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #d02689;
  margin-bottom: 4px;
  line-height: 1.3;
}

.about-commit-float-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #5b6478;
}

.about-commitment-content .section-tag {
  margin-bottom: 12px;
}

.about-commitment-section .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  line-height: 1.16;
  color: #152d6b;
  margin-bottom: 10px;
  max-width: 540px;
}

.about-commit-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: url('../images/commit-icon-circle.png') no-repeat center / contain;
  color: #d02689;
  font-size: 10px;
}

.about-icon-divider--left .about-commit-heart {
  margin-bottom: 0;
}

.about-commit-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: url('../images/commit-icon-circle.png') no-repeat center / contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-commit-feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.about-commit-intro {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5b6478;
  margin: 0 0 8px;
  max-width: 540px;
}

.about-commit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.about-commit-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0e0e8;
}

.about-commit-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-commit-feature strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #152d6b;
  margin-bottom: 5px;
  line-height: 1.35;
}

.about-commit-feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #6b7280;
}

.about-commit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 15px 28px;
  text-decoration: none;
  letter-spacing: 1.2px;
  font-size: 12px;
}

.about-commit-btn i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.about-commit-btn:hover i {
  transform: translateX(3px);
}

/* ----- FAQ ----- */
.about-faq-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, #fdf6f9 100%);
}

.about-faq-section .section-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.25;
}

.about-faq-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  max-width: 360px;
}

.about-contact-box {
  background: #fdf2f7;
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100px;
}

.about-contact-box .contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-contact-box small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--about-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-contact-box a,
.about-contact-box span.contact-val {
  font-size: 13px;
  color: var(--about-navy);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

.about-contact-box a:hover {
  color: var(--about-pink);
}

/* FAQ accordion on about — match mockup pills */
.about-faq-section .faq-accordion .accordion-item {
  border-radius: 50px !important;
  margin-bottom: 14px;
}

.about-faq-section .faq-accordion .accordion-button {
  font-size: 13.5px;
  padding: 18px 26px;
}

.about-faq-section .faq-accordion .accordion-button:not(.collapsed) {
  border-radius: 28px 28px 0 0 !important;
  background: var(--pink-soft);
  color: var(--about-pink);
}

/* ----- Shop CTA ----- */
.about-shop-cta {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #fff;
}

.about-shop-cta .container {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
}

.about-shop-panel {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef0f5;
  box-shadow: 0 8px 32px rgba(14, 31, 74, 0.06);
  overflow: hidden;
}

.about-shop-brand {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 8px 10px;
  width: 100%;
}

.about-shop-brand img {
  max-width: 190px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.about-shop-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: center;
  width: 100%;
  padding: 36px 24px;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .about-shop-body {
    gap: 28px 40px;
    padding: 40px 28px;
  }
}

.about-shop-left,
.about-shop-center,
.about-shop-right {
  width: 100%;
  min-width: 0;
}

.about-shop-left {
  text-align: left;
}

.about-shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, #e91e8c 0%, #ff6eb4 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.9px;
  padding: 5px 11px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.about-shop-title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: #152d6b;
  line-height: 1.26;
  margin-bottom: 8px;
  font-weight: 600;
}

.about-shop-body .about-icon-divider {
  margin-bottom: 10px;
}

.about-shop-body .about-icon-divider i {
  font-size: 8px;
}

.about-shop-tagline {
  font-size: 11.5px;
  line-height: 1.65;
  color: #7a8499;
  margin: 0 0 16px;
  max-width: none;
}

.about-shop-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-shop-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-shop-point-icon,
.about-shop-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fdf2f7;
  border: 1px solid #f5dce8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d02689;
  font-size: 17px;
  line-height: 1;
}

.about-shop-point-icon i,
.about-shop-benefit-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 17px;
  color: #d02689;
}

.about-shop-points li strong,
.about-shop-benefits li strong {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: #152d6b;
  margin-bottom: 2px;
  line-height: 1.3;
}

.about-shop-points li div span,
.about-shop-benefits li div span {
  display: block;
  font-size: 10.5px;
  line-height: 1.45;
  color: #9aa3b5;
}

.about-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  text-decoration: none;
  letter-spacing: 1.4px;
  font-size: 10.5px;
  border-radius: 50px;
  box-shadow: 0 10px 26px rgba(208, 38, 137, 0.28);
}

.about-shop-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 340px;
  align-self: stretch;
}

.about-shop-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  min-height: 250px;
}

.about-shop-product-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 44% 44% 0 0;
  background: #f3ece6;
  line-height: 0;
}

.about-shop-badge i {
  font-size: 8px;
}

.about-shop-title-accent {
  color: #d02689;
  font-style: italic;
}

.about-shop-arch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 100%;
  background: linear-gradient(180deg, #faf6f2 0%, #f3ece6 55%, #ebe3db 100%);
  border-radius: 50% 50% 0 0 / 44% 44% 0 0;
  z-index: 0;
}

.about-shop-products {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 72%;
}

.about-shop-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-shop-benefits li:first-child {
  padding-top: 0;
}

.about-shop-benefits li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-shop-trust-item:not(:last-child) {
  border-right: 1px solid #e8ebf0;
}

.about-shop-trust-item:first-child {
  padding-left: 0;
}

.about-shop-trust-item:last-child {
  padding-right: 0;
}

.about-shop-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f4;
}

.about-shop-trustbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  background: #fafbfc;
  border-top: 1px solid #eef0f4;
  padding: 20px 24px;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .about-shop-trustbar {
    padding: 20px 28px;
  }
}

.about-shop-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}

.about-shop-trust-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fdf2f7;
  border: 1px solid #f5dce8;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.about-shop-trust-icon i {
  display: block;
  font-size: 15px;
  line-height: 1;
  color: #d02689;
}

.about-shop-trust-item strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #152d6b;
  margin-bottom: 1px;
}

.about-shop-trust-item div span {
  display: block;
  font-size: 9.5px;
  line-height: 1.4;
  color: #9aa3b5;
}

/* Nav active */
.about-page .navbar-nav-main .nav-link[href*="about-us"] {
  color: var(--about-pink) !important;
}

.about-page .navbar-nav-main .nav-link[href*="about-us"]::before {
  transform: scaleX(1);
  opacity: 1;
}

.about-page .navbar-nav-main .nav-link.active:not([href*="about-us"]) {
  color: var(--about-navy) !important;
}

.about-page .navbar-nav-main .nav-link.active:not([href*="about-us"])::before {
  transform: scaleX(0);
  opacity: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-story-content {
    padding: 0;
  }

  .about-mission-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-mission-right {
    text-align: left;
    padding-top: 0;
  }

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

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 18px;
  }

  .about-stats-body {
    padding: 0 20px 28px;
    margin-top: -40px;
  }

  .about-stats-connector {
    display: none;
  }

  .about-commitment-section {
    padding: 72px 0 80px;
  }

  .about-commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-commitment-img-wrap img {
    min-height: 320px;
  }

  .about-commitment-section .section-title,
  .about-commit-intro {
    max-width: none;
  }

  .about-commit-float-card {
    left: 16px;
    bottom: 18px;
    max-width: calc(100% - 32px);
  }

  .about-shop-body {
    grid-template-columns: 1fr;
    padding: 20px 28px 32px;
    text-align: center;
    gap: 32px;
  }

  .about-shop-title,
  .about-shop-tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .about-shop-points {
    align-items: flex-start;
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-shop-benefits {
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .about-shop-center {
    min-height: auto;
  }

  .about-shop-visual {
    min-height: 260px;
  }

  .about-shop-brand img {
    max-width: 200px;
  }

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

  .about-shop-trustbar {
    grid-template-columns: 1fr;
    padding: 20px 28px;
    gap: 18px;
  }

  .about-shop-trust-item {
    padding: 0;
    border-right: none !important;
    justify-content: center;
    text-align: left;
  }

  .about-faq-contact {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-exp-card,
  .about-story-img--top,
  .about-story-img--wide {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .about-page-hero {
    padding: 44px 0 40px;
    min-height: auto;
  }

  .about-emblem-branch {
    width: 56px;
  }

  .about-hero-emblem {
    gap: 10px;
  }

  .about-story-section {
    padding: 40px 0 56px;
  }

  .about-mission-wrap {
    padding: 40px 15px 36px;
  }

  .about-mission-section {
    background-size: cover, 55% auto;
    background-position: center center, right bottom;
  }

  .about-value-cards {
    gap: 16px;
  }

  .about-impact-section {
    padding: 48px 0;
  }

  .about-commitment-section {
    padding: 56px 0 64px;
  }

  .about-shop-cta {
    padding: 48px 0;
  }

  .about-shop-body {
    padding: 28px 20px;
  }

  .about-shop-trustbar {
    padding: 18px 20px;
  }

  .about-faq-section {
    padding: 48px 0 56px;
  }
}

@media (max-width: 575px) {
  .about-page-hero {
    background-size: 28% auto;
    min-height: 260px;
    padding: 36px 0 40px;
  }

  .about-hero-bg-overlay {
    background-size: 28% auto;
  }

  .about-story-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-exp-card,
  .about-story-img--top,
  .about-story-img--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .about-exp-card {
    min-height: 180px;
  }

  .about-story-img--top {
    min-height: 220px;
  }

  .about-story-img--wide {
    min-height: 200px;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-stats-hero-overlay {
    padding: 40px 20px 72px;
    min-height: 280px;
  }

  .about-stat-icon {
    width: 60px;
    height: 60px;
    top: -30px;
  }

  .about-stat-icon i {
    font-size: 22px;
  }

  .about-stat-card .stat-value {
    font-size: 1.65rem;
  }

  .about-quote-box {
    padding: 18px 16px;
  }

  .about-shop-title {
    font-size: 1.65rem;
  }

  .about-faq-section .faq-accordion .accordion-button {
    font-size: 13px;
    padding: 14px 18px;
    white-space: normal;
    line-height: 1.45;
  }

  .about-contact-box {
    padding: 18px 16px;
  }
}

/* FDA disclaimer */
.about-fda-section {
  padding: 24px 0 32px;
  background: #fff;
  border-top: 1px solid #ece8eb;
}

.about-fda-disclaimer {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}
