/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #fffaf0;
  color: #222;
  line-height: 1.6;
}

.center {
  text-align: center;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  background: #1F7A3D;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 70px;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}

.nav a {
  color: #fff;
  margin: 0 16px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav a.active,
.nav a:hover {
  color: #f0f0f0;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #f5d042;
  border-radius: 2px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 7px 10px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #f5d042;
  color: #1F7A3D;
  border: none;
}

.btn.primary:hover {
  background-color: #e0b63f;
}

.btn.outline {
  background: transparent;
  border: 2px solid #f5d042;
  color: #f5d042;
}

.btn.outline:hover {
  background: #f5d042;
  color: #1F7A3D;
}

.btn.small {
  padding: 8px 16px;
  font-size: 12px;
}

/* ================= SHOP BANNER ================= */
.shop-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.shop-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-banner-content {
  position: absolute;
  inset: 0; /* top:0; left:0; width:100%; height:100%; */
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 50px;
}

.shop-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.shop-banner-content p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.shop-banner-content .btn {
  align-self: flex-start;
  min-width: 160px;
  min-height: 50px;
}

/* ================= PRODUCTS ================= */
.shop-products {
  padding: 80px 20px;
}

.shop-products .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
  color: #1F7A3D;
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 14px;
}

.product-card:hover {
  transform: none;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-card a.btn.small {
  font-size: 12px;
  padding: 10px 14px;
}

/* ================= SHOP INFO ================= */
.shop-info {
  padding: 90px 20px;
  background: #fff;
}

.shop-info-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.shop-info-image img {
  width: 100%;
  border-radius: 16px;
}

.shop-info-content h2 {
  font-size: 28px;
  color: #1F7A3D;
  margin-bottom: 20px;
}

.shop-info-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #333;
}

.center-btn {
  text-align: center;
  margin-top: 20px;
}

/* ================= CTA STRIP ================= */
.shop-cta {
  background: linear-gradient(135deg,#1F7A3D,#145c2c);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.shop-cta h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer {
  background: #081a2b;
  color: #ccc;
  padding: 60px 20px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 6px 0;
  transition: color 0.3s;
}

.footer a:hover {
  color: #1F7A3D;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }

  .shop-info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-info-content {
    padding-top: 20px;
  }

  .shop-banner { height: 50vh; }

  .shop-banner-content h1 { font-size: 2rem; }
  .shop-banner-content p { font-size: 1rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }
}
