/* ---------- GLOBAL ---------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #f9f6f8;
  color: #171317;
  line-height: 1.6;
}

/* Color palette */
:root {
  --pla-soft-pink: #fbe7ee;
  --pla-deep-red: #7f1b32;
  --pla-ink: #161118;
  --pla-cream: #fff9fb;
  --pla-gold: #f1c66b;
}

/* ---------- LAYOUT ---------- */

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 6rem 0;
  }
}

/* ---------- NAV ---------- */

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(249, 246, 248, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-logo {
  font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pla-ink);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #3b323b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nav-links a:hover {
  color: var(--pla-deep-red);
}
.nav-links a {
  text-decoration: none;
  color: #3b323b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;

  position: relative;
  padding-bottom: 0.25rem; /* room for the underline */
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pla-soft-pink), var(--pla-deep-red));
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--pla-deep-red);
}

.nav-links a:hover::after {
  width: 100%;
}
/* NAV GRADIENT UNDERLINE */
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #3b323b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pla-deep-red), var(--pla-soft-pink));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--pla-deep-red);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------- HERO ---------- */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #7b6b7b;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 24rem;
  color: #4b414b;
  margin-bottom: 1.8rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  border: 1px solid var(--pla-deep-red);
  background: var(--pla-deep-red);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--pla-deep-red);
}

.hero-card {
  background: radial-gradient(circle at top left, var(--pla-soft-pink), #ffffff);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-card-inner {
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  padding: 1.1rem 1.2rem;
  background: rgba(255, 249, 251, 0.82);
}

.halo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #927092;
  margin-bottom: 0.8rem;
}

.halo-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--pla-gold);
  box-shadow: 0 0 0 1px rgba(241, 198, 107, 0.2);
}

.hero-card p {
  font-size: 0.9rem;
  color: #473745;
}

/* ---------- SECTIONS ---------- */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #8a788a;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.section-text {
  font-size: 0.97rem;
  max-width: 32rem;
  color: #4d404d;
}
/* ---------- BRAND ESSENCE ---------- */

#essence {
  padding: 4rem 0 2rem;         /* space above + below */
}

/* Use the normal wrapper alignment */
#essence .wrapper {
  display: block;               /* no flex, no centering tricks */
}

/* The Brand Essence content column */
.brand-essence {
  max-width: 40rem;
  margin: 0;                    /* sits at the normal wrapper left edge */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Make the body text not run too wide */
.brand-essence .section-text {
  max-width: 32rem;
}

/* Luxury bullet list */
.list-soft {
  list-style: none;
  font-size: 0.92rem;
  color: #4d404d;
  margin: 0;
  padding: 0;
}

.list-soft li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.5;
}

.list-soft li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pla-deep-red), var(--pla-soft-pink));
}

.list-soft li + li {
  margin-top: 0.4rem;
}

/* Mobile – keep it simple but still left aligned */
@media (max-width: 768px) {
  #essence {
    padding: 3.5rem 0 2rem;
  }

  #essence .wrapper {
    padding-inline: 1.5rem;
  }

  .brand-essence {
    max-width: 100%;
  }
}
/* Collection preview cards */

.collection-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 850px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.1rem 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a869a;
  margin-bottom: 0.6rem;
}

.card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-text {
  font-size: 0.86rem;
  color: #554555;
}

/* Designer section */

.designer-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.8rem;
}

@media (min-width: 800px) {
  .designer-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

.designer-placeholder {
  border-radius: 18px;
  height: 260px;
  background: linear-gradient(145deg, var(--pla-soft-pink), #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5b7a;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Newsletter */

.newsletter {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 32rem;
}

.newsletter p {
  font-size: 0.9rem;
  color: #4e3f4e;
  margin-bottom: 0.9rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 180px;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
}
/* ---------- SHOP PAGE ---------- */

.shop-hero {
  padding-top: 4.5rem;
}

.shop-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shop-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.1rem 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.shop-item-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.shop-item-text {
  font-size: 0.86rem;
  color: #554555;
}
.shop-card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out,
              border-color 160ms ease-out;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.08);
}

.shop-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4; /* tall fashion image */
}

.shop-card-body {
  padding: 0.9rem 0.9rem 1.1rem;
}

.shop-card-name {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.shop-card-price {
  font-size: 0.9rem;
  color: var(--pla-deep-red);
  margin-bottom: 0.2rem;
}

.shop-card-sizes {
  font-size: 0.8rem;
  color: #7b6b7b;
}


/* ---------- ORDER FORM ---------- */

.order-form {
  margin-top: 1.6rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.order-form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .order-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.86rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #6b5a6b;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fdfbfc;
}

.form-field textarea {
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

.form-note {
  font-size: 0.78rem;
  color: #827082;
  max-width: 26rem;
}
/* ---------- DROP HERO ---------- */

.drop-hero {
  background: #fdf7fa;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 3.5rem 0 3rem;
}

.drop-hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .drop-hero-inner {
    grid-template-columns: 1.4fr 1fr;
  }
}

.drop-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #8a788a;
  margin-bottom: 0.6rem;
}

.drop-title {
  font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.drop-text {
  font-size: 0.95rem;
  color: #4d404d;
  max-width: 25rem;
  margin-bottom: 1rem;
}

.drop-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 26rem;
}

.drop-form-row input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  background: #fff;
}

.drop-btn {
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  background: var(--pla-deep-red);
  color: #fff;
  cursor: pointer;
}

.drop-btn:hover {
  background: #a51123;
  transform: translateY(-1px);
}

.drop-hint {
  font-size: 0.8rem;
  color: #8a788a;
  max-width: 22rem;
}

.drop-count-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a788a;
  margin-bottom: 0.7rem;
}

.drop-count-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.count-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.6rem 0.4rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.count-box span {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.count-box small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a788a;
}

.drop-note {
  font-size: 0.85rem;
  color: #6b5a6b;
}

@media (max-width: 768px) {
  .drop-hero {
    padding: 2.8rem 0 2.4rem;
  }

  .drop-title {
    font-size: 1.6rem;
  }
}


/* Footer */

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.6rem 0 2.2rem;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #7c6c7c;
}

@media (min-width: 750px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #7c6c7c;
}

.footer-links a:hover {
  color: var(--pla-deep-red);
}
.shop-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pla-deep-red);
  margin: 0.25rem 0 0.7rem;
}

.paypal-button-wrap {
  margin-top: 0.7rem;
}
/* PLA Branded Buy Button */
.pla-buy-btn {
  display: inline-block;
  background: var(--pla-deep-red);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: 0.25s ease;
  letter-spacing: 0.3px;
}

.pla-buy-btn:hover {
  background: #a51123;
  transform: translateY(-2px);
}
.cart-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: rgba(255, 247, 249, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.6rem 0;
  backdrop-filter: blur(10px);
  z-index: 40;
}

.cart-bar.hidden {
  display: none;
}

.cart-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.cart-summary {
  font-size: 0.85rem;
  color: #5b465b;
  display: flex;
  flex-direction: column;
}

.cart-btn {
  width: auto;
  padding-inline: 1.2rem;
}
.cart-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: rgba(255, 247, 249, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.6rem 0;
  backdrop-filter: blur(10px);
  z-index: 40;
}

.cart-bar.hidden {
  display: none;
}

.cart-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.cart-summary {
  font-size: 0.85rem;
  color: #5b465b;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cart-note {
  font-size: 0.78rem;
  color: #8a748a;
}

.cart-btn {
  width: auto;
  padding-inline: 1.2rem;
}

/* Checkout modal */

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.checkout-modal.hidden {
  display: none;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.checkout-panel {
  position: relative;
  max-width: 640px;
  margin: 4rem auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.6rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 700px) {
  .checkout-panel {
    margin: 2.5rem 1rem;
    padding: 1.4rem 1.1rem 1.3rem;
  }
}

.checkout-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: #8a748a;
}

.checkout-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.checkout-text {
  font-size: 0.86rem;
  color: #715a71;
  margin-bottom: 1rem;
}

.checkout-form {
  display: grid;
  gap: 0.9rem;
}

.checkout-hint {
  font-size: 0.8rem;
  color: #8a748a;
  background: #fdf7f9;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hidden-textarea {
  display: none;
}
.pla-buy-btn.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Customer Care Layout */
.care-hero {
  padding: 6rem 0 3rem;
}

.care-section {
  padding: 3rem 0 4rem;
}

.care-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.care-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}

.care-heading {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.care-subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.care-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1.4rem;
  margin-bottom: 0.3rem;
}

.care-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.5rem;
}

.care-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}

.care-steps {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.care-steps li + li {
  margin-top: 0.4rem;
}

.care-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ */
.care-faq {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.faq-list {
  margin-top: 2rem;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.faq-toggle {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.faq-toggle span:first-child {
  font-size: 0.95rem;
}

.faq-icon {
  font-size: 1rem;
  margin-left: 1rem;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding-bottom: 0;
}

.faq-panel p,
.faq-panel ul {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.8rem;
}

.faq-panel ul {
  padding-left: 1.2rem;
}

.faq-item.open .faq-panel {
  padding-bottom: 1rem;
}
/* -------------------- CUSTOMER CARE -------------------- */

.care-hero {
  padding: 6rem 0 3rem;
  background: #fdf7fa; /* very soft pink tint */
}

.care-hero-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.care-hero .section-title {
  margin-bottom: 1rem;
}

.care-hero .section-text {
  max-width: 34rem;
}

.care-hero-note {
  padding: 1.75rem 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fde7ee, #f9f0f4);
  border: 1px solid rgba(180, 67, 90, 0.12);
  max-width: 22rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.03);
}

.care-hero-note h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.care-hero-note p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.care-hero-note a {
  text-decoration: none;
  border-bottom: 1px solid rgba(108, 33, 52, 0.4);
}

/* Grid of cards */

.care-grid-section {
  padding: 2rem 0 5rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.care-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.75rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03);
}

.care-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.care-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b4445d;
  margin-bottom: 0.75rem;
}

.care-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.care-card ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.care-card li {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

/* Small hover so it feels luxe but not loud */

.care-card {
  transition: transform 160ms ease-out, box-shadow 160ms ease-out,
              border-color 160ms ease-out;
}

.care-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(180, 67, 90, 0.18);
}
/* CUSTOMER CARE PAGE — LUXURY LAYOUT */

.customer-care-hero {
  padding: 80px 0 40px;
}

.customer-care-hero h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.customer-care-hero p {
  max-width: 600px;
  color: #555;
  line-height: 1.6;
}


/* GRID LAYOUT */
.customer-care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  padding-top: 20px;
}


/* LUXURY INFO CARDS */
.cc-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border: 1px solid #f1f1f1;
}

.cc-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  color: #1a1a1a;
}

.cc-card p,
.cc-card li {
  color: #444;
  line-height: 1.65;
  font-size: 0.97rem;
  margin-bottom: 8px;
}

.cc-card ul {
  padding-left: 20px;
}

.cc-subtitle {
  margin-top: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
/* ------------------------------ */
/* PLA COLOR PALETTE              */
/* ------------------------------ */
:root {
  --pla-red: #7a0c1b;              /* deep luxe red */
  --pla-pink: #f7e6ee;             /* soft muted pink */
  --pla-light: #faf7f9;            /* pale background */
  --pla-text: #1e1e1e;             /* clean black */
  --pla-radius: 20px;
}

/* ------------------------------ */
/* CUSTOMER CARE — HERO           */
/* ------------------------------ */
.care-hero {
  position: relative;
  background: var(--pla-light);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.care-hero-halo {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 240, 0.6) 0%,
    rgba(255, 215, 240, 0.15) 60%,
    rgba(255, 215, 240, 0) 100%
  );
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.care-hero-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
}

.care-hero-copy {
  max-width: 520px;
}

.care-hero-note {
  background: white;
  padding: 1.8rem 2rem;
  border-radius: var(--pla-radius);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  max-width: 380px;
}

/* ------------------------------ */
/* CUSTOMER CARE — GRID           */
/* ------------------------------ */
.care-grid-section {
  padding: 4rem 0 6rem;
  background: var(--pla-light);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

/* ------------------------------ */
/* CARE CARD                      */
/* ------------------------------ */
.care-card {
  position: relative;
  background: white;
  padding: 2.2rem;
  border-radius: var(--pla-radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.care-card-halo {
  position: absolute;
  top: -50px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 210, 235, 0.45),
    rgba(255, 210, 235, 0.1) 70%,
    rgba(255, 210, 235, 0) 100%
  );
  filter: blur(35px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.care-card h3 {
  position: relative;
  font-size: 1.25rem;
  color: var(--pla-red);
  z-index: 1;
  margin-bottom: 0.3rem;
}

.care-tag {
  position: relative;
  display: inline-block;
  background: var(--pla-pink);
  padding: 0.25rem 0.7rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  z-index: 1;
}

.care-card p,
.care-card ul {
  position: relative;
  z-index: 1;
  color: var(--pla-text);
}

.care-card ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.care-card ul li {
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

/* ------------------------------ */
/* MOBILE RESPONSIVENESS          */
/* ------------------------------ */
@media (max-width: 1020px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-hero-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-hero {
    padding: 4rem 0 3rem;
  }

  .care-hero-note {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .care-card {
    padding: 1.5rem;
  }

  .care-hero-inner {
    gap: 2rem;
  }

  .care-hero-copy .section-title {
    font-size: 1.8rem;
  }
}
/* HALO BEHIND CARDS */
.care-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.care-card::before {
  content: "";
  position: absolute;
  top: -45%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;

  /* PLA halo style: soft pink + soft wine */
  background: radial-gradient(
    circle,
    rgba(255, 170, 185, 0.16) 0%,
    rgba(255, 210, 225, 0.10) 40%,
    rgba(255, 255, 255, 0) 70%
  );

  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.care-card * {
  position: relative;
  z-index: 2;
}

/* HEADER LAYOUT */

.site-header {
  background: #fbf7f8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  position: relative;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2a2024;
}

/* desktop nav links */

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  text-decoration: none;
  color: #4e3a42;
}

/* icons on the right */

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-icon {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
  stroke: #3d2933;
  stroke-width: 1.7;
  fill: none;
}

.nav-icon:hover svg,
.nav-icon:focus-visible svg {
  stroke-width: 2;
  opacity: 0.8;
}

.nav-icon:focus-visible {
  outline: 2px solid rgba(61, 41, 51, 0.25);
  outline-offset: 2px;
}

/* hamburger button */

.nav-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: none; /* hidden on desktop */
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #2a2024;
  margin: 4px 0;
}

/* SEARCH OVERLAY */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 4, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out;
  z-index: 999;
}

.search-overlay.search-open {
  opacity: 1;
  pointer-events: auto;
}

.search-inner {
  background: #faf7f8;
  padding: 1.5rem 1.75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(480px, 88vw);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.search-inner input[type="text"] {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 0.95rem;
  outline: none;
}

.search-close {
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
}
/* DESKTOP HEADER REFINES */
@media (min-width: 769px) {
  .nav {
    align-items: center;
  }

  /* icons on the right – more space before HOME */
  .nav-actions {
    margin-left: auto;
    margin-right: 2.25rem;  /* <— adjust this if you want more/less space */
    gap: 1.4rem;            /* space between search + cart */
  }

  .nav-links {
    gap: 2rem;              /* a touch more space between menu items */
    font-size: 0.9rem;
  }
}
/* MOBILE STYLES */

@media (max-width: 768px) {
  .nav {
    padding: 0.9rem 1rem;
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-logo {
    font-size: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* MOBILE MENU PANEL */
  .nav-links {
    position: fixed;
    top: 56px;              /* just under header */
    left: 0;
    right: 0;
    background: #fbf7f8;
    display: none;          /* hidden by default */
    flex-direction: column;
    padding: 1.25rem 1.25rem 2.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 9999;          /* sit above page content */
  }

  .nav-links.is-open {
    display: flex !important;   /* force it open */
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .nav-actions {
    margin-left: auto;
  }
}
/* ---------- PRODUCT PAGE ---------- */

.product {
  padding-top: 4.5rem;
}

.product-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: flex-start;
  }
}

.product-main-img {
  width: 100%;
  border-radius: 18px;
  background: #fdf7fa;
  object-fit: cover;
}

.product-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.product-thumb {
  width: 70px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
}

.product-thumb.is-active {
  opacity: 1;
  outline: 2px solid rgba(127, 27, 50, 0.6);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #8a788a;
}

.product-title {
  font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
  font-size: 1.7rem;
  margin-bottom: 0.1rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pla-deep-red);
}

.product-subtext {
  font-size: 0.9rem;
  color: #4d404d;
}

.product-sizes {
  font-size: 0.85rem;
}

.size-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.size-chip {
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  font-size: 0.8rem;
  cursor: pointer;
}

.size-chip.is-selected {
  border-color: var(--pla-deep-red);
  background: #fbe7ee;
}

.size-note {
  font-size: 0.8rem;
  color: #7b6b7b;
}

.product-details h2,
.product-care h2 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-details ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.product-details li {
  margin-bottom: 0.25rem;
}

.product-care p {
  font-size: 0.9rem;
  color: #4d404d;
}

/* related row */

.product-related {
  padding-top: 2.5rem;
}

.related-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.related-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.related-card {
  flex: 0 0 150px;
  text-decoration: none;
  color: #3b323b;
}

.related-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.4rem;
}

.related-card p {
  font-size: 0.8rem;
}
.size-pill {
  border-radius: 999px;
  border: 1px solid #d7c7cf;
  padding: 0.25rem 0.8rem;
  background: white;
  font-size: 0.8rem;
  cursor: pointer;
}

.size-pill.is-selected {
  border-color: var(--pla-deep-red);
  background: #fbe7ee;
  color: var(--pla-deep-red);
}
/* Size pills on product page */
.size-pill {
  border-radius: 999px;
  border: 1px solid #d4c4cf;
  background: #faf6f9;
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 0.35rem;
  color: #4e3b4a;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.size-pill:hover {
  border-color: #b98aa5;
}

.size-pill.is-selected {
  background: #7f1b32;      /* PLA deep red */
  border-color: #7f1b32;
  color: #ffffff;
}
/* Size pills */
.size-pill {
  border-radius: 999px;
  border: 1px solid #c9b7c9;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: #fff;
  color: #483347;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.size-pill:hover {
  border-color: #7f1b32;
}

.size-pill.is-selected {
  background: #7f1b32;
  color: #fff;
  border-color: #7f1b32;
}
.hidden {
  display: none !important;
}
.hidden{ display:none !important; }
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
/* ---------- DROP HERO LAYOUT (SHOP) ---------- */

/* stop the big two-column split */
.drop-top{
  display:block;
}

/* headline + countdown sit together */
.drop-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1.5rem;
}

/* keep the title from getting too narrow */
.drop-title{
  max-width: 720px;
}

/* keep countdown compact */
.drop-countdown{
  max-width: 320px;
}

/* optional: tighten countdown spacing */
.drop-count-grid{
  display:flex;
  gap:0.65rem;
  flex-wrap:nowrap;
}

/* mobile stack */
@media (max-width: 900px){
  .drop-title-row{
    flex-direction:column;
    gap:1rem;
  }

  .drop-countdown{
    max-width:none;
  }

  .drop-count-grid{
    flex-wrap:wrap;
  }
}
/* ===== FIX: SHOP DROP HERO LAYOUT OVERRIDE ===== */

/* Kill any old grid/flex layout that’s splitting the hero into columns */
.drop-hero-inner,
.drop-top,
.drop-copy{
  display:block !important;
}

/* Keep the whole hero content centered and not too wide */
.drop-hero .drop-hero-inner{
  max-width: 980px;
  margin: 0 auto;
}

/* Title + countdown ONLY */
.drop-title-row{
  display:flex !important;
  align-items:flex-start;
  justify-content:space-between;
  gap: 2rem;
}

/* Make sure the title stays readable */
.drop-title{
  max-width: 720px;
}

/* Make countdown compact */
.drop-countdown{
  max-width: 320px;
}

/* Keep paragraph + form stacked under */
.drop-text{
  max-width: 720px;
  margin-top: 1.2rem;
}

/* Form should NOT float right. Keep it under the text. */
.drop-form{
  max-width: 420px;
  margin-top: 1.2rem;
}

/* Make inputs full width */
.drop-form-row input{
  width: 100%;
  box-sizing: border-box;
}

/* Mobile stack */
@media (max-width: 900px){
  .drop-title-row{
    flex-direction:column !important;
    gap: 1rem;
  }

  .drop-countdown{
    max-width:none;
  }

  .drop-text,
  .drop-form{
    max-width: none;
  }
}
/* ===== TIGHTEN: TITLE + COUNTDOWN SPACING ===== */

.drop-title-row{
  align-items:flex-start;
}

/* left side (headline) should not push into the countdown */
.drop-title{
  flex: 1 1 auto;
  max-width: 560px;          /* key line */
  margin: 0;
  line-height: 1.05;
}

/* right side (countdown) gets its own lane */
.drop-countdown{
  flex: 0 0 360px;           /* key line */
  margin-left: auto;
  text-align: right;
}

/* keep the countdown grid snug and right aligned */
.drop-count-grid{
  justify-content: flex-end;
}

/* make the “limited pieces” text align with the countdown */
.drop-note{
  margin-top: 0.75rem;
  max-width: 360px;
  margin-left: auto;
}

/* on smaller screens stack them so nothing collides */
@media (max-width: 980px){
  .drop-title{
    max-width: none;
  }
  .drop-countdown{
    flex: 0 0 auto;
    text-align: left;
  }
  .drop-count-grid{
    justify-content: flex-start;
  }
  .drop-note{
    max-width: none;
    margin-left: 0;
  }
}
/* ===== FINAL SHOP HERO LAYOUT (CLEAN GRID) ===== */

.drop-hero{
  padding: 4.5rem 0 3.5rem;
}

.drop-hero .drop-hero-inner{
  max-width: 980px;
  margin: 0 auto;
}

/* clean grid */
.drop-top{
  display: grid !important;
  grid-template-columns: 1fr 360px;
  grid-template-areas:
    "title countdown"
    "text  countdown"
    "form  countdown";
  column-gap: 3rem;
  row-gap: 1.25rem;
  align-items: start;
}

/* place items */
.drop-title-row{
  grid-area: title;
  display: block !important;
}

.drop-title{
  margin: 0;
  max-width: 640px;
  line-height: 1.05;
}

.drop-text{
  grid-area: text;
  max-width: 640px;
  margin: 0;
}

.drop-form{
  grid-area: form;
  max-width: 460px;
  margin: 0;
}

/* countdown lives in a clean right column */
.drop-countdown{
  grid-area: countdown;
  text-align: left;
  max-width: 360px;
  margin: 0;
  padding-top: 0.35rem;
}

.drop-count-label{
  margin: 0 0 0.75rem;
}

.drop-count-grid{
  justify-content: flex-start;
  gap: 0.75rem;
}

.count-box{
  min-width: 72px;
}

.drop-note{
  margin: 0.9rem 0 0;
  max-width: 360px;
}

/* form spacing */
.drop-form-row{
  margin-bottom: 0.8rem;
}

.drop-form-row input{
  width: 100%;
  box-sizing: border-box;
}

/* stack on smaller screens */
@media (max-width: 900px){
  .drop-top{
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "countdown"
      "text"
      "form";
    row-gap: 1.1rem;
  }

  .drop-countdown,
  .drop-note{
    max-width: none;
  }

  .drop-form{
    max-width: none;
  }
}
/* ===== FINAL REFINEMENT: COUNTDOWN ASIDE ===== */

/* Two-column hero */
.drop-top{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px;
  column-gap: 3.5rem;
  align-items: start;
}

/* LEFT CONTENT STACK */
.drop-title,
.drop-text,
.drop-form{
  max-width: 640px;
}

/* COUNTDOWN ASIDE */
.drop-countdown{
  justify-self: end;
  text-align: right;
  padding-top: 0.25rem;
}

/* tighten countdown visual weight */
.drop-count-label{
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.drop-count-grid{
  justify-content: flex-end;
  gap: 0.6rem;
}

.count-box{
  min-width: 68px;
}

/* make note subtle */
.drop-note{
  font-size: 0.8rem;
  opacity: 0.75;
  max-width: 300px;
  margin-left: auto;
}

/* MOBILE: stack cleanly */
@media (max-width: 900px){
  .drop-top{
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .drop-countdown{
    justify-self: start;
    text-align: left;
  }

  .drop-note{
    margin-left: 0;
  }
}
/* ===== COUNTDOWN FLOAT RIGHT (DETACHED) ===== */

.drop-hero{
  position: relative;
}

.drop-hero-inner{
  position: relative;
}

/* lock main content width */
.drop-top{
  max-width: 720px;
}

/* FLOATING COUNTDOWN */
.drop-countdown{
  position: absolute;
  top: 3.5rem;              /* aligns with headline */
  right: 0;                 /* pushes into negative space */
  width: 300px;
  text-align: right;
}

/* visual tuning */
.drop-count-label{
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.drop-count-grid{
  justify-content: flex-end;
  gap: 0.6rem;
}

.count-box{
  min-width: 68px;
}

.drop-note{
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.75rem;
  max-width: 260px;
  margin-left: auto;
}

/* MOBILE RESET */
@media (max-width: 900px){
  .drop-countdown{
    position: static;
    width: auto;
    text-align: left;
    margin-top: 1rem;
  }
}
/* ===== COUNTDOWN EMPHASIS (LUXE, NOT LOUD) ===== */

.drop-countdown{
  transform: translateY(-6px); /* subtle lift */
}

/* “DROP OPENS IN” */
.drop-count-label{
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

/* numbers */
.count-box span{
  font-size: 1.35rem;      /* was smaller */
  font-weight: 500;
}

/* unit labels */
.count-box small{
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  opacity: 0.75;
}

/* boxes themselves */
.count-box{
  padding: 0.65rem 0.5rem;
  border-radius: 14px;
}

/* spacing between boxes */
.drop-count-grid{
  gap: 0.75rem;
}

/* supporting note */
.drop-note{
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.4;
}
/* ===== Newsletter modal ===== */
.pla-modal.hidden { display: none !important; }

.pla-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.pla-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 8, 0.55);
}

/* card */
.pla-modal-card{
  position: relative;
  width: min(640px, 92vw);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
  transform: translateY(6px);
  animation: plaModalIn 180ms ease-out forwards;
}

@keyframes plaModalIn{
  to { transform: translateY(0); }
}

.pla-modal-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.pla-modal-close:hover{ background: rgba(255,255,255,0.26); }

/* hero (image-style header) */
.pla-modal-hero{
  padding: 2.1rem 1.6rem 1.6rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15,7,11,0.78), rgba(15,7,11,0.30)),
    url("assets/newsletter.jpg");
  background-size: cover;
  background-position: center;
}

.pla-modal-hero h2{
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.pla-modal-hero p{
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
  max-width: 40ch;
}

/* form */
.pla-modal-form{
  padding: 1.35rem 1.6rem 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.pla-modal-form input[type="email"]{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 14px;           /* more like screenshot */
  padding: 0.95rem 1rem;
  font-size: 0.98rem;
  outline: none;
  background: #fff;
}

.pla-modal-form input[type="email"]:focus{
  border-color: rgba(127,27,50,0.55);
  box-shadow: 0 0 0 3px rgba(127,27,50,0.10);
}

.pla-modal-btn{
  border: none;
  border-radius: 14px;           /* more like screenshot */
  padding: 0.95rem 1rem;
  background: #1b0b12;           /* black-ish luxe like screenshot */
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  cursor: pointer;
}

.pla-modal-btn:hover{ opacity: 0.92; }

.pla-modal-dontshow{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #4d404d;
  margin-top: 0.1rem;
}

.pla-modal-dontshow input{
  width: 18px;
  height: 18px;
  accent-color: #7f1b32;
}

.pla-modal-fineprint{
  font-size: 0.78rem;
  color: #7b6b7b;
  margin: 0.25rem 0 0;
  line-height: 1.4;
}

/* mobile tweaks */
@media (max-width: 520px){
  .pla-modal-hero{
    padding: 1.7rem 1.2rem 1.2rem;
  }
  .pla-modal-form{
    padding: 1.1rem 1.2rem 1.2rem;
  }
  .pla-modal-hero h2{
    font-size: 1.35rem;
  }
}
.pla-modal-form input[type="tel"]{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-size: 0.98rem;
  outline: none;
  background: #fff;
}

.pla-modal-consent{
  display:flex;
  gap:0.6rem;
  align-items:flex-start;
  font-size: 0.9rem;
  color: #4d404d;
  line-height: 1.35;
}
.pla-modal-consent input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #7f1b32;
}
/* DROP 01 SLIDER */
.drop-section-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.drop-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}

.drop-slider-track {
  position: relative;
  height: 360px;
}

.drop-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 420ms ease, transform 520ms ease;
  margin: 0;
}

.drop-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.drop-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drop-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.drop-slider-btn:hover {
  background: rgba(255,255,255,0.92);
}

.drop-slider-btn.prev { left: 12px; }
.drop-slider-btn.next { right: 12px; }

.drop-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 12px;
}

.drop-slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.drop-slider-dots .dot.is-active {
  background: rgba(120, 30, 45, 0.85);
  border-color: rgba(120, 30, 45, 0.85);
}

@media (max-width: 900px) {
  .drop-section-grid {
    grid-template-columns: 1fr;
  }
  .drop-slider-track {
    height: 320px;
  }
}
/* DROP 01 VISUAL SLIDER (PLACEHOLDER) */
.drop-visual {
  margin-top: 1.6rem;
}

.drop-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}

.drop-slider-track {
  position: relative;
  height: 360px;
}

.drop-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 420ms ease, transform 520ms ease;
}

.drop-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Placeholder look (designer placeholder vibe) */
.drop-placeholder {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(120,30,45,0.10), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(120,30,45,0.08), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
}

.drop-placeholder span {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.drop-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.drop-slider-btn:hover {
  background: rgba(255,255,255,0.92);
}

.drop-slider-btn.prev { left: 12px; }
.drop-slider-btn.next { right: 12px; }

.drop-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 12px;
}

.drop-slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.drop-slider-dots .dot.is-active {
  background: rgba(120, 30, 45, 0.85);
  border-color: rgba(120, 30, 45, 0.85);
}

@media (max-width: 900px) {
  .drop-slider-track {
    height: 320px;
  }
}
/* =========================
   COLLECTION LUXE UPGRADES
   Paste at end of styles.css
========================= */

.drop-hero {
  position: relative;
  padding: 4.8rem 0 3.5rem;
  overflow: hidden;
}

.drop-hero-halo {
  position: absolute;
  inset: -30% -10% auto auto;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  border: 1px solid rgba(120, 30, 45, 0.14);
  background: radial-gradient(circle at center, rgba(120, 30, 45, 0.06), transparent 60%);
  filter: blur(0px);
  pointer-events: none;
}

.drop-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: start;
}

.drop-hero-intro {
  margin-top: 1rem;
}

.drop-hero-media {
  border-radius: 22px;
  padding: 1.2rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(120, 30, 45, 0.10);
  backdrop-filter: blur(6px);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.media-tile {
  border-radius: 18px;
  border: 1px solid rgba(120, 30, 45, 0.10);
  background: rgba(245, 238, 239, 0.55);
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-tile.tile-a {
  grid-column: 1 / -1;
  min-height: 220px;
}

.media-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-tile {
  aspect-ratio: 1 / 1;
  min-height: auto;
}

.media-tile.tile-a {
  aspect-ratio: 3 / 2;
}



.media-placeholder {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

.media-caption {
  margin-top: 0.95rem;
  font-size: 0.95rem;
  opacity: 0.78;
}

.drop-panel {
  padding: 3.8rem 0;
  background: linear-gradient(180deg, rgba(245, 238, 239, 0.55), rgba(255,255,255,0));
  border-top: 1px solid rgba(120, 30, 45, 0.06);
}

.luxe-grid {
  gap: 1.2rem;
}

.luxe-card {
  overflow: hidden;
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* consistent vertical luxury proportion */
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(120, 30, 45, 0.10);
  background: rgba(245, 238, 239, 0.55);
  margin-bottom: 1rem;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* shows full garment cleanly */
  display: block;
}


.card-media-placeholder {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.2;
}

.stories {
  padding: 3.8rem 0 4.2rem;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.story-card {
  border-radius: 22px;
  padding: 1.5rem 1.5rem;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(120, 30, 45, 0.10);
  backdrop-filter: blur(6px);
}

.story-meta {
  margin-bottom: 0.9rem;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 30, 45, 0.18);
  background: rgba(245, 238, 239, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.story-title {
  margin: 0;
  font-size: 1.35rem;
}

.story-text {
  margin-top: 0.8rem;
  max-width: 78ch;
}

/* Responsive */
@media (max-width: 900px) {
  .drop-hero-grid {
    grid-template-columns: 1fr;
  }
  .drop-hero {
    padding: 3.8rem 0 3rem;
  }
  .drop-hero-halo {
    inset: -35% -30% auto auto;
    width: 520px;
    height: 520px;
  }
}
/* ===== COLLECTION: MOBILE TUNE (no redesign) ===== */
@media (max-width: 520px){

  /* tighten the hero block */
  .drop-hero{
    padding: 3.6rem 0 2.8rem;
  }

  /* buttons: cleaner stack */
  .btn-row{
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-row .btn{
    width: 100%;
  }

  /* media card: less chunky */
  .drop-hero-media{
    padding: 0.85rem;
    border-radius: 18px;
  }

  /* tiles: reduce visual weight */
  .media-grid{
    gap: 0.7rem;
  }

  .media-tile{
    border-radius: 14px;
  }

  /* proportions: less “tall block” feeling */
  .media-tile.tile-a{
    aspect-ratio: 16 / 10;
  }
  .media-tile.tile-b,
  .media-tile.tile-c{
    aspect-ratio: 1 / 1;
  }

  /* caption spacing */
  .media-caption{
    margin-top: 0.75rem;
    font-size: 0.92rem;
  }
}
.drop-hero-intro{
  margin-bottom: 1.8rem;
}
/* FIX: restore button sizing on mobile */
@media (max-width: 520px){
  .btn-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .btn-row .btn{
    width: auto;
    padding-inline: 1.4rem;
  }
}
/* FIX: hero media scale on mobile */
@media (max-width: 520px){
  .drop-hero-media{
    padding: 0.75rem;
  }

  .media-tile.tile-a{
    aspect-ratio: 5 / 4;   /* was too tall */
  }

  .media-tile.tile-b,
  .media-tile.tile-c{
    aspect-ratio: 6 / 5;
  }
}
/* =========================
   PRE-ORDER FLOW BLOCK
========================= */
.preorder-flow{
  margin: 1rem 0 1.1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
}

.preorder-badge{
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(127,27,50,0.08);
  border: 1px solid rgba(127,27,50,0.14);
  color: #7f1b32;
  margin-bottom: 0.6rem;
}

.preorder-lede{
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: #4d404d;
  line-height: 1.55;
}

.preorder-points{
  margin: 0;
  padding-left: 1.1rem;
  color: #3b323b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.preorder-points li{ margin: 0.35rem 0; }

.preorder-faq{
  margin-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 0.75rem;
}

.preorder-faq summary{
  cursor: pointer;
  font-size: 0.86rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #2a2024;
}

.preorder-faq p{
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4d404d;
}

/* =========================
   BUTTON FIX (MOBILE)
   Keeps buttons like before
========================= */
@media (max-width: 520px){
  .btn-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .btn-row .btn{
    width: auto !important;
    padding-inline: 1.4rem;
  }
}
/* ===== PLA: STOP PRODUCT BUTTONS FROM GOING FULL-WIDTH ===== */
.pla-buy-btn--auto{
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-inline: 1.4rem;
}

.product-info .pla-buy-btn--auto{
  align-self: flex-start;
}

/* keep it neat on small screens too (still NOT full width) */
@media (max-width: 520px){
  .product-info .pla-buy-btn--auto{
    align-self: stretch;
    width: auto;            /* stays auto, not 100% */
    max-width: 340px;       /* prevents “long block” look */
  }
}
/* Tighten drop hero spacing */
.drop-hero {
  padding: 52px 0 26px;
}
.drop-hero-inner {
  padding-bottom: 0;
}

/* Remove any accidental huge hero heights */
#drop-hero,
.drop-hero,
.shop-hero {
  min-height: unset !important;
}

/* How it works strip */
.how-it-works {
  padding: 10px 0 34px;
}
.how-it-works-inner {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.how-step {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px;
}
.how-step span {
  display: block;
  margin-top: 6px;
  opacity: 0.8;
  font-size: 14px;
}

@media (max-width: 860px) {
  .how-it-works-inner {
    grid-template-columns: 1fr;
  }
}

/* Shop section spacing */
.shop-section {
  padding: 18px 0 42px;
}
.shop-subtitle {
  margin: 18px 0 14px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.shop-note {
  margin-top: 14px;
}
/* FIX: kill the dead space under “Drop 01 is live” */
#drop-hero.drop-hero{
  min-height: auto !important;
  padding: 48px 0 20px !important; /* top / bottom */
}

#drop-hero .drop-hero-inner{
  min-height: auto !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  align-items: flex-start !important;
}

#drop-hero .drop-top{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#drop-hero .drop-form{
  margin: 18px 0 0 !important;
}

#drop-hero .drop-hint{
  margin-top: 10px !important;
}

/* Pull Shop section up closer */
.shop-section{
  padding-top: 10px !important;
}

/* If your shop label/title has extra top margin, tighten it */
.section-label{ margin-top: 0 !important; }
.section-title{ margin-top: 10px !important; }
#drop-hero{
  height: auto !important;
  display: block !important;
}
/* SHOP PAGE: fix empty hero + create 2-column drop layout */
#drop-hero.drop-hero{
  padding: 52px 0 20px !important;
  min-height: auto !important;
  height: auto !important;
}

#drop-hero .drop-hero-inner{
  max-width: 1100px;
  min-height: auto !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  align-items: flex-start !important;
}

#drop-hero .drop-layout{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

#drop-hero .drop-left{
  min-width: 0;
}

#drop-hero .drop-right{
  display: grid;
  gap: 12px;
  margin-top: 56px; /* lines up with form area */
}

#drop-hero .drop-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.35);
}

#drop-hero .drop-card-title{
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#drop-hero .drop-card-text{
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.35;
}

/* Pull shop section closer */
.shop-section{
  padding-top: 10px !important;
}

/* Mobile stack */
@media (max-width: 860px){
  #drop-hero .drop-layout{
    grid-template-columns: 1fr;
  }
  #drop-hero .drop-right{
    margin-top: 14px;
  }
}
/* =========================
   CORE RELEASE NOTE (SHOP + PRODUCT PAGES)
   ========================= */

.drop-signiture .drop-top{
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px){
  .drop-signiture .drop-top{
    grid-template-columns: minmax(440px, 1fr) minmax(420px, 560px);
    column-gap: 2.6rem;
    align-items: start;
  }
}

.core-release{
  margin: 0.75rem 0 1.25rem;
  justify-self: end;
  max-width: 560px;

  padding: 1.5rem 1.65rem;
  border-radius: 18px;

  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.core-release-top{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.core-badge{
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;

  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  background: rgba(127,27,50,0.08);
  border: 1px solid rgba(127,27,50,0.14);
  color: #7f1b32;
}

.core-meta{
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c5b66;
}

.core-lede{
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: #4d404d;
  line-height: 1.6;
}

.core-list{
  margin: 0;
  padding-left: 1.1rem;
  color: #3b323b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.core-list li{ margin: 0.45rem 0; }

/* keep the left paragraph from stretching too wide */
.drop-text{ max-width: 60ch; }
/* CORE RELEASE NOTE (PRODUCT PAGES) */
.product-info .core-release{
  justify-self: start;
  max-width: 100%;
  margin: 0.9rem 0 1.15rem;
}
/* PRODUCT: COLOR / COLORWAY */
.product-section-title{
  margin: 1.1rem 0 0.65rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.product-colors{
  margin-top: 1.1rem;
}

.swatch-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 720px){
  .swatch-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.swatch{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  text-align: left;
}

.swatch:hover{
  border-color: rgba(127,27,50,0.22);
}

.swatch.is-selected{
  border-color: rgba(127,27,50,0.42);
  box-shadow: 0 0 0 3px rgba(127,27,50,0.08);
}

.swatch-dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  flex: 0 0 auto;
}

.swatch-name{
  font-size: 0.92rem;
  color: #3b323b;
}

/* Solid dots */
.swatch-crimson{ background: #7f1b32; border-color: rgba(127,27,50,0.35); }
.swatch-blush{ background: #f3d6de; }
.swatch-black{ background: #121016; border-color: rgba(0,0,0,0.25); }
.swatch-white{ background: #ffffff; }

/* Two-tone dots (simple split look) */
.swatch-bw{
  background: linear-gradient(90deg, #121016 0 50%, #ffffff 50% 100%);
}
.swatch-pw{
  background: linear-gradient(90deg, #f3d6de 0 50%, #ffffff 50% 100%);
}

.colorway-hint{
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #6c5b66;
  line-height: 1.45;
  max-width: 60ch;
}
.product-colors{
  margin: 1rem 0 1.1rem;
}

.product-color-label{
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: #4d404d;
}

.swatch-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.swatch{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.78);
  cursor: pointer;
  text-align: left;
}

.swatch:hover{
  border-color: rgba(127,27,50,0.22);
}

.swatch.is-selected{
  border-color: rgba(127,27,50,0.40);
  box-shadow: 0 0 0 2px rgba(127,27,50,0.14);
}

.swatch-dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
}

.swatch-name{
  font-size: 0.92rem;
  color: #3b323b;
}

/* swatch colors */
.swatch-crimson{ background: #7f1b32; }
.swatch-blush{ background: #f3d6de; }
.swatch-black{ background: #121212; }
.swatch-white{ background: #ffffff; }
.swatch-bw{ background: linear-gradient(90deg, #121212 50%, #ffffff 50%); }
/* DESIGNER */
#designer{
  padding: 3.6rem 0;
  border-top: 1px solid rgba(120, 30, 45, 0.08);
}

#designer .section-title{
  font-size: clamp(2.2rem, 2.6vw, 2.8rem);
}

.designer-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  margin-top: 0.4rem;
}

.designer-copy .section-text{
  max-width: 52ch;
  margin: 0;
}

/* portrait frame */
.designer-media{
  position: relative;
  width: 100%;
  max-width: 380px;              /* quiet authority: smaller, controlled */
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(245, 238, 239, 0.55);
  border: 1px solid rgba(120, 30, 45, 0.10);
}

/* image */
.designer-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}

/* Responsive */
@media (max-width: 900px){
  .designer-grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;                 /* more breathing room */
  }

  .designer-media{
    max-width: 380px;            /* keep it restrained on mobile too */
    width: 88%;
    margin: 0 auto;
  }
}

/* ===== Collection: make Design Stories feel like a house ===== */

.stories {
  padding: 3.6rem 0;
  border-top: 1px solid rgba(120, 30, 45, 0.08);
}

.story-stack {
  display: grid;
  gap: 1.2rem;
}

.story-card {
  background: transparent;
  border: 1px solid rgba(120, 30, 45, 0.10);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
}

.story-meta {
  margin-bottom: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(120, 30, 45, 0.12);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(40, 18, 22, 0.65);
}

.story-title {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.story-text {
  margin: 0;
  max-width: 72ch;
  line-height: 1.75;
  color: rgba(40, 18, 22, 0.78);
}

/* Product cards: image control */
.card-media {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(245, 238, 239, 0.55);
  border: 1px solid rgba(120, 30, 45, 0.10);
}

.card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* tighter, more editorial on desktop */
@media (min-width: 900px) {
  .story-stack {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .story-card {
    padding: 1.8rem 2rem;
  }
}
