:root{
  --primary:#16a34a;
  --secondary:#22c55e;
  --bg:#f6f8fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e2e8f0;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --shadow-hover:0 18px 50px rgba(0,0,0,.12);
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Inter, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(30,126,52,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.15);
  transition:0.3s;
}

header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

/* LOGO */
.logo a{
  color:#fff;
  font-weight:800;
  font-size:22px;
  text-decoration:none;
  letter-spacing:0.5px;
}

/* NAV */
nav ul{
  display:flex;
  gap:22px;
  list-style:none;
}

nav a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
  font-size:15px;
  position:relative;
  transition:0.3s;
}

/* NAV HOVER UNDERLINE */
nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#fff;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

nav a:hover{
  opacity:0.9;
}

/* HERO */
.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(135deg,#ffffff 0%,#f3fdf6 100%);
  padding-top:80px;
}

.hero h1{
  font-size:52px;
  font-weight:800;
  letter-spacing:-1px;
  max-width:900px;
  margin:auto;
}

.hero p{
  color:var(--muted);
  margin-top:16px;
  font-size:18px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:24px;
  padding:14px 30px;
  background:var(--primary);
  color:#fff;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:0.25s;
  box-shadow:0 8px 20px rgba(22,163,74,0.25);
}

.btn:hover{
  background:var(--secondary);
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(34,197,94,0.25);
}

/* SECTIONS */
section{
  padding:90px 0;
}

h2{
  text-align:center;
  margin-bottom:40px;
  font-size:32px;
  font-weight:700;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.card{
  background:var(--card);
  padding:22px;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  transition:0.3s;
  text-decoration:none;
  color:inherit;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(22,163,74,0.3);
}

/* TEXT INSIDE CARD */
.card h3{
  margin-bottom:8px;
  font-size:18px;
}

.card p{
  color:var(--muted);
  font-size:14px;
}

/* CONTACT FORM */
.contact form{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:600px;
  margin:auto;
}

input,textarea{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:10px;
  outline:none;
  font-size:15px;
  transition:0.2s;
  background:#fff;
}

input:focus, textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(22,163,74,0.1);
}

/* FOOTER */
footer{
  text-align:center;
  padding:35px;
  background:#fff;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{
    font-size:34px;
  }

  nav ul{
    gap:14px;
    font-size:14px;
  }
}
#shop-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 10px 15px;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-family: Arial, sans-serif;
}

#shop-banner a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

#shop-banner button {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}