/* ==========================================================================
   EP About Page Styles
   ========================================================================== */

/* Custom properties for About page - Coral & Peach Palette */
.ep-about-page {
  /* Dark backgrounds */
  --ep-about-dark-primary: #9f1239;
  --ep-about-dark-secondary: #be123c;
  --ep-about-dark-deep: #881337;
  /* Light backgrounds */
  --ep-about-light-bg: #fff1f2;
  --ep-about-light-bg-alt: #ffe4e6;
  /* Accent colors - Coral gradient */
  --ep-about-coral: #f43f5e;
  --ep-about-peach: #fda4af;
  /* Keep green for sustainability section */
  --ep-about-green-50: #f0fdf4;
  --ep-about-emerald-50: #ecfdf5;
  --ep-about-green-dark: #065f46;
}

/* Reset container constraints for full-width sections */
.ep-about-page #inner-wrap {
  max-width: 100%;
  padding: 0;
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.ep-about-hero {
  position: relative;
  background: linear-gradient(to bottom right, var(--ep-about-dark-primary), var(--ep-about-dark-secondary));
  padding: 80px 24px 120px;
  overflow: hidden;
  text-align: center;
}

.ep-about-hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.ep-about-hero__bg-circle--1 {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--ep-about-coral);
}

.ep-about-hero__bg-circle--2 {
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--ep-about-peach);
}

.ep-about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.ep-about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--global-palette9, #ffffff);
}

.ep-about-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: ep-pulse 2s ease-in-out infinite;
}

@keyframes ep-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.ep-about-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--global-palette9, #ffffff);
  margin: 0 0 16px;
  line-height: 1.1;
}

.ep-about-hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  line-height: 1.5;
}

.ep-about-hero__countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ep-about-hero__country {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--global-palette9, #ffffff);
}

.ep-about-hero__country-flag {
  font-size: 18px;
}

/* ==========================================================================
   Section 2: Trust Badges
   ========================================================================== */
.ep-about-trust-badges {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding: 0 24px 60px;
}

.ep-about-trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ep-about-trust-badge {
  background: var(--global-palette9, #ffffff);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.ep-about-trust-badge__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.ep-about-trust-badge__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--global-palette4, #353535);
  margin: 0 0 8px;
}

.ep-about-trust-badge__desc {
  font-size: 14px;
  color: var(--global-palette6, #676767);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Section 3: Our Story
   ========================================================================== */
.ep-about-story {
  padding: 80px 24px;
  background: var(--global-palette9, #ffffff);
}

.ep-about-story__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.ep-about-story__label {
  display: inline-block;
  background: linear-gradient(to right, var(--ep-about-coral), var(--ep-about-peach));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ep-about-story__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--global-palette4, #353535);
  margin: 0 0 24px;
  line-height: 1.2;
}

.ep-about-story__text {
  font-size: 16px;
  color: var(--global-palette5, #454545);
  line-height: 1.7;
  margin: 0 0 16px;
}

.ep-about-story__card {
  background: linear-gradient(135deg, var(--ep-about-light-bg), var(--ep-about-light-bg-alt));
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.ep-about-story__logo {
  width: 120px;
  height: 120px;
  background: var(--global-palette9, #ffffff);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ep-about-story__logo img {
  width: 80px !important;
  height: auto !important;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

.ep-about-story__quote {
  font-size: 18px;
  font-style: italic;
  color: var(--global-palette5, #454545);
  margin: 0 0 16px;
  line-height: 1.6;
}

.ep-about-story__author {
  font-size: 14px;
  color: var(--global-palette6, #676767);
  margin: 0 0 24px;
}

.ep-about-story__verified {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--global-palette9, #ffffff);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.ep-about-story__verified-main {
  font-size: 14px;
  font-weight: 600;
  color: var(--global-palette4, #353535);
}

.ep-about-story__verified-sub {
  font-size: 12px;
  color: var(--global-palette6, #676767);
}

/* ==========================================================================
   Section 4: Quality Promise
   ========================================================================== */
.ep-about-quality {
  padding: 80px 24px;
  background: var(--ep-about-light-bg);
}

.ep-about-quality__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.ep-about-quality__label {
  display: inline-block;
  background: linear-gradient(to right, var(--ep-about-coral), var(--ep-about-peach));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ep-about-quality__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--global-palette4, #353535);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ep-about-quality__subtitle {
  font-size: 16px;
  color: var(--global-palette5, #454545);
  margin: 0;
  line-height: 1.6;
}

.ep-about-quality__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.ep-about-quality__item {
  display: flex;
  gap: 16px;
  background: var(--global-palette9, #ffffff);
  border-radius: 16px;
  padding: 24px;
}

.ep-about-quality__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ep-about-coral), var(--ep-about-peach));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ep-about-quality__item-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--global-palette4, #353535);
  margin: 0 0 8px;
}

.ep-about-quality__item-desc {
  font-size: 14px;
  color: var(--global-palette6, #676767);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Section 5: Sustainability
   ========================================================================== */
.ep-about-sustainability {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--ep-about-green-50), var(--ep-about-emerald-50));
}

.ep-about-sustainability__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.ep-about-sustainability__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ep-about-sustainability__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--global-palette11, #13612e);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ep-about-sustainability__subtitle {
  font-size: 16px;
  color: var(--global-palette5, #454545);
  margin: 0;
  line-height: 1.6;
}

.ep-about-sustainability__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.ep-about-sustainability__card {
  background: var(--global-palette9, #ffffff);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.ep-about-sustainability__card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.ep-about-sustainability__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--global-palette4, #353535);
  margin: 0 0 12px;
}

.ep-about-sustainability__card-desc {
  font-size: 14px;
  color: var(--global-palette6, #676767);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Section 6: How It Works
   ========================================================================== */
.ep-about-howitworks {
  padding: 40px 24px;
  background: var(--global-palette7, #eeeeee);
}

.ep-about-howitworks__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

@media (max-width: 900px) {
  .ep-about-howitworks__container {
    flex-wrap: wrap;
  }
}

.ep-about-howitworks__step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--global-palette9, #ffffff);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.ep-about-howitworks__num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--ep-about-coral), var(--ep-about-peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--global-palette9, #ffffff);
  flex-shrink: 0;
}

.ep-about-howitworks__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--global-palette4, #353535);
}

.ep-about-howitworks__arrow {
  font-size: 20px;
  color: var(--global-palette6, #676767);
}

/* ==========================================================================
   Section 7: Global Fulfillment
   ========================================================================== */
.ep-about-fulfillment {
  padding: 80px 24px;
  background: var(--ep-about-dark-secondary);
}

.ep-about-fulfillment__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.ep-about-fulfillment__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ep-about-fulfillment__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--global-palette9, #ffffff);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ep-about-fulfillment__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.ep-about-fulfillment__card {
  background: var(--global-palette9, #ffffff);
  border-radius: 24px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.ep-about-fulfillment__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.ep-about-fulfillment__country {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ep-about-fulfillment__country-code {
  width: 64px;
  height: 64px;
  background: var(--ep-about-light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--global-palette4, #353535);
}

.ep-about-fulfillment__country-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--global-palette4, #353535);
  margin: 0;
}

.ep-about-fulfillment__country-time {
  font-size: 12px;
  color: var(--global-palette6, #676767);
  margin: 0;
}

.ep-about-fulfillment__production {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--ep-about-coral), var(--ep-about-peach));
  border-radius: 12px;
}

.ep-about-fulfillment__production-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--global-palette9, #ffffff);
}

.ep-about-fulfillment__production-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--global-palette9, #ffffff);
}

.ep-about-fulfillment__divider {
  width: 100%;
  height: 1px;
  background: var(--global-palette7, #eeeeee);
  margin: 0 0 24px;
}

.ep-about-fulfillment__shipping-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--global-palette5, #454545);
  margin: 0 0 24px;
}

.ep-about-fulfillment__footer {
  margin-top: 32px;
  text-align: center;
}

.ep-about-fulfillment__disclaimer,
.ep-about-fulfillment__tracking {
  font-size: 13px;
  color: var(--global-palette6, #676767);
  margin: 0 0 8px;
}

.ep-about-fulfillment__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ep-about-coral);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ep-about-fulfillment__link:hover {
  color: var(--ep-about-peach);
}

/* ==========================================================================
   Section 8: Trust & Guarantees
   ========================================================================== */
.ep-about-guarantees {
  padding: 80px 24px;
  background: var(--ep-about-dark-primary);
}

.ep-about-guarantees__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.ep-about-guarantees__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--global-palette9, #ffffff);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ep-about-guarantees__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.ep-about-guarantees__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.ep-about-guarantees__card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.ep-about-guarantees__card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ep-about-coral), var(--ep-about-peach));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.ep-about-guarantees__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--global-palette9, #ffffff);
  margin: 0 0 12px;
}

.ep-about-guarantees__card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.ep-about-guarantees__card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ep-about-peach);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ep-about-guarantees__card-link:hover {
  color: var(--global-palette9, #ffffff);
}

.ep-about-guarantees__email {
  color: var(--ep-about-peach);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ep-about-guarantees__email:hover {
  color: var(--global-palette9, #ffffff);
}

/* ==========================================================================
   Section 9: Compliance Badges
   ========================================================================== */
.ep-about-compliance {
  padding: 60px 24px;
  background: var(--global-palette9, #ffffff);
}

.ep-about-compliance__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.ep-about-compliance__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.ep-about-compliance__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--global-palette8, #f7f7f7);
  border-radius: 9999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--global-palette4, #353535);
}

.ep-about-compliance__badge-icon {
  font-size: 18px;
}

.ep-about-compliance__shipping {
  font-size: 14px;
  color: var(--global-palette6, #676767);
  margin: 0;
}

/* ==========================================================================
   Section 9: CTA
   ========================================================================== */
.ep-about-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--ep-about-coral), var(--ep-about-peach));
  text-align: center;
}

.ep-about-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.ep-about-cta__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--global-palette9, #ffffff);
  margin: 0 0 16px;
  line-height: 1.2;
}

.ep-about-cta__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  line-height: 1.5;
}

.ep-about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--global-palette9, #ffffff);
  color: var(--ep-about-coral);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ep-about-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--ep-about-coral);
}

/* ==========================================================================
   Section 10: Footer Trust
   ========================================================================== */
.ep-about-footer {
  padding: 60px 24px;
  background: var(--ep-about-dark-deep);
  text-align: center;
}

.ep-about-footer__container {
  max-width: 600px;
  margin: 0 auto;
}

.ep-about-footer__company {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 8px;
}

.ep-about-footer__vat {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 24px;
}

.ep-about-footer__divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
}

.ep-about-footer__thanks {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px;
}

.ep-about-footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .ep-about-hero {
    padding: 60px 20px 100px;
  }

  .ep-about-hero__title {
    font-size: 32px;
  }

  .ep-about-hero__subtitle {
    font-size: 16px;
  }

  .ep-about-trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ep-about-howitworks__container {
    gap: 16px;
  }

  .ep-about-howitworks__arrow {
    display: none;
  }

  .ep-about-howitworks__step {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .ep-about-fulfillment__production {
    flex-direction: column;
    gap: 8px;
  }

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

  .ep-about-story__title,
  .ep-about-quality__title,
  .ep-about-sustainability__title,
  .ep-about-fulfillment__title,
  .ep-about-guarantees__title,
  .ep-about-cta__title {
    font-size: 28px;
  }

  .ep-about-quality__grid {
    grid-template-columns: 1fr;
  }

  .ep-about-sustainability__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ep-about-fulfillment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ep-about-fulfillment__card {
    padding: 32px 24px;
  }

  .ep-about-guarantees__grid {
    gap: 16px;
  }

  .ep-about-guarantees__card {
    flex: 0 1 100%;
    min-width: 0;
  }

  .ep-about-compliance__badges {
    gap: 12px;
  }

  .ep-about-compliance__badge {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .ep-about-hero {
    padding: 48px 16px 80px;
  }

  .ep-about-hero__title {
    font-size: 28px;
  }

  .ep-about-hero__countries {
    gap: 8px;
  }

  .ep-about-hero__country {
    padding: 6px 12px;
    font-size: 12px;
  }

  .ep-about-trust-badges {
    margin-top: -48px;
    padding: 0 16px 48px;
  }

  .ep-about-trust-badges__grid {
    gap: 12px;
  }

  .ep-about-trust-badge {
    padding: 16px;
  }

  .ep-about-trust-badge__icon {
    font-size: 24px;
  }

  .ep-about-trust-badge__title {
    font-size: 14px;
  }

  .ep-about-trust-badge__desc {
    font-size: 12px;
  }

  .ep-about-story,
  .ep-about-quality,
  .ep-about-sustainability,
  .ep-about-fulfillment,
  .ep-about-guarantees {
    padding: 48px 16px;
  }

  .ep-about-story__card {
    padding: 24px;
  }

  .ep-about-fulfillment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ep-about-fulfillment__country-code {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .ep-about-cta {
    padding: 48px 16px;
  }

  .ep-about-cta__title {
    font-size: 24px;
  }

  .ep-about-cta__subtitle {
    font-size: 16px;
  }

  .ep-about-cta__btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .ep-about-footer {
    padding: 48px 16px;
  }
}
