/* shop.css - styles for Canyoning in Victoria website */

:root {
  --accent: #7b1fa2;
  --accent-light: #a32fb0;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --page-bg: #f6f7f9;
  --container-max: 1100px;
  --radius: 12px;
  --shadow-card: 0 4px 16px rgba(20,20,30,0.07);
  --shadow-card-hover: 0 12px 28px rgba(20,20,30,0.11);
}

/* ── Canyon hero banner ─────────────────────────────────────────────────── */
.canyon-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a2e 0%, #3d1066 55%, #1a0a2e 100%);
  color: #fff;
  padding: 56px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  overflow: hidden;
  text-align: center;
}
.canyon-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.canyon-hero h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.canyon-hero p {
  font-size: 16px;
  opacity: 0.88;
  margin: 0 0 28px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #b03ac0, #7b1fa2);
  color: #fff;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(123,31,162,0.35);
  transition: transform .12s ease, box-shadow .12s ease;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(123,31,162,0.42); }

/* ── Product grid ───────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* ── Product card ───────────────────────────────────────────────────────── */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
  border: 1px solid rgba(22,24,28,0.05);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
.product-media {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef0f4, #fff);
}
.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.product-card:hover .product-image { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}
.product-info {
  padding: 14px 16px 10px;
  flex: 1 1 auto;
}
.product-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
  line-height: 1.3;
}
.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(22,24,28,0.05);
}
.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .08s ease, filter .08s ease, box-shadow .08s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  color: #fff;
  box-shadow: 0 4px 10px rgba(123,31,162,0.18);
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: 0 6px 16px rgba(123,31,162,0.26); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(34,34,34,0.14);
  color: #333;
}
.btn-ghost:hover { background: #f6f6f6; }

/* ── Guidebook feature section ──────────────────────────────────────────── */
.guidebook-feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(22,24,28,0.05);
  padding: 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.guidebook-feature-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 10px;
}
.guidebook-feature-text p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}
.guidebook-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.guidebook-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.guidebook-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* ── Guidebook page ─────────────────────────────────────────────────────── */
.guidebook-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #4a1570 60%, #1a0a2e 100%);
  color: #fff;
  padding: 52px 24px;
  border-radius: var(--radius);
  margin-bottom: 36px;
  text-align: center;
}
.guidebook-hero h1 { font-size: 34px; font-weight: 700; margin: 0 0 10px; }
.guidebook-hero p { font-size: 16px; opacity: 0.88; margin: 0; line-height: 1.6; }

.guidebook-spread {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.guidebook-spread img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  transition: transform .2s ease;
}
.guidebook-spread img:hover { transform: scale(1.02); }

.guidebook-details {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(22,24,28,0.05);
  margin-bottom: 32px;
}
.guidebook-details h2 { margin: 0 0 16px; font-size: 22px; color: #1e1e1e; }
.guidebook-details ul {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
}
.guidebook-cta-box {
  background: linear-gradient(135deg, #f8f0fc, #fdf4ff);
  border: 1px solid rgba(123,31,162,0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.guidebook-cta-box .cta-text h3 { margin: 0 0 6px; font-size: 20px; color: #1e1e1e; }
.guidebook-cta-box .cta-text p { margin: 0; color: var(--muted); font-size: 14px; }

/* ── Gallery page ───────────────────────────────────────────────────────── */
.gallery-hero {
  background: linear-gradient(135deg, #0a1a2e 0%, #0f3060 55%, #0a1a2e 100%);
  color: #fff;
  padding: 52px 24px;
  border-radius: var(--radius);
  margin-bottom: 36px;
  text-align: center;
}
.gallery-hero h1 { font-size: 34px; font-weight: 700; margin: 0 0 10px; }
.gallery-hero p { font-size: 16px; opacity: 0.88; margin: 0; line-height: 1.6; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  background: #111;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 0.9; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.gallery-video-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(22,24,28,0.05);
  margin-bottom: 32px;
  text-align: center;
}
.gallery-video-section h2 { margin: 0 0 16px; font-size: 22px; color: #1e1e1e; }
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── In-store page ──────────────────────────────────────────────────────── */
.instore-hero {
  background: linear-gradient(135deg, #0d2e1a 0%, #155a2e 55%, #0d2e1a 100%);
  color: #fff;
  padding: 40px 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  text-align: center;
}
.instore-hero h1 { font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.instore-hero p { font-size: 15px; opacity: 0.88; margin: 0; }

.instore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.instore-region {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(22,24,28,0.05);
}
.instore-region h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #155a2e;
}
.instore-region ul {
  margin: 0;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Contact page ───────────────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2e1a5a 55%, #1a1a2e 100%);
  color: #fff;
  padding: 40px 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  text-align: center;
}
.contact-hero h1 { font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.contact-hero p { font-size: 15px; opacity: 0.88; margin: 0; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(22,24,28,0.05);
  max-width: 600px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 5px; color: #333; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: #1e1e1e;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123,31,162,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ── Section headings ───────────────────────────────────────────────────── */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .canyon-hero h2 { font-size: 26px; }
  .guidebook-feature { grid-template-columns: 1fr; }
  .guidebook-spread { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .guidebook-cta-box { flex-direction: column; text-align: center; }
  .instore-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .canyon-hero h2 { font-size: 22px; }
  .canyon-hero { padding: 36px 16px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .guidebook-spread { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .instore-grid { grid-template-columns: 1fr; }
  .guidebook-feature-text h2 { font-size: 22px; }
}

/* ── Site footer ────────────────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 48px;
  padding: 28px 1rem;
}
.site-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-tagline {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform .1s ease, box-shadow .1s ease;
}
.footer-social-link:hover { transform: translateY(-1px); }
.footer-social-link--fb {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 2px 8px rgba(24,119,242,0.22);
}
.footer-social-link--fb:hover { box-shadow: 0 4px 14px rgba(24,119,242,0.32); }
.footer-social-link--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 2px 8px rgba(131,58,180,0.22);
}
.footer-social-link--ig:hover { box-shadow: 0 4px 14px rgba(131,58,180,0.32); }

@media (max-width: 600px) {
  .site-footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Instagram section (gallery) ────────────────────────────────────────── */
.ig-section {
  margin-bottom: 32px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ig-embed-wrap {
  display: flex;
  justify-content: center;
}
.ig-embed-wrap .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 400px !important;
}
.ig-follow-cta {
  background: linear-gradient(135deg, #fdf4ff, #fff0fa);
  border: 1px solid rgba(131,58,180,0.14);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.ig-follow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #833ab4;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: opacity .1s ease;
}
.ig-follow-link:hover { opacity: 0.8; }
.ig-follow-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.ig-follow-hint code {
  background: rgba(0,0,0,0.06);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 11px;
}
.canyon-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.canyon-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.canyon-card-label {
  padding: 10px 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
