/* =========================================================
   BASE
   ========================================================= */

.spazio-body {
  margin: 0;
  /* background: #F9F7F4; */
  background-color: white;
  color: #2C2C2C;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* =========================================================
   PARTIALS: HEADER & NAV
   ========================================================= */
/* Make header fixed */
.site-header {
  position: sticky;        /* make it stick on scroll */
  top: 0;
  z-index: 999;
  background: #F9F7F4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  padding: 1.5rem 4vw;     /* keep your padding */
}


.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.logo-link {
  text-decoration: none;
  color: #2C2C2C;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* Nav (desktop baseline) */
.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  z-index: 60;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #4A4A4A;
}

.nav-link:hover {
  color: #111;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  font: inherit;
  color: #4A4A4A;
  cursor: pointer;
}

.menu-text {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
}

.menu-lines span {
  display: block;
  width: 14px;
  height: 1px;
  background: #4A4A4A;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #4A4A4A;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.dropdown-toggle:hover {
  color: #111;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #F9F7F4;
  border: 1px solid #E0DAD2;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  min-width: 220px;
  z-index: 70;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-menu a {
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: #3A3A3A;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: #EDE8E1;
  color: #111;
}

/* Mobile behaviour */
@media (max-width: 768px) {
  /* Show menu toggle, hide desktop nav by default */
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 64px; /* adjust if header height changes */
    left: 0;
    right: 0;
    background: #F9F7F4;
    border-bottom: 1px solid #E1DAD2;
    padding: 1rem 4vw 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
    display: none;
    z-index: 60;
  }

  .nav.nav-open {
    display: flex;
  }

  /* Let dropdown menu sit inline in the mobile nav */
  .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    margin-top: 0.25rem;
    padding-left: 0.5rem;
  }
}

/* Small visual feedback when menu open */
.menu-toggle.is-open .menu-lines span:first-child {
  transform: translateY(0.5px) rotate(6deg);
}
.menu-toggle.is-open .menu-lines span:last-child {
  transform: translateY(-0.5px) rotate(-6deg);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Right side (menu + cart) stays together */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Cart link styling */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

/* Badge bubble */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  background: #d9c4aa; /* nude tone */
  color: #222;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.layby-unlock-msg {
  margin: 0.35rem 0 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #6f675d;
  background: #f4efe9;
  border: 1px solid #e2dbd1;
  padding: 0.65rem 1rem;
  border-radius: 14px;
}
.layby-unlock-msg strong {
  font-weight: 600;
  color: #514a42;
}

/* =========================================================
   LANDING: HERO
   ========================================================= */

.hero {
  padding: 3.5rem 4vw 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8F8A81;
  margin: 0 0 0.75rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  color: #5F5A52;
  line-height: 1.7;
}

.hero-cta {
  border: none;
  outline: none;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: #2C2C2C;
  color: #F9F7F4;
  font-size: 0.9rem;
  cursor: pointer;
}

.hero-cta:hover {
  background: #111;
}

.hero-image-wrap {
  justify-self: stretch;
}

.hero-image-placeholder {
  background: linear-gradient(135deg, #DED7CF, #C1B7AD);
  border-radius: 24px;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   LANDING: CATALOGS GRID
   ========================================================= */
.descbrow {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8F8A81;
  margin: 0 0 0.75rem;
}
.catalogs {
  padding: 2.5rem 4vw 3rem;
}

.section-heading {
  max-width: 520px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

.section-heading p {
  margin: 0;
  font-size: 0.95rem;
  color: #6A645B;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}
@media (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
}
.catalog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.catalog-image {
  border-radius: 18px;
  min-height: 180px;
  background: #D9D2C7;
  margin-bottom: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

/* Placeholder variations so catalogs feel distinct */
.catalog-img-living    { background: linear-gradient(135deg, #D7D0C6, #C4B8AC); }
.catalog-img-bedroom   { background: linear-gradient(135deg, #E6E0D7, #C7BCB0); }
.catalog-img-dining    { background: linear-gradient(135deg, #D8D2C8, #B7ADA2); }
.catalog-img-office    { background: linear-gradient(135deg, #D2CCC3, #B9B0A6); }
.catalog-img-decor     { background: linear-gradient(135deg, #E0DAD1, #C1B5A8); }
.catalog-img-textiles  { background: linear-gradient(135deg, #E5DED5, #C8BDB1); }

/* Extra placeholders for catalog types you use */
.catalog-img-lighting   { background: linear-gradient(135deg, #E2DBD1, #C5B9AD); }
.catalog-img-fireplaces { background: linear-gradient(135deg, #DAD1C8, #BAAEA1); }
.catalog-img-walldecor  { background: linear-gradient(135deg, #E3DBD2, #C7BAAE); }
.catalog-img-tableware  { background: linear-gradient(135deg, #E6DDD3, #C9BCB0); }
.catalog-img-plants     { background: linear-gradient(135deg, #D9D7CC, #B5BBA6); }
.catalog-img-vases      { background: linear-gradient(135deg, #E5DDD3, #C7B9AA); }
.catalog-img-art        { background: linear-gradient(135deg, #E2D7CF, #C3B2A6); }
.catalog-img-bathroom   { background: linear-gradient(135deg, #E4DED6, #C5BBB0); }

.catalog-info h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
}

.catalog-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #6E685F;
}

.catalog-card:hover .catalog-image {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  filter: brightness(1.02);
}
/* =========================================================
  WALL DECOR PAGE
   ========================================================= */
.wall-decor-page {
  background: #f5f1ea;
  min-height: 100vh;
}

.wall-intro {
  padding: 4rem 6vw 2rem;
}

.wall-intro-inner {
  max-width: 520px;
}

.wall-intro .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a39684;
  margin-bottom: 0.6rem;
}

.wall-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin: 0 0 0.75rem;
  color: #28231d;
}

.wall-intro-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: #7a7468;
  max-width: 420px;
}

/* GRID FOR THE TWO CATALOG STRIPS */
.wall-strip-grid {
  padding: 0 6vw 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wall-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* STRIPS */
.wall-strip {
  padding: 0;
}

.wall-strip-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CARD WRAPPER – SAME HEIGHT + RADIUS VISIBLE */
.wall-strip-image {
  position: relative;
  width: 100%;
  height: 300px;          /* small screens default */
  border-radius: 24px;
  overflow: hidden;       /* keeps image + overlay clipped to curve */
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1199px) {
  .wall-strip-image {
    height: 550px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .wall-strip-image {
    height: 800px;
  }
}

/* IMG AS BACKGROUND */
.wall-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* OVERLAY + TEXT */
.wall-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 14, 10, 0.65),
    rgba(18, 14, 10, 0.15)
  );
}

.wall-strip-text {
  position: absolute;
  inset: auto auto 3rem 3rem;
  max-width: 420px;
  color: #f6f2eb;
}

.wall-strip-text .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 0.5rem;
  color: #d9cdbf;
}

.wall-strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
}

.wall-strip-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  color: #f0e6da;
}

/* CTA PILL */
.wall-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 237, 225, 0.75);
  background: rgba(18, 14, 10, 0.16);
  backdrop-filter: blur(10px);
}

.wall-cta-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f5e1c5;
}

/* HOVER */
.wall-strip-image:hover {
  transform: scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .wall-intro {
    padding: 3rem 5vw 1.5rem;
  }

  .wall-intro h1 {
    font-size: 1.8rem;
  }

  .wall-strip-image {
    border-radius: 18px; /* slightly softer on mobile */
  }

  .wall-strip-text {
    inset: auto 1.5rem 1.7rem 1.5rem;
    max-width: 85%;
  }

  .wall-strip-text h2 {
    font-size: 1.6rem;
  }
}


/* =========================================================
   LANDING: PHILOSOPHY / BRAND STORY
   ========================================================= */



.philosophy {
  padding: 2.5rem 4vw 3.5rem;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.philosophy-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}

.philosophy-text p {
  margin: 0;
  font-size: 0.96rem;
  color: #5F594F;
  line-height: 1.7;
}

.philosophy-image-placeholder {
  border-radius: 20px;
  min-height: 180px;
  background: linear-gradient(135deg, #D1CAC2, #BBB1A6);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   PARTIALS: FOOTER
   ========================================================= */

.site-footer {
  padding: 1.75rem 4vw 2rem;
  border-top: 1px solid #E1DAD2;
  font-size: 0.85rem;
  color: #6C665D;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-links a small {
  color: #CBBBA6; /* soft nude tone */
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-links a:hover small {
  color: #2C2C2C; /* subtle dark-on-hover for contrast */
}

.footer-links a:hover {
  color: #111;
}

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

.footer-social a {
  color: #6C665D;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #111;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================================================
   LANDING: LAY-BY CTA
   ========================================================= */

.cta-layby {
  padding: 3rem 4vw 3.5rem;
  background: #EFE7DD;
  margin-top: 1rem;
}

.cta-layby-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.cta-layby-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin: 0 0 0.7rem;
  color: #2C2C2C;
}

.cta-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9A8E7F;
  margin: 0 0 0.6rem;
}

.cta-layby-text p {
  margin: 0;
  font-size: 0.96rem;
  color: #5C564D;
  line-height: 1.7;
}

.cta-layby-action {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.btn-layby {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  background: #2C2C2C;
  color: #F9F7F4;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-layby:hover {
  background: #111;
  transform: translateY(-1px);
}

.cta-note {
  font-size: 0.8rem;
  color: #7A7268;
}

@media (max-width: 800px) {
  .cta-layby-inner {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   LANDING: INFO SECTION (ABOVE FOOTER)
   ========================================================= */

.info-section {
  padding: 3.5rem 4vw 3rem;
  border-top: 1px solid #E6E0D7;
}

.info-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  text-align: center;
}

.info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2C2C2C;
  margin-bottom: 0.75rem;
}

.info-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5E564D;
  margin: 0;
}

.info-block a {
  color: #2C2C2C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.info-block a:hover {
  border-color: #2C2C2C;
}

@media (max-width: 768px) {
  .info-section {
    padding: 2.5rem 8vw;
  }

  .info-inner {
    gap: 2rem;
  }

  .info-block h3 {
    margin-bottom: 0.5rem;
  }
}


/* =========================================================
   LANDING: REVIEWS
   ========================================================= */

.reviews {
  padding: 3.5rem 4vw 3.5rem;
  background: #F9F7F4;
}

.reviews-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  color: #2C2C2C;
}

.reviews-header p {
  margin: 0;
  font-size: 0.95rem;
  color: #6A645B;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.review-card {
  padding: 1.6rem 1.8rem;
  border-radius: 18px;
  border: 1px solid #E4DDD4;
  background: #FDFBF8;
}

.review-stars span {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #C6A77B; /* warm gold for stars */
}

.review-text {
  margin: 0.8rem 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4C463F;
}

.review-name {
  margin: 0;
  font-size: 0.85rem;
  color: #8A8277;
}

@media (max-width: 768px) {
  .reviews {
    padding: 3rem 6vw;
  }
}

.reviews-footer {
  text-align: center;
  margin-top: 2rem;
}

.btn-nude {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background-color: #E8E0D6; /* soft nude tone */
  color: #2C2C2C;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-nude:hover {
  background-color: #DFD5CA;
  transform: translateY(-1px);
}

/* ---------- Catalog image shell (same idea as lighting-image) ---------- */
.catalog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;              /* desktop/tablet ratio */
  border-radius: 18px;
  overflow: hidden;
}

/* Mobile: slightly shorter ratio */
@media (max-width: 768px) {
  .catalog-image {
    aspect-ratio: 3 / 4;
  }
}

/* Base placeholder (neutral nude gradient) */
.catalog-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #D9D2C7, #C4B8AC);
}

/* Catalog-specific placeholder tints (optional but nice) */
.catalog-img-lighting {
  background: linear-gradient(135deg, #E2DBD1, #C3B8AC);
}

.catalog-img-fireplaces {
  background: linear-gradient(135deg, #D8D1C8, #B9AFA4);
}

.catalog-img-textiles {
  background: linear-gradient(135deg, #E5DED5, #C8BDB1);
}

.catalog-img-beddings {
  background: linear-gradient(135deg, #E7DFD4, #CBBFB1);
}

.catalog-img-walldecor {
  background: linear-gradient(135deg, #DCD3C7, #BFAF9E);
}

.catalog-img-tableware {
  background: linear-gradient(135deg, #E4DCD1, #C7B9AA);
}

.catalog-img-plants {
  background: linear-gradient(135deg, #D7D2C6, #B6B09F);
}

.catalog-img-vases {
  background: linear-gradient(135deg, #E3DBD2, #C5B7A9);
}

.catalog-img-art {
  background: linear-gradient(135deg, #DDD3C8, #BFAE9F);
}

.catalog-img-bathroom {
  background: linear-gradient(135deg, #E6DED2, #C5B8AA);
}

/* Image sits above placeholder */
.catalog-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== TEXTILE TOGGLE ===================== */
.textile-toggle {
  padding: 2rem 4vw 1.6rem;
  background: #f7f3ee;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.textile-toggle-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.textile-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0.1rem 0 0;
}

.textile-toggle-buttons {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: #ebe1d6;
  gap: 0.25rem;
}

.textile-toggle-btn {
  border: none;
  background: transparent;
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7e7163;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.textile-toggle-btn.is-active {
  background: #f9f4ee;
  color: #2e261d;
  transform: translateY(-1px);
}

/* Panels */
.textile-panel {
  display: none;
}

.textile-panel.is-active {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .textile-toggle-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .textile-heading {
    font-size: 1.2rem;
  }

  .textile-toggle-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .textile-toggle-btn {
    flex: 1;
    text-align: center;
  }
}


/* =========================
   VARIANT / SIZE DROPDOWN
   ========================= */
.variant-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.8rem 0 0.6rem;
}

.variant-label small {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B8478;
}

/* Base select */
.variant-select {
  width: 100%;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #D4CABB;
  background: #F8F5F1;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  color: #3F3A33;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  line-height: 1.3;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease,
    transform 120ms ease;
}

/* Subtle chevron icon */
.variant-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B8478' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 8px;
}

/* Hover / focus states */
.variant-select:hover {
  background-color: #F2ECE4;
  border-color: #C5B79F;
}

.variant-select:focus {
  border-color: #B7A58D;
  box-shadow: 0 0 0 1px rgba(183, 165, 141, 0.5);
}

/* Disabled state (if you ever need it) */
.variant-select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}


/* =========================================================
   CATALOG: LIGHTING PAGE
   ========================================================= */

/* ---------- Large hero bands (stone / floor / table) ---------- */
.lighting-hero-block {
  padding: 2.5rem 4vw 1.5rem;
}

.lighting-hero-image {
  border-radius: 24px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.cushions-hero-image {
  border-radius: 24px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}
/* Nude placeholder gradients for the big hero "images" */
.lighting-img-stone {
  background: linear-gradient(135deg, #E5DED5, #C8BDB1);
}

.lighting-img-floor {
  background: linear-gradient(135deg, #D8D1C8, #B9AFA4);
}

.lighting-img-table {
  background: linear-gradient(135deg, #E2DBD1, #C3B8AC);
}

.lighting-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.24), rgba(0,0,0,0.02));
  display: flex;
  align-items: center;
}

.lighting-hero-text {
  padding: 2.2rem 2.5rem;
  max-width: 460px;
  color: #F9F7F4;
}

.lighting-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
}

.lighting-subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(249, 247, 244, 0.9);
}

/* ---------- Collections under each hero ---------- */
.lighting-collection {
  padding: 1.5rem 4vw 3rem;
}

.lighting-collection .section-heading {
  max-width: 520px;
  margin-bottom: 1.8rem;
}

/* ---------- Product grid layout ---------- */
.lighting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 per row on large screens */
  gap: 1rem;
}

/* Medium and small screens → always 2 per row */
@media (max-width: 1024px) {
  .lighting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:0.5rem;
  }
}

/* ---------- Product cards ---------- */
.lighting-card {
  background: #FDFBF8;
  border-radius: 18px;
  /* border: 1px solid #E4DDD4; */
  /* padding: 1.1rem 1.2rem 1.3rem; */
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.lighting-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

/* ---------- Image container + fallbacks ---------- */
.lighting-image {
  position: relative;
    width: 100%;
  border-radius: 16px;
  overflow: hidden;
  /* min-height: 180px; */
  aspect-ratio: 4 / 5; 
}

@media (max-width: 768px) {
  .lighting-other-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 128px;
  }
  .lighting-stone-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 160px;
  }
    .lighting-floor-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 165px;
  }
 .lighting-wallp-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 170px;
  }
   .lighting-panels-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 130px;
  }

     .lighting-cushions-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 130px;
  }
}
@media (min-width: 768px) {
  .lighting-other-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 260px;
  }

  .lighting-stone-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 370px;
  }

  .lighting-floor-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 380px;
  }

  .lighting-wallp-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 380px;
  }
   .lighting-panels-image {
    aspect-ratio: 3 / 4;   /* Slightly shorter for mobile */
    max-height: 320px;
  }
}
/* Nude placeholder — always present, sits behind image */
.lighting-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #D9D2C7, #C4B8AC);
}

/* Product image — sits above placeholder */
.lighting-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- View more icon overlay ---------- */
.lighting-view-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(249, 247, 244, 0.9);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  z-index: 2;
}

.lighting-view-icon::before,
.lighting-view-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background: #F9F7F4;
}

.lighting-view-icon::after {
  transform: rotate(90deg);
}

.lighting-view-icon:hover {
  background: rgba(0, 0, 0, 0.35);
}

/* ---------- Text + pricing ---------- */
.lighting-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin: 0 0 0.1rem;
  color: #2C2C2C;
}

.lighting-meta {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9A8E7F;
}

.lighting-price {
  margin: 0;
  font-size: 0.9rem;
  color: #6E685F;
}

/* ---------- Add to cart button ---------- */
.btn-cart {
  margin-top: 0.6rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #E8E0D6;
  background: #E8E0D6;
  color: #2C2C2C;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease,
              transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cart:hover {
  border: 1px solid #424140;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* ---------- Responsive tweaks (hero + padding + card density) ---------- */
@media (max-width: 768px) {
  .lighting-hero-block {
    padding: 2rem 2vw 1.2rem;        /* tighter sides on mobile */
  }

  .lighting-hero-text {
    padding: 1.6rem 1.6rem;
    max-width: 100%;
  }

  .lighting-title {
    font-size: 1.8rem;
  }

  .lighting-collection {
    padding: 1rem 2vw 2.2rem;      /* tighter sides on mobile */
  }

  .lighting-card {
    padding: 10px 10px   /* slightly less padding so image feels larger */
  }
}

/* =================================================================================================== */
/* ===================== PRODUCT MODAL ===================== */
/* ==================================================================================================== */
/* Overlay: fixed full-screen */
.product-modal-overlay {
  position: fixed;
  margin-top: 50px;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);              /* ✅ blur background */
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  overflow-y: auto;                        /* allow scrolling on very small screens */
  padding: 2rem 1rem;
}

.product-modal-overlay.is-open {
  display: flex;
}

.product-modal {
  background: #F9F7F4;
  border-radius: 24px;
  max-width: 920px;
  width: min(92vw, 920px);
  max-height: 80vh;                        /* keeps content on screen */
padding: 4.5rem 2.8rem 2.6rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow-y: auto;                        /* ✅ modal itself scrolls if content taller */
}

.product-modal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}
/* Close button – nude circle with black X */
.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: #E8D6C2;                     /* light brown/nude */
  color: #111111;                          /* black-ish X */
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 5;                              /* stays above gallery/content */
}

.product-modal-close:hover {
  background: #DFC8AF;
}


.lighting-soldout-btn {
  width: 100%;
  padding: 0.55rem 1.7rem;
  border-radius: 999px;
  background: #e1d7cc;
  border: 1px solid #d3c6b8;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #82796d;
  opacity: 0.7;
  cursor: not-allowed;
}

/* Gallery */
.product-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-modal-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #D9D2C7, #C4B8AC);
  min-height: 260px;
}

#productModalImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: none;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.35);
  color: #F9F7F4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow-prev {
  left: 0.75rem;
}

.slider-arrow-next {
  right: 0.75rem;
}

/* Dots */
.product-modal-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}

.product-modal-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #D2CCC3;
  cursor: pointer;
  padding: 0;
}

.product-modal-dots button.is-active {
  background: #2C2C2C;
}

/* Details */
.product-modal-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}

.product-modal-description {
  font-size: 0.95rem;
  color: #5C564D;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.product-modal-meta {
  margin-bottom: 1.2rem;
}

.product-modal-meta p {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin: 0.2rem 0;
  color: #5E564D;
}

.product-modal-meta p span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #999083;
}

.product-modal-price {
  font-size: 1.05rem;
  margin: 0 0 0.8rem;
  color: #2C2C2C;
}

/* full-width Add to cart in modal, reuse nude outline style */
.btn-cart-fullwidth {
  width: 100%;
  text-align: center;
}

/* Responsive modal */
@media (max-width: 768px) {
  .product-modal {
    padding: 1.3rem 1.3rem 2.5rem;
  }

  .product-modal-inner {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .product-modal-image-wrap {
    min-height: 220px;
  }
}


/* CARD CONTAINER */
.lighting-card {
  background: #f8f4ef;
  border-radius: 24px;
  /* padding: 1.25rem 1.25rem 1.5rem; */
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* IMAGE BLOCK */
.lighting-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.lighting-image-placeholder {
  background: #e5ddd2;
}

.lighting-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Floating + icon refined */
.lighting-view-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fdf9f4;
  cursor: pointer;
}

/* INFO AREA */
.lighting-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lighting-title-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #2d261d;
}

.lighting-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a8f80;
}

/* PRICE BLOCK */
.lighting-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.price-current {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  color: #3c3328;
}

.price-original {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  text-decoration: line-through;
  color: #b4a89a;
}

/* ADD TO CART BUTTON – softer, more luxe */
.lighting-add-btn {
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0.55rem 1.7rem;
  border-radius: 999px;
  border: 1px solid #d6c6b5;
  background: #efe2d2;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b3024;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.lighting-add-btn:hover {
  background: #e3d3c1;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.product-modal-price-wrap {
  margin: 1rem 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-modal-price-current {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2e281f;
}

.product-modal-price-original {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-decoration: line-through;
  color: #a99e93;
}


/* =========================================================
  CART PAGE
   ========================================================= */
.cart-page {
  padding: 10px 20px 65px 20px;
  background: #f7f5f2;
}

.cart-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cart-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.cart-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #7a7468;
}

.cart-empty {
  margin-top: 2rem;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4ded4;
}

.cart-empty p {
  margin-bottom: 1rem;
  color: #5b564c;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3ddd3;
}

.cart-item-image img,
.cart-item-placeholder {
  width: 100%;
  height: 100%;
  max-height: 110px;
  object-fit: cover;
  border-radius: 12px;
  background: #e5dfd4;
}

.cart-item-info h2 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', serif;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: #90897d;
  margin-bottom: 0.4rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3b362c;
}

.cart-item-controls {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #6d665a;
}

/* Summary */
.cart-summary {
  align-self: flex-start;
}

.cart-summary-card {
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e3ddd3;
}

.cart-summary-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.cart-summary-note span:last-child {
  color: #8a8275;
  font-size: 0.85rem;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e5dfd4;
  font-weight: 500;
  font-size: 0.98rem;
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

.cart-leadtime {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #8b8376;
}

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

  .cart-page {
padding: 10px 20px 65px 20px;  }
}


/* ---------empty cart----------- */
/* Gradient base (same as lighting) */
.grad-nude {
  background: linear-gradient(135deg, #e9e1d7 0%, #f4ede5 100%);
  position: relative;
  overflow: hidden;
}

/* Empty cart block */
.cart-empty {
  margin-top: 2.5rem;
  border-radius: 24px;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background image layer */
.cart-empty-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cart-empty-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.60; /* soft overlay effect */
  filter: brightness(0.8);
}

/* Content layer */
.cart-empty-inner {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.cart-empty-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #2c2925;
  margin-bottom: 0.75rem;
}

.cart-empty-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #5b554c;
  margin-bottom: 1.25rem;
}

/* Button */
.btn-cart {
  background-color: #d9c4aa;
  color: #222;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-cart:hover {
  background-color: #cbb393;
  color: #1d1b18;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-empty {
    padding: 4rem 1.5rem;
  }

  .cart-empty-inner h2 {
    font-size: 1.5rem;
  }

  .cart-empty-bg img {
    opacity: 0.6;
  }
}

.cart-empty-inner {
  max-width: 100%;
}

/* ////qty adjuster styling */
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.qty-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: #f7f7f5;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease;
}
.qty-btn:hover { background: #f2f2ef; transform: translateY(-1px); }
.qty-btn:active { transform: translateY(0); }

.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font: inherit;
  padding: 4px 0;
  outline: none;
}
.cart-item-price {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* === CART ITEM CONTROLS === */
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

/* Quantity Group */
.cart-qty-group {
  display: inline-flex;
  align-items: center;
  background: #f8f8f7;
  border: 1px solid #e5e4e2;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease;
}

.cart-qty-group:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Buttons */
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.qty-btn:hover {
  background: #ecebe8;
  transform: translateY(-1px);
}

.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #333;
  outline: none;
}

/* Remove Button */
.remove-item {
  background: none;
  border: none;
  color: #8b8a87;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: 12px;
}

.remove-item:hover {
  color: #c0392b;
  transform: translateY(-1px);
}

/* Responsive tweak */
@media (max-width: 600px) {
  .cart-item-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}




 /* =========================
   Luxe order summary styles
   ========================= */
.cart-summary-card.luxe {
  --luxe-bg: #f6f3ee;        /* soft nude */
  --luxe-edge: #e5dfd4;      /* warm border */
  --luxe-text: #2f2b26;      /* deep brown/charcoal */
  --luxe-muted: #8c8579;     /* muted captions */
  --luxe-pill: #faf7f3;      /* pale chip */
  --luxe-accent: #cbb393;    /* radio accent / button base */
  --luxe-accent-2: #b9a07f;  /* hover accent */

  background: linear-gradient(180deg, var(--luxe-bg), #fff 70%);
  border: 1px solid var(--luxe-edge);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  color: var(--luxe-text);
}

.cart-summary-card.luxe h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .2px;
  margin-bottom: .85rem;
}

.cart-summary-card.luxe .cart-summary-row {
  color: var(--luxe-text);
  font-size: .95rem;
}

.cart-summary-card.luxe .cart-summary-note span:last-child {
  color: var(--luxe-muted);
}

.cart-summary-card.luxe .cart-summary-total {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--luxe-text);
}

.cart-summary-card.luxe .luxe-sep {
  border: 0;
  border-top: 1px solid var(--luxe-edge);
  margin: .9rem 0;
  opacity: .9;
}

/* Payment plan */
.cart-summary-card.luxe .cart-plan { margin-top: .25rem; }
.cart-summary-card.luxe .cart-plan-title {
  font-size: .9rem; color: var(--luxe-muted); margin-bottom: .35rem;
}

/* Elegant radios */
.cart-summary-card.luxe .plan-option {
  display: flex; align-items: center; gap: .55rem;
  padding: .4rem .55rem; border-radius: 12px;
  transition: background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}
.cart-summary-card.luxe .plan-option:hover {
  background: var(--luxe-pill);
  border-color: var(--luxe-edge);
}

.cart-summary-card.luxe .plan-option input[type="radio"] {
  appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--luxe-accent);
  display: grid; place-items: center; position: relative;
  outline: none; cursor: pointer; background: #fff;
}
.cart-summary-card.luxe .plan-option input[type="radio"]::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--luxe-accent); transform: scale(0);
  transition: transform .15s ease;
}
.cart-summary-card.luxe .plan-option input[type="radio"]:checked::after {
  transform: scale(1);
}
.cart-summary-card.luxe .plan-option span { color: var(--luxe-text); }

/* Lay-by box */
.cart-summary-card.luxe .layby-config {
  margin-top: .6rem; background: #fff; border: 1px solid var(--luxe-edge);
  border-radius: 14px; padding: .75rem;
}
.cart-summary-card.luxe .config-row {
  display: flex; align-items: center; justify-content: space-between; margin: .35rem 0;
}
.cart-summary-card.luxe .config-row label { color: var(--luxe-muted); font-size: .9rem; }
.cart-summary-card.luxe .config-row select {
  background: var(--luxe-pill); color: var(--luxe-text);
  border: 1px solid var(--luxe-edge); border-radius: 10px;
  padding: .35rem .6rem; font-size: .9rem;
}

/* Premium CTA */
.btn-luxe {
  display: inline-block;
  border-radius: 999px;
  background: var(--luxe-accent);
  border: 1px solid #bfa686;
  color: #1f1c18;
  font-weight: 600;
  letter-spacing: .2px;
  padding: .8rem 1.25rem;
  transition: transform .1s ease, box-shadow .2s ease, background .2s ease;
}
.btn-luxe:hover {
  background: var(--luxe-accent-2);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transform: translateY(-1px);
}
.btn-luxe:active { transform: translateY(0); }
.btn-luxe:disabled { opacity: .65; cursor: not-allowed; }

/* Small screens */
@media (max-width: 768px){
  .cart-summary-card.luxe { border-radius: 18px; }
}

/* Disabled lay-by option */
.plan-option.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.plan-option.disabled input[type="radio"] {
  border-color: #ccc;
}
.plan-option .plan-note {
  font-size: 0.8rem;
  color: #a19a8d;
  margin-left: 1.5rem;
}


/* ===== MODALS (NUDE LUXE) ===== */
.co-modal.hidden { display: none; }
.co-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(47, 43, 38, 0.35); /* soft warm overlay */
  backdrop-filter: blur(8px);          /* elegant background blur */
  -webkit-backdrop-filter: blur(8px);  /* Safari support */
}


.co-backdrop { display: none; }      

.co-sheet {
  /* width: min(720px, 92vw); */
  max-height: calc(100dvh - 32px);
  overflow: auto;
  background: #fff;
  border: 1px solid #e5dfd4;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  color: #2f2b26;
}

.co-close {
  position: absolute; top: 10px; right: 12px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 1.25rem; color: #8c8579;
}
.co-close:hover { color: #b9a07f; }

.co-sub { font-family: Inter, sans-serif; color: #7a7468; margin: .25rem 0 1rem; }

/* Form */
.co-grid { display: grid; gap: .75rem; grid-template-columns: repeat(3,1fr); }
@media (max-width: 768px){ .co-grid { grid-template-columns: 1fr; } }

.co-form label { font: 400 .9rem/1.2 Inter, sans-serif; color: #3b362c; }
.co-field input, .co-field select, .co-field textarea {
  width: 80%; padding: .6rem .75rem; border-radius: 12px;
  border: 1px solid #e3ddd3; background: #fff; font: 400 .95rem Inter, sans-serif; color: #2f2b26;
}
.co-field input:focus, .co-field select:focus, .co-field textarea:focus {
  outline: none; border-color: #cbb393; box-shadow: 0 0 0 2px rgba(203,179,147,.18);
}

.co-note { color:#8c8579; font-size:.85rem; }
.co-calc { display:grid; gap:.25rem; margin-top:.4rem; }

/* Footer */
.co-actions { display:flex; justify-content:space-between; align-items:center; gap:.75rem; margin-top:1rem; padding-top:1rem; border-top:1px solid #e5dfd4; }
.co-total small { color:#8a8275; display:block; }
.co-total strong { font: 600 1.05rem 'Playfair Display', serif; color:#2f2b26; }
.co-buttons { display:flex; gap:.5rem; }
.btn-ghost {
  background:#fff; border:1px solid #e3ddd3; color:#3b362c;
  padding:.65rem 1rem; border-radius:999px; cursor:pointer;
}
.btn-ghost:hover { border-color:#cbb393; color:#1f1c18; }

/* Tiny phones */
@media (max-width: 380px){
  .co-sheet { border-radius: 14px; padding: 1rem; }
}

/* --- Responsive tuning for checkout form on mobile --- */
@media (max-width: 768px) {
  .co-sheet {
    padding: 1rem 1rem 1.25rem;
  }

  .co-grid { 
    grid-template-columns: 1fr; 
    gap: 0.6rem; 
  }

  .co-field label {
    font-size: 0.85rem;
  }

  .co-field input,
  .co-field select,
  .co-field textarea {
    font-size: 0.9rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
  }

  .co-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .co-total strong {
    font-size: 1rem;
  }

  .btn-luxe,
  .btn-ghost {
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
  }
}

/* Even smaller screens */
@media (max-width: 420px) {
  .co-sheet {
    border-radius: 14px;
    padding: 0.9rem;
  }

  .co-field input,
  .co-field select,
  .co-field textarea {
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
  }
}

/* On mobile, make selected rows two columns */
@media (max-width: 768px) {
  .co-grid.co-mobile-2 {
    padding-top:10px;
    grid-template-columns: 1fr 1fr !important; /* overrides the 1-col mobile rule */
    gap: 0.65rem;
  }
}

/* =========================
   CHECKOUT LOADER OVERLAY
   ========================= */
.checkout-loader.hidden {
  display: none;
}

.checkout-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.checkout-loader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 23, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.checkout-loader-box {
  position: relative;
  z-index: 2;
  min-width: 260px;
  max-width: 320px;
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  background: #f6f3ee;
  border: 1px solid #e5dfd4;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.checkout-spinner {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #e1d9ce;
  border-top-color: #cbb393;
  animation: checkout-spin 0.7s linear infinite;
}

.checkout-loader-text {
  margin: 0;
  font-size: 0.9rem;
  color: #5b554c;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

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


/* =========================
   SPARE: AUTH PAGES
   ========================= */

.auth-page {
  min-height: calc(100vh - 120px);
  padding: 4rem 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f7f4;
}

.auth-card {
  width: 100%;
  max-width: 520px;
  background: #fdfbf8;
  border-radius: 24px;
  border: 1px solid #e5dfd4;
  padding: 2.2rem 2.3rem;
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
}

.auth-switch {
  font-size: 0.85rem;
  color: #8a8277;
  margin-bottom: 1rem;
  text-align: right;
}

.auth-switch a {
  color: #2c2c2c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.auth-switch a:hover {
  border-color: #2c2c2c;
}

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
  color: #2c2c2c;
}

.auth-subtitle {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: #6f685f;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-row {
  display: flex;
  gap: 0.8rem;
}
.auth-row-2 > * { flex: 1; }
.auth-row-3 > * { flex: 1; }

.auth-row-between {
  justify-content: space-between;
  align-items: center;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.auth-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9a8f80;
}

.auth-field input {
  border-radius: 10px;
  border: 1px solid #e3ddd3;
  padding: 0.6rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #2c2c2c;
}

.auth-field input:focus {
  outline: none;
  border-color: #cbb393;
  box-shadow: 0 0 0 2px rgba(203,179,147,0.2);
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: #5f594f;
}
.auth-checkbox.small {
  font-size: 0.8rem;
  color: #8a8277;
}
.auth-checkbox input {
  margin-top: 0.1rem;
}

.auth-checkbox a {
  color: #2c2c2c;
  text-decoration: underline;
}

.btn-auth {
  width: 100%;
  margin-top: 0.8rem;
}

.btn-auth-sm {
  margin-top: 0.4rem;
}

.auth-tabs {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: #f0e8de;
  margin-bottom: 1.4rem;
}

.auth-tab {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: #8a8277;
}

.auth-tab-active {
  background: #fff;
  color: #2c2c2c;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.auth-panel {
  display: none;
}
.auth-panel-active {
  display: block;
}

.auth-hint {
  font-size: 0.8rem;
  color: #8a8277;
  margin-top: 0.4rem;
}

.auth-alert {
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}
.auth-alert-ok {
  background: #e0f3e6;
  color: #245c36;
  border: 1px solid #b8e0c3;
}
.auth-alert-error {
  background: #fbe7e8;
  color: #8a1c21;
  border: 1px solid #f3c2c4;
}
.auth-alert-hidden {
  display: none;
}

.auth-details {
  margin-top: 0.5rem;
  border-radius: 14px;
  border: 1px solid #e5dfd4;
  background: #fbf8f3;
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
  color: #5f594f;
}
.auth-details summary {
  cursor: pointer;
  list-style: none;
}
.auth-details summary::-webkit-details-marker { display: none; }

.auth-details-body {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.auth-messages {
  margin-top: 0.6rem;
}

@media (max-width: 768px) {
  .auth-page {
    padding: 3rem 6vw;
    align-items: flex-start;
  }
  .auth-card {
    padding: 1.8rem 1.6rem;
  }
  .auth-row {
    flex-direction: column;
  }
}



/* FORCE IMAGES TO FILL CARD + CENTERED + COVER */
.lighting-card .lighting-image {
  position: relative;
  width: 100%;
  height: 320px; /* Adjust depending on your layout */
  overflow: hidden;
  border-radius: 20px;
  background: #ddd; /* fallback if image missing */
}

.lighting-card .lighting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Fills card + crops if needed */
  object-position: center; /* Always centers the subject */
  display: block;
}

/* TEXTILES TOGGLE BAR */
.textile-toggle {
  padding: 3rem 6vw 1.5rem;
}

.textile-toggle-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.textile-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0.25rem 0 0;
  color: #28231d;
}

.textile-toggle-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.textile-toggle-btn {
  border: 1px solid rgba(120, 110, 98, 0.4);
  background: #f5f1ea;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6a645b;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.textile-toggle-btn.is-active {
  background: #2f2922;
  color: #f6f2eb;
  border-color: #2f2922;
}

/* CARD OPTIONS: SIZE & COLOUR */
.textile-options {
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.textile-option {
  flex: 1 1 120px;
  min-width: 120px;
}

.textile-option label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9a8f80;
  margin-bottom: 0.2rem;
}

.textile-select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(153, 138, 120, 0.5);
  background: #f8f4ee;
  padding: 0.4rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #383129;
  outline: none;
  appearance: none;
}
/* =========================================
   ACCOUNT PAGE (SpazioInt luxe)
   ========================================= */

.account-page {
  padding: 4rem 1.5rem 5rem;
  background: #f6f3ee;
}

.account-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */

.account-header .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a09687;
  margin-bottom: 0.4rem;
}

.account-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin: 0 0 0.35rem;
  color: #2c2720;
}

.account-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #7a7468;
}

/* LAYOUT */

.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 2.4rem;
  margin-top: 2rem;
}

.account-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 1rem;
}

.account-side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* SECTIONS / CARDS */

.account-section {
  padding-bottom: 0.8rem;
}

.account-section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: #2b2620;
  letter-spacing: -0.01em;
}

.account-card {
  background: #fdfbf8;
  border-radius: 18px;
  padding: 1.25rem 1.3rem 1.4rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

/* TABLE STYLE (orders + layby) */

.account-table {
  border-radius: 16px;
  background: #fdfbf8;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  font-size: 0.9rem;
}

.account-table-head,
.account-table-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 1.1fr 0.8fr;
  align-items: center;
  column-gap: 0.75rem;
}

.account-table-head {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a9286;
  margin-bottom: 0.4rem;
}

.account-table-row {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.account-table-row span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* BADGES */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-pending {
  background: rgba(214, 186, 140, 0.2);
  color: #7b5a2f;
}

.badge-paid,
.badge-completed {
  background: rgba(158, 191, 154, 0.23);
  color: #3e6a40;
}

.badge-cancelled {
  background: rgba(201, 140, 140, 0.23);
  color: #7b3535;
}

.badge-shipped {
  background: rgba(173, 189, 212, 0.23);
  color: #415a7b;
}

/* BUTTONS & LINKS */

.link-inline {
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: #5e574a;
}

.link-inline:hover {
  text-decoration: none;
}

.start-shopping-btn {
  display: inline-block;
  background: #262523;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  color: #dddad6 !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.start-shopping-btn:hover {
  background: #eeeeee;
}

.signout-btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: #e8e2d9;
  color: #3a332b !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none !important;
}

.signout-btn:hover {
  background: #d7cec3;
}

/* shared button styles */

.btn-pill {
  border-radius: 999px;
  border: 1px solid #c8bfb0;
  background: transparent;
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-pill.btn-small {
  padding: 0.35rem 1rem;
}

.btn-pill:hover {
  background: #e6ddd0;
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
}

.btn-primary.btn-full {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: none;
  background: #c8b49a;
  color: #1e1912;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.btn-primary.btn-full:hover {
  background: #b9a48b;
}

/* FORMS (RIGHT SIDE) */

.account-form .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.account-form label {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: #7a7468;
}

.account-form input {
  border-radius: 999px;
  border: 1px solid #d4ccc0;
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  background: #f9f6f1;
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 0.6rem;
}

/* ACCOUNT DETAILS TEXT */

.account-detail {
  font-size: 0.85rem;
  margin: 0 0 0.7rem;
  color: #4d453b;
}

.account-detail strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a9286;
}

/* EMPTY STATE */

.empty-state {
  margin-top: 0.5rem;
  padding: 0.6rem 0;
}

.empty-state .muted {
  font-size: 0.85rem;
  color: #8b8378;
  margin-bottom: 0.4rem;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .account-main {
    padding-right: 0;
  }

  .account-page {
    padding: 3rem 1.3rem 4rem;
  }
}

@media (max-width: 600px) {
  .account-table {
    padding: 0.8rem 0.8rem;
  }

  .account-table-head,
  .account-table-row {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    row-gap: 0.2rem;
  }

  .account-table-head span:nth-child(4),
  .account-table-head span:nth-child(5),
  .account-table-row span:nth-child(4),
  .account-table-row span:nth-child(5) {
    display: none;
  }
}

/* ============================
   BLACK FRIDAY HERO - BG IMAGE
   ============================ */
.bf-hero {
  position: relative;
  padding: 6rem 4vw;
  height: 65vh;
  min-height: 460px;

  background-image: url('/images/display/hero.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.bf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* soft, not harsh */
  backdrop-filter: blur(2px);
}

.bf-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.bf-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.bf-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0;
}

.bf-dates {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0.8rem 0 1.8rem;
  opacity: 0.9;
}

.bf-cta {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #2a2520;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.25s ease;
  backdrop-filter: blur(4px);
}

.bf-cta:hover {
  background: rgba(255,255,255,0.95);
}

/* Mobile fixes */
@media (max-width: 768px) {
  .bf-hero {
    height: 55vh;
    padding: 4.5rem 4vw;
  }

  .bf-title {
    font-size: 2.4rem;
  }
}
