* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --green: #1f5f3b;
    --darkgreen: #143d27;
    --gold: #d99a28;
    --cream: #fff8ec;
    --dark: #1c1c1c;
    --muted: #6b6b6b;
    --white: #fff;
    --line: #e9e2d5;
    --shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 248, 236, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px)
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--darkgreen)
}

.logo span {
    color: var(--gold)
}
.logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-weight: 800
}

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

.cart-btn {
    border: 0;
    padding: 12px 18px;
    background: var(--green);
    color: white;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer
}

.cart-btn span {
    background: var(--gold);
    color: var(--dark);
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px
}

.hero {
    padding: 86px 0;
    background: radial-gradient(circle at top right, rgba(217, 154, 40, .25), transparent 35%), linear-gradient(135deg, #fff8ec 0%, #f7ead6 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 48px;
    align-items: center
}

.eyebrow {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    margin-bottom: 12px
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: .95;
    max-width: 780px;
    letter-spacing: -.07em;
    color: var(--darkgreen)
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 640px;
    margin: 24px 0 32px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 900;
    cursor: pointer;
    transition: .2s
}

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

.btn.primary:hover {
    background: var(--darkgreen);
    transform: translateY(-2px)
}

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

.hero-card,
.product-card,
.cards article {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.hero-card {
    padding: 32px;
    border-radius: 28px
}

.hero-card h3 {
    font-size: 1.5rem;
    color: var(--darkgreen);
    margin-bottom: 10px
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px
}

.feature-list span {
    background: #f4ead8;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900
}

.trust {
    background: var(--darkgreen);
    color: white
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.trust-grid div {
    padding: 26px;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.trust-grid strong,
.trust-grid span {
    display: block
}

.trust-grid span {
    color: rgba(255, 255, 255, .72);
    margin-top: 4px
}

.section {
    padding: 82px 0
}

.section-header {
    max-width: 700px;
    margin-bottom: 34px
}

.section-header h2,
.about h2,
.contact h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -.05em;
    color: var(--darkgreen)
}

.section-header p,
.about p,
.contact p {
    color: var(--muted);
    margin-top: 12px
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.product-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .07)
}

.product-image {
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-content {
    padding: 22px
}

.product-content h3 {
    color: var(--darkgreen);
    margin-bottom: 8px
}

.product-content p {
    color: var(--muted);
    font-size: .95rem
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    gap: 14px
}

.price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--green)
}

.add-btn {
    background: var(--gold);
    color: var(--dark);
    border: 0;
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer
}

.about,
.contact {
    background: #fff
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 42px;
    align-items: start
}

.about-box,
.contact-form {
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 30px;
    border-radius: 24px
}

.about-box h3 {
    color: var(--darkgreen);
    margin-bottom: 14px
}

.about-box ul {
    padding-left: 20px
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.cards article {
    padding: 28px;
    border-radius: 22px
}

.cards h3 {
    color: var(--darkgreen);
    margin-bottom: 10px
}

.cards p {
    color: var(--muted)
}

.contact-info {
    font-weight: 900
}

.contact-info a {
    color: var(--green)
}

.contact-form {
    display: grid;
    gap: 14px
}

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

footer {
    background: var(--darkgreen);
    color: white;
    padding: 34px 0
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center
}

.footer-logo {
    color: white
}

footer p {
    color: rgba(255, 255, 255, .75)
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: min(420px, 92vw);
    height: 100vh;
    background: white;
    z-index: 50;
    box-shadow: var(--shadow);
    transition: .25s;
    display: flex;
    flex-direction: column
}

.cart-panel.open {
    right: 0
}

.cart-header,
.cart-footer {
    padding: 22px;
    border-bottom: 1px solid var(--line)
}

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

.cart-header button {
    border: 0;
    background: transparent;
    font-size: 2rem;
    cursor: pointer
}

#cartItems {
    flex: 1;
    overflow-y: auto;
    padding: 16px 22px
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding: 14px 0
}

.cart-item button {
    border: 0;
    background: transparent;
    color: #a33;
    cursor: pointer;
    font-weight: 900
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 14px
}

.full {
    width: 100%
}

.cart-note {
    color: var(--muted);
    font-size: .85rem;
    margin-top: 12px
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 40
}

.overlay.show {
    display: block
}

@media(max-width:850px) {
    .nav {
       flex-direction: column;
       align-items: center;
       gap:15px 0;
    }
nav a { display: flex;
flex-wrap:wrap;
justify-content: center;
gap: 15px;
}
.cart-btn{
    margin-top: 10px;
    
}

    .hero-grid,
    .about-grid,
    .contact-grid,
    .products,
    .cards,
    .trust-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 60px 0
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start
    }
}.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("imgas/backround.PNG");
  background-size: cover;
  background-position: center;
  min-height: 620px;
  color: white;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  color: #123c2a;
}
.hero-card {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #123c2a !important;
}

.hero-card h3,
.hero-card p {
  color: #123c2a !important;
}

.feature-list span {
  color: #123c2a !important;
  background: #f1e4c9 !important;
  font-weight: 700;
}
.btn.secondary {
    background: white !important;
    color: #14532d !important;
    border: 2px solid #14532d !important;
    font-weight: 700;
}

.btn.secondary:hover {
    background: #14532d !important;
    color: white !important;
}
@media (max-width: 850px) {
  .nav {
    height: auto !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  nav a {
    display: inline-block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }

  .cart-btn {
    margin-top: 8px !important;
  }
}