/* ─── Cozy Linens Public Stylesheet (Exact React Original Port) ─────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ─── CSS Custom Properties ──────────────────────────────────────────────── */
:root {
  --pink: #f8dce4;
  --rose: #efc8d4;
  --cream: #fffaf8;
  --warmgray: #d7d0cc;
  --dark: #2f2f2f;
  --black: #111111;
  --green-wa: #25D366;
  --green-wa2: #1fb85a;
  --primary: #b56e85;
}

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

body {
  margin: 0;
  background-color: var(--pink);
  color: var(--dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h4,
h5,
h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* ─── Layout helpers ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
}

/* ─── Glassmorphism ──────────────────────────────────────────────────────── */
.glass {
  background: rgba(255, 250, 248, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(239, 200, 212, 0.55);
  border-radius: 1.5rem;
}

.glass-nav {
  background: rgba(248, 222, 228, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 200, 212, 0.45);
}

/* ── cl-header ────────────────────────────────────────────────────────────── */
.cl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.cl-header--scrolled {
  background: rgba(248, 222, 228, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 200, 212, 0.4);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(180, 110, 133, 0.10);
}

.cl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.cl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.cl-logo__img {
  height: 80px;
  /* Much larger logo */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop nav */
.cl-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cl-nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47, 47, 47, 0.65);
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 2px;
}

.cl-nav__link:hover {
  color: var(--black);
}

.cl-nav__link--active {
  color: var(--black);
  border-bottom: 2px solid var(--rose);
}

/* Desktop CTAs */
.cl-header__ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cl-header__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1.5px solid var(--rose);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.cl-header__call:hover {
  background: rgba(239, 200, 212, 0.35);
}

.cl-header__call--full {
  width: 100%;
  justify-content: center;
}

/* Hamburger */
.cl-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s;
}

.cl-hamburger:hover {
  background: rgba(239, 200, 212, 0.40);
}

/* Mobile drawer */
.cl-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.30);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.4s;
}

.cl-drawer-overlay--open {
  display: block;
  opacity: 1;
}

.cl-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 88vw);
  background: var(--cream);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.cl-drawer--open {
  transform: translateX(0);
}

.cl-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(239, 200, 212, 0.35);
}

.cl-drawer__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.cl-drawer__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cl-drawer__close:hover {
  background: rgba(239, 200, 212, 0.40);
}

.cl-drawer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px;
  overflow-y: auto;
}

.cl-drawer__link {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s;
}

.cl-drawer__link:hover {
  background: rgba(248, 220, 228, 0.60);
}

.cl-drawer__link--active {
  background: var(--pink);
  color: var(--black);
  font-weight: 600;
}

.cl-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(239, 200, 212, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1024px) {

  .cl-nav,
  .cl-header__ctas {
    display: none;
  }

  .cl-hamburger {
    display: flex;
  }
}

/* ─── Button base ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-dark {
  background: var(--black);
  color: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.18);
}

.btn-dark:hover {
  background: var(--dark);
}

.btn-wa {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: var(--green-wa2);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

/* ─── Section heading pattern ────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b56e85;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}

.section-sub {
  color: rgba(47, 47, 47, 0.65);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--rose), transparent);
  margin-top: 20px;
}

/* ─── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 3px;
}

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 220, 228, 0.92) 0%, rgba(255, 250, 248, 0.75) 50%, rgba(255, 250, 248, 0.4) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  opacity: 1;
  /* Keep visible by default in build-free */
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(239, 200, 212, 0.45);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(47, 47, 47, 0.75);
  width: fit-content;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.08;
}

.hero__title-em {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #c07090;
  letter-spacing: 0.01em;
}

.section-title-em {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__desc {
  font-size: 17px;
  color: rgba(47, 47, 47, 0.68);
  line-height: 1.72;
  max-width: 520px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stat {
  padding: 10px 20px;
  text-align: center;
  min-width: 80px;
}

.hero__stat-val {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 14px;
  color: rgba(47, 47, 47, 0.55);
  margin-top: 3px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 72px;
  }

  .hero__desc {
    font-size: 15px;
  }

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

  .hero__ctas .btn {
    justify-content: center;
  }
}

/* ─── About Preview Section ─────────────────────────────────────────────── */
.about {
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  opacity: 1;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(180, 110, 133, 0.15);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #f0c8d8, #f8dce4);
  margin: 0 auto;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__img-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(160deg, #f0c8d8, #f8dce4);
}

.about__img-placeholder span {
  font-size: 56px;
}

.about__img-placeholder p {
  font-size: 14px;
  color: rgba(47, 47, 47, 0.55);
}

.about__img-placeholder code {
  font-family: monospace;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.60);
  padding: 4px 12px;
  border-radius: 6px;
  color: #b56e85;
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__para {
  font-size: 16px;
  color: rgba(47, 47, 47, 0.68);
  line-height: 1.75;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(47, 47, 47, 0.70);
}

.about__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 6px;
  flex-shrink: 0;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--rose);
  padding-bottom: 2px;
  width: fit-content;
  transition: gap 0.3s;
}

.about__cta:hover {
  gap: 14px;
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__img-wrap {
    max-width: 360px;
    aspect-ratio: 4/3;
  }

  .about__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}

/* ─── Products Section ──────────────────────────────────────────────────── */
.products {
  background: linear-gradient(180deg, var(--pink) 0%, var(--cream) 50%, var(--pink) 100%);
}

.products__heading {
  text-align: center;
  margin-bottom: 56px;
  opacity: 1;
}

.products__heading .section-sub {
  margin: 0 auto;
}

.products__heading .divider {
  margin: 20px auto 0;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 250, 248, 0.82);
  border: 1px solid rgba(239, 200, 212, 0.50);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(180, 110, 133, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
  opacity: 1;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(180, 110, 133, 0.18);
}

.prod-card__visual {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, var(--pink), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.80);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(47, 47, 47, 0.65);
}

.prod-card__icon {
  font-size: 52px;
  transition: transform 0.4s;
}

.prod-card:hover .prod-card__icon {
  transform: scale(1.1);
}

.prod-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.prod-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.prod-card__desc {
  font-size: 14px;
  color: rgba(47, 47, 47, 0.62);
  line-height: 1.65;
  flex: 1;
}

.prod-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.prod-card__wa {
  flex: 1;
  justify-content: center;
  padding: 8px 14px;
  font-size: 12px;
}

.prod-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
  white-space: nowrap;
}

.prod-card__link:hover {
  color: #b56e85;
}

.products__footer {
  text-align: center;
  margin-top: 48px;
}

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

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: 1fr;
  }

  .prod-card__visual {
    height: 130px;
  }
}

/* ─── Why Choose Us Section ─────────────────────────────────────────────── */
.usp {
  background: var(--cream);
}

.usp__heading {
  text-align: center;
  margin-bottom: 56px;
  opacity: 1;
}

.usp__heading .section-sub {
  margin: 0 auto;
}

.usp__heading .divider {
  margin: 20px auto 0;
}

.usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usp-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s, transform 0.4s;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(180, 110, 133, 0.16);
}

.usp-card__icon {
  font-size: 34px;
  line-height: 1;
  transition: transform 0.3s;
}

.usp-card:hover .usp-card__icon {
  transform: scale(1.12);
}

.usp-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.usp-card__desc {
  font-size: 14px;
  color: rgba(47, 47, 47, 0.63);
  line-height: 1.68;
}

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

@media (max-width: 560px) {
  .usp__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Client Ticker Marquee ─────────────────────────────────────────────── */
.clients {
  background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
  overflow: hidden;
}

.clients__heading {
  margin-bottom: 40px;
  opacity: 1;
}

.clients__track-wrap {
  position: relative;
  overflow: hidden;
}

.clients__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients__fade--left {
  left: 0;
  background: linear-gradient(to right, rgba(248, 220, 228, 1), transparent);
}

.clients__fade--right {
  right: 0;
  background: linear-gradient(to left, rgba(239, 200, 212, 0.8), transparent);
}

.clients__track-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.clients__track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.clients__track--left {
  animation: marquee-left 160s linear infinite;
}

.clients__track--right {
  animation: marquee-right 160s linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.client-img-wrap {
  width: 140px;
  height: 80px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  padding: 16px;
}

.client-img-wrap:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.client-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-img-placeholder {
  display: flex;
  font-family: monospace;
  font-size: 11px;
  color: #b56e85;
  text-align: center;
  word-break: break-all;
}

/* ─── Testimonials Section ──────────────────────────────────────────────── */
.testimonials {
  background: var(--cream);
}

.testimonials__heading {
  text-align: center;
  margin-bottom: 56px;
  opacity: 1;
}

.testimonials__heading .divider {
  margin: 20px auto 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.t-card {
  position: relative;
  padding: 40px;
  overflow: hidden;
}

.t-card__quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(239, 200, 212, 0.35);
  pointer-events: none;
  user-select: none;
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.t-card__text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 28px;
  quotes: none;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.t-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.t-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.t-card__role {
  font-size: 12px;
  color: rgba(47, 47, 47, 0.55);
  margin-top: 2px;
}

.t-card__loc {
  font-size: 12px;
  color: #b56e85;
  margin-top: 1px;
}

.t-card__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-card__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s;
}

.t-card__arrow:hover {
  background: rgba(239, 200, 212, 0.40);
}

.t-card__dots {
  display: flex;
  gap: 8px;
  margin-left: 4px;
}

.t-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: var(--warmgray);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.t-card__dot--active {
  width: 20px;
  background: var(--rose);
}

.t-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t-rating {
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.t-rating__score {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.t-rating__label {
  font-size: 12px;
  color: rgba(47, 47, 47, 0.50);
}

.t-qr {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.t-qr__title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
}

.t-qr__sub {
  font-size: 13px;
  color: rgba(47, 47, 47, 0.55);
  line-height: 1.6;
}

.t-qr__box {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--warmgray));
  border: 2px solid rgba(239, 200, 212, 0.50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 30px;
}

.t-qr__box p {
  font-size: 11px;
  color: rgba(47, 47, 47, 0.50);
  margin: 0;
}

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

  .t-sidebar {
    flex-direction: row;
    gap: 16px;
  }

  .t-rating,
  .t-qr {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .t-sidebar {
    flex-direction: column;
  }

  .t-card {
    padding: 28px 20px;
  }
}

/* ─── QR Code Section ───────────────────────────────────────────────────── */
.qr {
  background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
}

.qr__heading {
  margin-bottom: 56px;
  opacity: 1;
}

.qr__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.qr-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(180, 110, 133, 0.20);
}

.qr-card__icon {
  font-size: 40px;
  line-height: 1;
}

.qr-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.qr-card__desc {
  font-size: 14px;
  color: rgba(47, 47, 47, 0.60);
  line-height: 1.65;
}

.qr-card__box {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, var(--warmgray));
  border: 2px solid rgba(239, 200, 212, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 32px;
  margin: 4px 0;
}

.qr-card__box p {
  font-size: 11px;
  color: rgba(47, 47, 47, 0.50);
  margin: 0;
}

.qr-card__box small {
  font-size: 9px;
  color: rgba(47, 47, 47, 0.35);
}

.qr-card__bank {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(239, 200, 212, 0.30);
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
}

.qr-card__bank-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.qr-card__bank p {
  font-size: 12px;
  color: rgba(47, 47, 47, 0.60);
  margin-bottom: 3px;
}

.qr-card__stars {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.qr-card__stars span {
  font-size: 22px;
  color: #f59e0b;
}

.qr-card__stars p {
  font-size: 12px;
  color: rgba(47, 47, 47, 0.50);
  width: 100%;
  margin: 4px 0 0;
}

@media (max-width: 600px) {
  .qr__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ─── WhatsApp CTA Section ──────────────────────────────────────────────── */
.wacta {
  background: var(--cream);
}

.wacta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
}

.wacta__ring {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.wacta__ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
}

.wacta__ring-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wacta__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
}

.wacta__title-em {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #25D366;
  letter-spacing: 0.01em;
}

.wacta__desc {
  font-size: 17px;
  color: rgba(47, 47, 47, 0.65);
  line-height: 1.7;
}

.wacta__hours {
  font-size: 13px;
  color: rgba(47, 47, 47, 0.40);
}

.wacta__btn {
  margin-top: 10px;
  padding: 14px 36px;
  font-size: 16px;
}

/* ─── Contact Preview Section ───────────────────────────────────────────── */
.contact {
  background: linear-gradient(180deg, var(--pink) 0%, var(--cream) 100%);
}

.contact__heading {
  margin-bottom: 56px;
  opacity: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__info-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__info-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(239, 200, 212, 0.35);
}

.contact__info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  background: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b56e85;
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47, 47, 47, 0.45);
  margin-bottom: 4px;
}

.contact__info-val {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}

.contact__info-link {
  display: block;
  font-size: 14px;
  color: var(--dark);
  transition: color 0.2s;
}

.contact__info-link:hover {
  color: #b56e85;
}

.contact__wa-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact__wa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.18);
}

.contact__wa-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact__wa-card:hover .contact__wa-icon {
  transform: scale(1.1);
}

.contact__wa-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.contact__wa-sub {
  font-size: 13px;
  color: rgba(47, 47, 47, 0.50);
  margin-top: 2px;
}

.contact__form-wrap {
  padding: 36px 32px;
}

.contact__form-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(239, 200, 212, 0.45);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact__input::placeholder {
  color: rgba(47, 47, 47, 0.38);
}

.contact__input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(239, 200, 212, 0.25);
}

.contact__input--err {
  border-color: #f87171;
}

.contact__select {
  cursor: pointer;
}

.contact__textarea {
  resize: none;
}

.contact__err {
  font-size: 12px;
  color: #ef4444;
}

.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.contact__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 260px;
  text-align: center;
}

.contact__success-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
}

.contact__success-sub {
  font-size: 15px;
  color: rgba(47, 47, 47, 0.58);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact__row {
    grid-template-columns: 1fr;
  }

  .contact__form-wrap {
    padding: 24px 18px;
  }
}

/* ─── E-commerce / Catalog Page Specifics ──────────────────────────────── */
.products-page {
  background-color: var(--cream);
  min-height: 100vh;
}

.products-header {
  background-color: var(--pink);
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(222, 165, 186, 0.3);
}

.products-page__title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.products-page__sub {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  font-size: 1.125rem;
}

.products-layout {
  display: flex;
  gap: 40px;
  padding: 60px 0;
}

@media (max-width: 992px) {
  .products-layout {
    flex-direction: column;
    padding: 30px 0;
  }
}

/* Left Sidebar Filter (Desktop) */
.filter-sidebar {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(239, 200, 212, 0.3);
  position: sticky;
  top: 100px;
  height: fit-content;
}

@media (max-width: 992px) {
  .filter-sidebar {
    display: none;
  }
}

.filter-sidebar-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--black);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 10px;
}

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

.filter-cat-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-cat-btn:hover {
  background-color: var(--pink);
  color: var(--black);
}

.filter-cat-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
}

.filter-cat-count {
  background: rgba(0, 0, 0, 0.05);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
}

.filter-cat-btn.active .filter-cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Mobile Filter Pills */
.mobile-filter-container {
  display: none;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--rose);
  position: sticky;
  top: 80px;
  z-index: 90;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .mobile-filter-container {
    display: flex;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
}

.mobile-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--rose);
  border-radius: 20px;
  font-size: 13px;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

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

/* View Switcher Controls */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.catalog-title h2 {
  font-size: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.catalog-view-switcher {
  display: flex;
  background: rgba(0, 0, 0, 0.03);
  padding: 4px;
  border-radius: 8px;
}

.switcher-btn {
  background: none;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.switcher-btn.active {
  background: #ffffff;
  color: var(--black);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hidden {
  display: none !important;
}

/* ─── Retail Grid View Catalog ───────────────────────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.grid-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(239, 200, 212, 0.25);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.grid-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(181, 110, 133, 0.08);
  border-color: var(--rose);
}

.grid-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.grid-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.grid-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-product-card:hover .grid-card-image img {
  transform: scale(1.05);
}

.grid-card-body {
  padding: 16px 16px 8px;
  flex-grow: 1;
}

.grid-card-cat {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.grid-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 8px;
}

.grid-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.grid-card-spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.spec-strip-pill {
  font-size: 10px;
  background: #fdf2f8;
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.grid-card-footer {
  padding: 8px 16px 16px;
}

.grid-card-footer .btn {
  padding: 8px 16px;
  font-size: 13px;
}

/* ─── Wholesale List View Catalog (Detailed rows) ───────────────────────── */
.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wholesale-list-row {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(239, 200, 212, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  padding: 20px;
  gap: 24px;
  transition: all 0.3s ease;
}

.wholesale-list-row:hover {
  border-color: var(--rose);
  box-shadow: 0 8px 30px rgba(181, 110, 133, 0.06);
}

@media (max-width: 768px) {
  .wholesale-list-row {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
}

.wholesale-row-image-col {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}

@media (max-width: 768px) {
  .wholesale-row-image-col {
    width: 100%;
    align-self: auto;
  }
}

.wholesale-row-mainimg {
  width: 100%;
  flex-grow: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .wholesale-row-mainimg {
    aspect-ratio: 1;
    flex-grow: 0;
  }
}

.wholesale-row-mainimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wholesale-row-swatches {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.swatch-thumb {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.swatch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swatch-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.wholesale-row-details-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wholesale-row-header {
  margin-bottom: 12px;
}

.wholesale-row-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.wholesale-row-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: var(--black);
}

.wholesale-row-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.wholesale-row-desc {
  font-size: 13px;
  color: var(--dark);
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.5;
}

.wholesale-row-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  background-color: #faf8f7;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.wholesale-row-spec-item {
  font-size: 12px;
}

.wholesale-row-spec-label {
  font-weight: 600;
  color: var(--black);
  display: block;
}

.wholesale-row-spec-value {
  color: var(--dark);
}

.wholesale-row-actions-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  flex: 0 0 180px;
}

@media (max-width: 768px) {
  .wholesale-row-actions-col {
    flex: none;
    width: 100%;
  }
}

/* ─── Product Detail Page Layout ─────────────────────────────────────────── */
.product-detail-page {
  padding: 120px 0 60px;
  background: var(--cream);
}

.pd-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: var(--dark);
}

.pd-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-gallery__main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(239, 200, 212, 0.3);
  background: #ffffff;
  position: relative;
  cursor: zoom-in;
}

.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.pd-gallery__thumbs {
  display: flex;
  gap: 10px;
}

.pd-gallery__thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  padding: 0;
}

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

.pd-gallery__thumb.active {
  border-color: var(--primary);
}

.pd-info__category {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.pd-info__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
}

.pd-info__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.pd-info__desc {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 28px;
  border-left: 3px solid var(--pink);
  padding-left: 16px;
}

.pd-specs__heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 16px;
}

.pd-specs__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.pd-specs__table tr {
  border-bottom: 1px solid #f0e6e8;
}

.pd-specs__table tr:nth-child(even) {
  background: rgba(248, 222, 228, 0.15);
}

.pd-specs__label {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  width: 150px;
}

.pd-specs__value {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--dark);
}

.pd-cta {
  margin-top: 8px;
}

.pd-cta__btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .pd-cta__btn {
    width: auto;
  }
}

/* ─── Floating WhatsApp Widget ────────────────────────────────────────── */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--green-wa);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 999;
  font-size: 30px;
  transition: all 0.3s;
}

.floating-whatsapp-widget:hover {
  transform: scale(1.1);
  background-color: var(--green-wa2);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: #111111;
  color: #fff;
}

.footer__top-bar {
  height: 3px;
  background: linear-gradient(to right, #f8dce4, #efc8d4, #f8dce4);
  opacity: 0.55;
}

.footer .container {
  padding-top: 72px;
  padding-bottom: 40px;
}

/* Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}

/* Brand col */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer__logo-img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  margin-bottom: 22px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.footer__social:hover {
  background: var(--green-wa);
  transform: translateY(-2px);
}

.footer__social--ig:hover {
  background: #e1306c;
}

.footer__social--fb:hover {
  background: #1877f2;
}

/* Columns */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(239, 200, 212, 0.25);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__link-arrow {
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}

.footer__link:hover .footer__link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  align-items: flex-start;
  line-height: 1.5;
}

.footer__contact-row--link {
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact-row--link:hover {
  color: #fff;
}

.footer__contact-icon {
  color: #efc8d4;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA col */
.footer__cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.30);
  margin-top: 14px;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.70);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════ */

/* Two-column grid: text | image */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* About story image */
.about-img-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(180, 110, 133, 0.15);
  display: block;
}

/* Why-choose 3-column grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: rgba(255, 250, 248, 0.90);
  border: 1px solid rgba(239, 200, 212, 0.50);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(180, 110, 133, 0.15);
}

.why-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.why-desc {
  font-size: 14px;
  color: rgba(47, 47, 47, 0.65);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS PAGE
═══════════════════════════════════════════════════════════════════ */

/* 2-column masonry-style grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual card */
.testimonial-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(180, 110, 133, 0.18);
}

/* Decorative quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(239, 200, 212, 0.30);
  pointer-events: none;
  user-select: none;
}

/* Stars */
.testimonial-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
}

/* Quote text */
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  flex: 1;
}

/* Author name */
.testimonial-author {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
}

/* Role / company */
.testimonial-company {
  display: block;
  font-size: 12px;
  color: #b56e85;
  margin-top: 2px;
}

/* QR code image wrapper */
.qr-image-wrapper {
  margin: 0 auto 20px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(239, 200, 212, 0.50);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(180, 110, 133, 0.10);
}

.qr-image-wrapper img {
  display: block;
  width: 150px;
  height: 150px;
}

/* Client Logo Ticker */
.client-logo-ticker {
  overflow: hidden;
  padding: 24px 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
}

.ticker-wrap {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-size: 15px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.65);
  white-space: nowrap;
  padding: 0 12px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════ */

/* Two-column: info | form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Each info row: icon + text */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: var(--pink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(239, 200, 212, 0.50);
}

.contact-info-details h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-info-details p {
  font-size: 14px;
  color: rgba(47, 47, 47, 0.70);
  line-height: 1.6;
  margin-bottom: 2px;
}

/* Form styling */
.contact-form {
  background: rgba(255, 250, 248, 0.90);
  border: 1px solid rgba(239, 200, 212, 0.50);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(180, 110, 133, 0.08);
}

@media (max-width: 560px) {
  .contact-form {
    padding: 24px 18px;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(47, 47, 47, 0.70);
  letter-spacing: 0.02em;
}

.contact-form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(239, 200, 212, 0.50);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}

.contact-form-control::placeholder {
  color: rgba(47, 47, 47, 0.35);
}

.contact-form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(181, 110, 133, 0.15);
}

textarea.contact-form-control {
  min-height: 130px;
  resize: vertical;
}

/* ═══════════════════════════════════════════════════════════════════
   GENERAL RESPONSIVE FIXES FOR INNER PAGES
═══════════════════════════════════════════════════════════════════ */

/* Fix hero header on inner pages having proper top padding */
.about-page>.products-header,
.testimonials-page>.products-header,
.contact-page>.products-header {
  padding-top: 130px;
}

/* Ensure section-title has no stray top margin on inner pages */
.about-page .section-title,
.testimonials-page .section-title,
.contact-page .section-title {
  margin-top: 0;
}

@media (max-width: 768px) {
  .products-page__title {
    font-size: 2rem;
  }

  .products-page__sub {
    font-size: 1rem;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .why-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .about-preview-grid {
    gap: 28px;
  }

  .contact-grid {
    gap: 24px;
  }

  .testimonial-grid {
    gap: 16px;
  }

  .why-choose-grid {
    gap: 16px;
  }
}

/* ─── Related Products Carousel ────────────────────────────────────────── */
.related-products-carousel-wrapper {
  position: relative;
}

.related-products-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 5px;
  scrollbar-width: none;
  /* Firefox */
}

.related-products-carousel::-webkit-scrollbar {
  display: none;
  /* Safari & Chrome */
}

.related-products-carousel .grid-product-card {
  flex: 0 0 280px;
  max-width: 280px;
}

.carousel-nav-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--black);
  border: 1px solid rgba(239, 200, 212, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(181, 110, 133, 0.2);
}

.carousel-nav-btn svg {
  display: block;
}

/* ─── Hero Carousel & Category Marquee ────────────────────────────────── */

/* Slider Container */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  will-change: opacity;
  backface-visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Indicators */
.hero-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Category Marquee Wrapper */
.hero-category-marquee {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px; /* Shift up to clear the dots */
  overflow: hidden;
  position: relative;
}

.category-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-horizontal 45s linear infinite;
  padding: 10px 0;
}

.hero-category-marquee:hover .category-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Marquee Card styling */
.marquee-card {
  flex: 0 0 250px;
  width: 250px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(239, 200, 212, 0.45);
  box-shadow: 0 4px 18px rgba(180, 110, 133, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(181, 110, 133, 0.14);
}

.marquee-card__visual {
  width: 100%;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marquee-card__emoji {
  font-size: 36px;
  opacity: 0.65;
}

.marquee-card__badge {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}

.marquee-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
}

.marquee-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.marquee-card__b2b {
  font-size: 11px;
  color: rgba(47, 47, 47, 0.45);
  font-weight: 500;
}

.marquee-card__explore {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mobile responsive settings */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
  
  .hero-category-marquee {
    margin-top: 30px;
  }
  
  .category-marquee-track {
    animation: none;
    overflow-x: auto;
    width: auto;
    padding: 10px 24px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .marquee-card {
    scroll-snap-align: start;
  }
}

/* ─── Back to Top Button ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 30px;
  background-color: var(--primary);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(181, 110, 133, 0.25);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background-color: var(--black);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.back-to-top svg {
  display: block;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 95px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
}