/* ============================================================
   MAIN — Component & Layout Styles
   Susie Rugs | site_template
   ============================================================ */

/* ============================================================
   1. Base Reset & Global
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/*
 * Vue 2: v-cloak — shimmer + fade (no filter/blur on ancestors that contain
 * `position: fixed` e.g. Bootstrap offcanvas — filter creates a containing block
 * and breaks fixed sizing → horizontal page scroll).
 */
[v-cloak] {
  position: relative;
  pointer-events: none;
  opacity: 0.38;
}

[v-cloak]::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(245, 245, 245, 0.95) 42%,
    rgba(255, 255, 255, 0) 88%
  );
  background-size: 220% 100%;
  animation: vue-cloak-shimmer 1.05s ease-in-out infinite;
  pointer-events: none;
}

@keyframes vue-cloak-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

[v-cloak].vue-cloak--full {
  min-height: clamp(260px, 46vh, 680px);
}

[v-cloak].vue-cloak--compact {
  min-height: 44px;
  min-width: 44px;
  max-height: 56px;
  overflow: hidden;
  opacity: 0.5;
}

[v-cloak].vue-cloak--compact::after {
  animation-duration: 0.85s;
}

/* After Vue removes v-cloak, fade content in (opacity only — no filter) */
@keyframes vue-boundary-reveal {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.vue-boundary-reveal {
  animation: vue-boundary-reveal 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity;
}

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

a:hover {
  color: var(--primary);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Override Bootstrap container */
.container {
  max-width: 1400px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Spacing */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

/* ============================================================
   2. Reusable Buttons
   ============================================================ */
.btn-primary-site {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-primary-site:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline-site {
  display: inline-block;
  padding: 11px 30px;
  background-color: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-outline-site:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-white-outline {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.btn-white-solid {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-white-solid:hover {
  background-color: transparent;
  color: var(--white);
}

/* ============================================================
   3. Section Headings (Shared)
   ============================================================ */
.section-heading {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}

.section-subheading {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   4. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 40px;
  background-color: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  z-index: var(--z-header);
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 6px;
}

.announcement-bar a:hover {
  color: var(--secondary);
}

.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.announcement-close:hover {
  opacity: 1;
  color: var(--white);
}

/* ============================================================
   5. SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: var(--z-header);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* --- Header Top Row --- */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

/* Uploaded logo image — constrain intrinsic dimensions */
.site-logo .logo-img {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: min(200px, 38vw);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.site-logo .logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Header Utility Icons (right side) */
.header-utils {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-util-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}

button.header-util-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.header-util-btn:hover {
  color: var(--primary);
}

.header-util-btn i {
  font-size: 20px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  width: 18px;
  height: 18px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile header search (offcanvas) */
.mobile-search-offcanvas.offcanvas-top {
  height: auto;
  max-height: min(50vh, 320px);
}

.mobile-search-form {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.mobile-search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

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

.mobile-search-input::placeholder {
  color: var(--text-light);
}

.mobile-search-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0 16px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-search-submit:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Mobile hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--text-dark);
  font-size: 22px;
}

/* --- Primary Navigation Row --- */
.primary-nav {
  border-top: 1px solid var(--border-light);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.primary-nav::-webkit-scrollbar {
  height: 5px;
}

.primary-nav::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 3px;
}

.primary-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.primary-nav-item {
  position: relative;
}

.primary-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  white-space: nowrap;
  transition: var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.primary-nav-link:hover,
.primary-nav-item.active .primary-nav-link {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.primary-nav-link .nav-arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.primary-nav-item:hover .primary-nav-link .nav-arrow {
  transform: rotate(180deg);
}

.nav-sale-link {
  color: #c0392b;
}

.nav-sale-link:hover {
  color: #c0392b;
  border-bottom-color: #c0392b;
}

/* ============================================================
   6. MEGA MENU
   ============================================================ */
.mega-menu-panel {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-mega-menu);
  padding: 40px 0 48px;
  animation: megaFadeIn 0.22s ease;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu-panel.is-open {
  display: block;
}

/* Mega Menu Columns */
.mega-col {
  padding: 0 16px;
}

.mega-col-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-medium);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Level 2 items */
.mega-list-item {
  position: relative;
}

.mega-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 4px 0;
  transition: var(--transition-fast);
}

.mega-list-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.mega-list-link .sub-arrow {
  font-size: 11px;
  color: var(--text-light);
}

/* Level 3 sub-list */
.mega-sub-list {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  z-index: var(--z-above);
}

.mega-list-item:hover .mega-sub-list {
  display: block;
}

.mega-sub-list a {
  display: block;
  padding: 6px 18px;
  font-size: 13px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.mega-sub-list a:hover {
  color: var(--primary);
  background-color: var(--bg-light);
}

/* Mega Featured Column */
.mega-featured-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

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

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

.mega-featured-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mega-featured-link {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: underline;
}

.mega-featured-link:hover {
  color: var(--primary-dark);
}

/* Mega menu overlay background */
.mega-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.35);
  z-index: var(--z-overlay);
}

.mega-overlay.is-open {
  display: block;
}

/* ============================================================
   7. HERO CAROUSEL (Swiper)
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 620px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 40, 40, 0.56) 0%,
    rgba(20, 40, 40, 0.16) 55%,
    rgba(20, 40, 40, 0.04) 100%
  );
  z-index: var(--z-above);
}

.hero-slide-content {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-above);
  max-width: 520px;
  color: var(--white);
}

.hero-slide-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  display: block;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--white);
}

.hero-slide-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}

/* Swiper arrows override */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  background-color: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background-color: rgba(255,255,255,0.38);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* Swiper pagination dots */
.hero-swiper .swiper-pagination {
  bottom: 20px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: rgba(255, 255, 255, 0.50);
  opacity: 1;
  transition: width 0.25s ease, background-color 0.25s ease;
  border-radius: 5px;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 5px;
  background-color: var(--white);
}


/* ============================================================
   8. QUICK CATEGORY ICONS ROW
   ============================================================ */
.quick-cats-section {
  padding: 48px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.quick-cats-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.quick-cats-list::-webkit-scrollbar {
  display: none;
}

.quick-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 44px;
  text-decoration: none;
  color: var(--text-dark);
  border-right: 1px solid var(--border-color);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.quick-cat-item:last-child {
  border-right: none;
}

.quick-cat-item:hover {
  color: var(--primary);
}

.quick-cat-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: border-color 0.22s ease;
  background-color: var(--bg-light);
}

.quick-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.quick-cat-item:hover .quick-cat-icon {
  border-color: var(--primary);
}

.quick-cat-item:hover .quick-cat-icon img {
  transform: scale(1.14);
}

.quick-cat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ============================================================
   9. MEDIA / BRAND LOGOS BAR
   ============================================================ */
.logos-bar {
  padding: 28px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.logos-bar-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logos-bar-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: var(--transition);
}

.logos-bar-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================================
   10. FEEL THE QUALITY SECTION
   ============================================================ */
.quality-section {
  padding: 70px 0;
  background-color: var(--white);
  text-align: center;
}

.quality-section .section-heading {
  margin-bottom: 14px;
}

.quality-section .section-subheading {
  margin: 0 auto 30px;
  text-align: center;
}

.quality-section .btn-primary-site {
  margin-bottom: 48px;
}

/* Rug samples strip */
.rug-samples-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rug-sample-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.rug-sample-thumb:hover {
  transform: translateY(-3px);
}

.rug-sample-thumb img {
  width: 110px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.rug-sample-thumb:hover img,
.rug-sample-thumb.active img {
  border-color: var(--primary);
}

.rug-sample-thumb span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-medium);
  text-align: center;
}

/* ============================================================
   11. INSPIRED DESIGNS / COLLECTIONS SECTION
   ============================================================ */
.collections-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.collections-section .section-heading {
  text-align: center;
  margin-bottom: 10px;
}

.collections-section .section-subheading {
  text-align: center;
  margin: 0 auto 40px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  height: 420px;
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card-img {
  transform: scale(1.06);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 30, 30, 0.72) 0%,
    rgba(15, 30, 30, 0.1) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.collection-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: var(--transition-fast);
}

.collection-card-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* ============================================================
   12. AFFIRM PAYMENT SECTION
   ============================================================ */
.affirm-section {
  padding: 52px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.affirm-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.affirm-logo-wrap img {
  height: 38px;
  width: auto;
}

.affirm-divider {
  width: 1px;
  height: 60px;
  background-color: var(--border-color);
}

.affirm-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.affirm-text p {
  font-size: 14px;
  color: var(--text-medium);
}

.affirm-examples {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.affirm-example-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-align: center;
}

.affirm-example-box .price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.affirm-example-box .label {
  font-size: 12px;
  color: var(--text-medium);
  margin-top: 2px;
}

/* ============================================================
   13. PROMO / CTA SPLIT SECTION
   ============================================================ */
.promo-split-section {
  display: flex;
  min-height: 440px;
}

.promo-left {
  flex: 0 0 32%;
  background-color: var(--bg-dark-teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
}

.promo-left .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  display: block;
}

.promo-left h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.promo-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.promo-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  background-color: var(--bg-dark-teal);
}

.promo-right-img {
  overflow: hidden;
}

.promo-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-right-img:hover img {
  transform: scale(1.05);
}

/* ============================================================
   14. CUSTOMER REVIEWS
   ============================================================ */
.reviews-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-header .section-heading {
  margin-bottom: 4px;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

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

.stars {
  display: flex;
  gap: 2px;
  color: var(--star-color);
  font-size: 18px;
}

.rating-count {
  font-size: 13px;
  color: var(--text-light);
}

/* Review Card */
.review-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  height: 100%;
}

.review-card-stars {
  display: flex;
  gap: 2px;
  color: var(--star-color);
  font-size: 14px;
  margin-bottom: 12px;
}

.review-card-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.review-card-date {
  font-size: 12px;
  color: var(--text-light);
}

.review-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

/* Reviews Swiper Navigation */
.reviews-slider-wrap {
  position: relative;
  padding: 0 56px;
}

.reviews-btn-prev,
.reviews-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1.5px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  z-index: 10;
}

.reviews-btn-prev {
  left: 0;
}

.reviews-btn-next {
  right: 0;
}

.reviews-btn-prev:hover,
.reviews-btn-next:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(74, 93, 72, 0.22);
  color: var(--white);
}

.reviews-btn-prev i,
.reviews-btn-next i {
  font-size: 15px;
  line-height: 1;
}

.reviews-btn-prev.swiper-button-disabled,
.reviews-btn-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ============================================================
   15. FEATURED PRODUCTS (Homepage)
   ============================================================ */
.featured-products-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.fp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.fp-header .section-heading {
  margin-bottom: 4px;
}

.fp-view-all {
  white-space: nowrap;
  flex-shrink: 0;
}

/* 4-column grid */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.fp-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.fp-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
  border-color: var(--border-color);
}

/* Image wrapper — double-image swap */
.fp-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background-color: var(--bg-light);
  text-decoration: none;
}

.fp-img-primary,
.fp-img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.fp-img-secondary {
  opacity: 0;
}

.fp-card:hover .fp-img-primary {
  opacity: 0;
  transform: scale(1.04);
}

.fp-card:hover .fp-img-secondary {
  opacity: 1;
  transform: scale(1.04);
}

/* Reuse badges / wishlist / quick-actions from products.css */
.fp-img-wrap .product-wishlist {
  opacity: 0;
  transform: scale(0.85);
}

.fp-card:hover .fp-img-wrap .product-wishlist {
  opacity: 1;
  transform: scale(1);
}

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

@media (max-width: 768px) {
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .fp-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   16. LIFESTYLE GALLERY (Instagram-style)
   ============================================================ */
.gallery-section {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-section .section-heading {
  text-align: center;
  margin-bottom: 8px;
}

.gallery-section .section-subheading {
  text-align: center;
  margin: 0 auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-light);
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 30, 30, 0.78) 0%, rgba(15, 30, 30, 0.35) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 14px;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

.gallery-caption {
  font-size: 12px;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .gallery-caption {
    font-size: 11px;
    -webkit-line-clamp: 2;
  }
}

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

/* ============================================================
   16. PRESS / FEATURED IN
   ============================================================ */
.press-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.press-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.press-logos img {
  height: 28px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: var(--transition);
}

.press-logos img:hover {
  filter: grayscale(0);
  opacity: 0.85;
}

/* ============================================================
   17. TRADE PROGRAM CTA SECTION
   ============================================================ */
.trade-section {
  padding: 90px 0;
  background-color: var(--bg-charcoal);
  background-image: url('https://picsum.photos/seed/trade-bg/1600/600');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.trade-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(20, 35, 35, 0.78);
}

.trade-section .container {
  position: relative;
  z-index: var(--z-above);
}

.trade-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  display: block;
}

.trade-section h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.trade-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.76);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   18. HELP / SUPPORT SECTION
   ============================================================ */
.help-section {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.help-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.help-items-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.help-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 36px;
  border-right: 1px solid var(--border-color);
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.help-item:last-child {
  border-right: none;
}

.help-item:hover {
  color: var(--primary);
}

.help-item-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 26px;
  color: var(--primary);
  transition: var(--transition);
}

.help-item:hover .help-item-icon {
  background-color: var(--primary);
  color: var(--white);
}

.help-item-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.help-item-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--text-dark);
  color: rgba(255,255,255,0.72);
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Brand */
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}

.footer-brand .footer-tagline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin-bottom: 24px;
}

/* Newsletter */
.footer-newsletter h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 11px 14px;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.38);
}

.newsletter-input:focus {
  border-color: rgba(255,255,255,0.4);
  background-color: rgba(255,255,255,0.12);
}

.newsletter-btn {
  padding: 11px 20px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.newsletter-success-message {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  border-radius: var(--radius-sm);
}

.newsletter-error-message {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: var(--radius-sm);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Footer Links Column */
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Payment Icons */
.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-payments img {
  height: 22px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: var(--transition-fast);
}

.footer-payments img:hover {
  opacity: 0.8;
  filter: grayscale(0);
}

/* ============================================================
   20. Mobile Offcanvas Nav
   ============================================================ */
.offcanvas-nav .offcanvas-header {
  border-bottom: 1px solid var(--border-color);
}

.offcanvas-nav .offcanvas-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.mobile-nav-list {
  padding: 10px 0;
}

.mobile-nav-list > li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.mobile-nav-list > li > a:hover {
  color: var(--primary);
  background-color: var(--bg-light);
}

.mobile-sub-list {
  background-color: var(--bg-light);
  padding: 4px 0 4px 20px;
}

.mobile-sub-list a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.mobile-sub-list a:hover {
  color: var(--primary);
}

/* ============================================================
   21. Scroll To Top
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: var(--z-sticky);
  text-decoration: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   22. PRODUCT DETAIL PAGE (PDP) — Breadcrumb
   ============================================================ */
.pdp-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white);
  max-width: 100%;
}

.pdp-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pdp-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.pdp-breadcrumb-list li a {
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.pdp-breadcrumb-list li a:hover {
  color: var(--primary);
}

.pdp-breadcrumb-list li.active {
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================================
   23. PDP — Main Section (Gallery + Info)
   ============================================================ */
.pdp-section {
  padding: 40px 0 60px;
  background-color: var(--white);
  max-width: 100%;
}

/* Root + main column for PDP Vue (drawer offcanvas is sibling of .pdp-vue-main) */
#pdp-basket-vue-app,
.pdp-vue-main {
  min-width: 0;
  max-width: 100%;
}

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

/* Gallery — vertical thumbnails column on the left, main image fills remainder */
.pdp-gallery {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.pdp-gallery-main {
  position: relative;
  order: 2;
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  aspect-ratio: 2 / 3;
}

.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pdp-gallery-main:hover img {
  transform: scale(1.03);
}

.pdp-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: var(--z-base);
}

.pdp-gallery-share {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: var(--z-base);
}

.pdp-gallery-share-btn {
  width: 36px;
  height: 36px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.pdp-gallery-share-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.pdp-gallery-thumbs {
  order: 1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
  width: 76px;
  max-height: min(72vh, 820px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.pdp-thumb-btn {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: var(--transition-fast);
}

.pdp-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb-btn:hover,
.pdp-thumb-btn.active {
  border-color: var(--primary);
}

/* ============================================================
   24. PDP — Product Info Panel
   ============================================================ */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
}

/* Long titles / specs: avoid grid blowout horizontal scroll */
.pdp-info .pdp-title,
.pdp-info .pdp-sku,
.pdp-qty-cart {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.pdp-collection-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-stars {
  display: flex;
  gap: 2px;
  color: var(--star-color);
  font-size: 15px;
}

.pdp-review-count {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.pdp-review-count:hover {
  color: var(--primary-dark);
}

.pdp-sku {
  font-size: 12px;
  color: var(--text-light);
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.pdp-price-from {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-body);
  margin-right: -6px;
}

.pdp-price-original {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  font-family: var(--font-body);
}

.pdp-price-save {
  font-size: 12px;
  font-weight: 700;
  color: #c0392b;
  background-color: #fef2f2;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* Divider */
.pdp-divider {
  height: 1px;
  background-color: var(--border-color);
}

/* Option Groups */
.pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-option-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.pdp-option-label span.selected-val {
  font-weight: 400;
  color: var(--text-medium);
}

/* Size Grid */
.pdp-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-size-btn {
  padding: 7px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.pdp-size-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.pdp-size-btn.unavailable {
  color: var(--text-light);
  border-color: var(--border-light);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.55;
}

/* Color Swatches */
.pdp-swatches-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: var(--transition-fast);
  padding: 0;
  background: none;
}

.pdp-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.pdp-swatch:hover {
  outline-color: var(--primary);
}

.pdp-swatch.active {
  border-color: var(--primary);
  outline-color: var(--primary);
}

/* Qty + Cart */
.pdp-qty-cart {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pdp-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-qty-btn {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pdp-qty-btn:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.pdp-qty-input {
  width: 46px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}

.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.pdp-add-cart-btn {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.pdp-add-cart-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Secondary Action Row */
.pdp-secondary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pdp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.pdp-action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Trust Badges */
.pdp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pdp-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-medium);
}

.pdp-trust-badge i {
  color: var(--primary);
  font-size: 16px;
}

/* Product Details Accordion */
.pdp-accordion {
  border-top: 1px solid var(--border-color);
}

.pdp-accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.pdp-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}

.pdp-accordion-btn:hover {
  color: var(--primary);
}

.pdp-accordion-btn .acc-icon {
  font-size: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.pdp-accordion-btn.open .acc-icon {
  transform: rotate(45deg);
}

.pdp-accordion-body {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
}

.pdp-accordion-body.is-open {
  display: block;
}

.pdp-accordion-body ul {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pdp-accordion-body .table-responsive-wrap,
.pdp-description-content .table-responsive-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pdp-accordion-body table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.pdp-accordion-body table tr {
  border-bottom: 1px solid var(--border-light);
}

.pdp-accordion-body table td {
  padding: 8px 0;
  vertical-align: top;
}

.pdp-accordion-body table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}

.pdp-washing-care-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-washing-care-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pdp-washing-care-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.pdp-washing-care-title {
  color: var(--text-dark);
}

/* ============================================================
   25. PDP — Tabs Section
   ============================================================ */
.pdp-tabs-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  max-width: 100%;
}

.pdp-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 40px;
  overflow-x: auto;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pdp-tabs-nav::-webkit-scrollbar {
  display: none;
}

.pdp-tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.pdp-tab-btn:hover {
  color: var(--text-dark);
}

.pdp-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.pdp-tab-panel {
  display: none;
}

.pdp-tab-panel.active {
  display: block;
}

/* Description Tab */
.pdp-description-content {
  max-width: 800px;
}

.pdp-description-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  margin-top: 28px;
}

.pdp-description-content h3:first-child {
  margin-top: 0;
}

.pdp-description-content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pdp-description-content ul {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Reviews Tab */
.pdp-reviews-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 32px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pdp-reviews-score {
  text-align: center;
  flex-shrink: 0;
}

.pdp-reviews-score .score-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  display: block;
}

.pdp-reviews-score .score-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--star-color);
  font-size: 18px;
  margin: 6px 0 4px;
}

.pdp-reviews-score .score-count {
  font-size: 12px;
  color: var(--text-light);
}

.pdp-reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}

.pdp-reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-medium);
}

.pdp-reviews-bar-row .bar-label {
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.pdp-reviews-bar-track {
  flex: 1;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.pdp-reviews-bar-fill {
  height: 100%;
  background-color: var(--star-color);
  border-radius: 4px;
}

.pdp-reviews-bar-row .bar-count {
  width: 24px;
  flex-shrink: 0;
}

.pdp-review-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.pdp-review-item:last-child {
  border-bottom: none;
}

.pdp-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pdp-review-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--border-color);
}

.pdp-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.pdp-review-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.pdp-review-stars {
  display: flex;
  gap: 2px;
  color: var(--star-color);
  font-size: 13px;
}

.pdp-review-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pdp-review-body {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.75;
}

.pdp-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
}

/* PDP — Write review modal */
#pdp-review-modal .modal-content {
  border: 1px solid var(--border-color);
  border-radius: 0;
  font-family: var(--font-body);
}

#pdp-review-modal .modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
}

#pdp-review-modal .modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

#pdp-review-modal .modal-body {
  padding: 20px;
}

#pdp-review-modal .modal-footer {
  border-top: 1px solid var(--border-color);
  padding: 14px 20px;
  gap: 10px;
}

#pdp-review-modal .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: var(--font-body);
}

#pdp-review-modal .form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

#pdp-review-modal .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(61, 112, 112, 0.15);
}

#pdp-review-modal .form-control::placeholder {
  color: var(--text-light);
}

#pdp-review-modal textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

#pdp-review-modal .pdp-review-rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

#pdp-review-modal .pdp-review-star-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--border-color);
  transition: color 0.2s ease, transform 0.15s ease;
  line-height: 1;
}

#pdp-review-modal .pdp-review-star-btn i {
  font-size: 28px;
  display: block;
}

#pdp-review-modal .pdp-review-star-btn:hover,
#pdp-review-modal .pdp-review-star-btn.active {
  color: var(--star-color);
}

#pdp-review-modal .pdp-review-star-btn:hover {
  transform: scale(1.1);
}

/* Q&A Tab */
.pdp-qa-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.pdp-qa-item:last-child {
  border-bottom: none;
}

.pdp-qa-question {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.pdp-qa-q-label,
.pdp-qa-a-label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.pdp-qa-q-label {
  background-color: var(--bg-cream);
  color: var(--text-medium);
}

.pdp-qa-a-label {
  background-color: var(--primary);
  color: var(--white);
}

.pdp-qa-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 4px;
}

.pdp-qa-answer {
  display: flex;
  gap: 12px;
  padding-left: 0;
}

.pdp-qa-a-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.75;
  padding-top: 4px;
}

.pdp-qa-a-meta {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

.pdp-qa-cta {
  margin-top: 32px;
  padding: 28px 32px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.pdp-qa-cta h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pdp-qa-cta p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 18px;
}

/* ============================================================
   26. PDP — Related / Recently Viewed Products
   ============================================================ */
.pdp-products-section {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  max-width: 100%;
}

.pdp-products-section + .pdp-products-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.pdp-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp-products-header .section-heading {
  font-size: 26px;
  margin: 0;
}

/* Product Card */
.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background-color: var(--bg-light);
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.06);
}

.product-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition-fast);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card-action-btn {
  width: 34px;
  height: 34px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-medium);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.product-card-action-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.product-card-body {
  padding: 14px 16px 16px;
}

.product-card-sizes {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.product-card-size-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  background-color: var(--bg-light);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.product-card-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-collection {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.product-card-stars {
  display: flex;
  gap: 2px;
  color: var(--star-color);
  font-size: 11px;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.product-card-price .from-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-body);
}

/* PDP products swiper */
.pdp-products-swiper {
  padding-bottom: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.pdp-products-section .swiper-wrapper {
  box-sizing: border-box;
}

.pdp-products-section .swiper-slide {
  box-sizing: border-box;
  max-width: 100%;
}

/* ============================================================
   BLOG LIST PAGE
   ============================================================ */

/* Active nav link */
.primary-nav-link--active {
  color: var(--primary);
  font-weight: 700;
}

/* Page Hero */
.blog-page-hero {
  padding: 48px 0 32px;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-medium);
}

.blog-breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--text-light);
}

.blog-breadcrumb a {
  color: var(--text-medium);
}

.blog-breadcrumb a:hover {
  color: var(--primary);
}

.blog-page-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-page-subtitle {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 580px;
}

/* Category Filters */
.blog-filters-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.blog-filter-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  background-color: var(--white);
  color: var(--text-medium);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
}

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

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

/* Featured Post */
.blog-featured-section {
  background-color: var(--bg-light);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.blog-featured-img-wrap {
  display: block;
  overflow: hidden;
}

.blog-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-featured-img-wrap:hover img {
  transform: scale(1.04);
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta-sep {
  color: var(--text-light);
  font-size: 11px;
}

.blog-meta-date,
.blog-meta-read {
  font-size: 13px;
  color: var(--text-light);
}

.blog-featured-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.blog-featured-title a {
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.blog-featured-title a:hover {
  color: var(--primary);
}

.blog-featured-excerpt {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Author */
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Read more link */
.blog-read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.blog-read-more-link:hover {
  color: var(--primary-dark);
  gap: 8px;
}

/* Blog Post Cards */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-tag--care {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.blog-card-tag--rooms {
  background-color: var(--bg-dark-teal);
}

.blog-card-tag--trends {
  background-color: var(--accent);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.blog-card-title a {
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

/* Pagination */
.blog-pagination {
  margin-top: 48px;
}

.blog-pagination-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.blog-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.blog-page-btn[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}

.blog-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: var(--text-light);
}

/* Sidebar Widgets */
.blog-widget {
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--white);
  margin-bottom: 24px;
}

.blog-widget--newsletter {
  background-color: var(--bg-dark-teal);
  border-color: var(--bg-dark-teal);
  color: var(--white);
}

.blog-widget-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.blog-widget-title--light {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}

/* Search widget */
.blog-search-form {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-search-input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.blog-search-btn {
  padding: 10px 16px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition-fast);
}

.blog-search-btn:hover {
  background-color: var(--primary-dark);
}

/* Popular posts */
.blog-popular-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-popular-item a.blog-popular-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.blog-popular-link img {
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.blog-popular-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-popular-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: var(--transition-fast);
}

.blog-popular-link:hover .blog-popular-title {
  color: var(--primary);
}

/* Categories list */
.blog-categories-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.blog-category-link:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.blog-category-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  background-color: var(--bg-cream);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Newsletter widget (sidebar) */
.blog-widget--newsletter p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-newsletter-input {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

.blog-newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.blog-newsletter-input:focus {
  border-color: rgba(255,255,255,0.6);
  background-color: rgba(255,255,255,0.18);
}

.blog-newsletter-btn {
  padding: 11px 20px;
  background-color: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-newsletter-btn:hover {
  background-color: #d4a96e;
}

/* ============================================================
   BLOG LIST — Responsive
   ============================================================ */
@media (max-width: 992px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-img-wrap {
    aspect-ratio: 16 / 7;
  }

  .blog-featured-body {
    padding: 32px 28px;
  }

  .blog-page-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .blog-page-title {
    font-size: 26px;
  }

  .blog-page-hero {
    padding: 32px 0 24px;
  }

  .blog-filters-section {
    position: static;
  }

  .blog-filter-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .blog-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .blog-featured-body {
    padding: 24px 20px;
  }

  .blog-featured-title {
    font-size: 21px;
  }
}

/* ============================================================
   BLOG DETAIL — Article Hero
   ============================================================ */
.article-hero {
  width: 100%;
  background-color: var(--bg-charcoal);
  overflow: hidden;
}

.article-hero-img-wrap {
  display: block;
  max-height: 520px;
  overflow: hidden;
}

.article-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

/* ============================================================
   BLOG DETAIL — Article Header
   ============================================================ */
.article-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 40px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-meta-row .blog-meta-read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.article-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 680px;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.article-author-role {
  margin-top: 2px;
}

/* Share buttons */
.article-share {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-share-label {
  margin-right: 2px;
}

.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-medium);
  font-size: 15px;
  transition: var(--transition-fast);
}

.article-share-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   BLOG DETAIL — Article Body Typography
   ============================================================ */
.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.35;
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.article-content strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* Inline figures */
.article-figure {
  margin: 36px 0;
}

.article-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.article-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* Blockquote */
.article-blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--primary);
  background-color: var(--bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-blockquote p {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 12px;
}

.article-blockquote cite {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

/* Tip / highlight box */
.article-tip-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin: 36px 0;
}

.article-tip-box-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary);
  flex-shrink: 0;
  padding-top: 2px;
}

/* ============================================================
   BLOG DETAIL — Tags
   ============================================================ */
.article-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 40px;
}

.article-tags-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-tag-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.article-tag-pill:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   BLOG DETAIL — Author Bio
   ============================================================ */
.article-author-bio {
  display: flex;
  gap: 20px;
  padding: 28px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 40px;
}

.article-author-bio-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  align-self: flex-start;
}

.article-author-bio-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.article-author-bio-role {
  margin-bottom: 10px;
}

.article-author-bio-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   BLOG DETAIL — Article Navigation (Prev / Next)
   ============================================================ */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 60px;
}

.article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--white);
  transition: var(--transition-fast);
}

.article-nav-item:hover {
  border-color: var(--primary);
  background-color: var(--bg-light);
}

.article-nav-dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-nav-item--next .article-nav-dir {
  justify-content: flex-end;
}

.article-nav-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.article-nav-item--next .article-nav-title {
  text-align: right;
}

/* ============================================================
   BLOG DETAIL — Sidebar: Table of Contents
   ============================================================ */
.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: toc-counter;
}

.article-toc-list li {
  counter-increment: toc-counter;
}

.article-toc-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-medium);
  transition: var(--transition-fast);
  line-height: 1.4;
}

.article-toc-list li a::before {
  content: counter(toc-counter) ".";
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  padding-top: 1px;
}

.article-toc-list li a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* ============================================================
   BLOG DETAIL — Sidebar: Free Sample CTA
   ============================================================ */
.article-sample-cta {
  padding: 24px;
  background-color: var(--bg-dark-teal);
  border-radius: var(--radius-md);
  color: var(--white);
  margin-bottom: 24px;
}

.article-sample-cta-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.article-sample-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-sample-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================================
   BLOG DETAIL — Related Posts Section
   ============================================================ */
.related-posts-section {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

/* ============================================================
   BLOG DETAIL — Responsive
   ============================================================ */
@media (max-width: 992px) {
  .article-title {
    font-size: 28px;
  }

  .article-hero-img {
    height: 380px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav-item--next .article-nav-title,
  .article-nav-item--next .article-nav-dir {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .article-title {
    font-size: 24px;
  }

  .article-subtitle {
    font-size: 15px;
  }

  .article-hero-img {
    height: 260px;
  }

  .article-content {
    font-size: 15px;
  }

  .article-content h2 {
    font-size: 22px;
    margin-top: 36px;
  }

  .article-blockquote {
    padding: 20px 22px;
  }

  .article-blockquote p {
    font-size: 17px;
  }

  .article-byline {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-author-bio {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-tip-box {
    flex-direction: column;
    gap: 12px;
  }
}

/* Header cart — Vue preview dropdown */
.site-header-cart-wrap {
  position: relative;
}

.site-header-cart-preview {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1080;
  box-sizing: border-box;
  width: min(360px, calc(100vw - 20px));
  max-width: calc(100vw - 20px);
  max-height: 400px;
  overflow: auto;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  padding: 14px;
  margin-top: 6px;
}

.site-header-cart-wrap:hover .site-header-cart-preview {
  display: block;
}

.site-header-cart-preview-list {
  margin-bottom: 0;
}

.site-header-cart-preview-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.site-header-cart-preview-img {
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 2px;
}

.site-header-cart-preview-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.site-header-cart-preview-meta {
  font-size: 12px;
  color: var(--text-medium);
  margin-top: 2px;
}

.site-header-cart-preview-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
