
/* -- HERO BACKGROUND IMAGE -- */
.hero {
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
  pointer-events: none;
  z-index: 1;
}
.hero__left, .hero__right {
  position: relative;
  z-index: 2;
}

/* -- COLLECTION GRID -- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(232,119,34,0.15);
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 20px;
  transition: background 0.3s;
}
.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(232,119,34,0.7) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}
.collection-card__label {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.collection-card__count {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(245,245,240,0.6);
}

/* -- COLLECTION MODAL -- */
.collection-modal__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 800;
}
.collection-modal__backdrop.open { display: block; }
.collection-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 92vw;
  max-width: 1200px;
  max-height: 90vh;
  background: var(--black-2);
  border: 1px solid rgba(232,119,34,0.2);
  z-index: 900;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  gap: 20px;
}
.collection-modal.open { display: flex; }
.collection-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.collection-modal__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.collection-modal__close {
  background: none; border: none;
  color: var(--white); font-size: 1.4rem;
  cursor: pointer; opacity: 0.6;
  transition: opacity 0.2s;
}
.collection-modal__close:hover { opacity: 1; }
.collection-modal__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow-y: auto;
  max-height: calc(90vh - 120px);
}
.collection-modal__track .cm-slide {
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(232,119,34,0.1);
}
.collection-modal__track .cm-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.collection-modal__track .cm-slide:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .collection-modal__track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .collection-grid { grid-template-columns: 1fr; gap: 12px; }
  .collection-card { aspect-ratio: 16/9; }
  .collection-modal { padding: 16px; }
  .collection-modal__track { grid-template-columns: repeat(2, 1fr); }
}

/* -- TICKER WHITE -- */
.ticker--white { background: var(--white); border-top-color: #ddd; border-bottom-color: #ddd; }
.ticker--white .ticker__track span { color: var(--black); }
.ticker--white .ticker__track .dot { color: rgba(0,0,0,0.3); }

/* -- HERO SLIDER SMALLER + ROUNDED -- */
.hero__slider { border-radius: 12px; overflow: hidden; max-width: 480px; margin: 0 auto; }
.hero__right { align-items: center; }

/* -- COLLECTION MODAL (Pixieset style) -- */
.collection-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 1000;
  flex-direction: column;
  align-items: stretch;
}
.collection-modal.open { display: flex; }
.col-modal__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.col-modal__title {
  font-family: var(--font-cond); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.16em; color: var(--white);
}
.col-modal__close {
  background: none; border: none; color: var(--white);
  font-size: 1.2rem; cursor: pointer; opacity: 0.6;
  transition: opacity 0.2s; padding: 4px 8px;
}
.col-modal__close:hover { opacity: 1; }
.col-modal__main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 0;
  background: #000;
}
.col-modal__mainimg {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  user-select: none;
  max-height: calc(100vh - 180px);
}
.col-modal__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); border: none; color: var(--white);
  width: 48px; height: 48px; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10; border-radius: 50%;
}
.col-modal__arrow:hover { background: rgba(232,119,34,0.8); }
.col-modal__arrow--left { left: 16px; }
.col-modal__arrow--right { right: 16px; }
.col-modal__strip {
  display: flex; gap: 6px; overflow-x: auto; padding: 10px 16px;
  background: rgba(0,0,0,0.7); flex-shrink: 0;
  scrollbar-width: thin; scrollbar-color: var(--orange) transparent;
}
.col-modal__strip img {
  height: 64px; width: auto; object-fit: cover;
  cursor: pointer; opacity: 0.5; border: 2px solid transparent;
  border-radius: 3px; transition: opacity 0.2s, border-color 0.2s; flex-shrink: 0;
}
.col-modal__strip img:hover { opacity: 0.8; }
.col-modal__strip img.active { opacity: 1; border-color: var(--orange); }

/* -- CHAT WIDGET -- */
.chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 56px; height: 56px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--black);
  box-shadow: 0 4px 20px rgba(232,119,34,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(232,119,34,0.6); }
.chat-box {
  display: none; position: fixed; bottom: 96px; right: 28px;
  width: 340px; z-index: 499;
  background: var(--black-2); border: 1px solid rgba(232,119,34,0.2);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  flex-direction: column;
}
.chat-box.open { display: flex; }
.chat-box__header {
  background: var(--orange); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-box__info { display: flex; align-items: center; gap: 12px; }
.chat-box__avatar {
  width: 36px; height: 36px; background: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem; color: var(--orange);
}
.chat-box__name { font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700; color: var(--black); }
.chat-box__status { font-size: 0.72rem; color: rgba(0,0,0,0.6); }
.chat-box__close { background: none; border: none; color: var(--black); cursor: pointer; font-size: 1rem; opacity: 0.7; }
.chat-box__messages {
  padding: 16px; display: flex; flex-direction: column; gap: 10px;
  max-height: 260px; overflow-y: auto; flex: 1;
}
.chat-box__msg { max-width: 85%; }
.chat-box__msg p { font-size: 0.88rem; line-height: 1.5; padding: 10px 14px; border-radius: 12px; }
.chat-box__msg--in p { background: var(--black-3); color: var(--white); border-bottom-left-radius: 4px; }
.chat-box__msg--out { align-self: flex-end; }
.chat-box__msg--out p { background: var(--orange); color: var(--black); border-bottom-right-radius: 4px; }
.chat-box__footer {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.chat-box__input {
  flex: 1; background: transparent; border: none; color: var(--white);
  padding: 12px 16px; font-family: var(--font-body); font-size: 0.88rem; outline: none;
}
.chat-box__input::placeholder { color: rgba(245,245,240,0.3); }
.chat-box__send {
  background: none; border: none; color: var(--orange);
  padding: 12px 16px; cursor: pointer; transition: color 0.2s;
}
.chat-box__send:hover { color: var(--orange-light); }
.chat-box__sending { font-size: 0.75rem; color: rgba(245,245,240,0.3); padding: 4px 16px; }

@media (max-width: 600px) {
  .chat-box { width: calc(100vw - 32px); right: 16px; bottom: 88px; }
  .chat-bubble { right: 16px; bottom: 20px; }
  .col-modal__strip img { height: 48px; }
  .col-modal__arrow { width: 36px; height: 36px; }
}
