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

#hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 560px;
  margin-top: 0;
  overflow: hidden;
  color: #fff;
}

#hero .slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#hero .slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

#hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 56, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(82, 132, 3, 0.45) 100%);
  z-index: 2;
}

#hero .hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--content-pad);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  box-sizing: border-box;
}

#hero .hero-content .badge {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

#hero .hero-content h1 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 18px 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  max-width: 700px;
}

#hero .hero-content p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 30px 0;
  max-width: 520px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

#hero .cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

#hero .btn,
#visit-store .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

#hero .btn.primary,
#visit-store .btn.primary {
  background: #528403;
  color: #fff;
  border-color: #528403;
  box-shadow: 0 8px 22px rgba(82, 132, 3, 0.35);
}

#hero .btn.primary:hover,
#visit-store .btn.primary:hover {
  background: #436c02;
  border-color: #436c02;
  transform: translateY(-2px);
}

#hero .btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

#visit-store .btn.ghost {
  background: transparent;
  color: #528403;
  border-color: #528403;
}

#visit-store .btn.ghost:hover {
  background: #528403;
  color: #fff;
}

#hero .scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bob 2.2s ease-in-out infinite;
  transition: background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#hero .scroll-hint:hover {
  background: rgba(255, 255, 255, 0.3);
}

#hero .scroll-hint i {
  font-size: 16px;
  color: #fff;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

#hero .hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 130px;
  z-index: 3;
  pointer-events: none;
  display: block;
}

@media (max-width: 800px) {
  #hero .hero-wave {
    height: 70px;
  }
}

/* ===== SECTION HEADERS ===== */

.section-head {
  margin-bottom: 30px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2a2a2a;
}

.section-head p {
  margin: 0;
  font-size: 16px;
  color: #777;
}

/* ===== CATEGORIE ===== */

#categorie {
  position: relative;
  float: left;
  width: 100%;
  padding: 70px 0 30px 0;
  background: #fff;
}

#categorie .cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

#categorie .cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  text-decoration: none;
  color: #333;
  background: #f8f8f4;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 10px 14px 10px;
  height: 140px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#categorie .cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #cfe0a3;
}

#categorie .cat-card .img {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 6px;
}

#categorie .cat-card .img img {
  max-height: 80px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

#categorie .cat-card:hover .img img {
  transform: scale(1.06) rotate(-2deg);
}

#categorie .cat-card .label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #333;
  text-transform: uppercase;
}

#categorie .cat-card.highlight {
  background: linear-gradient(135deg, #f0f7d8 0%, #e2eebd 100%);
  border-color: #cfe0a3;
}

#categorie .cat-card.highlight .label {
  color: #436c02;
}

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

.products-section {
  position: relative;
  float: left;
  width: 100%;
  padding: 60px 0;
  background: #fdfdfb;
}

#last-products-section {
  background: #fff;
}

.products-section h1 {
  display: none;
}

/* swiper overrides for product cards */
.products-section .product-card-swiper {
  position: relative;
}

.products-section #products {
  width: 100%;
  left: 0;
  transform: none;
  margin-top: 10px;
  z-index: 1;
  padding: 10px 0 20px 0;
  overflow: visible;
}

.products-section .swiper-wrapper {
  display: flex;
}

.products-section #products .product.swiper-slide {
  width: 248px;
  flex: 0 0 248px;
  flex-shrink: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #528403;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  font-weight: 700;
}

/* ===== VALUE PROPS ===== */

#value-props {
  position: relative;
  float: left;
  width: 100%;
  background: linear-gradient(135deg, #528403 0%, #436c02 100%);
  padding: 50px 0;
  color: #fff;
}

#value-props .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#value-props .prop {
  display: flex;
  align-items: center;
  gap: 16px;
}

#value-props .prop .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

#value-props .prop .icon i {
  font-size: 26px;
  color: #fff;
}

#value-props .prop .text .t {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

#value-props .prop .text .d {
  font-size: 13px;
  opacity: 0.85;
}

/* ===== ABOUT US ===== */

#about-us {
  position: relative;
  width: 100%;
  padding: 70px 0;
  background: #fff;
}

#about-us .about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

#about-us .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand);
  background: rgba(82, 132, 3, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

#about-us h2 {
  margin: 0 0 18px 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2a2a2a;
  line-height: 1.2;
}

#about-us p {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

#about-us .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#about-us .stat {
  background: linear-gradient(135deg, #f0f7d8 0%, #e2eebd 100%);
  border: 1px solid #cfe0a3;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}

#about-us .stat .n {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

#about-us .stat .t {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* ===== VISIT STORE ===== */

#visit-store {
  position: relative;
  float: left;
  width: 100%;
  padding: 70px 0 30px 0;
  background: #fff;
}


#visit-store .card {
  position: relative;
  background: linear-gradient(135deg, #f8f8f4 0%, #f0f7d8 100%);
  border: 1px solid #cfe0a3;
  border-radius: 24px;
  padding: 50px 50px;
  box-sizing: border-box;
  overflow: hidden;
}

#visit-store .card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(82, 132, 3, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

#visit-store .info {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

#visit-store .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #528403;
  background: rgba(82, 132, 3, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

#visit-store h2 {
  margin: 0 0 14px 0;
  font-size: 32px;
  font-weight: 800;
  color: #2a2a2a;
  letter-spacing: -0.5px;
}

#visit-store p {
  margin: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

#visit-store .hours {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
}

#visit-store .hours > div {
  font-size: 15px;
  color: #333;
}

#visit-store .hours span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #528403;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

#visit-store .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

@media (max-width: 1100px) {
  #categorie .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #value-props .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 800px) {

  #hero {
    height: auto;
    min-height: 0;
    padding-bottom: 50px;
  }

  #hero .slider {
    position: absolute;
    inset: 0;
  }

  #hero .hero-content {
    position: relative;
    padding: 100px 8% 60px 8%;
    align-items: center;
    text-align: center;
  }

  #hero .hero-content h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  #hero .hero-content p {
    font-size: 16px;
  }

  #hero .cta {
    justify-content: center;
    width: 100%;
  }

  #hero .btn,
  #visit-store .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  #hero .scroll-hint {
    display: none;
  }

  #categorie {
    padding: 50px 0 20px 0;
  }

  #categorie .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  #categorie .cat-card {
    height: 120px;
  }

  #categorie .cat-card .img img {
    max-height: 60px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .section-head p {
    font-size: 14px;
  }

  .products-section {
    padding: 40px 0;
  }

  #value-props {
    padding: 35px 0;
  }

  #value-props .content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #about-us {
    padding: 45px 0;
  }

  #about-us .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #about-us h2 {
    font-size: 24px;
  }

  #about-us .stat .n {
    font-size: 26px;
  }

  #visit-store {
    padding: 50px 0 20px 0;
  }

  #visit-store .card {
    padding: 30px 24px;
    border-radius: 18px;
  }

  #visit-store h2 {
    font-size: 24px;
  }

  #visit-store .hours {
    flex-direction: column;
    gap: 14px;
  }

  #visit-store .actions {
    flex-direction: column;
  }

  #visit-store .actions .btn {
    width: 100%;
  }
}
