*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --gd: #0D3E26; --gm: #145334; --gl: #1B6A43; --gp: #F1F9F4; --ac: #FAB818; --ach: #E09E0B; --wh: #ffffff; --ow: #FAFDFB; --td: #092617; --tm: #244C36; --tl: #527A63; --gold: #FFC107; --red: #FF4D4D; }
body { font-family: 'Segoe UI', Roboto, Arial, sans-serif; color: var(--td); background: var(--ow); }
a { text-decoration: none; color: inherit; }

/* ── Announcement Bar ── */
.ann-bar { background: var(--ac); color: var(--gd); text-align: center; font-size: 13px; font-weight: 700; padding: 10px 16px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── Navbar ── */
nav { background: var(--gd); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 75px; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.logo-img-wrap { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo:hover .logo-img { transform: scale(1.05); }
.nav-links { display: flex; gap: 24px; list-style: none;  align-items: center; }
.nav-links a { color: #D1EBE0; font-size: 14px; font-weight: 600; transition: color .2s; padding: 6px 0;  border-bottom: 2px solid transparent;}
.nav-links a:hover, .nav-links a.active { color: var(--ac); border-bottom: 2px solid var(--ac); }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: #D1EBE0; font-size: 22px; position: relative; display: flex; align-items: center; }
.cbadge { position: absolute; top: -8px; right: -10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: white; transition: 0.3s; }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 75px; left: 0; width: 100%; background: var(--gd); padding: 20px; border-top: 1px solid #1a5c26; justify-content: flex-start; }
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; text-align: left; }
}
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #1a5c26; border-radius: 10px; padding: 8px 0; min-width: 180px; z-index: 200; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu li a { display: block; padding: 10px 18px; color: #D1EBE0 !important; font-size: 13px; border-bottom: none !important; }
.dropdown-menu li a:hover, .dropdown-menu li a.active { background: rgba(250,184,24,0.12); color: var(--ac) !important; }

/* ── Page Header ── */
.page-header { background: linear-gradient(135deg, var(--gd) 0%, var(--gm) 100%); padding: 50px 40px; text-align: center; color: #fff; }
.page-header h1 { font-size: 36px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.page-header h1 span { color: var(--ac); }
.page-header p { font-size: 15px; color: #BCE2CE; max-width: 600px; margin: 0 auto; }

/* ── Shop Layout ── */
.shop-container { display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding: 40px; max-width: 1400px; margin: 0 auto; }
.sidebar { background: #fff; border: 1px solid rgba(13,62,38,0.08); border-radius: 16px; padding: 24px; height: fit-content; position: sticky; top: 95px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.filter-section { margin-bottom: 24px; }
.filter-title { font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--gd); margin-bottom: 14px; border-bottom: 2px solid var(--gp); padding-bottom: 6px; }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.filter-list li a { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--tm); font-weight: 600; padding: 4px 0; transition: all .2s ease; width: 100%; }
.filter-list li a:hover { color: var(--gl); transform: translateX(4px); }
.filter-list li.active a { font-weight: 800; color: var(--gl); padding-left: 6px; border-left: 3px solid var(--ac); }

/* ── Products Grid ── */
.products-column { display: flex; flex-direction: column; gap: 24px; }
.toolbar { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 14px 20px; border-radius: 12px; border: 1px solid rgba(13,62,38,0.06); }
.toolbar p { font-size: 14px; color: var(--tm); font-weight: 600; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Product Card ── */
.prod-card { background: #fff; border: 1px solid rgba(13,62,38,0.08); border-radius: 16px; padding: 18px; transition: all .3s ease; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.02); overflow: hidden; }
.prod-card:hover { border-color: var(--gl); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(13,62,38,0.08); }
.prod-img-wrap { overflow: hidden; border-radius: 12px; margin-bottom: 14px; position: relative; background: #f9f9f9; }
.prod-img { width: 100%; height: 210px; object-fit: contain; transition: transform .5s cubic-bezier(.16,1,.3,1), filter .4s; padding: 10px; }
.prod-card:hover .prod-img { transform: scale(1.08); }
.badge-tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 6px; z-index: 2; }
.badge-tag.gold { background: var(--ac); color: var(--gd); }
.prod-card h3 { font-size: 15px; font-weight: 800; color: var(--gd); margin-bottom: 6px; }
.weight-tag { font-size: 12px; color: var(--tl); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.stars { color: var(--ac); font-size: 13px; margin-bottom: 12px; }
.pr { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.pr .pn { font-size: 19px; font-weight: 900; color: var(--gd); }
.pr .pw { font-size: 13px; color: var(--tl); text-decoration: line-through; }

/* ── Add to Cart Button (Improved) ── */
.btn-cart { width: 100%; background: linear-gradient(135deg, var(--ac) 0%, #f0a500 100%); color: var(--gd); border: none; border-radius: 10px; padding: 13px 0; font-size: 13px; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: .5px; transition: all .25s ease; box-shadow: 0 3px 12px rgba(250,184,24,0.25); position: relative; overflow: hidden; }
.btn-cart:hover { background: linear-gradient(135deg, #f0a500 0%, var(--ach) 100%); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(250,184,24,0.35); }
.btn-cart:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(250,184,24,0.2); }
.btn-cart.added { background: linear-gradient(135deg, #27ae60 0%, #219150 100%); color: #fff; box-shadow: 0 3px 12px rgba(39,174,96,0.3); }

/* ── Qty Row ── */
.card-qty-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; animation: fadeInUp .3s ease; }
.cqty-box { display: flex; align-items: center; border: 2px solid var(--gl); border-radius: 10px; overflow: hidden; }
.cqty-btn { background: var(--gd); color: #fff; border: none; width: 34px; height: 38px; font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cqty-btn:hover { background: var(--gl); }
.cqty-num { width: 40px; text-align: center; font-size: 14px; font-weight: 800; color: var(--gd); border: none; outline: none; background: #fff; }
.cqty-add { flex: 1; background: linear-gradient(135deg, #27ae60, #219150); color: #fff; border: none; border-radius: 10px; padding: 9px 12px; font-size: 12px; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: .3px; transition: all .2s; box-shadow: 0 2px 8px rgba(39,174,96,0.2); }
.cqty-add:hover { background: linear-gradient(135deg, #219150, #1a7a40); transform: translateY(-1px); }

/* ── Empty State ── */
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--tl); }
.empty-state h3 { font-size: 20px; color: var(--tm); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ── Footer ── */
footer { background: #062013; padding: 60px 40px 0; color: #A4C7B5; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.ft-brand p { font-size: 14px; line-height: 1.7; max-width: 250px; margin-top: 14px; }
footer h5 { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; color: #A4C7B5; transition: color .2s; }
footer ul li a:hover { color: var(--ac); }
.nl-row { display: flex; margin-top: 12px; }
.nl-row input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; padding: 12px 16px; border-radius: 8px 0 0 8px; font-size: 14px; outline: none; }
.nl-row button { background: var(--ac); color: var(--gd); border: none; padding: 0 22px; border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 800; cursor: pointer; text-transform: uppercase; transition: background .2s; }
.pay-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.pchip { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #C2DEC2; font-weight: 600; }
.social-row { display: flex; gap: 15px; align-items: center; }
.soc-a img { width: 20px; height: 20px; object-fit: contain; transition: 0.3s; }
.soc-a:hover img { transform: scale(1.15); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.ft-tagline { font-size: 14px; font-weight: 700; color: #A4C7B5; font-style: italic; }
.ft-brand-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.ft-logo-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.page-header h1, .page-header p { animation: fadeInUp .7s cubic-bezier(.16,1,.3,1) both; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) { .shop-container { grid-template-columns: 1fr; } .sidebar { display: none; } .products-grid { grid-template-columns: repeat(2, 1fr); } .ft-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } nav, .shop-container, footer { padding-left: 20px; padding-right: 20px; } .ft-grid { grid-template-columns: 1fr; } .page-header { padding: 30px 20px; } .page-header h1 { font-size: 26px; } }
