/* =========================================
   Home Hero — background image + left content
   ========================================= */

.adera-home-hero {
  position: relative;
  overflow: hidden;
}

/* Banner as a regular image — full artwork, correct ratio, no crop, scales on all screens */
.adera-home-hero__bg {
  display: block;
  width: 100%;
  height: auto;
}

.adera-home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 24px);
  width: 100%;
  display: block;
}

.adera-home-hero__content {
  max-width: 620px;
}

/* Foreground data image, left side */
.adera-home-hero__data-img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
}

/* Column 2 — hero image */
.adera-home-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.adera-home-hero__img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  object-fit: contain;
}

.adera-home-hero__title {
  font-family: var(--font-manrope);
  color: #ffffff;
  font-size: clamp(40px, 6vw, 90px);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 18px;
}

/* Animated gradient on the word "Adera" (heading) */
.adera-grad-text {
  /* CTA gradient #9D77E5 → #4F7FFA, mirrored stop for a seamless shimmer loop */
  background: linear-gradient(90deg, #9D77E5 0%, #4F7FFA 64.42%, #9D77E5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: adera-grad-shift 6s linear infinite;
}

@keyframes adera-grad-shift {
  to { background-position: 200% center; }
}

@media (prefers-reduced-motion: reduce) {
  .adera-grad-text { animation: none; }
}

.adera-home-hero__text {
  font-family: var(--font-inter);
  color: #ffffff;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 30px;
  max-width: 480px;
}

.adera-home-hero__text-strong {
  font-weight: 800;
  color: var(--brand-purple);
}

.adera-home-hero__btn {
  display: inline-block;
  background: var(--brand-gradient);
  color: var(--white) !important;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(103, 14, 170, 0.35);
  transition: var(--transition-smooth);
}

.adera-home-hero__btn:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(103, 14, 170, 0.45);
}

@media (max-width: 900px) {
  /* Stack the two columns: text on top, image below */
  .adera-home-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .adera-home-hero__content {
    max-width: 100%;
    margin: 0 auto;
  }
  .adera-home-hero__text {
    margin-left: auto;
    margin-right: auto;
  }
  .adera-home-hero__img {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Hero ratio is handled globally by aspect-ratio: 3800 / 1620 — no per-breakpoint override needed */
  .adera-home-hero__btn {
    padding: 13px 28px;
    font-size: 15px;
  }
  .adera-home-hero__img {
    max-width: 350px;
    margin-top: 24px;
  }
}

/* =========================================
   Our Products (category tabs + grid)
   ========================================= */

.adera-ourprod {
  background: #fafafafa;
  padding: 64px 0;
}

.adera-ourprod__inner {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 24px);
}

.adera-ourprod__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 36px;
}

.adera-ourprod__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #1c1c1c;
  line-height: 1.1;
}

/* Category tabs */
.adera-ourprod__tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;          /* take the space beside the title */
  min-width: 0;            /* allow shrinking so it can scroll */
  flex-wrap: nowrap;       /* never break to a second line */
  overflow-x: auto;        /* scroll horizontally instead */
}

/* Hide the scrollbar when the tabs scroll horizontally (mobile) */
.adera-ourprod__tabs {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
.adera-ourprod__tabs::-webkit-scrollbar {
  display: none;                /* Chrome/Safari */
  width: 0;
  height: 0;
}

.adera-ourprod__tab {
  background: none !important;
  border: none;
  box-shadow: none !important;
  padding: 4px 0 6px;
  cursor: pointer;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.adera-ourprod__tab:hover,
.adera-ourprod__tab:focus,
.adera-ourprod__tab:active {
  background: none !important;
  box-shadow: none !important;
  outline: none;
  color: var(--brand-purple);
}

.adera-ourprod__tab.is-active {
  color: var(--brand-purple-vivid, #670EAA);
  font-weight: 700;
  border-bottom-color: var(--brand-purple-vivid, #670EAA);
}

/* Product grid */
.adera-ourprod__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  transition: opacity 0.2s ease;
}

.adera-ourprod__grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.adera-prod-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  font-family: var(--font-inter);
  color: #6b7280;
}

/* Product card */
.adera-prod-card {
  display: block;
  text-decoration: none;
}

/* Bordered image box (title/price sit below, outside it) */
.adera-prod-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f4fa;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.adera-prod-card:hover .adera-prod-thumb {
  transform: translateY(-4px);
  border-color: #d9c8e6;
  box-shadow: 0 14px 30px rgba(33, 50, 87, 0.12);
}

/* Top badges (dark pills) */
.adera-prod-cat-badge,
.adera-prod-price-badge {
  position: absolute;
  top: 16px;
  z-index: 2;
  background: #1c1c1c;
  color: var(--white) !important;
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adera-prod-cat-badge {
  left: 16px;
  max-width: 55%;
}

.adera-prod-price-badge {
  right: 16px;
}

.adera-prod-price-badge .amount,
.adera-prod-price-badge bdi,
.adera-prod-price-badge .woocommerce-Price-currencySymbol {
  color: var(--white) !important;
}

.adera-prod-thumb img,
.adera-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adera-prod-stock {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(28, 28, 28, 0.82);
  color: #fff;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.3px;
}

.adera-prod-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 6px;
}

.adera-prod-stars {
  display: inline-flex;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
}

.adera-star {
  color: #d6d6d6;
}

.adera-star.is-filled {
  color: #2b2b2b;
}

.adera-prod-reviews {
  font-family: var(--font-inter);
  font-size: 12px;
  color: #9aa0a6;
}

/* Footer row: text (left) + open-detail button (right) */
/* Footer: title (full row), then price (left) + button (right) */
.adera-prod-foot {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: var(--white);
}

.adera-prod-title-link {
  text-decoration: none;
}

/* Info below the image box (no border) */
.adera-prod-info {
  padding: 14px 4px 0;
}

.adera-prod-title {
  margin: 0 0 7px;
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
}

/* Second row */
.adera-prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.adera-prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-inter);
}

/* Open-detail button */
.adera-prod-open {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.adera-prod-open:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
}

.adera-prod-open img {
  width: 17px;
  height: 17px;
  display: block;
}

.adera-prod-price {
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1c;
}

.adera-prod-price-old {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-purple-vivid, #670EAA);
  text-decoration: line-through;
}

/* keep WC's del/ins (if get_price_html used anywhere) tidy */
.adera-prod-price-row del { color: var(--brand-purple-vivid, #670EAA); opacity: 1; }
.adera-prod-price-row ins { text-decoration: none; }

/* ---- Skeleton loading placeholders ---- */
.adera-skel {
  position: relative;
  overflow: hidden;
  background: #ececec;
  border-radius: 6px;
}
.adera-skel::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: adera-skel-shimmer 1.3s infinite;
}
@keyframes adera-skel-shimmer {
  100% { transform: translateX(100%); }
}

.adera-skel-card__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  margin-bottom: 14px;
}
.adera-skel-line { height: 12px; margin-bottom: 8px; }
.adera-skel-line.is-rating { width: 55%; }
.adera-skel-line.is-title  { width: 80%; height: 14px; }
.adera-skel-line.is-price  { width: 38%; }

@media (prefers-reduced-motion: reduce) {
  .adera-skel::after { animation: none; }
}

@media (max-width: 1099px) {
  .adera-ourprod__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .adera-ourprod__header { flex-direction: column; align-items: flex-start; }
  .adera-ourprod__tabs {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 680px) {
  .adera-ourprod__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
}

@media (max-width: 445px) {
  .adera-ourprod__grid { grid-template-columns: 1fr; }
}

/* =========================================
   Newsletter / Mailing List
   ========================================= */

.adera-news {
  background: #671897;
}

.adera-news__inner {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 56px var(--site-gutter, 24px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.adera-news__title {
  margin: 0 0 12px;
  font-family: var(--font-manrope);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.adera-news__text {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
}

/* Form pill */
.adera-news__form {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.adera-news__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  border: none;
  background: transparent;
  padding: 0 18px;
  font-family: var(--font-inter);
  font-size: 16px;
  color: #111111;
  outline: none;
}
.adera-news__input::placeholder {
  color: #8a8a8a;
}

.adera-news__btn {
  flex-shrink: 0;
  height: 52px;
  padding: 0 30px;
  border: none;
  border-radius: 8px;
  background: #111111;
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.adera-news__btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* Feedback message under the form */
.adera-news__msg {
  position: absolute;
  left: 6px;
  top: calc(100% + 8px);
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 860px) {
  .adera-news__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 460px) {
  .adera-news__form {
    flex-wrap: wrap;
    gap: 8px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .adera-news__input {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    height: 50px;
  }
  .adera-news__btn {
    width: 100%;
  }
  .adera-news__msg {
    position: static;
    margin-top: 4px;
  }
}

/* =========================================
   Testimonials
   ========================================= */

.adera-tst {
  background: #F7F3FB;
  padding: 72px 0;
}

.adera-tst__inner {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 24px);
}

.adera-tst__head {
  text-align: center;
  margin-bottom: 44px;
}

.adera-tst__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.adera-tst__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: #111111;
}

/* Slider */
.adera-tsw {
  overflow: hidden;
}
.adera-tsw .swiper-slide {
  height: auto;          /* equal-height cards */
}

.adera-tcard {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #ece6f3;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(33, 50, 87, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.adera-tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(103, 14, 170, 0.10);
}

.adera-tcard__stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #F5B301;
  line-height: 1;
  margin-bottom: 16px;
}
.adera-tcard__stars .is-empty {
  color: #e2dcea;
}

.adera-tcard__text {
  flex: 1 1 auto;
  margin: 0 0 24px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #4a4a4a;
}

.adera-tcard__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.adera-tcard__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  font-family: var(--font-manrope);
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adera-tcard__meta { display: flex; flex-direction: column; }
.adera-tcard__name {
  font-family: var(--font-manrope);
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
}
.adera-tcard__role {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  color: #8a8a8a;
}

/* Controls (arrows + dots) */
.adera-tst__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.adera-tnav {
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border: 1px solid #e2dcea;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.adera-tnav:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  transform: translateY(-2px);
}
.adera-tnav img {
  width: 17px;
  height: 17px;
  display: block;
}

.adera-t-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  gap: 6px;
}
.adera-t-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: #cdbfe0;
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}
.adera-t-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 6px;
  background: var(--brand-purple-vivid, #670EAA);
}

/* =========================================
   Find Your Best State (4 cards)
   ========================================= */

.adera-states {
  background: #F7F3FB;
  padding: 70px 0;
}

.adera-states__inner {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 24px);
}

.adera-states__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 40px;
}

.adera-states__title {
  margin: 0 0 10px;
  font-family: var(--font-manrope);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: #111111;
}

.adera-states__accent {
  color: var(--brand-purple-vivid, #670EAA);
}

.adera-states__subtitle {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
}

.adera-states__btn {
  flex-shrink: 0;
  align-self: center;
  display: inline-block;
  background: var(--brand-gradient);
  color: var(--white) !important;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.adera-states__btn:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
}

/* Cards */
.adera-states__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.adera-state-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 26px;
  min-height: 300px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.adera-state-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 54px;
}

.adera-state-card__title {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.adera-state-card__num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F1ECF7;
  color: var(--brand-purple-vivid, #670EAA);
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adera-state-card__text {
  margin: 0 0 22px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #555555;
}

.adera-state-card__link {
  margin-top: auto;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-purple-vivid, #670EAA);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.adera-state-card__link:hover {
  opacity: 0.8;
}

/* Featured (Calm) card */
.adera-state-card.is-featured {
  background: var(--brand-purple-vivid, #670EAA);
}
.adera-state-card.is-featured .adera-state-card__title { color: var(--white); }
.adera-state-card.is-featured .adera-state-card__text  { color: rgba(255, 255, 255, 0.88); }
.adera-state-card.is-featured .adera-state-card__num   { background: rgba(255, 255, 255, 0.16); color: var(--white); }
.adera-state-card.is-featured .adera-state-card__link  { color: var(--white); }

/* Hover: any card turns brand purple with white text */
.adera-state-card:hover {
  background: var(--brand-purple-vivid, #670EAA);
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(103, 14, 170, 0.22);
}
.adera-state-card:hover .adera-state-card__title { color: var(--white); }
.adera-state-card:hover .adera-state-card__text  { color: rgba(255, 255, 255, 0.88); }
.adera-state-card:hover .adera-state-card__num   { background: rgba(255, 255, 255, 0.16); color: var(--white); }

@media (max-width: 1024px) {
  .adera-states__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .adera-states__header { flex-direction: column; }
  .adera-states__btn { align-self: flex-start; }
}

@media (max-width: 520px) {
  .adera-states__grid { grid-template-columns: 1fr; }
  .adera-state-card { min-height: 0; }
  .adera-state-card__top { margin-bottom: 28px; }
}

/* =========================================
   What Is The Adera State
   ========================================= */

.adera-about {
  background: var(--white);
}

.adera-about__inner {
  width: 100%;
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 70px var(--site-gutter, 24px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.adera-about__content {
  max-width: 520px;
}

/* Right column — image */
.adera-about__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.adera-about__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.adera-about__title {
  margin: 0 0 18px;
  font-family: var(--font-manrope);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: #111111;
}

.adera-about__text {
  margin: 0 0 18px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #3a3a3a;
}

.adera-about__btn {
  display: inline-block;
  margin-top: 12px;
  background: #111111;
  color: var(--white) !important;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.adera-about__btn:hover {
  background: var(--brand-purple);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .adera-about__inner {
    grid-template-columns: 1fr;
    padding: 48px var(--site-gutter, 24px);
    gap: 28px;
  }
  .adera-about__content {
    max-width: 100%;
    order: 1;
  }
  .adera-about__media {
    order: 2;
  }
}

/* =========================================
   Discount Promo Banner
   ========================================= */

.adera-promo {
  background: var(--white);
  padding: 40px 0;
}

.adera-promo__inner {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 24px);
}

.adera-promo__banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 48px 56px;
  min-height: 420px;
}

.adera-promo__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adera-promo__img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.45));
}

.adera-promo__content {
  color: var(--white);
}

.adera-promo__title {
  margin: 0 0 6px;
  font-family: var(--font-manrope);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.adera-promo__subtitle {
  margin: 20px 0 15px;
  font-family: var(--font-manrope);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

.adera-promo__text {
  margin: 0 0 26px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 430px;
}

.adera-promo__btn {
  display: inline-block;
  background: var(--white);
  color: #1c1c1c !important;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  transition: var(--transition-smooth);
}

.adera-promo__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .adera-promo__banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 34px 24px;
    min-height: 0;
    gap: 12px;
  }
  .adera-promo__img {
    max-width: 240px;
    margin: 0 auto;
  }
  .adera-promo__text {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================
   Feature Cards Strip (after hero)
   ========================================= */

.adera-features {
  background: #0b0a0c;
  padding: 40px 0;
}

.adera-features__inner {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 var(--site-gutter, 24px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.adera-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  padding: 34px 34px 34px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adera-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
}

.adera-feature-card__icon {
  display: inline-flex;
}

.adera-feature-card__icon img {
  width: 64px;
  height: 64px;
  display: block;
}

.adera-feature-card__title {
  margin: auto 0 0;          /* push text toward the bottom */
  max-width: 82%;            /* keep clear of the corner arrow */
  color: var(--white);
  font-family: var(--font-manrope);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
}

/* Bottom-right gradient corner triangle with arrow */
.adera-feature-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 58px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 10px 9px 0;
}

.adera-feature-card__arrow img {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 900px) {
  .adera-features__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .adera-features__inner {
    grid-template-columns: 1fr;
  }
  .adera-feature-card {
    min-height: 240px;
  }
}

/* =========================================
   2. Hero Section — Figma Matched
   ========================================= */

.adera-hero {
  position: relative;
  background-image: url('../images/home/home-banner.webp');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 580px;
}

/* Figma exact overlay gradient */
.adera-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(71, 0, 115, 0) 0%, #470073 100%);
  pointer-events: none;
  z-index: 0;
}

.adera-hero-badge-row {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Main 50/50 two-column grid */
.adera-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 40px 40px;
  gap: 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* ---- LEFT COLUMN ---- */
.adera-hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 20px;
}

/* Badge */
.adera-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11.14px; /* Figma spec: 11.14px gap */
  background: rgba(255, 255, 255, 0.15); /* Figma spec: #FFFFFF 15% */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Sleek translucent border */
  border-radius: 31.82px; /* Figma spec: 31.82px radius */
  padding: 7.95px 19.09px; /* Figma spec: 7.95px top/bottom, 19.09px left/right */
  font-family: var(--font-manrope); /* Figma spec: Manrope */
  font-size: 15.91px; /* Figma spec: 15.91px */
  font-weight: 500; /* Figma spec: Medium (500) */
  color: rgba(255, 255, 255, 0.75); /* Figma spec: #FFFFFF 75% */
  letter-spacing: 1.27px; /* Figma spec: 1.27px */
  width: fit-content;
  box-sizing: border-box;
}

.adera-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-red);
  flex-shrink: 0;
}

/* Headline */
.adera-hero-title {
  font-family: var(--font-manrope);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}

.adera-hero-title-red {
  color: var(--accent-red);
  display: block;
}

/* CTA Buttons */
.adera-hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Horizontal Divider */
.adera-hero-divider {
  width: 100%;
  max-width: 444px; /* Figma spec: max-width 444px */
  height: 1px;
  background: rgba(255, 255, 255, 0.3); /* Figma spec: #FFFFFF 30% */
  border: none;
}

.adera-btn-primary {
  background-color: var(--accent-red);
  color: var(--white) !important;
  text-decoration: none !important;
  font-family: var(--font-inter);
  font-size: 11.6px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 12px 24px;
  border-radius: 6px;
  transition: var(--transition-smooth);
  white-space: nowrap;
  line-height: 1;
}

.adera-btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-1px);
}

.adera-btn-secondary-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15); /* Figma spec: 1px #FFFFFF 15% */
  color: rgba(255, 255, 255, 0.55) !important; /* Figma spec: #FFFFFF 55% */
  text-decoration: none !important;
  font-family: var(--font-inter);
  font-size: 11.1px; /* Figma spec: 11.1px */
  font-weight: 500; /* Figma spec: Medium (500) */
  letter-spacing: 0px; /* Figma spec: 0% */
  padding: 12px 24px; /* Updated to 12px top/bottom and 24px left/right */
  border-radius: 6px;
  transition: var(--transition-smooth);
  white-space: nowrap;
  line-height: 1;
}

.adera-btn-secondary-outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.06);
}

/* Stats Row */
.adera-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}

.adera-hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.adera-hero-stat:first-child {
  padding-left: 0;
}

.adera-hero-stat-value {
  font-family: var(--font-manrope);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.adera-hero-stat-red {
  color: var(--accent-red) !important; /* Matches Figma bright red #670EAA exactly */
}

.adera-hero-stat-value sup {
  font-size: 16px;
  color: var(--accent-red) !important;
  vertical-align: super;
}

.adera-hero-stat-label {
  font-family: var(--font-manrope); /* Figma spec: Manrope */
  font-size: 10px; /* Figma spec: Size 10px */
  font-weight: 400; /* Figma spec: Regular */
  color: rgba(255, 255, 255, 0.85); /* Figma spec: #FFFFFF 85% */
  margin-top: 3px;
  line-height: 1;
}

.adera-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3); /* Figma spec: #FFFFFF 30% */
  flex-shrink: 0;
}

/* ---- RIGHT COLUMN (Product Image — 50%) ---- */
.adera-hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  height: 100%;
}

.adera-hero-product-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  align-self: flex-end;
}

/* ---- BOTTOM TRUST BAR ---- */
.adera-hero-trust-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.09); /* Figma spec: #FFFFFF 9% */
  border-bottom: 1px solid rgba(71, 0, 115, 0.11); /* Figma spec: 1px bottom border #494949 11% */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  height: 83px; /* Figma spec: Height 83px */
  box-sizing: border-box;
}

.adera-hero-trust-container {
  max-width: 1350px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
}

.adera-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
}

.adera-hero-trust-item:last-child {
  border-right: none;
}

/* Icon Container Box (Figma: width 40, height 40, border-radius 8px, background #FFFFFF40) */
.adera-hero-trust-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25); /* Figma spec: #FFFFFF40 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adera-hero-trust-icon-box svg,
.adera-hero-trust-icon-img {
  width: 24px; /* Figma spec: 24px icon size */
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.adera-hero-trust-icon-box svg {
  color: var(--white);
}

/* ---- Hero: Mobile (768px) ---- */
@media (max-width: 768px) {
  .adera-hero {
    min-height: auto;
    text-align: left;
    padding: 0;
    background-image: url('../images/home/home-banner-mobile.webp');
    background-position: bottom center;
  }

  .adera-hero-bg-overlay {
    background: linear-gradient(180deg, #470073 0%, rgba(71, 0, 115, 0) 100%);
  }

  .adera-hero-badge-row {
    padding: 28px 20px 0;
    justify-content: flex-start;
  }

  .adera-hero-inner {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
    row-gap: 25px;
    column-gap: 0;
  }

  .adera-hero-left {
    padding-right: 0;
    gap: 13px;
  }

  .adera-hero-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .adera-hero-buttons {
    justify-content: flex-start;
  }

  .adera-hero-badge {
    font-size: 13px;
    padding: 6px 14px;
  }

  .adera-hero-divider {
    max-width: 100%;
  }

  .adera-hero-stat-value {
    font-size: 17.32px;
    letter-spacing: -0.79px;
  }

  .adera-hero-stat-label {
    font-size: 7.87px;
    color: rgba(255, 255, 255, 0.85);
  }

  .adera-hero-right {
    display: flex;
    justify-content: center;
    height: auto;
  }

  .adera-hero-product-img {
    content: url('../images/home/hero-product-mobile.png');
    width: 100%;
    max-width: 100%;
    align-self: auto;
    filter: none;
  }
}

/* Responsive Trust Bar Mobile Carousel (width < 768px is mobile/tablet breakpoint) */
@media (max-width: 767px) {
  .adera-hero-trust-bar {
    height: auto;
    padding: 0;
  }

  .adera-hero-trust-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    scrollbar-width: none;
  }

  .adera-hero-trust-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .adera-hero-trust-item {
    flex: 0 0 calc(100% / 1.8);
    scroll-snap-align: start;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    border-radius: 0;
    padding: 12px 16px;
    height: auto;
    box-shadow: none;
  }
}

.adera-hero-trust-title {
  display: block;
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.adera-hero-trust-sub {
  display: block;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}


.adera-trust-bar {
  background-color: var(--white);
  padding: 50px 0;
  border-bottom: 1px solid var(--border-color);
}

.adera-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.adera-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--white);
  border-left: 3px solid var(--accent-red);
  transition: var(--transition-smooth);
}

.adera-trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.adera-trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
  border-radius: 50%;
  color: var(--accent-red);
  font-size: 20px;
}

.adera-trust-info {
  display: flex;
  flex-direction: column;
}

.adera-trust-title {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-navy);
  margin: 0;
}

.adera-trust-sub {
  font-family: var(--font-poppins);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted-text);
  margin: 0;
}

/* 4. Category Grid */
/* 4. Category Carousel */
.adera-categories-section {
  padding: 40px 0 40px;
  background: #FFFFFF;   /* full-width background */
  overflow: hidden;
}

/* Inner wrapper keeps the content aligned to the site width */
.adera-cat-inner {
  max-width: 1350px;
  margin: 0 auto;
}

.adera-categories-carousel-outer {
  width: 100%;
  overflow: hidden;
}

.adera-cat-swiper {
  overflow: visible !important;
  margin-left: 40px;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.adera-cat-swiper.swiper-initialized {
  opacity: 1;
}

.adera-cat-swiper .swiper-slide {
  height: auto;
}

.adera-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 12px;
}

/* Square (1:1) image tile */
.adera-cat-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--brand-bg-light, #F7F3FB);
  border: 1px solid #E2E2E2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adera-cat-item:hover .adera-cat-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(33, 50, 87, 0.12);
}

.adera-cat-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Category name */
.adera-cat-name {
  font-family: var(--font-manrope);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1.2;
}

/* Product count */
.adera-cat-count {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  color: #6b6b6b;
  line-height: 1;
}

/* Section header: heading (left) + nav arrows (right) */
.adera-cat-header {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto 32px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.adera-cat-heading {
  margin: 0;
  font-family: var(--font-manrope);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1.1;
}

/* "Our Categories" — match the "Our Products" title (dark "Our" + gradient word) */
.adera-categories-section .adera-cat-heading {
  font-size: clamp(28px, 4vw, 44px);
  color: #1c1c1c;
}

.adera-cat-subheading {
  margin: 8px 0 0;
  font-family: var(--font-inter);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  color: var(--brand-ink, #494949);
  line-height: 1.4;
}

.adera-cat-nav-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Prev / Next navigation buttons */
.adera-cat-nav {
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #E2E2E2;
  background: var(--white);
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
  transition: var(--transition-smooth);
}

.adera-cat-nav img {
  display: block;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  pointer-events: none;
}

.adera-cat-nav:hover,
.adera-cat-nav:active {
  background: var(--brand-gradient);
  color: var(--white);
  border-color: transparent;
}

/* Icon is an <img> SVG — invert it to white on the purple hover/active state */
.adera-cat-nav:hover img,
.adera-cat-nav:active img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .adera-cat-nav {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}

@media (max-width: 768px) {
  .adera-categories-carousel-outer {
    padding: 0 20px;
  }
  .adera-cat-header {
    padding: 0 20px;
    margin-bottom: 18px;
  }
  .adera-cat-nav {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

/* Category carousel pagination dots — hidden on desktop, shown on mobile */
.adera-cat-pagination {
  display: none !important;
  position: static !important;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
}

.adera-cat-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #E2E2E2;
  opacity: 1;
  border-radius: 50%;
  margin: 0 4px;
  transition: background 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.adera-cat-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #213257;
}

@media (max-width: 767px) {
  .adera-cat-pagination {
    display: flex !important;
  }

  .adera-cat-swiper {
    overflow: visible;
    padding-bottom: 0 !important;
  }

  .adera-categories-carousel-outer {
    overflow: hidden;
  }
}

/* =========================================
   Best Sellers carousel (top 10 by sales)
   Reuses .adera-cat-header/.adera-cat-nav and .adera-prod-card styles.
   ========================================= */
.adera-bestsellers {
  padding: 48px 0 48px;
  background: var(--white);
  overflow: hidden;
}

/* Keep the prev/next buttons level with the "Best Sellers" title */
.adera-best-header {
  align-items: flex-start;
}

/* Match the header's container width so the slider lines up under it */
.adera-best-carousel-outer {
  max-width: var(--site-max-width, 1350px);
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
}

.adera-best-swiper {
  overflow: hidden !important;
  padding-bottom: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.adera-best-swiper.swiper-initialized {
  opacity: 1;
}

.adera-best-swiper .swiper-slide {
  height: auto;
}

/* Horizontal card layout:  [ image ] [ title / price ]  */
.adera-best-swiper .adera-prod-card {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 10px;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.adera-best-swiper .adera-prod-card:hover {
  transform: translateY(-3px);
  border-color: #d9c8e6;
  box-shadow: 0 12px 26px rgba(33, 50, 87, 0.12);
}

/* Fixed square thumbnail on the left */
.adera-best-swiper .adera-prod-thumb {
  width: 92px;
  min-width: 92px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.adera-best-swiper .adera-prod-card:hover .adera-prod-thumb {
  transform: none;
  box-shadow: none;
  border-color: #ececec;
}

.adera-best-swiper .adera-prod-thumb img,
.adera-best-swiper .adera-prod-img {
  width: 80%;
  height: 80%;
  margin: auto;
  object-fit: contain;
}

/* Hide the corner category badge — too cramped in the small thumb */
.adera-best-swiper .adera-prod-cat-badge {
  display: none;
}

/* Text block on the right */
.adera-best-swiper .adera-prod-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Pagination dots — hidden on desktop, shown on mobile (matches category) */
.adera-best-pagination {
  display: none !important;
  position: static !important;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
}

.adera-best-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #E2E2E2;
  opacity: 1;
  border-radius: 50%;
  margin: 0 4px;
  transition: background 0.2s ease;
}

.adera-best-pagination .swiper-pagination-bullet-active {
  background: #213257;
}

@media (max-width: 768px) {
  .adera-best-carousel-outer {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .adera-best-pagination {
    display: flex !important;
  }
  .adera-best-swiper {
    padding-bottom: 0 !important;
  }
}

/* 5. Lab Verification Section */
.adera-verification-section {
  background-color: #FAFAFA;
  padding: 80px 0;
}

/* Section header — centered badge + title */
.adera-verif-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 48px;
}

.adera-lab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 30, 70, 0.05);
  border-radius: 17px;
  padding: 6px 8px;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  color: #494949;
  line-height: 1;
}

.adera-verif-title {
  font-family: var(--font-manrope);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #494949;
  margin: 0;
  max-width: 560px;
}

.adera-verif-accent {
  color: var(--accent-red);
}

/* Two-column layout */
.adera-verif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.adera-verif-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Feature cards */
.adera-feat-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(105, 104, 104, 0.25);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s ease;
}

.adera-feat-card:hover {
  box-shadow: 0 4px 20px rgba(105, 104, 104, 0.35);
}

.adera-feat-header {
  display: flex;
  align-items: flex-end;
  min-height: 42px;
  gap: 10px;
}

.adera-feat-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.adera-feat-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(218, 30, 63, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.adera-feat-title {
  font-family: var(--font-manrope);
  font-size: 15px;
  font-weight: 700;
  color: #494949;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.3px;
}

.adera-feat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: rgba(71, 0, 115, 0.07);
  line-height: 1;
  letter-spacing: 0.5px;
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
  align-self: flex-start;
}

.adera-feat-desc {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 400;
  line-height: 20.4px;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

/* COA Document Visual */
.adera-coa-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.adera-coa-img {
  width: 100%;
  height: auto;
  display: block;
}

.adera-coa-doc {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(33, 50, 87, 0.1);
  box-shadow: 0 8px 40px rgba(33, 50, 87, 0.08);
  padding: 28px;
  width: 100%;
}

.adera-coa-doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.adera-coa-lab-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 600;
  color: #213257;
}

.adera-coa-verified-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 20px;
  padding: 4px 10px;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  color: #16a34a;
}

.adera-coa-divider {
  height: 2px;
  background: #213257;
  margin-bottom: 20px;
  border-radius: 1px;
}

.adera-coa-cert-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.adera-coa-cert-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.adera-coa-cert-title {
  font-family: var(--font-manrope);
  font-size: 13px;
  font-weight: 700;
  color: #494949;
  margin: 0 0 3px;
}

.adera-coa-cert-sub {
  font-family: var(--font-manrope);
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.5;
}

.adera-coa-tested-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(33, 50, 87, 0.08);
}

.adera-coa-tested-label {
  display: block;
  font-family: var(--font-manrope);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.adera-coa-company-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adera-coa-company-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(33, 50, 87, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.adera-coa-company-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adera-coa-company-info strong {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 700;
  color: #494949;
}

.adera-coa-company-info span {
  font-family: var(--font-manrope);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.45);
}

.adera-coa-product-label {
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 700;
  color: #494949;
  margin: 0 0 12px;
}

.adera-coa-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.adera-coa-product-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adera-coa-pi-key {
  font-family: var(--font-manrope);
  font-size: 9px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.adera-coa-pi-val {
  font-family: var(--font-manrope);
  font-size: 11.5px;
  font-weight: 600;
  color: #494949;
}

/* Responsive */
@media (max-width: 900px) {
  .adera-verif-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Shared section header helpers (used by Products, Comparison, etc.) */
.adera-section-header {
  margin-bottom: 40px;
}

.adera-section-badge {
  display: inline-block;
  background-color: rgba(8, 30, 70, 0.05);
  color: #494949;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1.2px;
  padding: 6px 8px;
  border-radius: 17px;
  margin-bottom: 10px;
}

.adera-section-title {
  font-family: var(--font-manrope);
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  color: #494949;
  margin: 0;
  line-height: 31.2px;
  letter-spacing: -0.8px;
}

/* 6. Product Grid Section */
.adera-products-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* Product card styles → moved to assets/css/products.css (globally loaded) */

.adera-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.adera-products-viewall {
  border: 1px solid #670EAA;
  color: #670EAA;
  background-color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 8px 21px 8px 16px;
  border-radius: 6px;
  width: 182px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.adera-products-viewall:hover {
  background-color: #670EAA;
  color: var(--white);
}

.adera-products-viewall:hover svg path {
  fill: #FFFFFF;
}

.adera-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* 7. Comparison Table */
.adera-comparison-section {
  background-color: #FAFAFA;
  padding: 80px 0;
}

.adera-comparison-subtitle {
  margin-top: 12px;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(71, 0, 115, 0.45);
}

.adera-comparison-table-wrapper {
  margin-top: 40px;
  border: 1px solid rgba(71, 0, 115, 0.10);
  border-radius: 12px;
  overflow: hidden;
}

.adera-comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin: 0;
}

/* Header */
.adera-comparison-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  background-color: var(--brand-purple-deep);
  color: var(--white);
  border: none;
}

.adera-comparison-table thead th[data-col="0"] {
  font-weight: 600;
}

.adera-comparison-table thead th[data-col="1"] {
  box-shadow: inset 0 -2px 0 #670EAA;
}



/* Body cells */
.adera-comparison-table tbody td {
  padding: 11px 24px;
  height: 60px;
  text-align: left;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 400;
  background: #FFFFFF;
  border: none;
  border-bottom: 1px solid rgba(71, 0, 115, 0.06);
  vertical-align: middle;
}

/* No bottom border on last row — wrapper border handles it */
.adera-comparison-table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 20px;
}

/* Highlighted (Adera) column body cells */
td.adera-col-highlight {
  background-color: rgba(71, 0, 115, 0.02);
  font-weight: 600;
}

/* Category label column */
.adera-comparison-table tbody td:first-child {
  font-family: var(--font-manrope);
  font-size: 14px;
  font-weight: 500;
  color: rgba(71, 0, 115, 0.45);
}

/* Status items — icon + text rows */
.adera-table-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-manrope);
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}

.adera-status-green  { color: var(--success-green); }
.adera-status-red    { color: var(--accent-red); }
.adera-status-orange { color: var(--warning-orange); }
.adera-status-muted  { color: var(--muted-text); }

/* "Limited" — Figma: Poppins 400 10px #670EAA */
.adera-status-limited {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #670EAA;
  line-height: 100%;
}

/* ---- Comparison table: mobile accordion ---- */
.adera-col-arrow {
  display: none;
  vertical-align: middle;
  margin-left: 6px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .adera-comparison-table-wrapper {
    display: none;
  }

  .adera-comparison-table thead th,
  .adera-comparison-table tbody td {
    padding: 11px 13px;
  }

  /* Hide all company columns by default on mobile */
  .adera-comparison-table th[data-col="1"],
  .adera-comparison-table th[data-col="2"],
  .adera-comparison-table th[data-col="3"],
  .adera-comparison-table td[data-col="1"],
  .adera-comparison-table td[data-col="2"],
  .adera-comparison-table td[data-col="3"] {
    display: none;
  }

  /* Show the active column */
  .adera-comparison-table th[data-col].adera-col-active,
  .adera-comparison-table td[data-col].adera-col-active {
    display: table-cell;
  }

  /* Make company headers look like toggles */
  .adera-col-toggle {
    cursor: pointer;
    user-select: none;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  /* Always show all headers in a row below each other on mobile */
  .adera-comparison-table thead tr {
    display: flex;
    flex-direction: column;
  }

  .adera-comparison-table thead th[data-col="0"] {
    display: none;
  }

  .adera-comparison-table thead th[data-col="1"],
  .adera-comparison-table thead th[data-col="2"],
  .adera-comparison-table thead th[data-col="3"] {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
  }

  .adera-col-arrow {
    display: inline-block;
  }

  /* Rotate arrow when active */
  .adera-col-toggle.adera-col-active .adera-col-arrow {
    transform: rotate(180deg);
  }

  /* Restore table layout for body rows */
  .adera-comparison-table tbody tr {
    display: table-row;
  }

  /* Categories column becomes labels on mobile */
  .adera-comparison-table tbody td[data-col="0"] {
    font-size: 11px;
    width: 35%;
  }

  .adera-comparison-table tbody td[data-col].adera-col-active {
    width: 65%;
  }
}

/* 8. Discreet Shipping & Hours */
.adera-shipping-hours-section {
  background: var(--brand-purple-deep);
  color: var(--white);
  padding: 80px 0;
}

.adera-shipping-hours-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.adera-shipping-badge {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.adera-shipping-badge-icon {
  font-size: 32px;
  color: var(--accent-red);
}

.adera-shipping-badge-title {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.adera-shipping-badge-desc {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.adera-hours-card {
  background-color: var(--white);
  color: var(--dark-navy);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.adera-hours-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.adera-hours-icon {
  color: var(--accent-red);
  font-size: 18px;
}

.adera-hours-title {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.adera-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adera-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-inter);
  font-size: 12px;
}

.adera-hours-day {
  font-weight: 300;
  color: var(--dark-navy);
}

.adera-hours-time {
  font-weight: 500;
  color: var(--dark-navy);
}

/* ---- Section padding & spacing: Mobile (768px) ---- */
@media (max-width: 768px) {
  .adera-verification-section,
  .adera-products-section,
  .adera-comparison-section,
  .adera-shipping-hours-section {
    padding: 30px 0;
  }

  /* Universal container side padding on mobile */
  .container-custom,
  .adera-header-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .adera-comparison-table-wrapper {
    margin-top: 16px;
  }

  /* Mobile accordion */
  .adera-mob-accordion {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(71, 0, 115, 0.10);
    margin-top: 16px;
  }

  .adera-mob-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--brand-purple-deep);
    color: var(--white);
    font-family: var(--font-manrope);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .adera-mob-accordion-item.active .adera-mob-accordion-toggle {
    box-shadow: inset 0 -2px 0 #670EAA;
  }

  .adera-mob-arrow {
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
  }

  .adera-mob-accordion-item.active .adera-mob-arrow {
    transform: rotate(180deg);
  }

  .adera-mob-accordion-content {
    background: var(--white);
  }

  .adera-mob-accordion-row {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(71, 0, 115, 0.06);
    font-family: var(--font-manrope);
    font-size: 12px;
  }

  .adera-mob-accordion-row:last-child {
    border-bottom: none;
    padding-bottom: 16px;
  }

  .adera-mob-row-label {
    width: 40%;
    color: rgba(71, 0, 115, 0.45);
    font-weight: 500;
    font-size: 11px;
  }

  .adera-mob-row-value {
    width: 60%;
    font-weight: 600;
    color: #494949;
    font-size: 12px;
  }

  /* All section headers & internal margins */
  .adera-section-header {
    margin-bottom: 20px;
  }

  .adera-products-header {
    margin-bottom: 20px;
  }

  .adera-comparison-subtitle {
    margin-top: 6px;
  }

  .adera-section-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .adera-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .adera-shipping-hours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adera-products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
  }

  .adera-products-viewall {
    padding: 7px 13px;
    width: auto;
    height: auto;
    white-space: nowrap;
    justify-self: end;
  }

  .adera-products-viewall svg {
    width: 10px;
    height: 10px;
  }

  .adera-verif-header {
    margin-bottom: 24px;
    gap: 8px;
  }

  .adera-verif-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 26.4px;
    letter-spacing: 0px;
    max-width: 309px;
  }

  .adera-lab-badge,
  .adera-section-badge {
    font-family: var(--font-manrope);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #494949;
    line-height: 1;
  }

  .adera-verif-grid {
    gap: 20px;
  }

  .adera-verif-features {
    gap: 12px;
  }

  .adera-feat-card {
    padding: 12px;
  }
}
