:root {
  --brand: #226e0b;
  --accent: #f4a261;
  --muted: #6b7280;
  --bg: #f7faf9;
  --card: #ffffff;
  --shadow: 0 6px 18px rgba(11, 110, 79, 0.08);
  font-family: Inter, ui-sans-serif, system-ui;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: var(--bg);
  color: #0f172a;
  line-height: 1.4
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 24px
}

header {
  background: linear-gradient(90deg, var(--brand), #046a5a);
  color: white
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600
}

.cta {
  background: var(--accent);
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #065f46;
  padding: 10px
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

@media(max-width:900px) {
  nav ul {
    display: none
  }

  .mobile-toggle {
    display: block
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  padding: 36px
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow)
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 20px
}

.product {
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto
}

.price {
  font-weight: 800
}

.add {
  background: var(--brand);
  border: none;
  color: white;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer
}


.scrolling-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border: 1px solid #ddd;
  /* optional */
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #ff0000;
  /* text color */
  background-color: #f9f9f9;
  /* optional background */
}

.scrolling-text span {
  display: inline-block;
  padding-left: 0%;
  animation: scrollBack 8s linear infinite alternate;
}

@keyframes scrollBack {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Optional separator for multiple messages */
.scrolling-text span::after {
  content: " --- ";
  padding-right: 50px;
}

.swiper {
      width: 100%;
      height: 300px;
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }