/* ==========================================================================
   Sunar Collections — Homepage theme styles
   Bootstrap 5 + custom. Structured for WordPress conversion.
   ========================================================================== */

:root {
  --sc-gold: #d7a63e;
  --sc-cream: #f1e1c7;
  --sc-panel: #f7f0e3;
  --sc-offwhite: #ffffff;
  --sc-white: #ffffff;
  --sc-black: #141414;
  --sc-charcoal: #1a1a1a;

  --sc-gold-dark: #b8892f;
  --sc-gold-light: #e4c078;
  --sc-text: #1a1a1a;
  --sc-text-muted: #6b6560;
  --sc-border: rgba(26, 26, 26, 0.08);

  /* Figma layout widths */
  --sc-site-width: 1920px;
  --sc-inner-width: 1831px;
  /* White page gap between cream section panels */
  --sc-section-gap: 50px;

  --sc-radius-xl: 40px;
  --sc-radius-lg: 28px;
  --sc-radius-md: 20px;
  --sc-radius-sm: 14px;
  --sc-radius-pill: 999px;

  --bs-primary: var(--sc-gold);
  --bs-primary-rgb: 215, 166, 62;
  --bs-body-bg: var(--sc-offwhite);
  --bs-body-color: var(--sc-text);
  --bs-link-color: var(--sc-gold-dark);
  --bs-link-hover-color: var(--sc-black);
  --bs-border-color: var(--sc-border);
  --bs-font-sans-serif: "Poppins", system-ui, -apple-system, sans-serif;
  --sc-font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --sc-transition: 0.25s ease;
  --sc-shadow-card: 0 10px 30px rgba(26, 26, 26, 0.06);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  background-color: var(--sc-offwhite);
  color: var(--sc-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

a:hover,
a:focus {
  color: var(--sc-gold-dark);
}

.site-main {
  flex: 1 0 auto;
}

.container-xl {
  max-width: var(--sc-inner-width); /* 1831px */
  margin-left: auto;
  margin-right: auto;
}

/* Header uses same inner width; hero image stays full-bleed */
.hero-nav-inner.container-xl {
  max-width: var(--sc-inner-width);
  padding-left: clamp(1rem, 2.3vw, 2.5rem);
  padding-right: clamp(1rem, 2.3vw, 2.5rem);
}

.hero-content.container-xl {
  max-width: var(--sc-inner-width);
  padding-left: clamp(1rem, 2.3vw, 2.5rem);
  padding-right: clamp(1rem, 2.3vw, 2.5rem);
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.section-title {
  font-family: var(--sc-font-serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--sc-black);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-gold-dark);
  margin-bottom: 0.75rem;
}

.section-head {
  margin-bottom: 2rem;
}

/* Figma COLLECTION wordmark */
.logo-wordmark {
  margin: 0.35rem 0 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 500;
  font-size: 12.32px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--sc-gold);
  width: 87.65px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  border-radius: var(--sc-radius-pill);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.4rem;
}

.btn-gold {
  background: var(--sc-gold);
  border: 1px solid var(--sc-gold);
  color: var(--sc-black);
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--sc-gold-dark);
  border-color: var(--sc-gold-dark);
  color: var(--sc-white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--sc-white);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sc-white);
  color: var(--sc-white);
}

.btn-soft {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  color: var(--sc-text);
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
}

.btn-soft:hover {
  border-color: var(--sc-gold);
  color: var(--sc-gold-dark);
}

.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: var(--sc-radius-pill);
  color: var(--sc-black);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
}

.btn-location:hover {
  background: var(--sc-white);
  color: var(--sc-gold-dark);
}

/* --------------------------------------------------------------------------
   Shared section shells
   -------------------------------------------------------------------------- */
.section-block {
  padding: calc(var(--sc-section-gap) / 2) 0;
}

.section-block--flush {
  padding: calc(var(--sc-section-gap) / 2) 0;
}

.rounded-panel {
  background: #f7f0e3;
  border-radius: 65px;
  padding: clamp(1.75rem, 4vw, 100px);
}

@media (min-width: 1200px) {
  .section-block,
  .section-block--flush {
    padding: calc(var(--sc-section-gap) / 2) 0;
  }
}

@media (max-width: 575.98px) {
  .section-block,
  .section-block--flush {
    padding: 24px 0;
  }

  .rounded-panel {
    border-radius: 28px;
    padding: 1.5rem 1.15rem 1.75rem;
  }
}

/* Featured ↔ Latest use the same shared gap */
.featured-section {
  padding-bottom: calc(var(--sc-section-gap) / 2);
}

.latest-section {
  padding-top: calc(var(--sc-section-gap) / 2);
}

@media (min-width: 1200px) {
  .featured-section {
    padding-bottom: calc(var(--sc-section-gap) / 2);
  }

  .latest-section {
    padding-top: calc(var(--sc-section-gap) / 2);
  }
}

/* --------------------------------------------------------------------------
   Header + Hero
   -------------------------------------------------------------------------- */
.hero-wrap {
  position: relative;
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  border: 0;
}

/* Figma: Hero bar top ≈ 88.61px */
.site-header--overlay .navbar {
  padding-top: 2.75rem;
  padding-bottom: 1rem;
}

.hero-nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.site-branding {
  line-height: 0;
  flex-shrink: 0;
  z-index: 2;
}

.site-branding .custom-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}

.site-branding .custom-logo {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.site-branding .site-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Figma Hero bar: #F7F0E3 @ 20%, radius 32.64, pad 8.16, gap 24.48, h ~63.22 */
.site-header--overlay .primary-menu-bar {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24.48px;
  padding: 8.16px;
  min-height: 63.22px;
  width: max-content;
  max-width: 100%;
  border-radius: 32.64px;
  background: rgba(247, 240, 227, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header--overlay .primary-menu-bar .nav-item {
  margin: 0;
}

.site-header--overlay .primary-menu .nav-link {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: 16.32px;
  line-height: 24.48px;
  letter-spacing: 0;
  color: #f7f0e3;
  padding: 11.37px 18px !important;
  border-radius: 25.29px;
  background: transparent;
  white-space: nowrap;
  transition: background var(--sc-transition), color var(--sc-transition);
}

.site-header--overlay .primary-menu .nav-link:hover,
.site-header--overlay .primary-menu .nav-link:focus,
.site-header--overlay .primary-menu .nav-link.active {
  color: #000000;
  background: #d2ac4c;
}

.site-header--overlay .primary-menu .nav-link.active::after {
  display: none;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(247, 240, 227, 0.2);
  color: #f7f0e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--sc-transition), color var(--sc-transition);
}

.header-icon-btn:hover {
  background: #d2ac4c;
  color: #000000;
}

/* Figma Search bar */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  z-index: 2;
}

.header-search {
  display: flex;
  align-items: center;
  width: 171.68px;
  min-height: 63.64px;
  padding: 5.71px 8.16px;
  border-radius: 40.8px;
  background: rgba(247, 240, 227, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: width var(--sc-transition);
}

.header-search:focus-within {
  width: 280px;
}

.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f7f0e3;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 16.32px;
  line-height: 24.48px;
  padding: 0 0.35rem;
}

.header-search input::placeholder {
  color: #f7f0e3;
  opacity: 0.85;
}

.header-search__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f7f0e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header-search__btn svg {
  width: 22px;
  height: 22px;
}

.header-search__btn:hover {
  color: #d2ac4c;
}

/* Figma Hero icons bar — 204.7×63.55 hug, radius 39.98, gap 17.13 */
.header-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17.13px;
  height: 63.55px;
  width: max-content;
  padding: 4.9px 8.16px;
  border-radius: 39.98px;
  background: rgba(247, 240, 227, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.header-icons__btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  color: #f7f0e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color var(--sc-transition),
    background var(--sc-transition),
    width var(--sc-transition),
    height var(--sc-transition);
}

.header-icons__btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Wishlist / cart hover = same gold circle as active user */
.header-icons__btn:hover {
  width: 44px;
  height: 44px;
  background: #d2ac4c;
  color: #ffffff;
}

/* Active user: gold circle, white merged usertop+userbottom icon */
.header-icons__btn--user {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d2ac4c;
  color: #ffffff;
}

.header-icons__btn--user svg {
  width: 22px;
  height: 22px;
}

.header-icons__btn--user:hover {
  background: #c49a3a;
  color: #ffffff;
}

.site-header--overlay .navbar-toggler {
  border: 1px solid rgba(247, 240, 227, 0.45);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  margin-left: 0.5rem;
  order: 3;
}

.site-header--overlay .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(210, 172, 76, 0.35);
}

.site-header--overlay .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247,240,227,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Desktop / large screens — true center nav between logo and actions */
@media (min-width: 1200px) {
  .hero-nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .site-branding {
    grid-column: 1;
    justify-self: start;
  }

  /* Let menu + actions participate in the header grid */
  .site-header--overlay .navbar-collapse {
    display: contents !important;
  }

  .site-header--overlay .primary-menu-bar {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    grid-column: 2;
    justify-self: center;
    margin: 0 0 0 2.5rem !important;
  }

  .site-header--overlay .header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
    position: relative;
    z-index: 2;
  }
}

/* Mid desktop — tighten header so it doesn't overflow */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header--overlay .primary-menu-bar {
    margin-left: 0.75rem !important;
  }

  .site-header--overlay .primary-menu .nav-link {
    padding: 0.55rem 0.75rem !important;
    font-size: 14px;
    line-height: 22px;
  }

  .header-search {
    width: 140px;
  }

  .header-search:focus-within {
    width: 230px;
  }
}

/* Mobile / tablet: hamburger navigation */
@media (max-width: 1199.98px) {
  .site-header--overlay .navbar {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }

  .hero-nav-inner {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .site-branding {
    order: 1;
  }

  .header-icons--bar {
    order: 2;
    margin-left: auto;
    height: 48px;
    gap: 10px;
    padding: 4px 8px;
  }

  .header-icons--bar .header-icons__btn--user {
    width: 36px;
    height: 36px;
  }

  .header-icons--bar .header-icons__btn:hover {
    width: 36px;
    height: 36px;
    background: #d2ac4c;
    color: #ffffff;
  }

  .header-icons--bar .header-icons__btn--user svg,
  .header-icons--bar .header-icons__btn svg {
    width: 20px;
    height: 20px;
  }

  .site-header--overlay .navbar-toggler {
    order: 3;
    margin-left: 0.35rem;
  }

  .site-header--overlay .navbar-collapse {
    order: 4;
    flex-basis: 100%;
    background: rgba(20, 18, 14, 0.96);
    border: 1px solid rgba(247, 240, 227, 0.12);
    border-radius: 20px;
    margin-top: 0.65rem;
    padding: 1rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-header--overlay .primary-menu-bar {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    min-height: 0;
    gap: 0.35rem;
    padding: 0.35rem;
    margin: 0 0 0.85rem !important;
    border-radius: 16px;
    background: rgba(247, 240, 227, 0.08);
  }

  .site-header--overlay .primary-menu .nav-link {
    text-align: center;
    width: 100%;
    padding: 0.85rem 1rem !important;
    font-size: 16px;
    line-height: 1.4;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin: 0;
  }

  .header-search {
    width: 100%;
    min-height: 52px;
  }

  .header-search:focus-within {
    width: 100%;
  }
}

.hero-section {
  position: relative;
  min-height: min(100vh, 1180px);
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: relative;
  min-height: min(100vh, 1180px);
  /* Figma: #F0E1C0B2 + multiply; push jewelry/bangles further right */
  background-color: rgba(240, 225, 192, 0.698);
  background-image: var(--hero-img);
  background-position: right -8% center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
}

/* Soft bottom fade — mask dissolves slides only (controls stay sharp) */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-inner {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.85) 72%,
    rgba(0, 0, 0, 0.45) 85%,
    rgba(0, 0, 0, 0.12) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.85) 72%,
    rgba(0, 0, 0, 0.45) 85%,
    rgba(0, 0, 0, 0.12) 94%,
    transparent 100%
  );
}

/* Soft cream wash under the masked fade so it blends into page bg */
.hero-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 55%,
    var(--sc-offwhite) 100%
  );
  pointer-events: none;
  z-index: 4;
}

.hero-blur {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .hero-content {
    padding-top: 10rem;
    padding-bottom: 14rem;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding-top: 15rem;
    padding-bottom: 16rem;
  }
}

.hero-copy {
  max-width: 857px;
  text-align: left;
  color: var(--sc-white);
  margin-left: 0;
  margin-right: auto;
}

/* Figma: Poppins Regular 96 / 106, LS -2%, #FFFFFF, left */
.hero-title {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.5rem, 6.5vw, 96px);
  line-height: 1.104; /* 106/96 */
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
  max-width: 857px;
}

/* Figma hero lead: Poppins 400 24/34, #FFFFFF @ 60% */
.hero-lead {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 2vw, 24px);
  line-height: 1.4167; /* 34/24 */
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.75rem;
  margin-bottom: 2.75rem;
  max-width: 40rem;
  text-align: left;
}

.hero-actions {
  margin-top: 0.25rem;
}

/* Figma: Shop the Collection — radius 65, bg #F0E1C0, Poppins 24/34, #000 */
.btn-hero-shop {
  border-radius: 65px;
  background: #f0e1c0;
  border: 1px solid #f0e1c0;
  color: #000000;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 2vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  padding: 0.85rem 1.75rem;
}

.btn-hero-shop:hover,
.btn-hero-shop:focus {
  background: #e4d2a8;
  border-color: #e4d2a8;
  color: #000000;
}

/* Figma: Explore New Arrivals — Poppins 24/34, #F0E1C0 */
.hero-link {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, 2vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: #f0e1c0;
  text-decoration: none;
}

.hero-link:hover {
  color: #ffffff;
}

/* Figma slider arrows: bottom of hero, above fade, high z-index */
.hero-control {
  width: auto;
  height: auto;
  opacity: 1;
  top: auto;
  bottom: 70px;
  transform: none;
  z-index: 20;
}

.carousel-control-prev.hero-control {
  left: clamp(1rem, 3vw, 2.5rem);
  justify-content: flex-start;
  align-items: flex-end;
}

.carousel-control-next.hero-control {
  right: clamp(1rem, 3vw, 2.5rem);
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-control-icon {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 0;
  background: rgba(137, 109, 38, 0.47);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--sc-transition), color var(--sc-transition);
  position: relative;
  z-index: 20;
}

.hero-control-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hero-control:hover .hero-control-icon,
.hero-control-icon:hover {
  background: rgba(137, 109, 38, 0.7);
  color: #ffffff;
  border-color: transparent;
}

@media (max-width: 991.98px) {
  .site-header--overlay .navbar {
    padding-top: 1rem;
    padding-bottom: 0.65rem;
  }

  .site-branding .custom-logo {
    width: 42px;
  }

  .site-branding .logo-wordmark {
    font-size: 10px;
    width: auto;
  }

  .hero-section,
  .hero-slide {
    min-height: 100svh;
    min-height: 100vh;
  }

  .hero-slide {
    background-position: 70% center;
    align-items: center;
  }

  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 7.5rem;
    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.25rem);
    line-height: 1.15;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-top: 1.15rem;
    margin-bottom: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 1rem !important;
    margin-top: 0.35rem;
  }

  .btn-hero-shop {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.75rem 1.5rem;
  }

  .hero-link {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-control {
    bottom: 48px;
  }

  .hero-control-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }

  .hero-control-icon svg {
    width: 16px;
    height: 16px;
  }

  .carousel-control-prev.hero-control {
    left: 0.65rem;
  }

  .carousel-control-next.hero-control {
    right: 0.65rem;
  }

  .hero-indicators {
    margin-bottom: 1.15rem;
    gap: 8px;
  }

  .hero-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
  }

  .hero-indicators .active,
  .hero-indicators [data-bs-target]:hover {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 575.98px) {
  .header-icons--bar {
    gap: 6px;
    padding: 3px 6px;
    height: 42px;
  }

  .header-icons--bar .header-icons__btn {
    width: 22px;
    height: 22px;
  }

  .header-icons--bar .header-icons__btn--user {
    width: 30px;
    height: 30px;
  }

  .header-icons--bar .header-icons__btn:hover {
    width: 30px;
    height: 30px;
  }

  .header-icons--bar .header-icons__btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
  }

  .hero-lead {
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 18.5rem;
  }

  .hero-actions {
    gap: 0.9rem !important;
    width: 100%;
  }

  .btn-hero-shop {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.8rem 1.1rem;
  }

  .hero-control {
    bottom: 42px;
  }

  .hero-indicators {
    margin-bottom: 0.9rem;
  }
}

/* Figma slider dots — vertically centered row; active larger + gold */
.hero-indicators {
  z-index: 20;
  margin-bottom: 2.5rem;
  gap: 10px;
  align-items: center !important;
}

.hero-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  margin: 0 !important;
  padding: 0;
  text-indent: 0;
  background-color: rgba(63, 63, 63, 0.19);
  opacity: 1;
  box-sizing: content-box;
  transition: background-color 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.hero-indicators [data-bs-target]:hover {
  background-color: rgba(137, 109, 38, 0.67);
  width: 12px;
  height: 12px;
}

.hero-indicators .active {
  width: 12px;
  height: 12px;
  background-color: rgba(137, 109, 38, 0.67);
}

/* --------------------------------------------------------------------------
   Featured Collection / Best Selling (Figma)
   -------------------------------------------------------------------------- */
.featured-panel {
  background: #f7f0e3;
  border-radius: 65px;
  padding: clamp(1.5rem, 3.5vw, 4rem);
}

.featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 3.25rem);
}

.featured-head__text {
  min-width: 0;
  flex: 1 1 auto;
}

.featured-eyebrow {
  margin: 0 0 0.15rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
}

.featured-title {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
}

@media (min-width: 1400px) {
  .featured-panel {
    padding: 50px;
  }

  .featured-eyebrow {
    font-size: 24px;
    line-height: 34px;
  }

  .featured-title {
    font-size: 58px;
    line-height: 68px;
  }
}

.featured-arrow {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
}

.featured-arrow svg {
  width: 26px;
  height: 26px;
}

.featured-arrow:hover,
.featured-arrow:focus {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feature-product {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-product__media {
  position: relative;
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  max-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 0.45s ease;
}

.feature-product:hover .feature-product__media img {
  transform: scale(1.03);
}

.feature-product__badge {
  position: absolute;
  z-index: 2;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.95vw, 16px);
  line-height: 1.4;
  letter-spacing: 0;
  border-radius: var(--sc-radius-pill);
  padding: 0.3em 0.8em;
  white-space: nowrap;
}

.feature-product__badge--top {
  top: clamp(0.75rem, 1.4vw, 1.35rem);
  left: clamp(0.75rem, 1.4vw, 1.35rem);
  background: #f3e4b8;
  color: #bc8600;
}

.feature-product__badge--high {
  top: clamp(0.75rem, 1.4vw, 1.35rem);
  right: clamp(0.75rem, 1.4vw, 1.35rem);
  left: auto;
  background: #f3e4b8;
  color: #bc8600;
}

.feature-product__badge--karat {
  bottom: clamp(0.75rem, 1.4vw, 1.35rem);
  left: clamp(0.75rem, 1.4vw, 1.35rem);
  background: #e8d4a3;
  color: #000000;
}

.feature-product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 1.25rem;
}

.feature-product__name {
  margin: 0 0 0.5rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.35vw, 26px);
  line-height: 1.15;
  letter-spacing: 0;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  min-height: calc(1.15em * 2); /* always reserve 2 lines */
}

.feature-product__desc {
  margin: 0 0 1.25rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 18px);
  line-height: 1.42;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.6);
  max-width: 17em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.feature-product__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.feature-product__price {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 18px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-product__add {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 1.65rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
}

.feature-product__add:hover,
.feature-product__add:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

@media (min-width: 1400px) {
  .feature-product__badge {
    font-size: 16px;
    line-height: 24px;
  }

  .feature-product__name {
    font-size: 26px;
    line-height: 30px;
    min-height: 60px; /* 2 × 30px line-height */
  }

  .feature-product__desc,
  .feature-product__price {
    font-size: 18px;
    line-height: 26px;
  }

  .feature-product__media {
    border-radius: 40px;
  }

  .featured-grid {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .featured-panel {
    border-radius: 40px;
  }

  .featured-arrow {
    width: 56px;
    height: 56px;
  }

  .featured-arrow svg {
    width: 22px;
    height: 22px;
  }

  .feature-product__media {
    border-radius: 28px;
  }

  .feature-product__add {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .featured-panel {
    border-radius: 28px;
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .featured-head {
    align-items: flex-start;
  }

  .featured-eyebrow {
    font-size: 16px;
    line-height: 24px;
  }

  .featured-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .featured-arrow {
    width: 44px;
    height: 44px;
  }

  .feature-product__body {
    text-align: center;
    align-items: center;
  }

  .feature-product__desc {
    max-width: none;
  }

  .feature-product__footer {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .feature-product__badge {
    font-size: 11px;
    padding: 0.2em 0.55em;
  }

  .feature-product__price {
    font-size: 0.8rem;
    white-space: normal;
  }

  .feature-product__add {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .feature-product__name {
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   Latest designs / New Arrivals (Figma) — image is the card
   -------------------------------------------------------------------------- */
.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.9fr) minmax(0, 1fr);
  gap: clamp(0.85rem, 1.4vw, 1.5rem);
  align-items: stretch;
}

.latest-col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.4vw, 1.5rem);
  min-width: 0;
}

.latest-col--feature {
  min-height: 100%;
}

.latest-product {
  position: relative;
  display: block;
  border-radius: 36px;
  overflow: hidden;
  background: #ffffff;
  line-height: 0;
}

/* Side cards: box size = image size */
.latest-col:not(.latest-col--feature) .latest-product__img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

/* Feature card: stretch to match side column height */
.latest-product--feature {
  height: 100%;
  min-height: 100%;
}

.latest-product--feature .latest-product__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  pointer-events: none;
}

.latest-product__top {
  position: absolute;
  top: clamp(0.85rem, 1.4vw, 1.35rem);
  left: clamp(0.85rem, 1.4vw, 1.35rem);
  right: clamp(0.85rem, 1.4vw, 1.35rem);
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  line-height: normal;
}

.latest-product__info {
  min-width: 0;
}

.latest-product__name {
  margin: 0 0 0.2rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.25vw, 22px);
  line-height: 1.25;
  letter-spacing: 0;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.latest-product__price {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 18px);
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-product__link {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8d4a3;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--sc-transition), background var(--sc-transition);
}

.latest-product__link svg {
  width: 16px;
  height: 16px;
}

.latest-product__link:hover,
.latest-product__link:focus {
  color: #000000;
  transform: scale(1.05);
  background: #f3e4b8;
}

.latest-product__bottom {
  position: absolute;
  bottom: clamp(0.85rem, 1.4vw, 1.35rem);
  left: clamp(0.85rem, 1.4vw, 1.35rem);
  right: clamp(0.85rem, 1.4vw, 1.35rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  line-height: normal;
}

.latest-product__karat {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.95vw, 16px);
  line-height: 1.4;
  color: #000000;
  background: #e8d4a3;
  border-radius: var(--sc-radius-pill);
  padding: 0.35em 0.85em;
}

.latest-product__add {
  flex-shrink: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #e8d4a3;
  color: #000000;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--sc-transition), background var(--sc-transition);
}

.latest-product__add:hover,
.latest-product__add:focus {
  transform: scale(1.05);
  background: #f3e4b8;
}

.latest-product__cart {
  margin-left: auto;
  border: 0;
  border-radius: var(--sc-radius-pill);
  background: #e8d4a3;
  color: #000000;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.85rem, 1vw, 18px);
  line-height: 1.2;
  padding: 0.7em 1.4em;
  transition: transform var(--sc-transition), background var(--sc-transition);
}

.latest-product__cart:hover,
.latest-product__cart:focus {
  background: #f3e4b8;
  transform: translateY(-1px);
}

@media (min-width: 1400px) {
  .latest-product__name {
    font-size: 22px;
    line-height: 28px;
  }

  .latest-product--feature .latest-product__name {
    font-size: 26px;
    line-height: 32px;
  }

  .latest-product__price {
    font-size: 18px;
    line-height: 26px;
  }

  .latest-product__karat {
    font-size: 16px;
    line-height: 24px;
  }

  .latest-product__link,
  .latest-product__add {
    width: 48px;
    height: 48px;
  }

  .latest-product__link svg {
    width: 18px;
    height: 18px;
  }

  .latest-product {
    border-radius: 40px;
  }
}

@media (max-width: 1199.98px) {
  .latest-layout {
    grid-template-columns: 1fr 1fr;
  }

  .latest-col--feature {
    grid-column: 1 / -1;
    order: -1;
  }

  .latest-product--feature {
    min-height: 360px;
    aspect-ratio: 852 / 730;
  }

  .latest-product--feature .latest-product__img {
    position: absolute;
  }
}

@media (max-width: 767.98px) {
  .latest-layout {
    grid-template-columns: 1fr;
  }

  .latest-col--feature {
    grid-column: auto;
    order: 0;
  }

  .latest-product {
    border-radius: 28px;
  }

  .latest-product--feature {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .latest-product__top,
  .latest-product__bottom {
    left: 0.65rem;
    right: 0.65rem;
  }

  .latest-product__top {
    top: 0.65rem;
  }

  .latest-product__bottom {
    bottom: 0.65rem;
  }

  .latest-product__link,
  .latest-product__add {
    width: 34px;
    height: 34px;
  }

  .latest-product__link svg {
    width: 14px;
    height: 14px;
  }

  .latest-product__name {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .latest-product__price {
    font-size: 0.8rem;
  }

  .latest-product__karat {
    font-size: 0.75rem;
  }

  .latest-product__cart {
    padding: 0.5em 0.9em;
    font-size: 0.8rem;
  }

  .latest-product--feature {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
}

/* --------------------------------------------------------------------------
   About — Figma typography
   -------------------------------------------------------------------------- */
#about.section-block--flush {
  padding-top: clamp(32px, 4.5vw, 60px);
  padding-bottom: clamp(32px, 4.5vw, 60px);
}

@media (max-width: 575.98px) {
  #about.section-block--flush {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.about-row {
  align-items: stretch;
}

/* About sits on white page bg (no cream panel) — matches homepage mockup */
#about {
  background: transparent;
}

.about-media {
  min-height: 420px;
  height: 100%;
  background: transparent;
  /* nudge image right — left gap from section edge */
  margin-left: clamp(1.25rem, 3vw, 3rem);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 60px;
  background: transparent;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 52rem;
  min-height: 100%;
  padding-left: clamp(0.75rem, 2vw, 2.5rem);
}

.about-copy__top {
  flex: 0 0 auto;
}

.about-copy__bottom {
  flex: 0 0 auto;
  margin-top: auto;
}

/* Figma: About the Brand — Poppins 400 24/34, #000 */
.about-label {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 0.35rem;
}

/* Figma: About Sunar Collection — Poppins 400 72/82, LS -2%, capitalize, #000 */
.about-title {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}

@media (min-width: 1200px) {
  .about-title {
    font-size: 72px;
    line-height: 82px;
  }
}

/* Figma: Crafted with Passion… — Poppins SemiBold 32/34, #000 */
.about-tagline {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 32px);
  line-height: 34px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 1.25rem;
}

/* Figma: body — Poppins 400 24/34, #000 @ 60% */
.about-text {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.6;
  margin: 0 0 1rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .about-media {
    margin-left: 0;
    min-height: 0;
  }

  .about-media img {
    min-height: 280px;
    border-radius: 40px;
  }

  .about-copy {
    padding-left: 0;
    gap: 1.5rem;
    min-height: 0;
  }

  .about-label {
    font-size: 18px;
    line-height: 26px;
  }

  .about-title {
    font-size: clamp(1.85rem, 5vw, 2.75rem);
  }

  .about-tagline {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    line-height: 1.3;
  }

  .about-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.55;
  }
}

@media (max-width: 575.98px) {
  .about-media img {
    min-height: 220px;
    border-radius: 28px;
  }

  .about-label {
    font-size: 16px;
    line-height: 24px;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .about-tagline {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.85rem;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* --------------------------------------------------------------------------
   Why Choose Us / What Makes Us Different
   -------------------------------------------------------------------------- */
.why-panel {
  background: #f7f0e3;
  border-radius: 65px;
  padding: clamp(1.5rem, 3.5vw, 50px);
}

.why-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 3.25rem);
}

.why-head__text {
  min-width: 0;
  flex: 1 1 auto;
}

/* Figma: Why Choose Us — Poppins 400 24/34, #000 */
.why-eyebrow {
  margin: 0 0 0.15rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
}

/* Figma: What Makes Us Different — Poppins 400 72/82, LS -2%, capitalize, #000 */
.why-title {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
}

@media (min-width: 1200px) {
  .why-panel {
    padding: 50px;
  }

  .why-eyebrow {
    font-size: 24px;
    line-height: 34px;
  }

  .why-title {
    font-size: 72px;
    line-height: 82px;
  }
}

.why-arrow {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8dfd0;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
}

.why-arrow svg {
  width: 26px;
  height: 26px;
}

.why-arrow:hover,
.why-arrow:focus {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.why-card {
  height: 100%;
  background: #fffaf2;
  border-radius: 32px;
  padding: clamp(0.85rem, 1.4vw, 1.15rem);
  display: flex;
  flex-direction: column;
}

.why-card__media {
  position: relative;
  border-radius: 29px;
  overflow: hidden;
  background: #f0ebe3;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
}

.why-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 29px;
}

/* Figma: 01 — Poppins 400 24/34, #000 @ 60% */
.why-card__num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.6;
}

/* Figma: Authentic Quality — Poppins SemiBold 32/34, #000 */
.why-card__title {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.7vw, 32px);
  line-height: 1.15;
  letter-spacing: 0;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

/* Figma: Crafted with premium… — Poppins 400 24/34, #000 @ 60% */
.why-card__text {
  margin: auto 0 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .why-card__title {
    font-size: 32px;
    line-height: 34px;
  }

  .why-card__text {
    font-size: 24px;
    line-height: 34px;
  }

  .why-card__num {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 1199.98px) {
  .why-panel {
    border-radius: 40px;
    padding: 1.75rem 1.5rem;
  }

  .why-arrow {
    width: 56px;
    height: 56px;
  }

  .why-arrow svg {
    width: 22px;
    height: 22px;
  }

  .why-card {
    border-radius: 24px;
    padding: 0.75rem;
  }

  .why-card__title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .why-card__text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 575.98px) {
  .why-panel {
    border-radius: 28px;
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .why-head {
    align-items: flex-start;
  }

  .why-eyebrow {
    font-size: 16px;
    line-height: 24px;
  }

  .why-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .why-arrow {
    width: 44px;
    height: 44px;
  }

  .why-card {
    border-radius: 22px;
    padding: 0.65rem;
  }

  .why-card__media {
    border-radius: 18px;
    margin-bottom: 0.75rem;
  }

  .why-card__media img {
    border-radius: 18px;
  }

  .why-card__num {
    top: 0.55rem;
    right: 0.65rem;
    font-size: 14px;
    line-height: 20px;
  }

  .why-card__title {
    font-size: 15px;
    line-height: 1.2;
  }

  .why-card__text {
    font-size: 13px;
    line-height: 1.35;
  }
}

/* --------------------------------------------------------------------------
   Showcase Section (Figma slider)
   -------------------------------------------------------------------------- */
/* Why → Showcase: tighter 20px gap (mockup) */
#why-us.section-block {
  padding-bottom: 20px;
}

.showcase-section.section-block {
  padding-top: 0;
}

/* Full width — site width (1920px), edge to edge */
.showcase-section > .container-xl {
  max-width: var(--sc-site-width);
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.showcase-panel {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #f7f0e3;
}

/* Soft bottom only — keep original image visible, soften sharp edge into page */
.showcase-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 55%,
    #ffffff 100%
  );
}

.showcase-carousel {
  position: relative;
}

.showcase-carousel .carousel-inner,
.showcase-carousel .carousel-item.active {
  height: auto;
}

.showcase-slide {
  min-height: clamp(480px, 52vw, 820px);
  height: clamp(480px, 52vw, 820px);
  background-color: #f7f0e3;
  background-image: var(--showcase-img);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.showcase-link {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2.5rem);
  right: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 5;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
}

.showcase-link svg {
  width: 26px;
  height: 26px;
}

.showcase-link:hover,
.showcase-link:focus {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.showcase-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 100px);
  bottom: clamp(1.5rem, 4vw, 4rem);
  z-index: 5;
  max-width: min(920px, 62%);
  pointer-events: none;
}

.showcase-eyebrow {
  margin: 0 0 0.35rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
}

.showcase-title {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.75vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
}

.showcase-title span {
  display: block;
}

/* Bottom-right: prev | dots | next — dots baseline-aligned to bottom */
.showcase-nav {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 4vw, 4rem);
  z-index: 5;
  display: flex;
  align-items: flex-end;
  gap: clamp(0.75rem, 1.5vw, 1.35rem);
}

.showcase-control {
  position: static;
  width: auto;
  height: auto;
  opacity: 1;
  background: none;
  border: 0;
  padding: 0;
}

.showcase-control:hover,
.showcase-control:focus {
  opacity: 1;
}

/* Smaller prev/next; inner arrow #000 */
.showcase-nav .hero-control-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #000000;
}

.showcase-nav .hero-control-icon svg {
  width: 16px;
  height: 16px;
}

.showcase-control:hover .hero-control-icon,
.showcase-control:focus .hero-control-icon {
  color: #000000;
}

.showcase-indicators {
  position: static;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end !important;
  gap: 10px;
  width: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
}

@media (min-width: 1400px) {
  .showcase-eyebrow {
    font-size: 24px;
    line-height: 34px;
  }

  .showcase-title {
    font-size: 72px;
    line-height: 82px;
  }

  .showcase-slide {
    min-height: 820px;
    height: 820px;
  }
}

@media (max-width: 991.98px) {
  .showcase-panel {
    border-radius: 0;
  }

  .showcase-link {
    width: 56px;
    height: 56px;
  }

  .showcase-link svg {
    width: 22px;
    height: 22px;
  }

  .showcase-slide {
    min-height: 520px;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .showcase-copy {
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
    bottom: 5.75rem;
  }

  .showcase-nav {
    left: 1.25rem;
    right: 1.25rem;
    justify-content: space-between;
  }

  .showcase-title {
    white-space: normal;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
}

@media (max-width: 575.98px) {
  .showcase-panel {
    border-radius: 0;
  }

  .showcase-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .showcase-eyebrow {
    font-size: 14px;
    line-height: 22px;
  }

  .showcase-link {
    width: 44px;
    height: 44px;
    top: 1rem;
    right: 1rem;
  }

  .showcase-slide {
    min-height: 420px;
    height: auto;
    aspect-ratio: 3 / 4;
    background-position: 70% center;
  }

  .showcase-copy {
    left: 1rem;
    right: 1rem;
    bottom: 5.25rem;
  }

  .showcase-nav {
    left: 1rem;
    right: 1rem;
    bottom: 1.15rem;
    justify-content: space-between;
  }

  .showcase-nav .hero-control-icon {
    width: 36px;
    height: 36px;
  }

  .showcase-nav .hero-control-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* --------------------------------------------------------------------------
   Testimonials / Social Proof (Figma)
   -------------------------------------------------------------------------- */
.testimonial-panel {
  background: #f7f0e3;
  border-radius: 65px;
  padding: clamp(1.5rem, 3.5vw, 100px);
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 3.25rem);
}

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

.testimonial-eyebrow {
  margin: 0 0 0.15rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
}

.testimonial-title {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
}

.testimonial-arrow {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--sc-transition), box-shadow var(--sc-transition);
}

.testimonial-arrow svg {
  width: 26px;
  height: 26px;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus {
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
  margin: 0;
  height: 100%;
}

.testimonial-item__avatar {
  flex-shrink: 0;
  width: clamp(96px, 8vw, 140px);
  height: clamp(96px, 8vw, 140px);
  border-radius: 28px;
  object-fit: cover;
  background: #ffffff;
}

.testimonial-item__body {
  min-width: 0;
  padding-top: 0.15rem;
}

.testimonial-item__name {
  display: block;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.15rem, 1.6vw, 32px);
  line-height: 1.1;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 0.45rem;
}

.testimonial-item__quote {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.6;
}

@media (min-width: 1400px) {
  .testimonial-panel {
    padding: 50px;
  }

  .testimonial-eyebrow {
    font-size: 24px;
    line-height: 34px;
  }

  .testimonial-title {
    font-size: 72px;
    line-height: 82px;
  }

  .testimonial-item__name {
    font-size: 32px;
    line-height: 34px;
  }

  .testimonial-item__quote {
    font-size: 24px;
    line-height: 34px;
  }

  .testimonial-item__avatar {
    width: 140px;
    height: 140px;
    border-radius: 32px;
  }
}

@media (max-width: 991.98px) {
  .testimonial-panel {
    border-radius: 40px;
    padding: 1.75rem 1.5rem;
  }

  .testimonial-arrow {
    width: 56px;
    height: 56px;
  }

  .testimonial-arrow svg {
    width: 22px;
    height: 22px;
  }

  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-item__avatar {
    border-radius: 22px;
  }

  .testimonial-item__body {
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  .testimonial-panel {
    border-radius: 28px;
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .testimonial-head {
    align-items: flex-start;
  }

  .testimonial-eyebrow {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .testimonial-arrow {
    width: 44px;
    height: 44px;
  }

  .testimonial-item__avatar {
    width: 84px;
    height: 84px;
    border-radius: 18px;
  }

  .testimonial-item__name {
    font-size: 20px;
  }

  .testimonial-item__quote {
    font-size: 15px;
    line-height: 1.45;
  }
}

/* --------------------------------------------------------------------------
   Newsletter — Figma layout
   -------------------------------------------------------------------------- */
.newsletter-shell {
  background: #ffffff;
  border-radius: 65px;
  padding: clamp(1.5rem, 3.5vw, 50px);
}

.newsletter-row {
  align-items: stretch;
}

@media (min-width: 992px) {
  .newsletter-row {
    display: grid;
    grid-template-columns: 45% minmax(0, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    --bs-gutter-x: 0;
  }

  .newsletter-row > [class*="col-"] {
    width: 100%;
    max-width: none;
    flex: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.newsletter-brand {
  height: 100%;
}

.newsletter-brand img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 40px;
  background: transparent;
}

.newsletter-col--panel {
  min-width: 0;
}

.newsletter-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: 100%;
  background: #ffffff;
  padding: clamp(0.5rem, 1.5vw, 1rem) 0 clamp(0.5rem, 1.5vw, 1rem) clamp(0.5rem, 2vw, 1.5rem);
}

.newsletter-panel__top {
  flex: 0 0 auto;
  max-width: 40rem;
}

/* Figma: About the Brand — Poppins 400 24/34, #000 */
.newsletter-label {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 0.35rem;
}

/* Figma: Join Our Inner Circle — Poppins 400, LS -2%, capitalize, #000 */
.newsletter-title {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 60px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
  margin: 0 0 0.85rem;
}

@media (min-width: 1200px) {
  .newsletter-title {
    font-size: 60px;
    line-height: 70px;
  }
}

/* Figma: Be the first… — Poppins 400, #000 @ 60% */
.newsletter-text {
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.35vw, 20px);
  line-height: 28px;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.6;
  margin: 0;
  max-width: 34rem;
}

/* Figma form bar — bg #F9F9F9, bottom-aligned */
.newsletter-form {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: auto;
  background: #f9f9f9;
  border-radius: 28px;
  padding: clamp(0.85rem, 1.4vw, 1.15rem) clamp(0.85rem, 1.6vw, 1.35rem);
  box-shadow: none;
  max-width: none;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  border: 0;
  border-bottom: 2px solid rgba(166, 166, 166, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
  padding: 0.45rem 0 0.55rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: #000000;
}

.newsletter-form input::placeholder {
  color: #aaaaaa;
  opacity: 0.6;
}

.newsletter-form input:focus {
  border-bottom-color: rgba(166, 166, 166, 0.55);
}

.newsletter-form__btn {
  flex-shrink: 0;
  border: 0;
  border-radius: var(--sc-radius-pill);
  background: #f0e1c0;
  color: #000000;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  padding: 0.7em 1.55em;
  transition: transform var(--sc-transition), background var(--sc-transition);
}

.newsletter-form__btn:hover,
.newsletter-form__btn:focus {
  background: #f3e4b8;
  transform: translateY(-1px);
  color: #000000;
}

@media (max-width: 991.98px) {
  .newsletter-shell {
    border-radius: 40px;
    padding: 1.75rem 1.5rem;
  }

  .newsletter-brand img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .newsletter-panel {
    gap: 1.75rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .newsletter-shell {
    border-radius: 28px;
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .newsletter-brand img {
    border-radius: 28px;
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }

  .newsletter-label {
    font-size: 18px;
    line-height: 26px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    gap: 1rem;
  }

  .newsletter-form__btn {
    width: 100%;
    text-align: center;
  }

  .newsletter-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .newsletter-text {
    font-size: 15px;
    line-height: 1.45;
  }
}

/* Contact Form 7 — match native newsletter bar */
.newsletter-form-wrap {
  margin-top: auto;
  width: 100%;
}

.newsletter-form-wrap .wpcf7 {
  margin: 0;
  width: 100%;
}

.newsletter-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin: 0;
  background: #f9f9f9;
  border-radius: 28px;
  padding: clamp(0.85rem, 1.4vw, 1.15rem) clamp(0.85rem, 1.6vw, 1.35rem);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.newsletter-form-wrap .wpcf7-form > .hidden-fields-container,
.newsletter-form-wrap .wpcf7-form > fieldset.hidden-fields-container {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}

/* Email grows; Subscribe stays fixed size */
.newsletter-form-wrap .newsletter-cf7-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
  width: 100%;
  min-width: 0;
}

.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
  row-gap: 0.5rem;
}

.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) > p:has(.wpcf7-email),
.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) > p:has(input[type="email"]),
.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) > p:has(.wpcf7-form-control-wrap):not(:has(.wpcf7-submit)) {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  width: 100%;
}

.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) > p:has(.wpcf7-submit) {
  grid-column: 2;
  grid-row: 1;
}

.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) > p:has(.wpcf7-submit):has(.wpcf7-form-control-wrap) {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: clamp(0.75rem, 1.5vw, 1.25rem);
  width: 100%;
  min-width: 0;
}

.newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) > .wpcf7-response-output {
  grid-column: 1 / -1;
}

.newsletter-form-wrap .wpcf7-form br {
  display: none;
}

.newsletter-form-wrap .newsletter-cf7-row > p,
.newsletter-form-wrap .wpcf7-form > p {
  display: flex;
  align-items: center;
  margin: 0;
  min-width: 0;
}

.newsletter-form-wrap .newsletter-cf7-row > p:not(:has(.wpcf7-submit)),
.newsletter-form-wrap .wpcf7-form > p:not(:has(.wpcf7-submit)) {
  flex: 1 1 0%;
  width: auto;
  min-width: 0;
  max-width: none;
}

.newsletter-form-wrap .newsletter-cf7-row > p:has(.wpcf7-submit),
.newsletter-form-wrap .wpcf7-form > p:has(.wpcf7-submit) {
  flex: 0 0 auto;
  position: relative;
}

.newsletter-form-wrap .newsletter-cf7-row > p:has(.wpcf7-submit):has(.wpcf7-form-control-wrap),
.newsletter-form-wrap .wpcf7-form > p:has(.wpcf7-submit):has(.wpcf7-form-control-wrap) {
  flex: 1 1 0%;
  width: 100%;
  min-width: 0;
}

.newsletter-form-wrap .wpcf7-form label {
  display: block;
  flex: 1 1 0%;
  width: 100%;
  min-width: 0;
  margin: 0;
  font-weight: inherit;
  color: inherit;
}

.newsletter-form-wrap .wpcf7-form-control-wrap,
.newsletter-form-wrap span.wpcf7-form-control-wrap {
  position: relative;
  display: block !important;
  flex: 1 1 0%;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  box-sizing: border-box;
}

.newsletter-form-wrap input.wpcf7-email,
.newsletter-form-wrap input.wpcf7-text,
.newsletter-form-wrap input.wpcf7-form-control,
.newsletter-form-wrap input[type="email"],
.newsletter-form-wrap input[type="text"] {
  display: block;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  border: 0;
  border-bottom: 2px solid rgba(166, 166, 166, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
  padding: 0.45rem 0 0.55rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: #000000;
  box-shadow: none;
}

.newsletter-form-wrap input.wpcf7-email::placeholder,
.newsletter-form-wrap input.wpcf7-text::placeholder,
.newsletter-form-wrap input[type="email"]::placeholder,
.newsletter-form-wrap input[type="text"]::placeholder {
  color: #aaaaaa;
  opacity: 0.6;
}

.newsletter-form-wrap input.wpcf7-email:focus,
.newsletter-form-wrap input.wpcf7-text:focus,
.newsletter-form-wrap input[type="email"]:focus,
.newsletter-form-wrap input[type="text"]:focus {
  border-bottom-color: rgba(166, 166, 166, 0.55);
  outline: 0;
  box-shadow: none;
}

.newsletter-form-wrap input.wpcf7-submit,
.newsletter-form-wrap .wpcf7-submit {
  flex: 0 0 auto;
  align-self: center;
  border: 0;
  border-radius: var(--sc-radius-pill);
  background: #f0e1c0;
  color: #000000;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  padding: 0.7em 1.55em;
  transition: transform var(--sc-transition), background var(--sc-transition);
  cursor: pointer;
  width: auto !important;
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.newsletter-form-wrap input.wpcf7-submit:hover,
.newsletter-form-wrap input.wpcf7-submit:focus,
.newsletter-form-wrap .wpcf7-submit:hover,
.newsletter-form-wrap .wpcf7-submit:focus {
  background: #f3e4b8;
  transform: translateY(-1px);
  color: #000000;
}

.newsletter-form-wrap .wpcf7-spinner {
  /* CF7 spinner is visibility:hidden but still 24px wide — that shoves the button left after CSS loads */
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none;
  flex: none !important;
}

.newsletter-form-wrap .wpcf7-form.submitting .wpcf7-spinner,
.newsletter-form-wrap form.submitting .wpcf7-spinner {
  position: absolute !important;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px !important;
  height: 24px !important;
  opacity: 0.75 !important;
  overflow: visible !important;
}

.newsletter-form-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 0.2rem);
  z-index: 2;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #b42318;
  margin: 0;
  white-space: normal;
}

.newsletter-form-wrap .wpcf7-form:has(.wpcf7-not-valid-tip) {
  margin-bottom: 1.35rem;
}

.newsletter-form-wrap .wpcf7-response-output {
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  font-size: 0.9rem;
  border: 0;
  box-sizing: border-box;
}

.newsletter-form-wrap .wpcf7-response-output:empty,
.newsletter-form-wrap .wpcf7-response-output[style*="display: none"] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  height: 0 !important;
  overflow: hidden;
}

.newsletter-form-wrap .wpcf7 form.sent .wpcf7-response-output {
  display: block !important;
  height: auto !important;
  background: rgba(46, 125, 50, 0.1);
  color: #1b5e20;
}

.newsletter-form-wrap .wpcf7 form.failed .wpcf7-response-output,
.newsletter-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.newsletter-form-wrap .wpcf7 form.spam .wpcf7-response-output {
  display: block !important;
  height: auto !important;
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}

@media (max-width: 991.98px) {
  .newsletter-form-wrap .wpcf7-form:not(:has(> .newsletter-cf7-row)) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form-wrap .newsletter-cf7-row {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form-wrap .newsletter-cf7-row > p,
  .newsletter-form-wrap .wpcf7-form > p,
  .newsletter-form-wrap .wpcf7-form label,
  .newsletter-form-wrap .wpcf7-form-control-wrap {
    width: 100% !important;
    flex: 1 1 auto;
  }

  .newsletter-form-wrap input.wpcf7-submit,
  .newsletter-form-wrap .wpcf7-submit {
    width: 100% !important;
    text-align: center;
    white-space: normal;
  }

  .newsletter-form-wrap .wpcf7-not-valid-tip {
    position: static;
    margin-top: 0.35rem;
  }

  .newsletter-form-wrap .wpcf7-form:has(.wpcf7-not-valid-tip) {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .newsletter-form-wrap .wpcf7-form {
    border-radius: 22px;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   FAQ (Figma)
   -------------------------------------------------------------------------- */
.faq-panel {
  background: #f7f0e3;
  border-radius: 65px;
  padding: clamp(1.5rem, 3.5vw, 50px);
}

.faq-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
}

.faq-eyebrow {
  margin: 0 0 0.2rem;
  font-family: "Wix Madefor Text", "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
}

.faq-title {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #000000;
}

.faq-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: relative;
  padding-bottom: 0.15rem;
}

/* Figma border: 2px #D2AC4C gradient, transparent → solid → transparent */
.faq-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.15rem;
  background: linear-gradient(
    90deg,
    rgba(210, 172, 76, 0) 0%,
    #d2ac4c 50%,
    rgba(210, 172, 76, 0) 100%
  );
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-question {
  position: relative;
  background: transparent !important;
  box-shadow: none !important;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 32px);
  line-height: 1.15;
  letter-spacing: 0;
  color: #000000;
  padding: 1.35rem 3rem 1.35rem 0;
  gap: 1rem;
}

.faq-question:focus {
  box-shadow: none !important;
  border-color: transparent;
}

.faq-question:not(.collapsed) {
  color: #d2ac4c;
  padding-bottom: 0.65rem;
}

.faq-question::after {
  position: absolute;
  right: 0;
  top: 1.35rem;
  width: 24px;
  height: 24px;
  margin: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  transform: none;
  transition: none;
  flex-shrink: 0;
}

.faq-question:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 6l12 12M18 6L6 18' stroke='%23D2AC4C' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: none;
}

.faq-answer {
  padding: 0 3rem 1.35rem 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 24px);
  line-height: 1.42;
  letter-spacing: 0;
  color: #000000;
  opacity: 0.6;
}

@media (min-width: 1400px) {
  .faq-eyebrow {
    font-size: 24px;
    line-height: 34px;
  }

  .faq-title {
    font-size: 72px;
    line-height: 82px;
  }

  .faq-question {
    font-size: 32px;
    line-height: 50px;
  }

  .faq-answer {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 991.98px) {
  .faq-panel {
    border-radius: 40px;
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .faq-panel {
    border-radius: 28px;
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .faq-eyebrow {
    font-size: 16px;
    line-height: 24px;
  }

  .faq-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .faq-question {
    font-size: 18px;
    padding-right: 2.25rem;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 1.45;
    padding-right: 0.5rem;
  }

  .faq-question::after {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    top: 1.4rem;
  }
}

/* --------------------------------------------------------------------------
   Footer — Figma
   -------------------------------------------------------------------------- */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  margin-top: calc(var(--sc-section-gap) / 2);
  flex-shrink: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffffff;
  opacity: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  row-gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

/* Left ~50%: logo col + tagline col, then leftover empty space */
.footer-brand-area {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: clamp(0.85rem, 1.5vw, 1.35rem);
  align-items: center;
  min-width: 0;
}

/* Right ~50%: nav columns start after the half-width space */
.footer-nav-area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.25rem, 2.5vw, 2.75rem);
  align-items: start;
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo {
  width: 88px;
  height: auto;
}

.footer-logo-link .logo-wordmark {
  color: var(--sc-gold);
}

/* Remaining text — Poppins 400 24/34 */
.footer-tagline {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: #ffffff;
  opacity: 0.6;
}

/* Column headings + Let’s Connect — Wix Madefor Text SemiBold 24/34, white */
.footer-heading,
.footer-heading--connect {
  margin: 0 0 1.1rem;
  font-family: "Wix Madefor Text", "Poppins", var(--bs-font-sans-serif);
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
}

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

.footer-menu li {
  margin: 0;
}

/* Nav links — Wix Madefor Text 400 24/44, white @ 60% */
.footer-menu a {
  display: inline-block;
  font-family: "Wix Madefor Text", "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 24px);
  line-height: 44px;
  letter-spacing: 0;
  color: #ffffff;
  opacity: 0.6;
  transition: opacity var(--sc-transition);
}

.footer-menu a:hover,
.footer-menu a:focus {
  opacity: 1;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  opacity: 1;
  transition: transform var(--sc-transition), opacity var(--sc-transition);
}

.footer-social a:hover,
.footer-social a:focus {
  transform: translateY(-2px);
  opacity: 0.85;
}

.footer-social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.site-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  gap: 1rem clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.25rem;
}

/* Copyright — Poppins 400 24/34, white @ 60% */
.site-info__copy {
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Bottom legal — Poppins 400 24/34, white @ 60%; right-aligned with Let’s Connect */
.site-info__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.65rem;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 24px);
  line-height: 34px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
  min-width: 0;
}

@media (min-width: 1200px) {
  .site-info__links {
    margin-right: 50px;
  }
}

.site-info__links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--sc-transition);
}

.site-info__links a:hover,
.site-info__links a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.site-info__sep {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1199.98px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand-area {
    grid-template-columns: auto auto;
  }

  .footer-nav-area {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-info {
    grid-template-columns: 1fr;
  }

  .site-info__links {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand-area {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-nav-area {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .footer-logo {
    width: 64px;
  }

  .footer-tagline {
    font-size: 18px;
    line-height: 28px;
  }

  .footer-heading,
  .footer-heading--connect,
  .footer-menu a {
    font-size: 18px;
  }

  .footer-menu a {
    line-height: 36px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .site-footer {
    padding: 2rem 0 1.25rem;
  }

  .site-info {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-info__links {
    justify-content: flex-start;
  }

  .site-info__copy,
  .site-info__links {
    font-size: 14px;
    line-height: 24px;
  }
}

/* --------------------------------------------------------------------------
   Shop page
   -------------------------------------------------------------------------- */
body.shop {
  background: #ffffff;
}

/* Same top bar as homepage, on white */
.shop-header-wrap {
  position: relative;
  background: #ffffff;
}

.shop-header-wrap .site-header--overlay {
  position: relative;
  inset: auto;
}

.shop-header-wrap .custom-logo {
  filter: none;
}

.shop-header-wrap .primary-menu-bar,
.shop-header-wrap .header-search,
.shop-header-wrap .header-icons {
  background: #e4dfd733;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.shop-header-wrap .primary-menu .nav-link {
  color: #000000;
}

.shop-header-wrap .primary-menu .nav-link:hover,
.shop-header-wrap .primary-menu .nav-link:focus,
.shop-header-wrap .primary-menu .nav-link.active {
  color: #000000;
  background: #d2ac4c;
}

.shop-header-wrap .header-search input,
.shop-header-wrap .header-search input::placeholder,
.shop-header-wrap .header-search__btn,
.shop-header-wrap .header-icons__btn {
  color: #000000;
}

.shop-header-wrap .header-search input::placeholder {
  opacity: 0.55;
}

.shop-header-wrap .header-icons__btn:hover,
.shop-header-wrap .header-icons__btn--user {
  color: #ffffff;
}

.shop-header-wrap .navbar-toggler {
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: 0.5rem;
  border: 0;
  border-radius: 50%;
  background: #e4dfd733;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.shop-header-wrap .navbar-toggler:hover,
.shop-header-wrap .navbar-toggler:focus {
  background: #efd59c;
  box-shadow: none;
}

.shop-header-wrap .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(239, 213, 156, 0.45);
}

.shop-header-wrap .navbar-toggler-icon {
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,26,26,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 1199.98px) {
  .shop-header-wrap .navbar-collapse {
    background: #f7f0e3;
    border-radius: 24px;
    margin-top: 1rem;
    padding: 1rem;
  }
}

.shop-main {
  padding-top: 1.25rem;
  padding-bottom: 0;
}

.shop-section {
  padding-bottom: var(--sc-section-gap);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
  padding-left: clamp(0.25rem, 1vw, 0.75rem);
  padding-right: clamp(0.25rem, 1vw, 0.75rem);
}

.shop-count {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.shop-count__label {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: #8a8a8a;
}

.shop-count__meta {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: #b0b0b0;
}

.shop-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.shop-cat {
  border: 0;
  border-radius: var(--sc-radius-pill);
  background: #f2f2f2;
  color: #7a7a7a;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  line-height: 1.3;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  transition: background var(--sc-transition), color var(--sc-transition);
}

.shop-cat:hover,
.shop-cat:focus {
  background: #ead9c0;
  color: #2b2b2b;
}

.shop-cat.is-active {
  background: #ead9c0;
  color: #2b2b2b;
}

.shop-panel {
  background: #f8f3eb;
  border-radius: 65px;
  padding: clamp(1.5rem, 3.5vw, 4rem);
  overflow-x: clip;
}

.shop-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.shop-controls__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.shop-controls__group--sort {
  align-items: flex-end;
  margin-left: auto;
}

.shop-filter-btn,
.shop-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  border-radius: var(--sc-radius-pill);
  background: #ffffff;
  color: #2b2b2b;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.3;
  padding: 0.7rem 1.25rem;
  box-shadow: none;
}

.shop-sort-btn {
  background: #ead9c0;
}

.shop-filter-btn:hover,
.shop-filter-btn:focus {
  background: #ffffff;
  color: #2b2b2b;
}

.shop-sort-btn:hover,
.shop-sort-btn:focus {
  background: #e0cdb0;
  color: #2b2b2b;
}

.shop-filter-btn::after,
.shop-sort-btn::after {
  margin-left: 0.35rem;
  vertical-align: 0.15em;
}

.shop-dropdown {
  border: 0;
  border-radius: 16px;
  padding: 0.4rem;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.1);
  background: #ffffff;
}

.shop-dropdown .dropdown-item {
  border-radius: 10px;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
}

.shop-dropdown .dropdown-item:hover,
.shop-dropdown .dropdown-item:focus {
  background: #f8f3eb;
  color: #2b2b2b;
}

.shop-active-filters,
.shop-active-sort {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.shop-controls__group--sort .shop-active-sort {
  justify-content: flex-end;
}

.shop-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--sc-radius-pill);
  background: #ead9c0;
  color: #4a4a4a;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-size: 0.85rem;
  line-height: 1.3;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
}

.shop-tag--sort {
  background: rgba(160, 160, 160, 0.28);
  color: #7a7a7a;
}

.shop-tag__remove {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0;
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
}

.shop-tag__remove:hover,
.shop-tag__remove:focus {
  opacity: 1;
  color: inherit;
}

.shop-grid {
  margin-bottom: 0;
}

.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Faded row divider after every 4 visible products (large screens only)
   .shop-product--row-end is assigned by JS so filtering keeps borders correct
*/
@media (min-width: 992px) {
  .shop-grid > .shop-product:not(.is-hidden) {
    padding-bottom: 5rem;
  }

  .shop-grid > .shop-product.shop-product--row-end:not(.is-hidden) {
    position: relative;
  }

  .shop-grid > .shop-product.shop-product--row-end:not(.is-hidden)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2.5rem;
    height: 2px;
    width: calc(400% + 3 * var(--bs-gutter-x));
    margin-left: calc(-300% - 3 * var(--bs-gutter-x));
    background: linear-gradient(
      90deg,
      rgba(241, 228, 196, 0) 0%,
      #f1e4c4 50%,
      rgba(241, 228, 196, 0) 100%
    );
    pointer-events: none;
  }
}

.shop-product.is-hidden {
  display: none !important;
}

.shop-empty {
  margin: 2rem 0 1rem;
  text-align: center;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-size: 1rem;
  color: #919191;
}

.shop-grid .feature-product {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

/* Same image box as homepage Featured Collection */
.shop-grid .feature-product__media {
  position: relative;
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1 / 1.12;
  max-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}

.shop-grid .feature-product__media::before {
  content: none;
  display: none;
}

.shop-grid .feature-product__media img {
  position: static;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 0.45s ease;
}

.shop-grid .feature-product:hover .feature-product__media img {
  transform: scale(1.03);
}

.shop-grid .feature-product__badge--karat,
.shop-grid .feature-product__badge--rating {
  bottom: clamp(0.75rem, 1.4vw, 1.35rem);
}

.shop-grid .feature-product__body {
  padding-top: 1.25rem;
  background: transparent;
  flex: 1;
}

.shop-grid .feature-product__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.15em * 2);
  margin-bottom: 0.5rem;
}

.shop-grid .feature-product__desc {
  max-width: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.42em * 2);
  margin: 0 0 1.25rem;
}

/* Price row */
.shop-grid .feature-product__footer {
  margin-top: auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

/* Plus — same circular style as homepage featured */
.shop-grid .feature-product__add {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
  box-shadow: none;
}

.shop-grid .feature-product__add:hover,
.shop-grid .feature-product__add:focus {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.feature-product__badge--rating {
  top: auto;
  bottom: clamp(0.75rem, 1.4vw, 1.35rem);
  left: auto;
  right: clamp(0.75rem, 1.4vw, 1.35rem);
  background: #e8d4a3;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.feature-product__badge--rating .bi {
  font-size: 0.85em;
  color: #d2ac4c;
}

.feature-product__badge--rating .feature-product__rating-score {
  color: #000000;
}

.feature-product__badge--rating .feature-product__rating-count {
  color: rgba(0, 0, 0, 0.45);
}

.shop-page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f6f6f6;
  color: #919191;
  font-family: "Poppins", var(--bs-font-sans-serif);
  font-weight: 400;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--sc-transition), color var(--sc-transition);
}

.shop-page:hover,
.shop-page:focus,
.shop-page.is-active {
  background: #efd59c;
  color: #000000;
}

.shop-page--ellipsis {
  background: transparent;
  color: #919191;
  pointer-events: none;
  width: auto;
  min-width: 28px;
  padding: 0 0.2rem;
}

@media (min-width: 1400px) {
  .shop-panel {
    padding: 50px;
  }
}

@media (max-width: 991.98px) {
  .shop-panel {
    border-radius: 40px;
    overflow-x: clip;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-count {
    white-space: normal;
  }

  .shop-cats {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .shop-grid .feature-product__media {
    border-radius: 28px;
  }

  .shop-grid .feature-product__badge {
    font-size: 0.72rem;
    padding: 0.28em 0.65em;
  }

  .shop-grid .feature-product__badge--top,
  .shop-grid .feature-product__badge--high {
    top: 0.55rem;
  }

  .shop-grid .feature-product__badge--top {
    left: 0.55rem;
  }

  .shop-grid .feature-product__badge--high {
    right: 0.55rem;
  }

  .shop-grid .feature-product__badge--karat,
  .shop-grid .feature-product__badge--rating {
    bottom: 0.55rem;
  }

  .shop-grid .feature-product__badge--karat {
    left: 0.55rem;
  }

  .shop-grid .feature-product__badge--rating {
    right: 0.55rem;
  }

  .shop-grid .feature-product__add {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .shop-panel {
    border-radius: 28px;
    padding: 1.25rem 1rem 1.5rem;
  }

  .shop-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-controls__group,
  .shop-controls__group--filter,
  .shop-controls__group--sort {
    width: 100%;
    align-items: stretch;
    margin-left: 0;
  }

  .shop-controls__group--sort .shop-active-sort {
    justify-content: flex-start;
  }

  .shop-controls__group .dropdown,
  .shop-sort {
    width: 100%;
  }

  .shop-filter-btn,
  .shop-sort-btn {
    width: 100%;
    justify-content: space-between;
  }

  .shop-filter-btn {
    width: 100%;
    justify-content: space-between;
  }

  /* Keep shop cards left-aligned (override featured mobile centering) */
  .shop-grid .feature-product__body {
    text-align: left;
    align-items: stretch;
    padding: 0.75rem 0.05rem 0;
  }

  .shop-grid .feature-product__footer {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.4rem;
    margin-top: 0;
  }

  .shop-grid .feature-product__media {
    border-radius: 20px;
  }

  .shop-grid .feature-product__badge {
    font-size: 0.62rem;
    padding: 0.22em 0.5em;
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shop-grid .feature-product__badge--top,
  .shop-grid .feature-product__badge--high {
    top: 0.4rem;
  }

  .shop-grid .feature-product__badge--top {
    left: 0.4rem;
  }

  .shop-grid .feature-product__badge--high {
    right: 0.4rem;
  }

  .shop-grid .feature-product__badge--karat,
  .shop-grid .feature-product__badge--rating {
    bottom: 0.4rem;
  }

  .shop-grid .feature-product__badge--karat {
    left: 0.4rem;
  }

  .shop-grid .feature-product__badge--rating {
    right: 0.4rem;
  }

  .shop-grid .feature-product__name {
    font-size: 0.92rem;
    line-height: 1.2;
    min-height: calc(1.2em * 2);
    margin-bottom: 0.35rem;
  }

  .shop-grid .feature-product__desc {
    font-size: 0.75rem;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
    margin-bottom: 0.75rem;
  }

  .shop-grid .feature-product__price {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .shop-grid .feature-product__add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
  }

  .shop-page {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .shop-pagination {
    gap: 0.35rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
  }
}

/* ==========================================================================
   Product detail + WP content panels
   ========================================================================== */

.feature-product__link-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
}

.feature-product__name a {
  color: inherit;
  text-decoration: none;
}

.header-icons__btn {
  position: relative;
}

.sc-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--sc-gold);
  color: #111;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.content-panel,
.page-panel {
  background: var(--sc-panel);
  border-radius: 40px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}

.content-panel .entry-title,
.page-panel .entry-title {
  font-family: var(--sc-font-serif);
  margin-bottom: 1.25rem;
}

.product-detail-section {
  padding-top: 1.5rem;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--sc-text-muted);
}

.product-breadcrumb a:hover {
  color: var(--sc-gold-dark);
}

.product-detail-panel {
  background: var(--sc-panel);
  border-radius: 48px;
  padding: 2rem 1.75rem 2.5rem;
  margin-bottom: 2.5rem;
}

.product-gallery__main {
  position: relative;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__main img,
.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--sc-gold);
}

.product-summary__cats {
  color: var(--sc-gold-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.product-summary__title {
  font-family: var(--sc-font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-summary__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--sc-gold-dark);
}

.product-summary__rating-count {
  color: var(--sc-text-muted);
}

.product-summary__price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--sc-charcoal);
}

.product-summary__excerpt {
  color: var(--sc-text-muted);
  margin-bottom: 1.5rem;
}

.product-summary__cart .quantity {
  margin-right: 0.75rem;
}

.product-summary__cart .single_add_to_cart_button,
.product-summary__cart button.button {
  background: var(--sc-gold);
  border: none;
  color: #111;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  transition: background var(--sc-transition), transform var(--sc-transition);
}

.product-summary__cart .single_add_to_cart_button:hover,
.product-summary__cart button.button:hover {
  background: var(--sc-gold-light);
}

.product-summary__cart .cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-summary__cart .quantity input {
  width: 72px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--sc-border);
  text-align: center;
}

.product-summary__meta,
.product-summary__attrs ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.product-summary__meta li,
.product-summary__attrs li {
  margin-bottom: 0.4rem;
  color: var(--sc-text-muted);
}

.product-summary__attrs-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.product-description-panel {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--sc-border);
}

.product-description-panel__title {
  font-family: var(--sc-font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.related-products-panel {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.shop-cat {
  text-decoration: none;
}

.shop-tag a.shop-tag__remove {
  color: inherit;
  text-decoration: none;
  margin-right: 0.25rem;
}

@media (min-width: 992px) {
  .product-detail-panel {
    padding: 2.75rem 2.5rem 3rem;
  }
}
