/* =====================================================
   stud105 Shop — Style
   Black / White base + Brown & Pink accents
   ===================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0a0a0a;
  --white:      #ffffff;
  --grey-light: #f4f4f4;
  --grey-mid:   #d0d0d0;
  --grey-text:  #555555;

  /* Accent colours — used sparingly */
  --brown:      #7b3f2d;   /* warm brown: prices, primary hover, borders */
  --brown-mid:  #a05538;   /* medium brown: hover states */
  --pink:       #c4778a;   /* dusty rose: active filters, badges */
  --pink-light: #f5e8eb;   /* blush: selected payment option bg */

  --font:     'Helvetica Neue', Helvetica, Arial, sans-serif;
  --header-h: 88px;
  --max-w:    1200px;
  --gap:      24px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* =====================================================
   HEADER
   ===================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gap);
}

/* Thin brown accent line at very top of header */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown) 0%, var(--pink) 100%);
}

.site-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ── Shop toggle slider ── */
.shop-toggle {
  display: flex;
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 2px;
  overflow: hidden;
}

.shop-toggle-btn {
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  line-height: 1;
}

.shop-toggle-btn.active {
  background: var(--black);
  color: var(--white);
}

.shop-toggle-btn:not(.active):hover {
  background: #f0f0f0;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.15s;
}

nav a:hover,
nav a.active {
  opacity: 1;
}

nav a svg {
  flex-shrink: 0;
}

.cart-icon-link {
  position: relative;
}

.cart-count {
  display: inline-block;
  background: var(--pink);      /* pink badge instead of black */
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  margin-left: 4px;
}

/* =====================================================
   SHOP CONTROLS
   ===================================================== */

.shop-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px var(--gap) 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

#search {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 1px solid var(--black);
  font-family: var(--font);
  font-size: 0.875rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}

#search:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 2px rgba(123,63,45,0.12);
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 6px 14px;
  border: 1px solid var(--black);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn:hover {
  background: var(--grey-light);
}

.filter-btn.active {
  background: var(--pink);       /* pink active state */
  border-color: var(--pink);
  color: var(--white);
}

/* =====================================================
   PRODUCT LIST
   ===================================================== */

.product-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--black);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gap);
  flex: 1;
}

.product-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--black);
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s;
  min-height: 140px;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brown);
  transform: scaleY(0);
  transition: transform 0.2s ease;
  transform-origin: bottom;
}

.product-card:hover {
  background: var(--grey-light);
}

.product-card:hover::before {
  transform: scaleY(1);
}

.product-card-img {
  width: 160px;
  height: 140px;
  background: var(--grey-light);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* full image, no cropping */
  transition: transform 0.3s;
  padding: 4px;
  box-sizing: border-box;
}

.product-card:hover .product-card-img img {
  transform: scale(1.03);
}

.product-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--grey-text);
  letter-spacing: 0.05em;
}

.product-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.product-card-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-card-price {
  font-size: 1.1rem;
  color: var(--brown);           /* brown price */
  font-weight: 600;
}

.product-card-stock {
  font-size: 0.8rem;
  color: var(--grey-text);
}

.product-card-stock.out {
  color: var(--pink);            /* pink out-of-stock */
  font-weight: 600;
}

.product-card-stock.urgency {
  color: var(--brown, #8b6f47);
  font-weight: 600;
}

/* Ticket card event meta */
.product-card-event {
  font-size: 0.78rem;
  color: var(--grey-text);
  margin: 4px 0 6px;
  line-height: 1.5;
}
.event-icon { margin-right: 3px; }

/* Ticket badge on card image */
.card-ticket-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brown);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.product-card-img { position: relative; }

/* Ticket product: subtle left accent */
.product-card--ticket::before {
  background: var(--brown);
}

/* Event info block on product detail page */
.event-info-block {
  background: #f8f8f6;
  border-left: 3px solid var(--brown);
  padding: 14px 18px;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.event-info-icon { flex-shrink: 0; }

/* =====================================================
   PRODUCT DETAIL
   ===================================================== */

.product-detail {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px var(--gap);
  flex: 1;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {}

.product-main-img {
  background: var(--grey-light);
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 8px;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* full image, no cropping */
  transition: opacity 0.2s;
  cursor: zoom-in;
  padding: 8px;
  box-sizing: border-box;
}

.product-main-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--grey-text);
}

.product-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.thumb {
  width: 72px;
  height: 72px;
  border: 1px solid var(--grey-mid);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.15s, border-color 0.15s;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: var(--brown);    /* brown active thumbnail */
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  box-sizing: border-box;
}

.product-breadcrumb {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-bottom: 16px;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.product-detail-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);           /* brown price */
  margin-bottom: 20px;
}

.product-detail-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--grey-text);
  margin-bottom: 28px;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--black);
  width: fit-content;
}

.product-qty button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}

.product-qty button:hover {
  background: var(--grey-light);
}

.product-qty span {
  width: 40px;
  text-align: center;
  font-size: 0.9rem;
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
  height: 40px;
  line-height: 40px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.qty-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stock-warning {
  font-size: 0.8rem;
  color: var(--pink);            /* pink warning */
  font-weight: 600;
  margin-bottom: 12px;
}

/* Extras */
.extras-section {
  border-top: 1px solid var(--grey-mid);
  padding-top: 20px;
  margin-bottom: 20px;
}

.extras-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--grey-text);
}

.extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-mid);
}

.extra-row:last-child {
  border-bottom: none;
}

.extra-info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
}

.extra-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid var(--grey-mid);
  flex-shrink: 0;
  cursor: zoom-in;
  padding: 3px;
  box-sizing: border-box;
  background: var(--grey-light);
  transition: border-color 0.15s;
}
.extra-img:hover { border-color: var(--brown); }

.extra-name {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.extra-desc {
  font-size: 0.78rem;
  color: var(--grey-text);
  margin-bottom: 2px;
}

.extra-price {
  font-size: 0.8rem;
  color: var(--brown);           /* brown extra price */
  font-weight: 600;
}

.detail-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  border-top: 1px solid var(--black);
  margin-top: 8px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--brown);      /* hover goes to brown */
}

.btn-primary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-primary.btn-full {
  width: 100%;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--grey-light);
}

/* =====================================================
   CART DRAWER
   ===================================================== */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Brown accent bar at top of cart drawer */
.cart-header::before {
  display: none; /* handled by drawer border only */
}

.cart-drawer {
  border-top: 3px solid var(--brown);
}

.cart-header button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--grey-mid);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  background: var(--grey-light);
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--grey-text);
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);           /* brown price in cart */
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--grey-text);
  cursor: pointer;
  font-family: var(--font);
  text-decoration: underline;
  transition: color 0.15s;
}

.cart-item-remove:hover {
  color: var(--pink);            /* pink on hover */
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--black);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cart-empty {
  padding: 40px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-text);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 150;
}

/* =====================================================
   CHECKOUT
   ===================================================== */

.checkout-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px var(--gap);
  flex: 1;
}

.checkout-page h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.order-summary h2,
.checkout-form-section h2 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black);
}

/* Brown left dot on section headings */
.checkout-form-section h2::before,
.order-summary h2::before {
  content: '▪';
  color: var(--pink);
  margin-right: 6px;
  font-size: 0.7rem;
  vertical-align: middle;
}

.checkout-form-section h2 {
  margin-top: 28px;
}

.checkout-form-section h2:first-child {
  margin-top: 0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: 0.875rem;
  gap: 12px;
}

.checkout-item-name {
  flex: 1;
}

.checkout-item-qty {
  color: var(--grey-text);
  font-size: 0.8rem;
}

.checkout-item-price {
  font-weight: 600;
  white-space: nowrap;
  color: var(--brown);           /* brown price */
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--black);
}

.form-group {
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--black);
  font-family: var(--font);
  font-size: 0.875rem;
  background: var(--white);
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 2px rgba(123,63,45,0.12);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--grey-mid);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.payment-option:hover {
  border-color: var(--black);
}

.payment-option:has(input:checked) {
  border-color: var(--brown);
  background: var(--pink-light);  /* blush tint when selected */
}

.payment-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--brown);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.option-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-label strong {
  font-size: 0.875rem;
}

.option-label small {
  font-size: 0.78rem;
  color: var(--grey-text);
}

.form-error {
  background: var(--grey-light);
  border-left: 3px solid var(--pink);  /* pink error border */
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* =====================================================
   STATUS PAGES (success / cancel)
   ===================================================== */

.status-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap);
}

.status-box {
  text-align: center;
  max-width: 400px;
  padding: 48px 32px;
  border: 1px solid var(--black);
}

.status-icon {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.status-icon.cancel {
  opacity: 0.4;
}

.status-box h1 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.status-box p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 28px;
}

.status-box .btn-primary + .btn-secondary {
  margin-top: 10px;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
  border-top: 1px solid var(--black);
  padding: 16px var(--gap);
  font-size: 0.78rem;
  color: var(--grey-text);
  letter-spacing: 0.03em;
  margin-top: auto;
}

/* Brown accent line on footer top */
footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--brown) 0%, var(--pink) 60%, transparent 100%);
  margin-bottom: 16px;
  opacity: 0.4;
}

/* =====================================================
   UTILITY
   ===================================================== */

.hidden {
  display: none !important;
}

/* =====================================================
   RESPONSIVE — TABLET (≤768px)
   ===================================================== */

@media (max-width: 768px) {
  :root { --header-h: 64px; --gap: 16px; }

  .site-name { font-size: 1.2rem; }

  nav { gap: 20px; }
  nav a span:not(.cart-count) { display: none; }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .order-summary { order: 2; }
  .checkout-form-section { order: 1; }

  .cart-drawer { width: 100vw; }

  .shop-controls { padding: 16px var(--gap) 12px; }

  .product-card {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-align-items: stretch;
    align-items: stretch;
    min-height: 120px;
  }
  .product-card-img { width: 120px; height: auto; min-height: 120px; flex-shrink: 0; }
  .product-card-img img { height: 100%; min-height: 120px; }
  .product-card-name { font-size: 1.15rem; }
  .product-card-body { -webkit-flex: 1; flex: 1; padding: 18px 20px; justify-content: center; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤480px)
   ===================================================== */

@media (max-width: 480px) {
  :root { --header-h: 56px; }

  .site-name { font-size: 1rem; }

  .product-card {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-align-items: stretch;
    align-items: stretch;
    min-height: 90px;
  }
  .product-card-img { width: 90px; height: auto; min-height: 90px; flex-shrink: 0; }
  .product-card-img img { height: 100%; min-height: 90px; }
  .product-card-name { font-size: 1rem; }
  .product-card-price { font-size: 0.9rem; }
  .product-card-body { -webkit-flex: 1; flex: 1; padding: 12px 14px; gap: 4px; justify-content: center; }
  .product-card-stock { font-size: 0.75rem; }

  .checkout-page { padding: 24px var(--gap); }
  .checkout-page h1 { font-size: 1.1rem; margin-bottom: 20px; }

  .form-row { grid-template-columns: 1fr; }

  .status-box { padding: 32px 20px; }

  footer { padding: 14px var(--gap); }
}

/* =====================================================
   LIGHTBOX — image viewer overlay
   ===================================================== */

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.93);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 92vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: -4px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 12px 16px;
  transition: background 0.15s;
  z-index: 2;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav.prev { left: -64px; }
.lightbox-nav.next { right: -64px; }
@media (max-width: 600px) {
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }
}

/* ── Ticket pricing phase info ── */
.phase-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 12px;
  font-size: .82rem;
  flex-wrap: wrap;
}
.phase-label {
  font-weight: 600;
  color: var(--text, #0a0a0a);
}
.phase-remaining {
  color: var(--grey-text, #666);
  font-size: .76rem;
}
