/* ============================================
   MEUBLES CIANO — Collections Page Styles
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.collections-hero {
  position: relative;
  padding: 0;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: none;
}

.collections-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.collections-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.collections-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14, 12, 10, 0.45) 0%, rgba(14, 12, 10, 0.0) 18%),
    linear-gradient(to top, rgba(14, 12, 10, 0.95) 0%, rgba(14, 12, 10, 0.40) 55%, rgba(14, 12, 10, 0.10) 100%);
}


.collections-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 120px;
}

.collections-hero-content .page-hero-label {
  color: #e8c98a;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.collections-hero-content .page-hero-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #e8c98a;
  opacity: 0.6;
}

.collections-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8c98a;
  margin-bottom: 20px;
}

.collections-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #e8c98a;
  opacity: 0.7;
}

.collections-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #f5f0e8;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.collections-hero-content h1 em {
  font-style: italic;
  color: #e8c98a;
}

.collections-hero-sub {
  font-size: 0.9rem;
  color: rgba(232, 224, 214, 0.95);
  max-width: 440px;
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}


/* hero-scroll-hint styles live in style.css */

/* ============================================
   PORTFOLIO
   ============================================ */

/* hide/show filtered items */
.project-featured[data-hidden] {
  display: none;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: transparent;
  overflow: hidden;
  padding: 18px 0;
  opacity: 0.30;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 360s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
}

.marquee-content span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 201, 138, 0.6);
}

.marquee-dot {
  color: var(--color-accent) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
  opacity: 0.5;
}

/* ============================================
   IMMEDIATE LOAD REVEAL
   ============================================ */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal-now {
  animation: revealUp 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

/* ============================================
   CATEGORY FILTER BAR
   ============================================ */
.collections-filter-bar {
  position: sticky;
  top: var(--nav-height, 72px);
  z-index: 400;
  background: #0e0c0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.collections-filter-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.collections-filter-nav::-webkit-scrollbar { display: none; }

.filter-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 28px;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 224, 214, 0.38);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.filter-pill::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: #c9a96e;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-pill:hover {
  color: rgba(232, 224, 214, 0.7);
}

.filter-pill.active {
  color: #c9a96e;
}

.filter-pill.active::after {
  transform: scaleX(1);
}

.filter-count {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.5;
}

.filter-pill.active .filter-count {
  opacity: 0.8;
}

/* vertical separators between pills */
.filter-pill + .filter-pill::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   COLLECTIONS EMPTY STATE
   ============================================ */
.collections-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
  gap: 20px;
  background: #1a1714;
}

.collections-empty-count {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
}

.collections-empty-msg {
  font-size: 0.975rem;
  color: rgba(232, 224, 214, 0.55);
  line-height: 1.9;
  max-width: 380px;
  font-weight: 300;
}

.collections-empty-msg a {
  color: #c9a96e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   COLLECTIONS SHOWCASE
   ============================================ */
.collections-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  margin: 0;
  padding: 0;
}

.col-panel {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: #1a1714;
}

.col-panel {
  border-top: 3px solid rgba(255, 255, 255, 0.5);
}

.col-panel-img {
  position: absolute;
  inset: 0;
}

.col-panel-img img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  position: relative;
  top: -12.5%;
}

.col-panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(10, 8, 6, 0.52) 0%,
      rgba(10, 8, 6, 0.10) 45%,
      rgba(10, 8, 6, 0.0) 100%
    ),
    rgba(10, 8, 6, 0.05);
}

.col-panel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  z-index: 1;
}

.col-panel-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.col-panel-num {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a96e;
}

.col-panel-tag {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 224, 214, 0.85);
}

.col-panel-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.05;
  letter-spacing: 0;
}

.col-panel-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
  align-items: flex-end;
  text-align: right;
}

.col-panel-desc {
  font-size: 0.975rem;
  color: rgba(232, 224, 214, 0.88);
  line-height: 1.85;
}

.col-panel-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.col-spec {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: baseline;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
}

.col-spec:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.col-spec-label {
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  flex-shrink: 0;
}

.col-spec-value {
  font-size: 0.925rem;
  color: rgba(232, 224, 214, 0.80);
  white-space: nowrap;
}

.col-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f0e8;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.col-panel-cta::after {
  content: '→';
  letter-spacing: 0;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.col-panel-cta:hover {
  color: #0e0c0a;
  background: #e8c98a;
  border-color: #e8c98a;
}

.col-panel-cta:hover::after {
  transform: translateX(4px);
}

/* View Collection CTA — prominent button */
button.col-panel-cta {
  background: #f5f0e8;
  border: 1px solid #f5f0e8;
  color: #0e0c0a;
  cursor: pointer;
  font-family: inherit;
  padding: 14px 28px;
  border-radius: 0;
  margin-top: 8px;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--cta-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-band-text {
  flex: 1;
  min-width: 0;
}

.cta-band-text .section-label {
  margin-bottom: 20px;
  display: block;
}

.cta-band-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--color-white);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.cta-band-title em {
  font-style: italic;
  color: var(--color-accent);
}

.cta-band-divider {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  opacity: 0.5;
  margin: 28px auto;
}

.cta-band-sub {
  font-size: 0.975rem;
  color: var(--color-text);
  line-height: 1.9;
  max-width: 520px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  min-width: 240px;
}

.cta-band-actions .btn-primary {
  background: #c9a96e;
  color: #2c2318;
}

.cta-band-actions .btn-primary:hover {
  background: #b8956a;
  color: #2c2318;
}

.cta-band-contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.7;
  margin-bottom: 4px;
}

.cta-band-contact-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.cta-band-contact-item:hover {
  color: var(--color-accent);
}

.cta-band-sep {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 8px 0;
}

/* ============================================
   COLLECTION MODAL
   ============================================ */

/* Utility */
.coll-hidden { display: none !important; }

.coll-overview-exit {
  animation: overviewFadeOut 0.22s ease forwards;
}

@keyframes overviewFadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.97); }
}

.coll-detail-enter {
  animation: detailFadeIn 0.3s ease forwards;
}

@keyframes detailFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Backdrop */
.coll-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 8, 6, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  will-change: opacity;
}

.coll-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Modal box */
.coll-modal {
  background: #f7f2ea;
  width: 100%;
  max-width: 1260px;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
  transform: translateY(28px);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  will-change: transform;
}

.coll-modal-backdrop.is-open .coll-modal {
  transform: translateY(0);
}

/* Header */
.coll-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  background: #f7f2ea;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.coll-modal.is-overview {
  position: relative;
}

.coll-modal.is-overview .coll-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
}

.coll-modal.is-overview .coll-modal-close {
  color: #fff;
  opacity: 0.7;
}

.coll-modal.is-overview .coll-modal-close:hover {
  opacity: 1;
}

.coll-modal.is-overview .coll-modal-body {
  padding-top: 0;
}

.coll-modal-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.coll-modal-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coll-modal-back {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.coll-modal-back:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.3);
}

/* ---- Items overview ---- */
.coll-modal-overview {
  background: #f7f2ea;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.coll-overview-banner {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #2a2218;
  flex-shrink: 0;
}


.coll-overview-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  z-index: 0;
}

.coll-overview-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(107,78,42,0.28) 0%,
    rgba(107,78,42,0)   35%,
    rgba(107,78,42,0)   65%,
    rgba(107,78,42,0.22) 100%
  );
}


.coll-overview-banner-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 0 40px;
}

.coll-overview-banner-series {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c49a6c;
}

.coll-overview-banner-name {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.coll-overview-banner-rule {
  width: 36px;
  height: 1px;
  background: #c49a6c;
  margin-top: 4px;
}

.coll-overview-hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.7), transparent);
  box-shadow: 0 0 10px rgba(201,169,110,0.35), 0 0 24px rgba(201,169,110,0.15);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.coll-overview-cards {
  padding: 20px 44px 2px;
  position: relative;
  z-index: 1;
  background: #f7f2ea;
  border-radius: 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.32);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coll-overview-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 44px 25px;
}

.coll-overview-footer-rule {
  width: 48px;
  height: 1px;
  background: rgba(0,0,0,0.15);
}

.coll-overview-footer-tagline {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.coll-overview-footer-brand {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.coll-overview-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 0 32px;
}

.coll-overview-divider::before,
.coll-overview-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.12);
}

.coll-overview-divider-diamond {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(0,0,0,0.25);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.coll-overview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 28px;
}

.coll-overview-card {
  width: 250px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  display: flex;
  flex-direction: column;
}

.coll-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13), 0 3px 8px rgba(0,0,0,0.07);
}

.coll-overview-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e2ddd5;
  flex-shrink: 0;
  position: relative;
}

.coll-overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.coll-overview-card:hover .coll-overview-card-img img {
  transform: scale(1.05);
}

.coll-overview-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,24,18,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coll-overview-card:hover .coll-overview-card-overlay {
  opacity: 1;
}

.coll-overview-card-overlay span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 9px 20px;
}

.coll-overview-card-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.coll-overview-card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.3;
}

.coll-overview-card-variant {
  font-size: 0.77rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.coll-overview-card-price {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-top: 6px;
}

.coll-overview-card-cta { display: none; }

.coll-modal-header-series {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.coll-modal-header-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text);
  margin-top: 1px;
}

.coll-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
  opacity: 0.4;
  transition: opacity 0.2s ease;
  line-height: 0;
  flex-shrink: 0;
}

.coll-modal-close:hover { opacity: 1; }

/* Scrollable body */
.coll-modal-body {
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
}

/* ---- Product detail area ---- */
.coll-modal-product {
  display: grid;
  grid-template-columns: 55% 45%;
}

/* Gallery */
.coll-modal-gallery {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f7f2ea;
}


.coll-gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd7cc;
  flex-shrink: 0;
  border-radius: 5px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.coll-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease;
}

.coll-gallery-main img.is-fading {
  opacity: 0;
}

.coll-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.coll-gallery-thumbs::-webkit-scrollbar { display: none; }

.coll-gallery-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  background: #ddd7cc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.coll-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coll-gallery-thumb:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
}

.coll-gallery-thumb.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(107, 78, 42, 0.15);
}

/* Info panel */
.coll-modal-info {
  padding: 44px 48px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.coll-info-series {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.coll-info-series::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.coll-info-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.coll-info-variant {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: -10px;
}

.coll-info-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(107, 78, 42, 0.06);
  padding: 14px 18px;
  border-left: 3px solid var(--color-accent);
}

.coll-info-price-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.coll-info-price {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.coll-info-price sup {
  font-size: 0.85rem;
  vertical-align: super;
}

.coll-info-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Finishes */
.coll-info-finishes-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 14px;
}

.coll-info-finish-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.coll-finish-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.coll-finish-swatch-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s ease;
}

.coll-finish-swatch.is-active .coll-finish-swatch-circle {
  box-shadow: 0 0 0 2px var(--color-text);
}

.coll-finish-swatch-name {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 52px;
}

/* Specs table */
.coll-info-specs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.coll-info-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.coll-info-spec-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  flex-shrink: 0;
}

.coll-info-spec-value {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  text-align: right;
}

/* CTA */
.coll-info-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-text);
  color: #f7f2ea;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  transition: background 0.25s ease;
  margin-top: 4px;
}

.coll-info-cta:hover {
  background: var(--color-accent);
}

.coll-info-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: -8px;
}

/* ---- Detail sections ---- */
.coll-modal-accordion {
  background: #f7f2ea;
}

.coll-modal-footer {
  background: #f7f2ea;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 44px 48px;
}

.coll-modal-footer-brand {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.55;
  white-space: nowrap;
}

.coll-modal-footer-mark {
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
}

.coll-detail-header {
  padding: 16px 44px 18px;
  position: relative;
}

.coll-detail-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 44px;
  right: 44px;
  height: 1px;
  background: rgba(0,0,0,0.09);
}

.coll-detail-header-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.coll-detail-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: start;
  padding: 28px 44px;
  position: relative;
}

.coll-detail-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 44px;
  right: 44px;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

.coll-detail-row:last-child::after {
  display: none;
}

.coll-detail-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coll-detail-num {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  opacity: 0.7;
}

.coll-detail-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.coll-detail-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-accent);
  margin-top: 10px;
  opacity: 0.55;
}

.coll-detail-body {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

/* ---- More from collection ---- */
.coll-modal-more {
  padding: 32px 28px 36px;
}

.coll-modal-more-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 22px;
}

.coll-more-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}

.coll-more-scroll::-webkit-scrollbar { height: 3px; }
.coll-more-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); }

.coll-item-card {
  flex-shrink: 0;
  width: 210px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.coll-item-card:hover { opacity: 0.75; }

.coll-item-card.is-active {
  opacity: 1;
  pointer-events: none;
}

.coll-item-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e2d8;
  margin-bottom: 10px;
}

.coll-item-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.coll-item-card:hover .coll-item-card-img img {
  transform: scale(1.05);
}

.coll-item-card-dot {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text);
  display: none;
}

.coll-item-card.is-active .coll-item-card-dot { display: block; }

.coll-item-card-name {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 2px;
}

.coll-item-card-variant {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}

.coll-item-card-price {
  font-size: 0.875rem;
  color: var(--color-text);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  .filter-pill {
    padding: 16px 16px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .filter-pill::after {
    left: 16px;
    right: 16px;
  }
  .filter-pill + .filter-pill::before { display: none; }
}

@media (max-width: 900px) {
  .col-panel-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 36px;
    gap: 24px;
  }
  .col-panel-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .col-spec { justify-content: flex-start; }
}

@media (max-width: 768px) {
  /* Hide specs only — keep description and View Collection button visible */
  .col-panel-specs { display: none; }
}

@media (max-width: 640px) {
  .collections-hero { min-height: 55vh; }
  .col-panel { height: auto; min-height: 85vh; }
  .col-panel-info { padding: 28px 24px; }
  .col-panel-name { font-size: 2.4rem; }
  .col-panel-desc { font-size: 0.875rem; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .cta-band-actions { flex-direction: row; flex-wrap: wrap; }
}

/* Modal responsive */
@media (max-width: 900px) {
  .coll-modal-backdrop { padding: 0; align-items: flex-end; }
  .coll-modal { max-height: 94vh; border-radius: 14px 14px 0 0; }
  .coll-modal-product { grid-template-columns: 1fr; }
  .coll-modal-gallery { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.09); padding: 28px 28px 20px; }
  .coll-modal-info { padding: 28px 28px 36px; }
  .coll-detail-header { padding: 24px 28px 16px; }
  .coll-detail-row { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
  .coll-detail-row::after { left: 28px; right: 28px; }
  .coll-detail-header::after { left: 28px; right: 28px; }
}

@media (max-width: 480px) {
  .coll-modal-header { padding: 18px 20px; }
  .coll-modal-gallery { padding: 20px; }
  .coll-modal-info { padding: 20px; }
  .coll-detail-header { padding: 20px; }
  .coll-detail-row { padding: 20px; }
}
