/** Shopify CDN: Minification failed

Line 968:18 Expected "}" to go with "{"

**/
/* OmyBoat v4 - test API OK */
/* ============================================
   OmyBoat Design System — omyboat.css
   ============================================ */

:root {
  --navy:            #004d6e;
  --navy-light:      #006B8F;
  --cyan:            #00A3C4;
  --cyan-dark:       #006B8F;
  --gold:            #F59E0B;
  --green:           #27ae60;
  --text-dark:       #1a2332;
  --text-muted:      #6B7280;
  --bg-light:        #f0f4f8;
  --bg-card:         #ffffff;
  --shadow-card:     0 2px 14px rgba(0,0,30,0.08);
  --shadow-hover:    0 10px 34px rgba(0,0,30,0.15);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       18px;
  --max-width:       1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Layout utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.omyboat-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,77,110,0.1);
  height: 64px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.omyboat-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,30,0.12); }

.omyboat-nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.omyboat-nav .nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-right: 32px;
  flex-shrink: 0;
}
.omyboat-nav .nav-logo span { color: var(--gold); }

.omyboat-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.omyboat-nav .nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.omyboat-nav .nav-links a:hover,
.omyboat-nav .nav-links a.active {
  background: rgba(0,163,196,0.08);
  color: var(--cyan);
  font-weight: 600;
}

.omyboat-nav .nav-separator {
  width: 1px;
  height: 20px;
  background: rgba(0,77,110,0.2);
  margin: 0 8px;
}

.omyboat-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-cta:hover { background: #d97706; }

.btn-account {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-account:hover { background: var(--navy); color: #fff; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Prevent third-party widgets (BTA, Shopify Privacy) from causing horizontal scroll */
html, body { overflow-x: hidden; }
.bta-reservation-bottom, #bta-reservation-widget-xcomponent { max-width: 100%; overflow: hidden; }

/* F47 — bascule mobile : burger visible, nav desktop cachée sous 768px */
@media (max-width: 768px) {
  .omyboat-nav .nav-links { display: none; }
  .omyboat-nav .nav-actions .btn-cta,
  .omyboat-nav .nav-actions .btn-account,
  .omyboat-nav .nav-actions .lang-switcher:not(.lang-switcher--mobile) {
    display: none;
  }
  .nav-hamburger { display: flex; }
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,77,110,0.1);
  box-shadow: 0 8px 24px rgba(0,0,30,0.1);
  z-index: 999;
  padding: 16px 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  transition: background 0.2s;
}
.nav-mobile a:hover { background: var(--bg-light); color: var(--cyan); }
.nav-mobile .btn-cta { width: 100%; text-align: center; margin-top: 8px; }

/* Spacer to push content below fixed nav */
.nav-spacer { height: 64px; }

/* ============================================
   FOOTER
   ============================================ */
.omyboat-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
}

.omyboat-footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.65); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   BOAT CARD
   ============================================ */
.boat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.boat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.boat-card-image {
  position: relative;
  height: 200px;
  background: var(--bg-light);
  overflow: hidden;
}
.boat-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.boat-card:hover .boat-card-image img { transform: scale(1.04); }

.badge-type {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,77,110,0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.badge-permit {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.badge-price {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--gold);
  color: #1a2332;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}

.boat-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boat-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.boat-card-port {
  font-size: 0.88rem;
  color: var(--cyan-dark);
  font-weight: 500;
}
/* ── Cartouches ville / port ── */
.boat-card-location {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.badge-city {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #eef7ff;
  color: #1a4a7a;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid #c3daf5;
  white-space: nowrap;
}
.badge-port-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0fafb;
  color: #0a5555;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0,200,200,0.35);
  white-space: nowrap;
}
/* Fiche produit — ligne de badges sous le titre */
.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.product-badge-city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eef7ff;
  color: #1a4a7a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #c3daf5;
}
.product-badge-port {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fafb;
  color: #0a5555;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,200,200,0.35);
}
.boat-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.boat-card-specs {
  display: flex;
  gap: 16px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.boat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--bg-light);
}
.boat-card-rating {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
}
.btn-voir {
  font-size: 0.88rem;
  color: var(--cyan);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.btn-voir:hover { background: rgba(0,163,196,0.08); }

/* ============================================
   BOATS GRID
   ============================================ */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   BUTTON UTILITIES
   ============================================ */
.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--cyan) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 80px 24px 40px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0 60 C300 0 900 120 1200 60 L1200 120 L0 120 Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat bottom/100%;
}
.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

/* ============================================
   FEATURED BOATS SECTION
   ============================================ */
.featured-section {
  padding: 64px 0;
  background: #fff;
}

.featured-section .section-header {
  margin-bottom: 48px;
  text-align: center;
}

.featured-section .section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.featured-section .boats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.featured-section .section-cta {
  text-align: center;
}

@media (max-width: 1024px) {
  .featured-section .boats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 48px 0;
  }

  .featured-section .boats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-section .section-header {
    margin-bottom: 32px;
  }
}

/* ============================================
   SMART BROWSE SECTION
   ============================================ */
.smart-browse {
  padding: 64px 0;
  background: var(--bg-light);
}

.smart-browse .section-header {
  margin-bottom: 48px;
  text-align: center;
}

.smart-browse .section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.smart-browse .browse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.browse-card {
  border-radius: var(--radius-md);
  padding: 32px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.browse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.browse-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.browse-card p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
  font-weight: 500;
}

.browse-card-blue {
  background: linear-gradient(135deg, #004d6e 0%, #006891 100%);
}

.browse-card-teal {
  background: linear-gradient(135deg, #00A3C4 0%, #008ba3 100%);
}

.browse-card-orange {
  background: linear-gradient(135deg, #d97706 0%, #F59E0B 100%);
}

.browse-card-navy {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

.port-pills-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.port-pill {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.port-pill:hover {
  background: var(--navy);
  color: white;
}

@media (max-width: 768px) {
  .smart-browse {
    padding: 48px 0;
  }

  .smart-browse .browse-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .browse-card {
    min-height: 160px;
    padding: 24px;
  }

  .browse-card h3 {
    font-size: 1.2rem;
  }

  .port-pill {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* ============================================
   REASSURANCE SECTION
   ============================================ */
.reassurance-section {
  padding: 64px 0;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border-top: 4px solid var(--cyan);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.trust-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.trust-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .reassurance-section {
    padding: 48px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-card {
    padding: 24px 20px;
  }

  .trust-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
}



/* ============================================
   LANG SWITCHER — FR / EN
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.lang-btn {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 4px;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 7px;
  transition: all 0.15s;
  line-height: 1;
}

.lang-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.lang-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Séparateur entre FR et EN */
.lang-switcher .lang-btn:not(:last-child)::after {
  content: '';
}

/* Mobile — centré en bas du menu */
.lang-switcher--mobile {
  justify-content: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,77,110,0.1);
}

.lang-switcher--mobile .lang-btn {
  font-size: 0.9rem;
  padding: 6px 14px;
}


/* ============================================
   CART MANAGER — Bandeau de reprise + Modale
   ============================================ */

/* ---- Bandeau de reprise ---- */
#omyboat-cart-banner {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 999;
  height: 44px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  background: var(--gold);
  color: #1a2332;
  font-family: 'Inter', sans-serif;
}

#omyboat-cart-banner.crb--visible {
  transform: translateY(0);
}

/* Navbar reste en place — le bandeau est sous elle */
body.has-cart-banner .omyboat-nav {
  top: 0;
}
body.has-cart-banner .nav-spacer {
  height: 108px; /* 64px nav + 44px bandeau */
}

.crb-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 44px;
  max-width: 1200px;
  margin: 0 auto;
}

.crb-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.crb-text {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crb-btn {
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.crb-btn--resume {
  background: #00A3C4;
  color: #fff;
}
.crb-btn--resume:hover {
  background: #0091ae;
  color: #fff;
}

.crb-btn--cancel {
  background: transparent;
  color: rgba(26,35,50,0.7);
  border: 1px solid rgba(26,35,50,0.3);
}
.crb-btn--cancel:hover {
  color: #1a2332;
  border-color: rgba(26,35,50,0.7);
}

@media (max-width: 600px) {
  .crb-text { display: none; }
  .crb-inner { justify-content: center; gap: 10px; }
}

/* ---- Modale de conflit ---- */
/* Modal "réservation en cours" — dropdown sous le navbar */
.ccm-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 14px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  font-family: 'Inter', sans-serif;
  animation: ccm-slide 0.25s ease;
}

body.has-cart-banner .ccm-overlay {
  top: 108px;
}


@keyframes ccm-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ccm-box {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}

.ccm-icon {
  font-size: 1.4re