* {
  box-sizing: border-box;
  margin: 0;
  font-family: system-ui, sans-serif;
}

body {
  background: #f6f2ea;
  color: #2e2e2e;
}

.header {
  background: #3d5f3a;
  padding: 12px 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 36px;
  margin-bottom: 6px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.nav-right,
.nav-left {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
}

.hero-content p {
  margin: 12px 0 20px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.primary {
  background: #2f2a3a;
  color: #fff;
}

.secondary {
  background: #2f2a3a;
  color: #fff;
}

.featured {
  padding: 60px 40px;
}

.featured h2 {
  margin-bottom: 24px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h4 {
  margin: 10px 0 4px;
}

.about {
  padding: 80px 40px;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: 0 auto 28px;
}

.footer {
  background: #3d5f3a;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.footer h3 {
  margin-bottom: 12px;
}

.footer p {
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.7;
}

.header {
  background: #3d5f3a;
  padding: 14px 24px;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  flex: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.logo {
  height: 34px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.menu a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.region {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-left {
  flex: 1;
}

.product-card {
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-2px);
}

.page {
  padding: 70px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-title {
  font-size: 56px;
  letter-spacing: 1px;
  margin: 40px 0 40px;
  color: #2f2a3a;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 10px 0 28px;
  color: #6b6770;
  font-size: 14px;
}

.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.toolbar-label {
  margin-right: 6px;
}

.select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.select select {
  border: 0;
  background: transparent;
  color: #6b6770;
  font-size: 14px;
  padding: 6px 2px;
  outline: none;
  cursor: pointer;
}

.count {
  margin-left: 18px;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .page-title { font-size: 40px; }
  .product-grid { grid-template-columns: 1fr; }
}

.product-tile {
  text-decoration: none;
  color: inherit;
  background: #f0ebe1;
  border-radius: 14px;
  padding: 14px;
  display: block;
}

.tile-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
}

.tile-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.tile-body {
  text-align: center;
  padding: 18px 10px 10px;
}

.tile-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tile-price {
  font-size: 14px;
  color: #2f2a3a;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #2f2a3a;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-tile:hover {
  transform: translateY(-2px);
}

.process {
  margin-bottom: 100px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.process-card {
  background: #f0ebe1;
  padding: 28px;
  border-radius: 16px;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
}

.fleet-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.fleet-item.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.fleet-item.reverse .fleet-image {
  order: 2;
}

.fleet-image {
  max-width: 420px;
}

.fleet-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.fleet-eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  opacity: 0.6;
}

.fleet-text h2 {
  margin: 12px 0 18px;
  font-size: 34px;
}

.fleet-text p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .fleet-item,
  .fleet-item.reverse {
    grid-template-columns: 1fr;
  }

  .fleet-item.reverse .fleet-image {
    order: 0;
  }
}

.crumbs {
  margin: 30px 0 20px;
  font-size: 13px;
  color: #6b6770;
  display: flex;
  gap: 10px;
  align-items: center;
}

.crumbs a {
  color: inherit;
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

.product-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 20px 0 90px;
  align-items: start;
}

.product-media img {
  width: 100%;
  border-radius: 18px;
  display: block;
  background: #ddd;
}

.product-title {
  font-size: 40px;
  margin: 8px 0 10px;
  color: #2f2a3a;
}

.product-price {
  font-size: 18px;
  margin-bottom: 18px;
  color: #2f2a3a;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b6770;
  margin-bottom: 22px;
  max-width: 520px;
}

.upload-box {
  background: #f0ebe1;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 22px;
}

.upload-label {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.upload-hint {
  margin-top: 10px;
  font-size: 12px;
  color: #6b6770;
}

.upload-preview {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.upload-preview img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.hidden {
  display: none;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 22px;
  max-width: 320px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0;
  background: #2f2a3a;
  color: #fff;
  cursor: pointer;
}

.qty input {
  width: 70px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  text-align: center;
  font-size: 14px;
}

.btn.big {
  padding: 12px 18px;
  width: 100%;
  max-width: 320px;
  display: inline-block;
  text-align: center;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  color: #2f2a3a;
}

.btn.ghost:hover {
  background: rgba(0,0,0,0.04);
}

.soldout-msg {
  margin-top: 12px;
  color: #2f2a3a;
  font-weight: 600;
}

.added-msg {
  margin-top: 12px;
  color: #2f2a3a;
  font-weight: 600;
}

@media (max-width: 900px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.text-input {
  width: 100%;
  max-width: 320px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
}

.basket-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  padding: 10px 0 90px;
}

@media (max-width: 900px) {
  .basket-grid {
    grid-template-columns: 1fr;
  }
}

.basket-items {
  display: grid;
  gap: 16px;
}

.basket-item {
  background: #f0ebe1;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: start;
}

@media (max-width: 620px) {
  .basket-item {
    grid-template-columns: 70px 1fr;
  }
  .bi-right {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
}

.bi-img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.bi-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: #2f2a3a;
}

.bi-price {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.custom-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 6px 0 10px;
}

.pill {
  font-size: 12px;
  background: #2f2a3a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.custom-value {
  font-size: 13px;
  opacity: 0.9;
}

.custom-preview {
  width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-top: 10px;
}

.line-total {
  margin-top: 10px;
  font-weight: 700;
  text-align: right;
}

.basket-summary {
  background: #f0ebe1;
  border-radius: 16px;
  padding: 18px;
}

.basket-summary h2 {
  margin-bottom: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 10px;
}

.summary-note {
  font-size: 13px;
  opacity: 0.8;
  margin: 10px 0 14px;
  line-height: 1.5;
}

.summary-note.small {
  font-size: 12px;
}

.empty-state {
  background: #f0ebe1;
  border-radius: 16px;
  padding: 32px;
  margin: 40px auto 90px;
  max-width: 520px;
  text-align: center;
}

.empty-state p {
  margin-bottom: 18px;
  font-size: 16px;
}

.link {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
  font-size: 13px;
  opacity: 0.9;
}

.link.danger {
  color: #2f2a3a;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #2f2a3a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count.hidden {
  display: none;
}