/* Store pages — shop, collection, product, waitlist, shipping */

.page-header {
  padding: 60px 48px 48px;
  border-bottom: 1px solid var(--card);
}
.page-header-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-header-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.page-header-sub {
  margin-top: 16px;
  font-size: 15px;
  color: #8a8278;
  max-width: 560px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  padding: 2px;
}
.product-card {
  background: var(--card);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { opacity: 0.85; }
.product-image-wrap {
  aspect-ratio: 4/5;
  background: #1a1917;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-image-placeholder {
  font-size: 48px;
  color: #2a2825;
}
.product-info {
  padding: 20px 24px 24px;
}
.product-category {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product-price {
  font-size: 15px;
  color: var(--fg);
}
.product-sold-out {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--card);
  border: 1px solid #2a2825;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
}

/* Shop page layout */
.shop-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.shop-filter {
  display: flex;
  gap: 4px;
  padding: 32px 0;
}
.filter-btn {
  background: transparent;
  border: 1px solid #2a2825;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--accent);
  color: var(--fg);
}
.drop-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 16px;
}

/* Collection page */
.collection-hero {
  position: relative;
  height: 360px;
  background: #1e1c1a;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  margin-bottom: 2px;
}
.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.9) 0%, transparent 60%);
}
.collection-hero-content {
  position: relative;
  z-index: 1;
}
.collection-count {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.collection-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.collection-desc {
  margin-top: 16px;
  font-size: 16px;
  color: #8a8278;
  max-width: 480px;
}

/* Product detail page */
.product-detail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-main-image {
  aspect-ratio: 4/5;
  background: #1a1917;
  overflow: hidden;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb-row {
  display: flex;
  gap: 8px;
}
.product-thumb {
  width: 80px;
  height: 80px;
  background: #1a1917;
  overflow: hidden;
  flex-shrink: 0;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-info {
  padding-top: 16px;
}
.detail-category {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.detail-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 16px;
}
.detail-price {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 32px;
}
.detail-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #8a8278;
  margin-bottom: 40px;
}
.size-selector {
  margin-bottom: 32px;
}
.size-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  background: transparent;
  border: 1px solid #2a2825;
  color: var(--fg);
  font-size: 14px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  transition: all 0.2s;
}
.size-btn:hover, .size-btn.selected {
  border-color: var(--accent);
  color: var(--accent);
}
.size-btn.out-of-stock {
  opacity: 0.3;
  cursor: not-allowed;
}
.size-btn.out-of-stock::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--muted);
  margin: 25px auto 0;
  transform: rotate(-45deg);
}
.add-to-cart-btn {
  width: 100%;
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.add-to-cart-btn:hover { background: var(--accent); color: #fff; }
.coming-soon-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Waitlist page */
.waitlist-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  text-align: center;
}
.waitlist-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.waitlist-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 24px;
}
.waitlist-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #8a8278;
  margin-bottom: 48px;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.waitlist-input {
  background: var(--card);
  border: 1px solid #2a2825;
  color: var(--fg);
  font-size: 15px;
  padding: 16px 20px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
.waitlist-submit:hover { opacity: 0.85; }
.waitlist-success {
  display: none;
  padding: 24px;
  background: var(--card);
  border: 1px solid #2a2825;
  color: var(--fg);
}
.waitlist-count {
  font-size: 13px;
  color: var(--muted);
}

/* Shipping page */
.shipping-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}
.shipping-section {
  margin-bottom: 48px;
}
.shipping-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.shipping-section p {
  font-size: 15px;
  line-height: 1.75;
  color: #8a8278;
}
.shipping-options {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.shipping-option {
  background: var(--card);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shipping-option-name {
  font-weight: 500;
  color: var(--fg);
}
.shipping-option-detail {
  font-size: 13px;
  color: var(--muted);
}
.shipping-option-price {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

/* Error page */
.error-page {
  max-width: 480px;
  margin: 120px auto;
  text-align: center;
  padding: 0 24px;
}
.error-code {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 96px;
  color: #2a2825;
  line-height: 1;
  margin-bottom: 24px;
}
.error-message {
  font-size: 16px;
  color: #8a8278;
  margin-bottom: 40px;
}
.back-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

/* Photography guide */
.guide-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}
.guide-section {
  margin-bottom: 48px;
}
.guide-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.guide-tip {
  background: var(--card);
  border-left: 2px solid var(--accent);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.guide-tip-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.guide-tip p {
  font-size: 14px;
  line-height: 1.65;
  color: #8a8278;
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 12px; }
  .page-header { padding: 40px 24px 32px; }
  .shop-content { padding: 0 24px 60px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px 60px; }
  .waitlist-content, .shipping-content, .guide-content { padding: 60px 24px 80px; }
}