@charset "utf-8";

/* ==========================
   VARIABLES
   ========================== */

:root {
  --green: #4d8f22;
  --green-dark: #346516;
  --dark: #1c2024;
  --gray: #667085;
  --light: #f5f7f2;
  --white: #ffffff;
  --border: #e2e6dc;
}

/* ==========================
   BASE
   ========================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================
   TOPBAR
   ========================== */

.topbar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: .2px;
}

/* ==========================
   HEADER / NAVIGATION
   ========================== */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  width: 170px;
  height: auto;
  display: block;
}

/* Checkbox caché pour menu mobile */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 38px;
  height: 34px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-label span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 15px;
  color: #333;
}

.nav-links a {
  color: #222;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-preorder {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(77,143,34,.22);
}

.nav-preorder:hover {
  background: var(--green-dark);
  color: var(--white) !important;
}

/* ==========================
   BUTTONS
   ========================== */

.button {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(77,143,34,.24);
}

.button:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: var(--dark);
  box-shadow: none;
}

.button.secondary:hover {
  background: #000;
}

/* ==========================
   HERO
   ========================== */

.hero {
  background: linear-gradient(120deg, #f4f8ef 0%, #ffffff 55%, #eef5e7 100%);
  padding: 68px 22px 54px;
}

.hero-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 13px;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  margin: 0 0 20px;
  letter-spacing: -2.6px;
}

.hero p {
  font-size: 20px;
  color: #41484f;
  max-width: 620px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(28,32,36,.12);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* ==========================
   PRICE STRIP
   ========================== */

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: -26px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 5;
}

.metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(28,32,36,.08);
}

.metric strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.metric span {
  color: var(--gray);
}

/* ==========================
   SECTIONS
   ========================== */

section {
  max-width: 1180px;
  margin: auto;
  padding: 78px 22px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 14px;
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
  margin: 0 0 12px;
}

/* ==========================
   PREORDER BANNER
   ========================== */

.preorder-banner {
  max-width: 1180px;
  margin: 46px auto 0;
  padding: 34px;
  background: var(--dark);
  color: var(--white);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.preorder-banner h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
}

.preorder-banner p {
  margin: 0;
  color: #d8dde0;
  font-size: 17px;
}

/* ==========================
   GRIDS / FEATURES
   ========================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.feature p {
  margin: 0;
  color: #4a5258;
}

/* ==========================
   PRODUCT SPLIT
   ========================== */

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(28,32,36,.12);
}

/* ==========================
   SPECS
   ========================== */

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.spec {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.spec small {
  display: block;
  color: var(--gray);
  margin-bottom: 3px;
}

/* ==========================
   GALLERY
   ========================== */

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(28,32,36,.08);
}

.gallery-stack {
  display: grid;
}

/* ==========================
   SPEC TABLE
   ========================== */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.spec-table th {
  width: 34%;
  background: var(--light);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

.note {
  color: var(--gray);
  font-size: 15px;
  margin-top: 16px;
}

/* ==========================
   PRICE BOX
   ========================== */

.price-box {
  background: var(--dark);
  color: var(--white);
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.price-box h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
}

.price-box p {
  margin: 0;
  color: #d8dde0;
}

.price {
  text-align: right;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
}

.price small {
  display: block;
  font-size: 15px;
  color: #d8dde0;
  letter-spacing: 0;
  font-weight: 500;
}

/* ==========================
   FAQ
   ========================== */

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--gray);
  margin: 12px 0 0;
}

/* ==========================
   CONTACT
   ========================== */

.contact {
  text-align: center;
  background: var(--light);
  border-radius: 30px;
  padding: 46px 28px;
  border: 1px solid var(--border);
}

.contact h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
}

.contact p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--gray);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==========================
   FOOTER
   ========================== */

footer {
  background: var(--dark);
  color: #d8dde0;
  padding: 30px 22px;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

/* ==========================
   CARACTÉRISTIQUES PAGE
   ========================== */

.features-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.feature-card img {
  width: 500px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-content h2 {
  margin-bottom: 15px;
  color: #2f6f1e;
  font-size: 2rem;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================
   LIGHTBOX IMAGES
   ========================== */

.clickable-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.clickable-image:hover {
  transform: scale(1.03);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-close:hover {
  color: #7dbb32;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #7dbb32;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ==========================
   RESPONSIVE TABLET
   ========================== */

@media (max-width: 980px) {
  .hero-wrap,
  .split,
  .price-box,
  .preorder-banner,
  .gallery {
    grid-template-columns: 1fr;
  }

  .price {
    text-align: left;
    font-size: 44px;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================
   RESPONSIVE IPHONE / MOBILE
   ========================== */

@media (max-width: 760px) {
  .topbar {
    font-size: 13px;
    padding: 9px 12px;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .site-logo {
    width: 150px;
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 35px rgba(28,32,36,.12);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
  }

  .nav-links a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid #edf0e8;
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-preorder {
    text-align: center;
    margin-top: 10px;
    padding: 13px 16px !important;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    padding: 42px 18px 42px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 52px);
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-actions .button {
    text-align: center;
    width: 100%;
  }

  .price-strip {
    grid-template-columns: 1fr;
    margin: 20px auto 0;
  }

  section {
    padding: 56px 18px;
  }

  .preorder-banner {
    margin: 34px 18px 0;
    padding: 26px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .specs {
    grid-template-columns: 1fr;
  }

  .spec-table {
    font-size: 14px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: none;
  }

  .feature-card,
  .feature-card:nth-child(even) {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 50px;
    padding-bottom: 40px;
  }

  .feature-card img {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 42px;
    padding: 12px;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox-close {
    font-size: 42px;
    right: 22px;
  }
}

.preorder-form {
  background: #f5f7f2;
  border: 1px solid #e2e6dc;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 45px rgba(28,32,36,.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  color: #1c2024;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d5dacd;
  border-radius: 14px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4d8f22;
  box-shadow: 0 0 0 4px rgba(77,143,34,.16);
}

.preorder-form .button {
  margin-top: 26px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .preorder-form {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   VIDEO GOLFCRUISER
   ========================== */

.video-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.video-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e5e5;
}

.video-container h2 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #2f6f1e;
  font-size: 2rem;
}

.video-container p {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

.video-container video {
  width: 100%;
  max-width: 1000px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mobile */

@media (max-width: 768px) {

  .video-container {
    padding: 20px;
  }

  .video-container h2 {
    font-size: 1.6rem;
  }

}

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 22px 20px;
}

.page-hero-inner p {
  max-width: 900px;
}

.video-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px 60px;
}

.video-container {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(28,32,36,.12);
  border: 1px solid #e5e5e5;
}

.video-container video {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
}
.gc-brand {
    font-weight: inherit;
    white-space: nowrap;
}

.gc-brand .golf {
    color: #78a834;
	font-weight: bold;	
}

.gc-brand .cruiser {
    color: #1b222b;
	font-weight: bold;
}
.success-message {
    max-width: 900px;
    margin: 0 auto 25px auto;
    padding: 16px 20px;
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-left: 6px solid #2e7d32;
    border-radius: 8px;
    color: #1b5e20;
    font-weight: 600;
}

.error-message {
    max-width: 900px;
    margin: 0 auto 25px auto;
    padding: 16px 20px;
    background: #ffebee;
    border: 1px solid #ef5350;
    border-left: 6px solid #c62828;
    border-radius: 8px;
    color: #b71c1c;
    font-weight: 600;
}