body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* TITLES */
h1 {
  color: #4f6b2a;
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

h2 {
  color: #8b5a2b;
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

/* HEADER */
header {
  background-color: white;
  padding: 22px 20px;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  width: 200px;
}

.header-center {
  text-align: center;
}

.header-right {
  width: 200px;
}

/* LOGO IMAGE */
header img {
  max-width: 190px;
}

/* HEADER NAV */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 12px 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 2000;
}

.main-nav a {
  text-decoration: none;
  color: #8b5a2b;
  font-size: 16px;
  font-weight: 600;
}

.main-nav a:hover {
  color: #4f6b2a;
}

/* FOOTER */
footer {
  background: #8b5a2b;
  color: #fff;
  margin-top: 60px;
}
footer .footer-brand {
  background: rgba(0, 0, 0, 0.15);
  padding: 16px;
  border-radius: 6px;
}
footer .footer-brand img {
  height: 80px;
  border-radius: 4px;
}
footer .footer-inner {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
}
footer .footer-inner .footer-brand,
footer .footer-inner .footer-links,
footer .footer-inner .footer-contact {
  flex: 1;
}
footer h3,
footer h4 {
  margin-bottom: 12px;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer-links a {
  color: #fff;
  text-decoration: none;
}
footer .footer-links a:hover {
  text-decoration: underline;
}
footer .footer-contact p {
  margin-bottom: 6px;
}
footer .footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 0.85rem;
  padding: 2px 24px;
}

/* BUTTON RESET */
button.btn {
  border: 0;
  padding: 0;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  font-size: 16px;
  -webkit-appearance: none;
}

/* SHARED BUTTON BASE */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

/* Variants */
.btn-primary {
  background: #4f6b2a;
  color: white;
}

.btn-secondary {
  background: white;
  color: #4f6b2a;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: white;
}

.btn-outline:hover {
  border-color: white;
}

button.btn {
  padding: 12px 18px;
}

.category-card {
  display: block;
  padding: 32px 26px;
  border-radius: 18px;
  text-decoration: none;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.category-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card h4 {
  margin: 0;
  font-size: 18px;
  color: #8b5a2b;
  font-weight: 800;
}

.category-card p {
  margin: 10px 0 0;
  color: #555;
  line-height: 1.4;
}

.category-card:hover {
  transform: translateY(-2px);
}

.category-card img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-top: 20px;
  transition: transform 0.2s ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

/* HERO */
.hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-image: url(../assets/webp/hero1.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-inner {
  position: relative;
  max-width: 980px;
  text-align: center;
  color: white;
  padding: 24px 18px;
}

.hero-title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BANNER STRIP */
.banner-strip {
  background: #4f6b2a;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CATEGORIES */
.categories {
  padding: 60px 20px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin: 0 0 26px;
  color: #4f6b2a;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

/* WHY CHOOSE US */
.why-us {
  padding: 60px 20px;
  background: #f5f5f5;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-card {
  background: white;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.why-us-card h4 {
  margin: 12px 0 8px;
  color: #8b5a2b;
  font-size: 1rem;
}
.why-us-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.why-us-icon {
  font-size: 2rem;
}

/* FEATURED PRODUCTS */
.featured-products {
  padding: 60px 20px;
  background: white;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-cta {
  text-align: center;
  margin-top: 32px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  background: #f5f5f5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #8b5a2b;
  font-size: 0.9rem;
  margin: 0;
}

/* PRODUCTS PAGE */
.products-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 70px;
}

.products-hero {
  margin-bottom: 18px;
}

.products-title {
  margin: 0;
  font-size: 34px;
  color: #8b5a2b;
  font-weight: 900;
}

.products-subtitle {
  margin: 10px 0 0;
  color: #333;
  font-size: 16px;
}

.products-toolbar {
  margin-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
}

.toolbar-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #8b5a2b;
  margin-bottom: 6px;
}

.products-toolbar input,
.products-toolbar select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 15px;
  background: white;
}

.toolbar-left {
  flex: 1;
}

.toolbar-right {
  width: 240px;
}

.products-grid-wrap {
  margin-top: 22px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-height: 220px;
}

.product-card {
  display: block;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}

.product-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-name {
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #8b5a2b;
}

.product-summary {
  margin: 8px 0 0;
  color: #555;
  line-height: 1.4;
}

.product-cta {
  margin-top: 14px;
  font-weight: 900;
  color: #4f6b2a;
}

.product-card.is-out {
  opacity: 0.75;
}

.product-card.is-out .product-image img {
  filter: grayscale(0.4);
}

/* PRODUCT PAGE */
.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 20px 70px;
}

.product-breadcrumbs {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.product-breadcrumbs a {
  color: #8b5a2b;
  text-decoration: none;
  font-weight: 800;
}

.crumb-sep {
  margin: 0 8px;
}

.product-view {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.product-media img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
}

.product-name {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #8b5a2b;
}

.product-meta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 800;
  color: #333;
}

.meta-pill.stock.is-in {
  background: rgba(79, 107, 42, 0.12);
  color: #4f6b2a;
}

.meta-pill.stock.is-out {
  background: rgba(0, 0, 0, 0.08);
  color: #333;
}

.product-desc {
  margin: 14px 0 0;
  color: #555;
  line-height: 1.5;
}

.product-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-note {
  margin-top: 16px;
  font-size: 13px;
  color: #777;
}

.product-notfound {
  padding: 24px;
}

/* CONTACT PAGE */
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 70px;
}

.contact-hero {
  margin-bottom: 18px;
}

.contact-title {
  margin: 0;
  font-size: 34px;
  color: #8b5a2b;
  font-weight: 900;
}

.contact-subtitle {
  margin: 10px 0 0;
  color: #333;
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.contact-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.contact-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #8b5a2b;
}

.contact-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.contact-label {
  font-weight: 900;
  color: #8b5a2b;
  font-size: 14px;
}

.contact-value {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.contact-value a {
  color: #4f6b2a;
  font-weight: 900;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-form {
  margin-top: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
  margin: 12px;
  margin-right: 26px;
  margin-top: 12px;
}

.form-field label {
  font-size: 14px;
  font-weight: 900;
  color: #8b5a2b;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 15px;
  background: white;
  font-family: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.form-actions,
.contact-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-map {
  margin-top: 18px;
}

.map-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.map-embed {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}/*# sourceMappingURL=main.css.map */