/* ============================================================
   MERCH PAGE — ADDITIONAL STYLES
   ============================================================ */

/* ---- PAGE HEADER ---- */
.page-header {
  position: relative;
  z-index: 1;
  padding: 160px 24px 60px;
  text-align: center;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(170, 85, 255, 0.6);
}

.page-header-sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.28em;
  opacity: 0.5;
  margin-top: 10px;
  text-transform: uppercase;
}

/* ---- STORE NOTICE BANNER ---- */
.store-notice {
  position: relative;
  z-index: 1;
  background: rgba(100, 0, 180, 0.2);
  border-top: 1px solid rgba(170, 85, 255, 0.2);
  border-bottom: 1px solid rgba(170, 85, 255, 0.2);
  padding: 18px 24px;
}

.store-notice-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.store-notice-icon { font-size: 1.4rem; }

.store-notice p {
  font-size: 0.95rem;
  opacity: 0.8;
  letter-spacing: 0.03em;
}

.store-notice strong {
  color: var(--purple-dim);
  font-weight: 700;
}

/* ---- NOTIFY SECTION ---- */
.notify-section { padding: 70px 24px 60px; }

.notify-inner {
  max-width: 560px;
  text-align: center;
}

.notify-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--white);
}

.notify-sub {
  font-size: 0.95rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--white-dim);
}

.notify-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  background: rgba(40, 0, 80, 0.5);
  border: 1px solid rgba(90, 56, 144, 0.25);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0ms, box-shadow 600ms ease;
}

.notify-form input[type="email"]::placeholder {
  color: rgba(200, 180, 255, 0.4);
}

.notify-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}

.notify-confirm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 20px;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(30, 0, 60, 0.45);
  border: 1px solid rgba(170, 85, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  border-color: rgba(170, 85, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(100, 0, 180, 0.25);
}

.product-img {
  background: linear-gradient(135deg, #120028 0%, #2a0058 100%);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.product-img-icon {
  font-size: 4rem;
  opacity: 0.35;
  filter: grayscale(1);
}

.coming-soon-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-dim);
  background: rgba(100, 0, 180, 0.4);
  border: 1px solid rgba(170, 85, 255, 0.3);
  padding: 4px 12px;
  border-radius: 3px;
}

.product-info {
  padding: 18px 18px 20px;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.product-type {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.45;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-dim);
  margin-bottom: 14px;
  opacity: 0.5;
}

.product-btn {
  width: 100%;
  text-align: center;
  opacity: 0.45;
  cursor: not-allowed;
  font-size: 0.85rem;
  padding: 12px 20px;
}

.product-btn:hover {
  transform: none;
  box-shadow: none;
  background: var(--btn-bg);
  border-color: var(--btn-border);
}

/* ---- SQUARE CTA SECTION ---- */
.square-section { padding: 80px 24px; }

.square-inner {
  max-width: 680px;
  text-align: center;
}

.square-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(170, 85, 255, 0.4);
}

.square-sub {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.65;
  margin-bottom: 32px;
}

.square-btn {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE — MERCH
   ============================================================ */
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .notify-form { flex-direction: column; align-items: stretch; }
  .notify-form input { min-width: unset; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
}
