/* ============================================
   SNORKELSNOT — Ocean / Reef / Hawaiʻi Theme
   Complete Stylesheet for Multi-Page Site
   ============================================ */

/* --- Custom Properties --- */
:root {
  --deep-ocean: #0a1e3d;
  --ocean-blue: #0c4a6e;
  --reef-teal: #0891b2;
  --turquoise: #06b6d4;
  --lagoon: #22d3ee;
  --seafoam: #a7f3d0;
  --coral: #f97316;
  --coral-light: #fb923c;
  --sand: #fbbf24;
  --warm-sand: #fde68a;
  --pearl: #f0fdfa;
  --white: #ffffff;
  --dark: #0f172a;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --ocean-gradient: linear-gradient(135deg, #0a1e3d 0%, #0c4a6e 40%, #0891b2 100%);
  --reef-gradient: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
  --sunset-gradient: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  --font-heading: 'Montserrat', sans-serif;
  --font-brand: 'Permanent Marker', cursive;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 30, 61, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0.8rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { width: 44px; height: 44px; border-radius: 10px; background: #fff; padding: 2px; object-fit: contain; }
.nav-logo span {
  font-family: var(--font-brand); font-weight: 400; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--turquoise), var(--sand));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  color: rgba(255,255,255,0.75); padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.92rem; transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-menu .btn-wholesale {
  background: var(--sunset-gradient); color: var(--white) !important;
  font-weight: 700; padding: 0.5rem 1.3rem; border-radius: 50px; margin-left: 0.5rem;
}
.nav-menu .btn-wholesale:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
.cart-icon {
  position: relative; background: none; border: none; color: rgba(255,255,255,0.75);
  font-size: 1.1rem; cursor: pointer; padding: 0.5rem; transition: color var(--transition);
}
.cart-icon:hover { color: var(--white); }
.cart-count {
  position: absolute; top: -2px; right: -6px; background: var(--coral); color: white;
  font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-menu {
    display: none; position: fixed; inset: 0; background: rgba(10,30,61,0.98);
    backdrop-filter: blur(20px); flex-direction: column; align-items: center;
    justify-content: center; gap: 1rem; z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.2rem; padding: 1rem 2rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem; border-radius: 50px; font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition); text-align: center;
}
.btn-primary {
  background: var(--sunset-gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249,115,22,0.5); }
.btn-secondary {
  background: var(--deep-ocean); border: 2px solid var(--deep-ocean); color: var(--white);
}
.btn-secondary:hover { background: #0d2a4a; border-color: #0d2a4a; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--reef-teal); color: var(--reef-teal); }
.btn-outline:hover { background: var(--reef-teal); color: var(--white); }
.btn-ocean {
  background: var(--reef-gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(8,145,178,0.3);
}
.btn-ocean:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(8,145,178,0.5); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============================================
   HERO SECTION (index.html)
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  position: relative; padding: 8rem 2rem 4rem;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,61,0.85) 0%, rgba(12,74,110,0.7) 50%, rgba(8,145,178,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; }
.hero-badges { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-headline { color: var(--white); margin-bottom: 1rem; font-size: clamp(2.5rem, 6vw, 4rem); }
.hero-subheadline { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-products { position: relative; z-index: 2; display: flex; justify-content: center; margin-top: 2rem; }
.product-stack { display: flex; gap: -20px; align-items: flex-end; justify-content: center; }
.product-stack img {
  height: 180px; border-radius: var(--radius-sm);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
  transition: transform var(--transition);
}
.product-stack .small { transform: rotate(-8deg) translateY(20px); z-index: 1; height: 140px; }
.product-stack .medium { transform: rotate(0deg); z-index: 3; height: 200px; margin: 0 -30px; }
.product-stack .large { transform: rotate(8deg) translateY(10px); z-index: 2; height: 160px; }
.product-stack img:hover { transform: scale(1.08) translateY(-10px); z-index: 10; }

/* ============================================
   MISSION STRIP
   ============================================ */
.mission-strip {
  background: var(--pearl); padding: 5rem 2rem; text-align: center;
  border-bottom: 3px solid var(--seafoam);
  position: relative; background-size: cover; background-position: center;
}
.mission-strip[style*="background-image"]::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,61,0.88) 0%, rgba(12,74,110,0.82) 50%, rgba(8,145,178,0.78) 100%);
}
.mission-strip .container { position: relative; z-index: 2; }
.mission-strip h2 { color: var(--white); margin-bottom: 1rem; }
.mission-strip[style*="background-image"] h2 { color: var(--white); }
.mission-strip[style*="background-image"] p { color: rgba(255,255,255,0.85); }
.mission-strip p { color: var(--gray-600); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* ============================================
   FEATURED PRODUCTS (index.html)
   ============================================ */
.featured-products { padding: 6rem 2rem; }
.featured-products h2, .shop-section h2 { text-align: center; margin-bottom: 3rem; color: var(--ocean-blue); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.product-card-featured {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.07); border: 1px solid var(--gray-200);
  transition: all var(--transition); text-align: center; padding: 2rem;
}
.product-card-featured:hover {
  transform: translateY(-8px); box-shadow: 0 20px 60px rgba(8,145,178,0.15);
  border-color: var(--turquoise);
}
.product-card-featured .product-image {
  height: 220px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(8,145,178,0.05), rgba(6,182,212,0.1));
  border-radius: var(--radius-md); margin-bottom: 1.5rem; overflow: hidden;
}
.product-card-featured .product-image img {
  max-height: 200px; width: auto; object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.product-card-featured:hover .product-image img { transform: scale(1.05); }
.product-card-featured h3 { color: var(--deep-ocean); margin-bottom: 0.25rem; }
.product-card-featured .product-size { color: var(--gray-400); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; }
.product-card-featured .product-desc { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 1rem; }
.product-card-featured .product-price {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--ocean-blue); margin-bottom: 1.25rem;
}
.product-card-featured .btn { margin-top: 0.5rem; }

/* ============================================
   HOW IT WORKS (index.html)
   ============================================ */
.how-it-works { padding: 6rem 2rem; background: var(--ocean-gradient); }
.how-it-works h2 { text-align: center; color: var(--white); margin-bottom: 3rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.how-it-works .step { text-align: center; }
.how-it-works .step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
  color: var(--sand); margin: 0 auto 1rem;
}
.how-it-works .step h3 { color: var(--white); margin-bottom: 0.5rem; }
.how-it-works .step p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 6rem 2rem; background: var(--gray-100); }
.testimonials h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 3rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(8,145,178,0.1); }
.testimonial-card .stars { color: var(--sand); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-card .testimonial-text { color: var(--gray-600); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-card .testimonial-author { font-weight: 700; color: var(--ocean-blue); font-size: 0.9rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 5rem 2rem; text-align: center; position: relative;
  background: var(--reef-gradient); overflow: hidden;
  background-size: cover; background-position: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,145,178,0.88) 0%, rgba(6,182,212,0.82) 50%, rgba(34,211,238,0.78) 100%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: var(--ocean-gradient); padding: 10rem 2rem 4rem; text-align: center;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,61,0.82) 0%, rgba(12,74,110,0.72) 50%, rgba(8,145,178,0.65) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.breadcrumb { font-size: 0.9rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--lagoon); }
.breadcrumb span { color: var(--sand); margin: 0 0.4rem; }

/* ============================================
   PRODUCTS PAGE (products.html)
   ============================================ */
.shop-section { padding: 5rem 2rem; }
.products-large-grid { display: flex; flex-direction: column; gap: 3rem; }
.product-card-large {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
  overflow: hidden; transition: all var(--transition);
}
.product-card-large:hover { box-shadow: 0 12px 50px rgba(8,145,178,0.12); }
.product-card-large:nth-child(even) { direction: rtl; }
.product-card-large:nth-child(even) > * { direction: ltr; }
.product-image-large {
  height: 100%; min-height: 350px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(8,145,178,0.06), rgba(6,182,212,0.12));
  padding: 2rem;
}
.product-image-large img {
  max-height: 300px; width: auto; object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.product-card-large:hover .product-image-large img { transform: scale(1.05); }
.product-details { padding: 2.5rem; }
.product-details h2 { color: var(--deep-ocean); margin-bottom: 0.25rem; }
.size-info { color: var(--reef-teal); font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.product-description { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.7; }
.price-section { margin-bottom: 1.5rem; }
.price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--ocean-blue); }
.price-note { color: var(--gray-400); font-size: 0.85rem; font-weight: 600; }
.action-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.action-buttons .btn-secondary { border-color: var(--gray-300); color: var(--gray-600); }
.action-buttons .btn-secondary:hover { border-color: var(--reef-teal); color: var(--reef-teal); }

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients-section { padding: 5rem 2rem; background: var(--ocean-gradient); }
.ingredients-section h2 { text-align: center; color: var(--white); margin-bottom: 0.5rem; }
.section-intro { text-align: center; color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 3rem; }
.ingredients-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.ingredient-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 2rem; text-align: center;
  backdrop-filter: blur(10px); transition: all var(--transition);
}
.ingredient-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.ingredient-card .ingredient-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--reef-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); box-shadow: 0 4px 15px rgba(8,145,178,0.3);
}
.ingredient-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.ingredient-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ============================================
   MULTI-USE SECTION
   ============================================ */
.multi-use-section { padding: 5rem 2rem; background: var(--gray-100); }
.multi-use-section h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 0.5rem; }
.multi-use-section .section-intro { color: var(--gray-500); }
.uses-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.use-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.use-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(8,145,178,0.1); border-color: var(--turquoise); }
.use-card .use-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(8,145,178,0.1), rgba(6,182,212,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--reef-teal);
}
.use-card h3 { color: var(--deep-ocean); margin-bottom: 0.5rem; }
.use-card p { color: var(--gray-500); font-size: 0.9rem; }

/* ============================================
   STORE LOCATOR (locations.html)
   ============================================ */
.store-locator { padding: 0; }
.store-locator .locator-wrapper {
  display: grid; grid-template-columns: 380px 1fr;
  max-width: 100%; min-height: calc(100vh - 200px);
}
.locator-sidebar {
  background: var(--white); border-right: 1px solid var(--gray-200);
  display: flex; flex-direction: column; max-height: calc(100vh - 200px);
  overflow: hidden;
}
.search-box { padding: 1.25rem; border-bottom: 1px solid var(--gray-200); display: flex; gap: 0; }
.search-input {
  flex: 1; padding: 0.8rem 1rem; border: 2px solid var(--gray-200);
  border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--gray-100);
  transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--reef-teal); background: var(--white); }
.search-btn {
  padding: 0.8rem 1.2rem; background: var(--reef-teal); color: var(--white);
  border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer; font-size: 1rem; transition: background var(--transition);
}
.search-btn:hover { background: var(--ocean-blue); }
.stores-list { flex: 1; overflow-y: auto; padding: 0; }
.island-group { border-bottom: 1px solid var(--gray-200); }
.island-name {
  padding: 1rem 1.25rem; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--reef-teal);
  background: var(--gray-100); display: flex; align-items: center; gap: 0.5rem;
  position: sticky; top: 0; z-index: 5;
}
.store-item {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: all var(--transition);
}
.store-item:hover, .store-item.active {
  background: var(--pearl); border-left: 4px solid var(--reef-teal);
}
.store-item h4 { color: var(--deep-ocean); font-size: 0.95rem; margin-bottom: 0.15rem; }
.store-item p { color: var(--gray-500); font-size: 0.8rem; margin: 0; line-height: 1.4; }
.store-item .hours { color: var(--gray-400); font-size: 0.75rem; margin-top: 0.25rem; }
.map-container { width: 100%; height: 100%; }
#map { width: 100%; height: 100%; min-height: calc(100vh - 200px); }

/* Leaflet popup */
.leaflet-popup-content-wrapper { border-radius: var(--radius-sm) !important; }
.leaflet-popup-content { margin: 0.8rem !important; font-family: var(--font-body) !important; }
.map-popup h4 { font-family: var(--font-heading); color: var(--deep-ocean); margin-bottom: 0.15rem; font-size: 0.95rem; }
.map-popup .popup-island { color: var(--reef-teal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.map-popup p { color: var(--gray-500); font-size: 0.8rem; margin-top: 0.3rem; }
.map-popup a { color: var(--reef-teal); font-weight: 600; font-size: 0.8rem; display: inline-block; margin-top: 0.3rem; }
.map-popup a:hover { text-decoration: underline; }

/* Custom marker */
.custom-marker {
  background: var(--reef-teal); border: 3px solid var(--white); border-radius: 50%;
  width: 36px !important; height: 36px !important; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(8,145,178,0.5); overflow: hidden;
}
.custom-marker img { width: 24px; height: 24px; border-radius: 50%; background: #fff; object-fit: contain; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 5rem 2rem; }
.story-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.story-text h2 { color: var(--ocean-blue); margin-bottom: 1.5rem; }
.story-text p { color: var(--gray-600); margin-bottom: 1rem; font-size: 1.05rem; }
.story-image { display: flex; align-items: center; justify-content: center; }
.story-image img {
  max-width: 100%; border-radius: var(--radius-lg);
  filter: drop-shadow(0 10px 30px rgba(8,145,178,0.2));
}

/* Values grid */
.values-grid { padding: 5rem 2rem; background: var(--ocean-gradient); }
.values-grid h2 { text-align: center; color: var(--white); margin-bottom: 3rem; }
.values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.value-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 2rem; text-align: center;
  backdrop-filter: blur(10px); transition: all var(--transition);
}
.value-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.value-card .value-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1rem;
  background: var(--reef-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); box-shadow: 0 4px 15px rgba(8,145,178,0.3);
}
.value-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.value-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Ingredients deep dive */
.ingredients-deep { padding: 5rem 2rem; background: var(--gray-100); }
.ingredients-deep h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 3rem; }
.ingredient-deep-cards { display: flex; flex-direction: column; gap: 2rem; max-width: 900px; margin: 0 auto; }
.ingredient-deep-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid var(--gray-200);
}
.ingredient-deep-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--reef-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); flex-shrink: 0;
}
.ingredient-deep-card h3 { color: var(--deep-ocean); margin-bottom: 0.75rem; }
.ingredient-details h4 { color: var(--reef-teal); font-size: 0.95rem; margin: 1rem 0 0.25rem; }
.ingredient-details h4:first-child { margin-top: 0; }
.ingredient-details p { color: var(--gray-500); font-size: 0.95rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 5rem 2rem; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--turquoise); box-shadow: 0 4px 20px rgba(8,145,178,0.1); }
.contact-card .contact-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--reef-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { color: var(--deep-ocean); font-size: 0.95rem; margin-bottom: 0.1rem; }
.contact-card p, .contact-card a { color: var(--gray-500); font-size: 0.9rem; }
.contact-card a:hover { color: var(--reef-teal); }
.contact-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
}
.contact-form h3 { margin-bottom: 1.5rem; color: var(--ocean-blue); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  background: var(--gray-100); transition: all var(--transition); color: var(--dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--reef-teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ocean-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; transition: all var(--transition);
}
.social-links a:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(8,145,178,0.4); }
.success-message {
  background: #ecfdf5; border: 2px solid #10b981; border-radius: var(--radius-md);
  padding: 2rem; text-align: center; color: #065f46;
}
.success-message i { font-size: 2.5rem; color: #10b981; margin-bottom: 0.5rem; display: block; }
.social-cta { padding: 4rem 2rem; background: var(--reef-gradient); text-align: center; }
.social-cta h2 { color: var(--white); margin-bottom: 1rem; }
.social-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.social-cta .social-links { justify-content: center; }
.social-cta .social-links a { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); }
.social-cta .social-links a:hover { background: rgba(255,255,255,0.25); }

/* ============================================
   WHOLESALE PAGE
   ============================================ */
.wholesale-login { padding: 5rem 2rem; background: var(--gray-100); }
.login-box {
  max-width: 480px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius-lg); padding: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08); border: 1px solid var(--gray-200);
}
.login-box h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 0.5rem; }
.login-intro { text-align: center; color: var(--gray-500); margin-bottom: 2rem; }
.login-note {
  text-align: center; font-size: 0.8rem; color: var(--gray-400);
  margin-top: 1.5rem; padding: 0.75rem; background: var(--gray-100);
  border-radius: var(--radius-sm);
}
.login-footer { text-align: center; margin-top: 1rem; color: var(--gray-500); font-size: 0.9rem; }
.login-footer a { color: var(--reef-teal); font-weight: 600; }
.login-footer a:hover { text-decoration: underline; }

/* Wholesale Benefits */
.wholesale-benefits { padding: 5rem 2rem; }
.wholesale-benefits h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 0.5rem; }
.wholesale-benefits .section-intro { text-align: center; color: var(--gray-500); margin-bottom: 3rem; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.benefit-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2rem;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(8,145,178,0.1); border-color: var(--turquoise); }
.benefit-card .benefit-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1rem;
  background: var(--reef-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); box-shadow: 0 4px 15px rgba(8,145,178,0.3);
}
.benefit-card h3 { color: var(--deep-ocean); margin-bottom: 0.5rem; }
.benefit-card p { color: var(--gray-500); font-size: 0.9rem; }

/* Wholesale Dashboard */
.wholesale-dashboard { padding: 4rem 2rem; background: var(--gray-100); }
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3rem; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.welcome-message h2 { color: var(--ocean-blue); }
.welcome-message p { color: var(--gray-500); }
.dashboard-content {
  display: grid; grid-template-columns: 2fr 1fr; gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.wholesale-products h3, .order-summary h3 { color: var(--ocean-blue); margin-bottom: 1.5rem; }
.wholesale-products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.wholesale-product-card {
  background: var(--white); border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid var(--gray-200);
  text-align: center;
}
.wholesale-product-card .product-image {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(8,145,178,0.05), rgba(6,182,212,0.1));
  border-radius: var(--radius-sm); margin-bottom: 1rem;
}
.wholesale-product-card .product-image img { max-height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.wholesale-product-card h4 { color: var(--deep-ocean); margin-bottom: 0.75rem; }
.pricing-table { margin-bottom: 1rem; }
.price-row { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.9rem; color: var(--gray-500); }
.price-row.wholesale { color: var(--coral); font-weight: 700; font-size: 1rem; }
.price-row.wholesale strong { color: var(--coral); }
.quantity-selector { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gray-200);
  background: var(--white); color: var(--dark); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--reef-teal); color: var(--reef-teal); }
.qty-input {
  width: 50px; text-align: center; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 0.4rem; font-weight: 700;
  font-size: 1rem; font-family: var(--font-body);
}
.order-summary {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
  position: sticky; top: 100px; height: fit-content;
}
.summary-items { margin-bottom: 1.5rem; }
.summary-item { display: flex; justify-content: space-between; padding: 0.5rem 0; color: var(--gray-500); }
.summary-item.total { font-size: 1.2rem; color: var(--ocean-blue); }
.summary-item.total strong { font-family: var(--font-heading); }
.summary-divider { border-top: 2px solid var(--gray-200); margin: 0.5rem 0; }
.order-note { text-align: center; font-size: 0.8rem; color: var(--gray-400); margin-top: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--deep-ocean); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 2rem;
}
.footer-column h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.5rem; font-family: var(--font-brand); text-transform: uppercase; letter-spacing: 0.02em; }
.footer-column h5 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-column p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-column ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-column a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition); }
.footer-column a:hover { color: var(--turquoise); }
.footer .social-links a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08); font-size: 0.95rem;
}
.footer .social-links a:hover { background: rgba(255,255,255,0.15); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08); text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100vh;
  background: var(--white); z-index: 2001; transition: right var(--transition);
  display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200);
}
.cart-header h3 { font-size: 1.1rem; color: var(--deep-ocean); }
.close-cart {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--gray-100); cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: var(--gray-500);
  transition: all var(--transition); font-size: 1rem;
}
.close-cart:hover { background: var(--gray-200); color: var(--dark); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.empty-cart { text-align: center; color: var(--gray-400); padding: 3rem 1rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-100);
  align-items: center;
}
.cart-item-img {
  width: 55px; height: 55px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(8,145,178,0.08), rgba(6,182,212,0.12));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.cart-item-img img { max-height: 45px; object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; color: var(--deep-ocean); }
.cart-item-info .cart-item-price { font-weight: 700; color: var(--ocean-blue); font-size: 0.9rem; }
.cart-item-remove {
  background: none; border: none; color: var(--gray-400); cursor: pointer;
  padding: 0.25rem; transition: color var(--transition); font-size: 0.85rem;
}
.cart-item-remove:hover { color: #ef4444; }
.cart-footer {
  padding: 1.5rem; border-top: 1px solid var(--gray-200); background: var(--gray-100);
}
.cart-total { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1.1rem; }
.cart-total strong { color: var(--gray-600); }
.cart-total span { font-family: var(--font-heading); font-weight: 800; color: var(--ocean-blue); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; background: var(--deep-ocean);
  color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; z-index: 3000;
  transform: translateY(120px); opacity: 0; transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 0.75rem;
  border-left: 4px solid var(--reef-teal);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-card-large { grid-template-columns: 1fr; }
  .product-card-large:nth-child(even) { direction: ltr; }
  .story-content { grid-template-columns: 1fr; }
  .story-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .dashboard-content { grid-template-columns: 1fr; }
  .store-locator .locator-wrapper { grid-template-columns: 1fr; }
  .locator-sidebar { max-height: 300px; }
  #map { min-height: 450px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-headline { font-size: 2.2rem; }
  .product-stack img { height: 120px !important; }
  .product-stack .medium { height: 150px !important; margin: 0 -20px; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; }
  .cart-sidebar { width: 100%; right: -100%; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-header { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-empty { text-align: center; padding: 3rem 2rem; margin-bottom: 2rem; }
.reviews-empty-content {
  max-width: 500px; margin: 0 auto; padding: 3rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
}
.reviews-empty-icon { font-size: 3rem; color: var(--reef-teal); margin-bottom: 1rem; }
.reviews-empty-content h3 { color: var(--ocean-blue); margin-bottom: 0.5rem; }
.reviews-empty-content p { color: var(--gray-500); }
.review-form-wrapper {
  max-width: 600px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
}
.review-form-wrapper h3 { color: var(--ocean-blue); margin-bottom: 1.5rem; text-align: center; }
.review-stars-input { margin-bottom: 1.25rem; text-align: center; }
.review-stars-input label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--dark); }
.star-rating { display: inline-flex; gap: 0.4rem; font-size: 1.6rem; cursor: pointer; }
.star-rating i { color: var(--gray-300); transition: color 0.2s ease; }
.star-rating i.active, .star-rating i.hover { color: var(--sand); }
.review-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.review-form .form-group { margin-bottom: 1.25rem; }
.review-form .form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--dark); }
.review-form .form-group input,
.review-form .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  background: var(--gray-100); transition: all var(--transition); color: var(--dark);
}
.review-form .form-group input:focus,
.review-form .form-group textarea:focus {
  outline: none; border-color: var(--reef-teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}
.review-form .form-group input::placeholder,
.review-form .form-group textarea::placeholder { color: var(--gray-400); }
.review-form .btn { width: 100%; }
.review-success {
  text-align: center; padding: 2rem; display: none;
}
.review-success i { font-size: 2.5rem; color: #10b981; margin-bottom: 0.5rem; display: block; }
.review-success h3 { color: var(--ocean-blue); margin-bottom: 0.25rem; }
.review-success p { color: var(--gray-500); }

/* Contact form section cards */
.contact-cards-section { padding: 5rem 2rem; }
.contact-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.contact-cards-section .contact-card {
  text-align: center; flex-direction: column; padding: 2rem;
}
.contact-cards-section .contact-card h3 { color: var(--deep-ocean); margin-top: 0.5rem; margin-bottom: 0.25rem; }
.contact-cards-section .contact-info { color: var(--reef-teal); font-weight: 600; }
.contact-cards-section .contact-note { color: var(--gray-400); font-size: 0.8rem; }
a.contact-card-link { text-decoration: none; cursor: pointer; }
a.contact-card-link:hover { border-color: var(--reef-teal); box-shadow: 0 6px 24px rgba(8,145,178,0.15); transform: translateY(-3px); }
.contact-form-section { padding: 3rem 2rem 5rem; background: var(--gray-100); }
.contact-form-wrapper {
  max-width: 600px; margin: 0 auto;
}
.form-header { text-align: center; margin-bottom: 2rem; }
.form-header h2 { color: var(--ocean-blue); margin-bottom: 0.5rem; }
.form-header p { color: var(--gray-500); }
.form-success { text-align: center; padding: 2rem; }
.form-success i { font-size: 2.5rem; color: #10b981; margin-bottom: 0.5rem; display: block; }
.social-section { padding: 4rem 2rem; background: var(--reef-gradient); text-align: center; }
.social-section h2 { color: var(--white); margin-bottom: 0.5rem; }
.social-section p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.social-button {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; color: var(--white); font-weight: 600; transition: all var(--transition);
  margin: 0 0.5rem;
}
.social-button:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

@media (max-width: 768px) {
  .review-form .form-row { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LIFESTYLE BANNER
   ============================================ */
.lifestyle-banner {
  width: 100%; max-height: 400px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lifestyle-banner img {
  width: 100%; height: 400px; object-fit: cover; object-position: center 30%;
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip { padding: 0; overflow: hidden; }
.photo-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.photo-strip-grid img {
  width: 100%; height: 250px; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-strip-grid img:hover { transform: scale(1.05); }

@media (max-width: 768px) {
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip-grid img { height: 180px; }
  .lifestyle-banner img { height: 250px; }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section { padding: 5rem 2rem; background: var(--gray-100); }
.video-section h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 0.5rem; }
.video-section .section-intro { text-align: center; color: var(--gray-500); margin-bottom: 2.5rem; }
.video-wrapper {
  max-width: 800px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15); border: 3px solid var(--gray-200);
}
.video-wrapper video {
  width: 100%; height: auto; display: block; background: #000;
}
.video-wrapper iframe {
  width: 100%; aspect-ratio: 16/9; display: block; background: #000;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.photo-gallery { padding: 5rem 2rem; }
.photo-gallery h2 { text-align: center; color: var(--ocean-blue); margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 1100px; margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease forwards; }
