﻿/* -- Product gallery -- */
.gallery {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
  width: 80px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, opacity 0.15s;
  opacity: 0.65;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #0D1B2A;
  opacity: 1;
}

.gallery-main {
  flex: 1;
  min-width: 0;
  width: 0;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 2px solid #0D1B2A;
  box-shadow: 4px 4px 16px rgba(13,27,42,0.12);
}
/* ── Product Page Layout ── */
.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-page-img {
  min-width: 0;
}

.product-page-img img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #0D1B2A;
  box-shadow: 6px 6px 0 #0D1B2A;
}

.shirt-svg-wrap {
  background: #f9f9f9;
  border: 2px solid #0D1B2A;
  box-shadow: 6px 6px 0 #0D1B2A;
  padding: 1.5rem;
}

.shirt-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.product-page-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #777;
  margin-bottom: 0.4rem;
}

.product-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0D1B2A;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.product-page-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 2rem;
}

.product-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D1B2A;
}

.field input,
.field select {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border: 2px solid #0D1B2A;
  border-radius: 6px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  cursor: pointer;
}

.field input:focus,
.field select:focus {
  border-color: #FAE29F;
}

.product-page-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.quantity-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  width: 70px;
  padding: 0.65rem 0.75rem;
  border: 2px solid #0D1B2A;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  outline: none;
}

.quantity-input:focus {
  border-color: #FAE29F;
}

.product-page-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

/* ── Request form ── */
.request-intro {
  font-size: 0.9rem;
  color: #6B7A8D;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.required {
  color: #cc2200;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border: 2px solid #0D1B2A;
  border-radius: 6px;
  background: #fff;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
  line-height: 1.5;
}

.field textarea:focus {
  border-color: #FAE29F;
}

.file-upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  border: 2px dashed #0D1B2A;
  border-radius: 6px;
  background: #fafafa;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-align: center;
}

.file-upload-zone:hover {
  background: #f0f0f0;
  border-color: #4a6fa5;
}

.file-upload-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D1B2A;
}

.file-upload-hint,
.field-hint {
  font-size: 0.78rem;
  color: #6B7A8D;
}

.file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-name-display {
  font-size: 0.8rem;
  color: #6B7A8D;
  margin-top: 0.3rem;
}

.field-divider {
  border-top: 1px solid rgba(13,27,42,0.12);
  margin: 0.25rem 0;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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





