/* ============================================================
   Bedsheets & Blankets Ã¢â‚¬â€ Store Preview
   Theme: Cauvery (Traditional Ã‚Â· Warm Ã‚Â· Artisanal)
   Palette: Deep Magenta #B5135A Ã‚Â· Gold #C9971A Ã‚Â· Cream #FFF8F3
   Fonts: Playfair Display (display) + Lato (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap");

:root {
  --primary: #b5135a;
  --primary-dark: #b5135a;
  --primary-light: #f5d0df;
  --gold: #c9971a;
  --gold-light: #f5e6b8;
  --cream: #fff8f3;
  --cream-deep: #f5ede3;
  --white: #ffffff;
  --ink: #1a0a0a;
  --ink-soft: #4a3030;
  --muted: #8b7b7b;
  --rule: #efe0d8;
  --green: #2e7d32;
  --shadow-sm:
    0 1px 3px rgba(181, 19, 90, 0.08), 0 0 0 1px rgba(181, 19, 90, 0.05);
  --shadow-md: 0 6px 20px rgba(181, 19, 90, 0.12);
  --shadow-lg: 0 20px 50px rgba(181, 19, 90, 0.16);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --container: 1320px;
}

body {
  font-family: "Lato", system-ui, sans-serif !important;
}

.display {
  font-family: "Playfair Display", Georgia, serif;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Announcement bar Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ann-bar {
  background: #1a0a0a;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.ann-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 0;
  position: relative;
}

.ann-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.ann-items span {
  padding: 6px 16px;
  white-space: nowrap;
}

.ann-div {
  color: rgba(255, 255, 255, 0.35);
  padding: 6px 0;
}

.ann-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .ann-close {
    right: 40px;
  }
}

.ann-close:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .ann-items .ann-div {
    display: none;
  }

  .ann-items span:not(:first-child) {
    display: none;
  }
}

/* Header nav */
.header-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  border-bottom-color: var(--gold-light);
}

.nav-link-cta {
  margin-left: auto;
  padding: 7px 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}

.nav-link-cta:hover {
  background: #b8850f;
}

.chev {
  font-size: 10px;
  opacity: 0.7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Section headers Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  border-bottom: 1px solid var(--primary-light);
  transition: color 0.15s;
}

.view-all:hover {
  color: var(--primary-dark);
}

.view-all svg {
  transition: transform 0.15s;
}

.view-all:hover svg {
  transform: translateX(2px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Categories section Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.categories-section {
  padding: 56px 0 48px;
  background: var(--cream);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cat-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--rule);
  transition:
    border-color 0.2s,
    transform 0.2s;
  background: var(--cream-deep);
}

.cat-card:hover .cat-img-wrap {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.05);
}

.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
}

.cat-count {
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Product grid (horizontal scroll row) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.product-section {
  padding: 56px 0;
}

.product-section.cream-bg {
  background: var(--cream);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-image-container {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}

.product-card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.3s;
}

.product-card:hover .product-card-image-container img {
  transform: scale(1.04);
}

.product-tag-row {
  display: flex;
  gap: 5px;
  padding: 8px 10px 0;
  flex-wrap: wrap;
}

.product-card-tag-item {
  background: #dbeafe;
  color: #1e40af;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
}

.product-card-info {
  padding: 8px 10px 12px;
}

.product-card-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card-price {
  background: var(--primary);
  color: #fff;
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--primary-dark);
  box-shadow: 1.5px 1.5px 0 0 var(--primary-dark);
}

.product-card-mrp {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}

@media (max-width: 1024px) {
  .product-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .product-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-section {
    padding: 36px 0;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Generic Collection Card (Banner + Products) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.gcc-section {
  padding: 24px 0;
}

.gcc-section + .gcc-section {
  padding-top: 0;
}

.gcc-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: 440px;
}

.gcc-row.reverse {
  flex-direction: row-reverse;
}

/* Banner panel */
.banner-collection-container {
  width: 26%;
  min-width: 260px;
  flex-shrink: 0;
}

.banner {
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.banner-image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.banner-image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 10, 0.1) 0%,
    rgba(26, 10, 10, 0.75) 100%
  );
}

.banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.banner-collection-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.banner-collection-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}

.banner-collection-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}

.banner-cta:hover {
  background: #b8850f;
}

/* Products panel */
.gcc-products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: stretch;
}

@media (max-width: 768px) {
  .gcc-row,
  .gcc-row.reverse {
    flex-direction: column;
    height: auto;
  }

  .banner-collection-container {
    width: 100%;
    min-width: 0;
  }

  .banner-image-container {
    height: 220px;
    min-height: 220px;
  }

  .gcc-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .gcc-products .product-card:nth-child(3) {
    display: none;
  }

  .gcc-section {
    padding: 16px 0;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Full-width banner (BannerCollection promo) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.promo-banner-section {
  padding: 40px 0;
}

.promo-banner-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  height: 340px;
  background: var(--ink);
}

.promo-banner-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 10, 10, 0.82) 0%,
    rgba(26, 10, 10, 0.4) 60%,
    transparent 100%
  );
}

.promo-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 56px;
}

.promo-banner-text {
  max-width: 480px;
}

.promo-banner-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 14px;
}

.promo-banner-title {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.promo-banner-title em {
  font-style: italic;
  color: var(--gold-light);
}

.promo-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}

.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.promo-banner-cta:hover {
  background: #b8850f;
}

@media (max-width: 768px) {
  .promo-banner-wrap {
    height: 260px;
    border-radius: var(--r-lg);
  }

  .promo-banner-content {
    padding: 0 20px;
  }

  .promo-banner-title {
    font-size: 24px;
  }

  .promo-banner-desc {
    display: none;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Brand story Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.brand-story-section {
  padding: 35px 0;
  background: var(--cream);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-story-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.brand-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-story-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-md);
  padding: 4px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.brand-story-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.brand-story-badge-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.brand-story-text {
}

.brand-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.brand-title em {
  color: var(--primary);
  font-style: italic;
}

.brand-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.brand-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px;
  border: 1px solid var(--rule);
}

.brand-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.brand-feature-text span {
  font-size: 12px;
  color: var(--muted);
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.btn-brand:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .brand-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-story-visual {
    aspect-ratio: 16/9;
  }

  .brand-title {
    font-size: 26px;
  }

  .brand-features {
    grid-template-columns: 1fr;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Trust strip Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.trust-section {
  padding: 40px 0;
  background: var(--primary);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  stroke: #fff;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition:
    background 0.15s,
    color 0.15s;
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.shoopy-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.4);
}

.shoopy-badge span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 16px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    text-align: center;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Utility Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-pad {
  padding: 56px 0;
}

.section-pad-sm {
  padding: 36px 0;
}

.mt-0 {
  margin-top: 0;
}

.divider {
  height: 1px;
  background: var(--rule);
  margin: 0;
}

.heading-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

.main-header {
  background-color: #b5135a;
  padding: 4px 0px;
  flex: 0 0 auto !important;
}

.header-desktop-wrapper {
  background-color: #b5135a !important;
}

:root {
  --header-accent: #fff;
}

.notice {
  padding: 0px !important;
}

.desktop-nav-wrapper {
  background-color: #b5135a !important;
}

.luxury-header {
  background-color: #b5135a !important;
}

/* ============================================================
   FINAL FIX Ã¢â‚¬â€ Mobile Footer 2 Columns
   Desktop remains unchanged.
   ============================================================ */
@media (max-width: 768px) {
  .footer-main {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 18px !important;
    padding: 36px 16px 28px !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-col {
    min-width: 0 !important;
  }

  .footer-col-title {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }

  .footer-links {
    gap: 7px !important;
  }

  .footer-links a,
  .footer-contact-item {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 16px !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  .footer-main {
    gap: 24px 14px !important;
  }
}

/* ============================================================
   Requested pink color update
   ============================================================ */
:root {
  --primary: #b5135a !important;
  --primary-dark: #b5135a !important;
  --header-accent: #ffffff !important;
}

.main-header,
.header-desktop-wrapper,
.desktop-nav-wrapper,
.luxury-header {
  background-color: #b5135a !important;
}

.nav-link:hover,
.nav-link.active {
  border-bottom-color: #f5d0df !important;
}

.product-card-price,
.trust-section,
.btn-brand,
.social-btn:hover {
  background-color: #b5135a !important;
}

.product-card-price {
  border-color: #b5135a !important;
  box-shadow: 1.5px 1.5px 0 0 #b5135a !important;
}

/* Serachbar */
.search-container {
  padding: 0px 10px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}
.search-container .input-container {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  width: 100% !important;
}

#desktop-search-bar {
  color: #000 !important;
}
.logo-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 0px !important;
  position: relative;
  line-height: 1;
  letter-spacing: 0px !important;
}

.logo-title h1::before {
  content: "Bedsheets";
  font-size: 17px;
  letter-spacing: 2px;
  margin-right: 6px;
}

.logo-title h1::after {
  content: " & Blankets";
  color: #f5e6b8;
  font-size: 17px;
  letter-spacing: 2px;
}

@media (max-width: 1023px) {
  .logo-title h1::before {
    font-size: 14px;
  }

  .logo-title h1::after {
    font-size: 14px;
  }
}

.punchline a {
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 1.2px;
}

.desktop-menu-container {
  width: 100%;
}
.desktop-menu-container > div {
  padding: 0 !important;
}
.desktop-menu-container > div:last-child {
  margin-left: auto;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
  height: 34px;
}
.desktop-menu-container > div svg {
  color: rgba(255, 255, 255, 0.85) !important;
}
.desktop-nav-wrapper::before {
  content: "";
  position: absolute;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  height: 5px;
  display: block;
  left: 0;
  right: 0;
}

a.beauty-link.flex-none img {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.utility-bar.mob-hide > .w-full:first-child {
  width: 0px !important;
}
.search-container {
  margin: auto !important;
}
@media (min-width: 1024px) {
  .utility-bar {
    flex: unset !important;
    width: 100% !important;
  }
  .utility-bar-content > div:first-child {
    display: none;
  }
}
.search-container {
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.search-container.expanded:before {
  display: none !important;
}
#desktop-search-bar {
  font-size: 14px;
}
