/* ========== CSS Variables ========== */
:root {
  --primary: #014421;
  --primary-dark: #012e17;
  --primary-bright: #39ad30;
  --accent-lime: #a2bf00;
  --text-main: #351d1d;
  --text-gray: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --black: #1a1a1a;
  --bg-card: #f5f5f7;
  --bg-page: #f0f0f0;
  --border: #e0e0e0;
  --star: #f5a623;
  --font-display: "Playfair Display", Georgia, serif;
  --font-garamond: "Apple Garamond", "EB Garamond", Garamond, Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --font-inter: "Inter", sans-serif;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 11px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-pill: 100px;
  --transition: all 0.3s ease;
}

/* ========== Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-page);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

p {
  margin: 0;
}

.font-italic {
  font-style: italic;
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 746px;
  background: linear-gradient(180deg, #000c03 90%, var(--primary) 100%);
  height: 100vh;
}

.carousel-inner {
  height: 100vh;
  min-height: 746px;
}

.hero-spacer-overlay {
  margin-top: -100vh;
}

.carousel-fade .carousel-item {
  transition: opacity 0.4s ease-in-out;
}

.hero-bg {
  position: absolute;
  height: 100%;
  width: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
}

.banner-title {
  font-family: var(--font-garamond);
  font-size: clamp(28px, 3.35vw, 43px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.banner-title.primary {
  color: var(--primary);
}

.hero-content h1 .lime {
  color: var(--accent-lime);
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 380px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  padding: 10px 8px 10px 14px;
  border-radius: var(--radius-pill);
}

.btn-hero:hover {
  background: #f0f0f0;
}

.btn-hero .arrow-circle {
  width: 29px;
  height: 29px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-hero .arrow-circle svg {
  width: 12px;
  height: 12px;
}

.hero-dots {
  display: flex;
  gap: 15px;
  margin-top: 24px;
  position: absolute;
  bottom: 100px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  transition: var(--transition);
}

.hero-dot.active {
  background: #ffffff;
}

.hero-image-col {
  position: relative;
  z-index: 2;
}

.hero-image-col img {
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.spacer-image {
  position: absolute;
  bottom: -4px;
  width: 100%;
  z-index: 4;
}

/* Spacer overlay — keeps hero dots positioned correctly */
.hero-spacer-overlay {
  pointer-events: none;
  z-index: 3;
}

/* Generic hero slide inner container */
.hero-slide-inner {
  position: relative;
  z-index: 2;
}

/* Invisible spacer element (preserves layout height) */
.vis-hidden {
  visibility: hidden;
}

/* "(optional)" label hint in forms */
.label-optional {
  font-weight: 400;
  font-size: 14px;
  opacity: 0.7;
}

/* ========== Section Typography ========== */
#featured-products {
  padding-top: 90px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  /* font-style: italic; */
  color: var(--black);
  margin-bottom: 48px;
}

.section-title--lg {
  font-size: clamp(28px, 3.35vw, 43px);
}

.section-title--md {
  font-size: clamp(22px, 2.34vw, 30px);
}

/* Apple Garamond Bold Italic for sections that match Figma */
#featured-products .section-title,
#ingredients-spotlight .section-title,
#health-concern .section-title {
  font-family: var(--font-garamond);
  font-weight: 700;
  font-style: italic;
}

.section-title--green {
  color: var(--primary);
}

/* ========== Product Cards ========== */
.product-card {
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

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

.product-card__top {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 16px 16px 0 16px;
  transition: var(--transition);
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.product-card__category {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  background: var(--white);
  padding: 2px 0;
  border-radius: var(--radius-pill);
}

.product-card__wishlist {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--text-main);
  font-size: 16px;
  border-radius: 50%;
  transition: var(--transition);
}

.product-card__wishlist:hover {
  background: var(--primary);
  transform: scale(1.12);
}

.product-card__wishlist:hover img {
  filter: brightness(0) invert(1);
}

.product-card__image {
  background: var(--white);
  border-radius: var(--radius-md);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 0;
}

.product-card__image img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.product-card__bottom {
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 24px;
  height: 100%;
}

.product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.product-card__price {
  font-family: var(--font-inter);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--text-main);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card__rating .star {
  color: var(--star);
  font-size: 14px;
}

.product-card__rating span {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
}

.product-card__name {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== Tab Toggle ========== */
.tab-toggle {
  display: flex;
  gap: 8px;
}

.tab-btn {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  border: none;
  line-height: 1;
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}

.tab-btn:not(.active) {
  background: #dadada;
  color: var(--text-main);
}

.tab-btn:not(.active):hover {
  background: #c8c8c8;
}

/* ========== Section Spacing ========== */
.section-spacing {
  padding: 56px 0;
}

.section-spacing--sm {
  padding: 40px 0;
}

/* ========== Promo Banner (Aloe Vera) ========== */
.aloe-banner {
  /* background: var(--primary-bright); */
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 398px;
  display: flex;
  align-items: center;
}

.aloe-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/bg-aloe.jpg");
  background-size: cover;
  background-position: top;
  mix-blend-mode: multiply;
}

.aloe-banner__content {
  position: relative;
  z-index: 2;
  padding: 48px 40px 48px 96px;
  max-width: 550px;
}

.aloe-banner__content h2 {
  font-family: var(--font-garamond);
  font-size: clamp(32px, 4.92vw, 63px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.aloe-banner__content p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 340px;
}

.aloe-banner__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  z-index: 1;
}

.aloe-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  padding: 10px 8px 10px 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: max-content;
}

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

.btn-white-pill .arrow-circle {
  width: 29px;
  height: 29px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-white-pill .arrow-circle svg {
  width: 12px;
  height: 12px;
}

/* ========== Dual Promo Cards ========== */
#dual-promo {
  margin-bottom: 64px;
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 398px;
  height: 100%;
}

.promo-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.promo-card--charcoal .promo-card__bg {
  background-image: url("../images/banner-slide-2.png");
}

.promo-card--charcoal {
  background: var(--black);
}

.promo-card--burdock .promo-card__bg {
  background-image: url("../images/CC1.png");
}

.promo-card--burdock {
  background: #fdfdfd;
}

.promo-card__content {
  position: relative;
  z-index: 2;
  padding: 56px 40px;
  max-width: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card--burdock .promo-card__content {
  padding-top: 100px;
}

.promo-card__content h3 {
  font-family: var(--font-garamond);
  font-size: clamp(26px, 3.04vw, 39px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.promo-card__content p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 240px;
}

/* ========== Filter Pills ========== */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 64px;
}

.filter-pill {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary);
  background: rgba(255, 255, 255, 0.23);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.blog-card__badge--wellness,
.blog-card__badge--detox {
  background: var(--primary);
}

.load-more-btn {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 17px 20px;
  width: max-content;
  margin: 60px auto 0;
  cursor: pointer;
  border: none;
}

a.load-more-btn:hover {
  color: var(--white);
  background: var(--primary-dark);
}

.load-more-btn:disabled,
.load-more-btn.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.filter-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-pill:hover:not(.active) {
  background: rgba(1, 68, 33, 0.08);
}

/* ========== Testimonials ========== */
.testimonials-section {
  background: var(--bg-page);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
}

.testimonial-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 23px;
}

.testimonial-card__photo {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__info {
  flex: 1;
  min-width: 0;
}

.testimonial-card__name {
  font-family: var(--font-inter);
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  display: block;
}

.testimonial-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-card__rating .star {
  color: var(--star);
  font-size: 14px;
}

.testimonial-card__rating span {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
}

.testimonial-card__google {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  margin-top: 2px;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  line-height: normal;
  font-weight: 400;
}

/* ========== Blog Cards ========== */
.blog-card {
  cursor: pointer;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.blog-card__image {
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-xl);
  -webkit-border-radius: var(--radius-xl);
  -moz-border-radius: var(--radius-xl);
  -ms-border-radius: var(--radius-xl);
  -o-border-radius: var(--radius-xl);
}

.blog-card__badge {
  display: inline-block;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  white-space: nowrap;
  width: fit-content;
}

.blog-card__title {
  font-family: var(--font-inter);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(19px * 1.45 * 2);
}

/* Latest Articles grid — equal card height (articles page only) */
.blog-card--uniform {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 0;
}

.blog-card--uniform > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  min-width: 0;
  color: inherit;
}

.blog-card--uniform .blog-card__image {
  flex-shrink: 0;
  width: 100%;
}

.blog-card--uniform .blog-card-body {
  flex: 1 1 auto;
  width: 100%;
  box-sizing: border-box;
}

#blog-articles-grid > [class*="col-"] {
  min-width: 0;
}

.blog-card--uniform .blog-card__title {
  margin: 0;
}

/* Blog empty state (articles page) */
.blog-empty-state {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px dashed var(--border);
  text-align: center;
}

.blog-empty-state__image {
  height: 180px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-empty-state__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  box-shadow: var(--shadow-sm);
}

.blog-empty-state__body {
  padding: 32px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.blog-empty-state__badge {
  background: var(--bg-card);
  color: var(--text-gray);
}

.blog-empty-state__title {
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
  line-height: 1.35;
}

.blog-empty-state__text {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.55;
  max-width: 420px;
  margin: 0;
}

.blog-empty-state__text strong {
  color: var(--text-main);
  font-weight: 500;
}

.blog-empty-state__btn {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  text-decoration: none;
  transition: var(--transition);
}

.blog-empty-state__btn:hover {
  color: var(--white);
  background: var(--primary-dark);
}

/* FAQ empty state (FAQs page) */
.faq-empty-state {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px dashed var(--border);
  text-align: center;
}

.faq-empty-state__image {
  height: 160px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-empty-state__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 30px;
  box-shadow: var(--shadow-sm);
}

.faq-empty-state__body {
  padding: 32px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.faq-empty-state__badge {
  background: var(--bg-card);
  color: var(--text-gray);
}

.faq-empty-state__title {
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-main);
  margin: 0;
  line-height: 1.35;
}

.faq-empty-state__text {
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.55;
  max-width: 480px;
  margin: 0;
}

.faq-empty-state__btn {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.faq-empty-state__btn:hover {
  color: var(--white);
  background: var(--primary-dark);
}

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

/* ── Tablet & Mobile  (< 992px) ─────────────────────────────── */

/* ── Mobile  (< 768px) ───────────────────────────────────────── */

/* ── Small Mobile  (< 576px) ─────────────────────────────────── */

/* ========== Page Hero (Contact page header) ========== */
.hero-spacing {
  padding-top: 136px;
}

.page-hero {
  background: var(--primary);
  padding-bottom: 64px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* ========== Section Subtitle ========== */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: #4e4e4e;
  max-width: 600px;
  margin-bottom: 28px;
}

/* ========== Search Bar ========== */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 5px 5px 5px 28px;
  width: 100%;
  max-width: 514px;
  height: 43px;
  flex: 1;
  -webkit-border-radius: var(--radius-pill);
  -moz-border-radius: var(--radius-pill);
  -ms-border-radius: var(--radius-pill);
  -o-border-radius: var(--radius-pill);
  border: 1px solid var(--primary);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background: transparent;
  min-width: 0;
}

.search-bar input::placeholder {
  color: var(--text-gray);
}

.search-bar__btn {
  width: 33px;
  height: 33px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
  cursor: pointer;
}

.search-bar__btn svg {
  width: 15px;
  height: 15px;
}

/* ========== Shop Controls ========== */
.shop-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-sort-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.btn-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dadada;
  color: var(--black);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-filter:hover {
  background: #c8c8c8;
}

/* ========== FAQ Accordion ========== */
.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--primary);
  margin-bottom: 10px;
  border-radius: 0;
}

.faq-accordion .accordion-button {
  font-family: var(--font-inter);
  font-size: clamp(17px, 2.1vw, 27px);
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  padding: 24px 0 28px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.faq-accordion .accordion-body {
  font-family: var(--font-body);
  font-size: 17px;
  color: #4e4e4e;
  padding: 0 0 54px;
  line-height: 1.7;
  font-weight: 400;
}

/* ========== Contact Form ========== */
.contact-section {
  padding: 72px 0;
}

.contact-form-wrap {
  background: #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form__label {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 11px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  display: block;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  box-shadow: 0 0 0 2px rgba(1, 68, 33, 0.2);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--text-gray);
}

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

.contact-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  -webkit-border-radius: var(--radius-pill);
  -moz-border-radius: var(--radius-pill);
  -ms-border-radius: var(--radius-pill);
  -o-border-radius: var(--radius-pill);
}

.contact-form__submit:hover {
  background: #023b1e;
}

/* ========== Contact Info Cards ========== */
.contact-info-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 274px;
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(240, 240, 240, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
}

.contact-info-card__value {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}

/* ========== Newsletter Banner (Articles page) ========== */
.newsletter-banner-section {
  padding: 0 0 56px;
}

.newsletter-banner {
  background: url(../images/cta-article-page-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 64px 80px;
}

.newsletter-banner__title {
  font-family: var(--font-garamond);
  font-size: clamp(28px, 4.92vw, 63px);
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.newsletter-banner__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--black);
  max-width: 500px;
  margin-bottom: 28px;
}

.newsletter-banner__form {
  display: flex;
  gap: 8px;
  max-width: 440px;
}

.newsletter-banner__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 16px;
  background: var(--white);
  outline: none;
  color: var(--text-main);
}

.newsletter-banner__input::placeholder {
  color: #484242;
}

.newsletter-banner__btn {
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.newsletter-banner__btn:hover {
  background: #023b1e;
}

/* ========== Featured Article ========== */
.featured-article {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.featured-article:hover {
  box-shadow: var(--shadow-md);
}

.featured-article__image {
  height: 370px;
  overflow: hidden;
  background: var(--bg-card);
}

.featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-article:hover .featured-article__image img {
  transform: scale(1.04);
}

.featured-article__body {
  padding: 19px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--radius-xl);
  -webkit-border-radius: var(--radius-xl);
  -moz-border-radius: var(--radius-xl);
  -ms-border-radius: var(--radius-xl);
  -o-border-radius: var(--radius-xl);
  background: var(--white);
  position: relative;
  margin-top: -20px;
}

.featured-article__title {
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.45;
  margin: 0;
}

/* ========== Responsive — new components ========== */

/* ========== Shop Pagination ========== */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-bottom: 8px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid #d0d0d0;
  border-radius: var(--radius-pill);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  line-height: 1;
}

.page-btn:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.page-btn--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.page-btn--nav {
  gap: 6px;
  font-size: 14px;
  padding: 0 16px;
}

.page-btn:disabled,
.page-btn[disabled] {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

/* ========== Scroll Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
  /* background: var(--white); */
  overflow: hidden;
}

/* ========== Grid Column Toggle ========== */
.col-toggle-group {
  display: flex;
  gap: 4px;
  align-items: center;
}

.btn-col-filter {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid #d0d0d0;
  border-radius: var(--radius-sm);
  color: #888;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.btn-col-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(1, 68, 33, 0.06);
}

.btn-col-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ========== Sort Dropdown ========== */
.sort-dropdown-wrap {
  position: relative;
}

.sort-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 190px;
  z-index: 200;
  display: none;
}

.sort-menu.open {
  display: block;
}

.sort-menu li button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}

.sort-menu li button:hover,
.sort-menu li button.active {
  background: var(--bg-page);
  color: var(--primary);
}

/* ========== Shop Layout (filter + grid) ========== */
.shop-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.shop-grid-wrap {
  flex: 1;
  min-width: 0;
}

/* ========== Filter Panel — shared ========== */
.filter-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  flex-shrink: 0;
}

.filter-panel__title {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-panel__close {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  -webkit-border-radius: var(--radius-pill);
  -moz-border-radius: var(--radius-pill);
  -ms-border-radius: var(--radius-pill);
  -o-border-radius: var(--radius-pill);
  padding: 11px;
}

.filter-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group__label {
  font-family: var(--font-inter);
  font-size: clamp(18px, 2.1vw, 20px);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.filter-group.collapsed>*:not(.filter-group__label) {
  display: none;
}

.filter-group.collapsed .filter-group__label {
  margin-bottom: 0;
}

.filter-type-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-type-btn {
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 2.1vw, 17px);
  color: var(--black);
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 500;
}

.filter-type-btn:hover {
  color: var(--primary);
}

.filter-type-btn.active {
  color: var(--primary);
  font-weight: 600;
}

.active-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f0f0;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius-pill);
  padding: 5px 10px 5px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
}

.active-filter-tag__remove {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s;
}

.active-filter-tag__remove:hover {
  color: var(--primary);
}

.filter-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-price-field label {
  font-family: var(--font-inter);
  font-size: clamp(15px, 2.1vw, 17px);
  font-weight: 500;
  color: var(--black);
}

.filter-price-field input {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}

.filter-price-field input:focus {
  border-color: var(--primary);
}

.filter-price-dash {
  color: var(--black);
  padding-top: 18px;
  flex-shrink: 0;
}

.filter-rating-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-rating-btn {
  /*padding: 8px 14px;
  */
  /*border: 1.5px solid var(--border);
  */
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: var(--font-inter);
  font-size: clamp(15px, 2.1vw, 17px);
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.filter-rating-btn:hover,
.filter-rating-btn.active {
  /* background: var(--primary); */
  /* border-color: var(--primary); */
  color: var(--primary);
}

.filter-panel__footer {
  padding: 16px 20px;
  flex-shrink: 0;
}

.filter-btn-apply {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--primary);
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 8px;
  -webkit-border-radius: var(--radius-pill);
  -moz-border-radius: var(--radius-pill);
  -ms-border-radius: var(--radius-pill);
  -o-border-radius: var(--radius-pill);
}

.filter-btn-apply:hover {
  background: #023b1e;
}

.filter-btn-reset {
  width: fit-content;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.filter-btn-reset:hover {
  color: var(--primary);
}

/* ── Desktop (≥992px): inline panel inside shop-layout ─────────── */

/* ── Mobile (<992px): fixed overlay sidebar ─────────────────────── */

/* Hide 4-col button on tablet, 3+4 on small mobile */



/* ========== Navbar ========== */
/* ========== Navbar ========== */
.navbar.navbar-aura {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 30px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 1050;
  height: 69px;
  border-radius: 100px;
  max-width: 1280px;
  width: 97%;
  flex-wrap: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar-aura > .container,
.footer > .container {
  max-width: 1280px;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.navbar-aura > .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: 69px;
}

.navbar-aura--scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(224, 224, 224, 0.5);
}

.navbar-aura .navbar-toggler {
  border: none;
  padding: 0;
  color: var(--text-main);
  font-size: 20px;
  line-height: 1;
}

.navbar-aura .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-aura .navbar-brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.navbar-aura .navbar-brand img {
  height: 32px;
  width: auto;
}

.navbar-aura .nav-link {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-main);
  padding: 8px !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-aura .nav-link:hover,
.navbar-aura .nav-link.active {
  color: var(--primary);
}

.navbar-aura .dropdown-toggle::after {
  display: none !important;
}

.navbar-aura .nav-link .la-angle-down {
  margin-left: 2px;
  font-size: 10px;
}

.navbar-aura .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
}

.navbar-aura .dropdown-item {
  font-family: var(--font-display);
  font-size: 17px;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  color: var(--text-main);
}

.navbar-aura .dropdown-item:hover,
.navbar-aura .dropdown-item:focus,
.navbar-aura .dropdown-item:active,
.navbar-aura .dropdown-item.active {
  background-color: var(--bg-card) !important;
  color: var(--text-main) !important;
}

.navbar-aura .nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-aura .nav-icons a {
  color: var(--text-main);
  font-size: 18px;
  line-height: 1;
}

.navbar-aura .nav-icons a:hover {
  color: var(--primary);
}

.navbar-aura .cart-wrap {
  position: relative;
}

.navbar-aura .btn-shop-now {
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  padding: 12px 20px;
  border-radius: 32px;
  white-space: nowrap;
  line-height: 1;
}

.navbar-aura .btn-shop-now:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.navbar-aura span.cart-count {
  position: absolute;
  top: -10px;
  right: -5px;
  background: #e3f6a4;
  border-radius: 50%;
  display: flex;
  height: 16px;
  width: 16px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--black);
}

/* ========== Footer ========== */
.footer {
  background: var(--primary);
  /* padding-bottom: 30px; */
}

.footer-inner {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 57px 0px 0px;
  border-radius: var(--radius-lg);
}

.footer-top {
  padding-bottom: 32px;
}

.footer h5 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover {
  margin-left: 6px;
}

.footer-newsletter-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 22px;
}

.footer .newsletter-form {
  display: flex;
  gap: 7px;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.footer .newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.footer .newsletter-form input::placeholder {
  color: #b5b4b4;
  font-weight: 500;
}

.footer .newsletter-form button {
  padding: 12px 20px;
  background: var(--white);
  color: var(--text-main);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

.footer .newsletter-form button:hover {
  background: #f0f0f0;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}

.footer-social a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-copyright {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Expandable search ========== */
.navbar-aura {
  overflow: visible;
}

.navbar-aura .nav-icons {
  overflow: visible;
}

.navbar-aura .aura-search {
  position: relative;
  display: flex;
  align-items: center;
}

.aura-search-toggle {
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.aura-search-toggle img {
  display: block;
  width: 20px;
  height: 20px;
}

.aura-search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  z-index: 1060;
  width: min(320px, 85vw);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.aura-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.aura-search-form {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 10px 10px 16px;
  box-shadow: var(--shadow-md);
}

.aura-search-input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  background: transparent;
  color: var(--text-main);
}

.aura-search-input::placeholder {
  color: var(--text-gray);
}

.aura-search-close {
  background: none;
  border: none;
  padding: 2px 6px;
  cursor: pointer;
  color: var(--text-gray);
  line-height: 1;
}

.aura-search-close:hover {
  color: var(--text-main);
}

.aura-search-results {
  position: relative;
  margin-top: 8px;
  width: 100%;
  max-height: min(380px, 55vh);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
}

.aura-search-preloader {
  padding: 24px;
  text-align: center;
}

.aura-search-nothing {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
}

.aura-search-results .list-group-item {
  border-left: 0;
  border-right: 0;
}

.aura-search-results .search-product img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.aura-search-panel.has-results {
  width: min(380px, 92vw);
}

.aura-search-dropdown {
  padding: 4px 0;
}

.aura-search-section + .aura-search-section {
  border-top: 1px solid var(--border);
}

.aura-search-section__title {
  padding: 8px 14px 6px;
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
}

.aura-search-list,
.aura-search-products {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aura-search-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.aura-search-link:hover {
  color: var(--primary);
  background: var(--bg-card);
}

.aura-search-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.aura-search-product:hover {
  background: var(--bg-card);
}

.aura-search-product__thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
}

.aura-search-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aura-search-product__body {
  min-width: 0;
  flex: 1;
}

.aura-search-product__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aura-search-product__meta {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aura-search-product__price {
  display: block;
  font-size: 13px;
  color: var(--primary);
}

.aura-search-product__price del {
  color: var(--text-light);
  margin-right: 6px;
}

.aura-search-product__price strong {
  font-weight: 600;
}

.aura-search-footer {
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  text-align: center;
}

.aura-search-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.aura-search-view-all:hover {
  color: var(--primary-bright);
}

.dot-loader {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.dot-loader > div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: aura-dot-pulse 0.9s infinite ease-in-out both;
}

.dot-loader > div:nth-child(1) { animation-delay: -0.24s; }
.dot-loader > div:nth-child(2) { animation-delay: -0.12s; }

@keyframes aura-dot-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* Site-wide header chrome — override AIZ / Bootstrap 4 on shop pages */
nav.navbar.navbar-aura,
.navbar.navbar-expand-lg.navbar-aura {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  width: 97% !important;
  max-width: 1280px !important;
  transform: translateX(-50%) !important;
  border-radius: 100px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  flex-wrap: nowrap !important;
}
