
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

:root{
  --bg:#f5f1eb;
  --card:#ffffff;
  --text:#111111;
  --muted:#666666;

  --green:#000000;
  --green-soft:#2b2b2b;

  --sand:#e4d6c1;
  --line:#ded8cd;

  --shadow:0 18px 45px rgba(0,0,0,.08);
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 8%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid rgba(0,0,0,.05);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--green);
  text-decoration:none;
  font-weight:700;
  font-size:1.2rem;
}

.brand img{
  width: 110px;
  height: 19px;

}


.nav-links{
  display:flex;
  gap:24px;
  list-style:none;
  align-items:center;
}

.nav-links a{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  font-size:.95rem;
}

.nav-links a:hover{
  color:var(--green);
}

.nav-cart{
  padding:10px 16px;
  background:var(--green);
  color:white !important;
  border-radius:999px;
}

#cartCount{
  background:white;
  color:var(--green);
  padding:2px 8px;
  border-radius:999px;
  margin-left:5px;
}

.menu-toggle{
  display:none;
  background:transparent;
  color:var(--text);
  width:auto;
  margin:0;
  font-size:1.5rem;
}

.hero{
  min-height:88vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:120px 8%;
  background:
  linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.62)),
  url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  color:white;
}

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:700;
  color:#dce8d8;
}

.eyebrow.dark{
  color:var(--green);
}

.hero h1{
  font-size:clamp(2.7rem,6vw,5.2rem);
  line-height:1.04;
  max-width:950px;
  margin:auto;
}

.hero p{
  max-width:720px;
  margin:24px auto 34px;
  font-size:1.15rem;
  opacity:.92;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary,.btn-secondary{
  display:inline-block;
  padding:15px 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:.25s;
}

.btn-primary{
  background:var(--green);
  color:white;
}

.btn-secondary{
  border:2px solid white;
  color:white;
}

.btn-primary:hover,.btn-secondary:hover,.product-card:hover{
  transform:translateY(-5px);
}

.metrics,.impact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
  padding:80px 8%;
}

.metric-card,.impact-card{
  background:var(--card);
  padding:38px;
  border-radius:24px;
  text-align:center;
  box-shadow:var(--shadow);
}

.metric-card h3,.impact-card h2{
  font-size:2.55rem;
  color:var(--green);
}

.home-block{
  margin:0 8% 80px;
  padding:55px;
  background:var(--card);
  border-radius:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  box-shadow:var(--shadow);
}

.home-block h2{
  font-size:2.4rem;
}

.home-block p{
  color:var(--muted);
  line-height:1.8;
}

.shop-hero{
  padding:80px 8% 50px;
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:30px;
  align-items:stretch;
}

.shop-hero-text{
  background:
  linear-gradient(135deg,rgba(13,75,45,.92),rgba(23,33,27,.92)),
  url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  color:white;
  padding:70px;
  border-radius:34px;
  min-height:380px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.shop-hero-text h1{
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.05;
  max-width:820px;
}

.shop-hero-text p{
  margin-top:20px;
  max-width:650px;
  opacity:.9;
}

.shop-highlight-card{
  background:var(--card);
  border-radius:34px;
  padding:45px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.shop-highlight-card h3{
  font-size:2rem;
  color:var(--green);
}

.shop-highlight-card p{
  margin:15px 0 25px;
  color:var(--muted);
}

.shop-highlight-card a{
  color:white;
  background:var(--green);
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  text-align:center;
  font-weight:700;
}

.shop-controls{
  margin:0 8% 20px;
  background:white;
  padding:22px;
  border-radius:24px;
  display:grid;
  grid-template-columns:1fr 220px 220px;
  gap:16px;
  box-shadow:var(--shadow);
}

.shop-controls input,.shop-controls select{
  width:100%;
  padding:15px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.catalog-section{
  padding:50px 8% 90px;
}

.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:35px;
}

.section-heading h2,.page h1{
  font-size:clamp(2.2rem,4vw,3.8rem);
}

.section-heading p,.subtitle{
  color:var(--muted);
  line-height:1.7;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.product-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.25s;
  position:relative;
}

.product-image-wrap{
  height:300px;
  overflow:hidden;
  position:relative;
}

.product-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.35s;
}

.product-card:hover img{
  transform:scale(1.05);
}

.product-badge{
  position:absolute;
  top:18px;
  left:18px;
  background:rgba(255,255,255,.92);
  color:var(--green);
  padding:8px 12px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:700;
}

.product-info{
  padding:22px;
}

.product-info h3{
  font-size:1.05rem;
  min-height:54px;
}

.product-meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  margin:10px 0;
  font-size:.84rem;
}

.price-area{
  display:flex;
  align-items:center;
  gap:12px;
  margin:14px 0 18px;
}

.current-price{
  color:var(--green);
  font-weight:800;
  font-size:1.2rem;
}

.old-price{
  text-decoration:line-through;
  opacity:.45;
}

.discount{
  margin-left:auto;
  color:white;
  background:var(--green-soft);
  padding:5px 8px;
  border-radius:999px;
  font-size:.75rem;
  font-weight:700;
}

.product-card button,.modern-form button,button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:14px;
  background:var(--text);
  color:white;
  cursor:pointer;
  font-weight:700;
  transition:.25s;
}

.product-card button:hover,.modern-form button:hover,button:hover{
  background:var(--green);
}

.page{
  padding:80px 8%;
  text-align:center;
}

.big-card{
  margin:50px auto 0;
  background:white;
  padding:50px;
  border-radius:30px;
  max-width:1000px;
  text-align:left;
  box-shadow:var(--shadow);
}

.big-card p{
  margin-top:18px;
  color:var(--muted);
  line-height:1.8;
}

.timeline,.info-strip{
  margin:40px auto 0;
  max-width:1100px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

.timeline div,.info-strip div{
  background:white;
  padding:26px;
  border-radius:22px;
  box-shadow:var(--shadow);
  text-align:left;
}

.timeline strong,.info-strip strong{
  display:block;
  color:var(--green);
  font-size:1.5rem;
}

.timeline span,.info-strip span{
  color:var(--muted);
}

.modern-form{
  background:white;
  padding:45px;
  border-radius:28px;
  max-width:1000px;
  margin:45px auto;
  box-shadow:var(--shadow);
  text-align:left;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:22px;
}

label,.full-label{
  display:block;
  margin-bottom:9px;
  font-weight:700;
}

input,select,textarea{
  width:100%;
  padding:15px;
  border:1px solid var(--line);
  border-radius:14px;
  background:white;
}

textarea{
  margin-bottom:20px;
  resize:vertical;
  min-height:110px;
}

.cart-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:30px;
  margin-top:45px;
  text-align:left;
}

.cart-item{
  background:white;
  padding:22px;
  border-radius:22px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:80px 1fr auto;
  gap:18px;
  align-items:center;
  margin-bottom:18px;
}

.cart-item img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:16px;
}

.cart-actions{
  display:flex;
  gap:8px;
  align-items:center;
}

.qty-btn,.remove-btn,.ghost-btn{
  width:auto;
  padding:10px 14px;
  margin:0;
}

.remove-btn,.ghost-btn{
  background:transparent;
  color:var(--green);
  border:1px solid var(--green);
}

.cart-summary{
  background:white;
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
  height:max-content;
  position:sticky;
  top:110px;
}

.summary-line,.summary-total{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.summary-total{
  font-size:1.3rem;
  border-bottom:none;
}

.full{
  width:100%;
  text-align:center;
  margin:20px 0 12px;
}

.empty-cart{
  background:white;
  padding:35px;
  border-radius:24px;
  box-shadow:var(--shadow);
  text-align:center;
  color:var(--muted);
}

.footer{
  padding:60px 8%;
  border-top:1px solid var(--line);
  background:#faf8f4;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:40px;
}

.footer h3{
  color:var(--green);
  margin-bottom:18px;
}

.footer a,.footer p{
  display:block;
  text-decoration:none;
  color:var(--muted);
  margin-bottom:10px;
  line-height:1.7;
}

.reveal{
  animation:fadeUp .7s ease both;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:900px){
  .menu-toggle{display:block}
  .navbar{align-items:flex-start}
  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
  }
  .nav-links.open{display:flex}
  .shop-hero,.home-block,.cart-layout,.shop-controls,.footer-grid{
    grid-template-columns:1fr;
  }
  .shop-hero-text{
    padding:45px;
  }
  .section-heading{
    display:block;
  }
}

@media(max-width:600px){
  .navbar{
    padding:18px 6%;
  }
  .hero,.page,.catalog-section{
    padding-left:6%;
    padding-right:6%;
  }
  .hero h1{
    font-size:2.5rem;
  }
  .metrics,.impact-grid{
    padding-left:6%;
    padding-right:6%;
  }
  .modern-form,.big-card{
    padding:28px;
  }
  .cart-item{
    grid-template-columns:1fr;
  }
}

.gallery-home{
  padding: 40px 8% 80px;

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  grid-auto-rows:260px;

  gap:20px;
}

.gallery-card{
  overflow:hidden;
  border-radius:28px;
  position:relative;
}

.gallery-card.large{
  grid-row: span 2;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:.4s;
}

.gallery-card:hover img{
  transform:scale(1.05);
}
.pix-box{background:#f5f5f5;padding:20px;border-radius:12px;margin:20px 0;word-break:break-all;font-weight:600;}#pixMessage{color:green;font-weight:600;margin-top:10px;}