    :root{
      --bg: #f4f7f0;
      --card: #f4f7f0;
      --muted: #5A6A3F;
      --accent: #5A6A3F;
      --accent-2: #5A6A3F;
      --glass: rgba(0,0,0,0.03);
      --radius: 14px;
      color-scheme: light;
    }
    *{box-sizing:border-box}

    /* Font Setup */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

    body{
      margin:0;
      font-family: 'Outfit', sans-serif;
      background: var(--bg);
      color:#333;
    }
    /* --- Main Header Box --- */
.header {
    padding: 0 20px;
  background: #f4f7f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-bottom: 1px solid #5A6A3F;
}

/* --- Inner Navigation --- */
.headerNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

/* --- All ULs --- */
.headerNav ul {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Logo Section (Left) --- */
.logoContainer img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

/* --- Center Navigation Links --- */
.centerHeader a {
  text-decoration: none;
  color:  #5A6A3F;
  font-weight: 600;
  transition: color 0.3s ease;
    font-size: 19px;
}

.centerHeader a:hover {
  text-decoration: underline;
}

/* --- Right Header (Buttons/Links) --- */
.rightHeader a {
  text-decoration: none;
  background: #5A6A3F;
  color: white;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* optional spacing between icon and text */
}

/* Only target the <i> element for before/after animation */
.rightHeader a{
  position: relative;
}

.rightHeader a::after,
.rightHeader a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #5A6A3F, #dae5c5);
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.rightHeader a::before {
  top: -5px;
  transform-origin: left;
}

.rightHeader a::after {
  bottom: -5px;
}

.rightHeader a:hover{
  background: none;
  color: #5A6A3F;
  font-size: 19px;
}
.rightHeader a:hover::after,
.rightHeader a:hover::before {
  transform: scaleX(1);
}



/* Hide mobile header by default */
.mobileHeader {
    display: none;
}

/* Hamburger styling */
.hamburger {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin: 20px;
    z-index: 1100;
}

.hamburger span {
    height: 4px;
    background: #5A6A3F;
    border-radius: 2px;
}

/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* hidden by default */
    width: 250px;
    height: 100%;
    background: #f4f7f0;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 1200;
    padding: 50px 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #5A6A3F;
    font-weight: 600;
    font-size: 18px;
}

.closeBtn {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

    .mainContainer{
            -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      padding:48px 20px;
      min-height:100vh;
      display:flex;
      align-items:flex-start;
      justify-content:center;
    }
    .container{
      width:100%;
      max-width:1100px;
      background: var(--card);
      border-radius:18px;
      padding:32px;
      box-shadow: 0 8px 30px rgba(90,106,63,0.2);
      border: 1px solid rgba(90,106,63,0.2);
    }
    header{
      display:flex;
      gap:20px;
      align-items:center;
      margin-bottom:18px;
    }
    .logo{
      width:72px;
      height:72px;
      background: var(--accent);
      border-radius:12px;
      display:grid;
      place-items:center;
      font-weight:700;
      font-size:20px;
      color:white;
      box-shadow: 0 6px 20px rgba(90,106,63,0.18);
    }
    h1{font-size:22px;margin:0}
    p.lead{color:var(--muted);margin:6px 0 0;font-size:14px}

    .grid{
      display:grid;
      grid-template-columns: 1fr 360px;
      gap:28px;
      margin-top:22px;
    }

    .left{
      min-width:0;
    }
    .summary{
      background: var(--glass);
      padding:18px;
      border-radius:12px;
      border:1px solid rgba(90,106,63,0.1);
      margin-bottom:18px;
      line-height:1.6;
    }
    .benefits-wrap{
      display:grid;
      grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
      gap:14px;
      margin-top:14px;
    }
    .benefit{
      background: var(--glass);
      border-radius:12px;
      padding:16px;
      min-height:110px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      border:1px solid rgba(90,106,63,0.1);
      transition:transform .22s ease, box-shadow .22s ease;
    }
    .benefit:hover{transform:translateY(-6px);box-shadow:0 10px 30px rgba(90,106,63,0.2)}
    .benefit .icon{
      width:44px;height:44px;border-radius:10px;display:grid;place-items:center;font-size:20px;background:rgba(90,106,63,0.1)
    }
    .benefit h4{margin:0;font-size:15px}
    .benefit p{margin:6px 0 0;color:var(--muted);font-size:13px;line-height:1.45}

    .card{
      background: var(--card);
      padding:18px;border-radius:12px;border:1px solid rgba(90,106,63,0.1);
    }
.price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.old-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  font-size: 28px;
  font-weight: 700;
  color: #2f7d32; /* green = discount win */
}

.badge {
  background: #ff5252;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

    .price .amount{font-size:28px;color:var(--accent)}
    .features{color:var(--muted);font-size:14px;margin-top:8px}
    .cta{
      display:flex;gap:10px;margin-top:14px;flex-wrap:wrap
    }
    .btn{
      display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:12px;border:none;cursor:pointer;font-weight:600;text-decoration:none;
    }
    .btn-primary{background: var(--accent);color:white;box-shadow:0 8px 24px rgba(90,106,63,0.18)}
    .btn-ghost{background:transparent;color:var(--muted);border:1px solid rgba(90,106,63,0.2)}

    footer.note{margin-top:18px;color:var(--muted);font-size:13px}

    @media (max-width:900px){
       .mainContainer{padding: 20px 10px;}
      .container {padding: 15px;}
      .grid{grid-template-columns:1fr}
      .card{order:2}
        .header {
            display: none;
        }

        .mobileHeader {
            display: block;
        }

    }