/* ==========================================================================
   2026 EDITORIAL LOOKBOOK STYLES — MELLOW DESIGN SYSTEM
   ========================================================================== */

.coll-badge {
  border-radius: 30px !important;
}

/* ==========================================================================
   CURATED EDITORIAL GALLERY SECTION (-120px Overlap under Hero)
   ========================================================================== */
.lb-gallery-section {
  position: relative;
  z-index: 10;
  margin-top: -120px !important;
  margin-bottom: 0;
  width: 100% !important;
}
.lb-gallery-card {
  background: var(--off-white) !important;
  border: none !important;
  border-radius: 0 0 var(--r-card) var(--r-card) !important;
  position: relative;
  z-index: 10;
  padding: 240px 50px 120px !important;
  width: 100%;
}
@media (max-width: 900px) {
  .lb-gallery-section {
    margin-top: -80px !important;
  }
  .lb-gallery-card {
    padding: 160px 30px 80px !important;
  }
}
@media (max-width: 600px) {
  .lb-gallery-section {
    margin-top: -50px !important;
  }
  .lb-gallery-card {
    padding: 100px 10px 50px !important;
  }
}
.lb-gallery-inner {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.lb-gallery__head {
  text-align: left;
  max-width: 100%;
  width: 100%;
  margin: 0 0 40px 0;
}
.lb-gallery__head h1,
.lb-gallery__title {
  font-size: var(--text-h1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
}
.lb-gallery__head h1 .muted,
.lb-gallery__title .muted {
  font-family: inherit;
  font-weight: 700 !important;
  color: var(--grey) !important;
}
@media (max-width: 900px) {
  .lb-gallery__head {
    margin-bottom: 28px;
  }
}

/* Category Filter Bar */
.lb-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
.lb-filter-btn {
  padding: 10px 22px;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--grey-lt);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--grey);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.lb-filter-btn:hover {
  border-color: rgba(227, 24, 55, 0.4);
  color: var(--red);
  background: rgba(227, 24, 55, 0.04);
  transform: translateY(-2px);
}
.lb-filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(227, 24, 55, 0.28);
}
@media (max-width: 600px) {
  .lb-filter-bar {
    gap: 8px;
    margin-bottom: 32px;
  }
  .lb-filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* 3-Column Lookbook Grid */
.lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 100%;
}
.lb-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  border: 1px solid var(--grey-lt);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}
.lb-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.lb-card:hover img {
  transform: scale(1.06);
}
.lb-card__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.1) 75%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.lb-card__top {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lb-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lb-card:hover .lb-card__cat {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.lb-card__arr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lb-card:hover .lb-card__arr {
  background: var(--white);
  color: var(--black);
  transform: scale(1.08);
}
.lb-card__arr svg {
  width: 15px;
  height: 15px;
}

.lb-card__body {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.lb-card__title {
  font-size: var(--text-h3);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lb-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .lb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .lb-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lb-card {
    aspect-ratio: 4 / 5;
  }
  .lb-card:nth-child(odd) {
    width: calc(100% - 40px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }
  .lb-card:nth-child(even) {
    width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

/* ==========================================================================
   EDITORIAL CRAFT SPOTLIGHT (Canvas White Section)
   ========================================================================== */
.craft-spotlight-section {
  margin-bottom: 0;
}
.craft-spotlight-card {
  background: var(--white) !important;
  border: none !important;
}
.craft-spotlight-inner,
.craft-spotlight-card .w-1500,
.craft-spotlight-card .craft-spotlight-inner {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline: 0 !important;
}
.craft-spotlight__head {
  text-align: left;
  max-width: 100%;
  width: 100%;
  margin: 0 0 48px 0;
}
.craft-spotlight__head h1,
.craft-spotlight__title {
  font-size: var(--text-h1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
}
.craft-spotlight__head h1 .muted,
.craft-spotlight__title .muted {
  font-family: inherit;
  font-weight: 700 !important;
  color: var(--grey) !important;
}
@media (max-width: 900px) {
  .craft-spotlight__head {
    margin-bottom: 32px;
  }
}

.craft-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 100%;
}
.craft-spotlight-item {
  padding: 40px 32px;
  background: var(--off-white);
  border: 1px solid var(--grey-lt);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.craft-spotlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  background: var(--red);
  border-color: var(--red);
}
.craft-spotlight-item__num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.craft-spotlight-item__num {
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  transition: color var(--dur) var(--ease);
}
.craft-spotlight-item__num-row svg {
  width: var(--text-h1);
  height: var(--text-h1);
  color: var(--red);
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease);
}
.craft-spotlight-item h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color var(--dur) var(--ease);
}
.craft-spotlight-item p {
  font-size: var(--text-sm);
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 0;
  transition: color var(--dur) var(--ease);
}
.craft-spotlight-item:hover .craft-spotlight-item__num,
.craft-spotlight-item:hover .craft-spotlight-item__num-row svg,
.craft-spotlight-item:hover h3 {
  color: var(--white);
}
.craft-spotlight-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .craft-spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .craft-spotlight-item {
    padding: 30px 20px;
  }
}
@media (max-width: 600px) {
  .craft-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .craft-spotlight-item {
    padding: 24px 20px;
  }
  .craft-spotlight-item:nth-child(1),
  .craft-spotlight-item:nth-child(3) {
    width: calc(100% - 40px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }
  .craft-spotlight-item:nth-child(2) {
    width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}




