:root { --green-primary: #2D8659; --green-dark: #1e5d3f; --green-light: #4CAF50; --green-cream: #E8F5E9; --text-dark: #1B5E20; --white: #FFFFFF; --bg-light: #F8FBF9; --shadow: 0 10px 30px rgba(45, 134, 89, 0.1); --badge-color: #2D8659; }
* { margin: 0; padding: 0; box-sizing: border-box; outline: none !important; -webkit-tap-highlight-color: transparent !important; }
::selection { background-color: var(--green-primary); color: var(--white); }
::-moz-selection { background-color: var(--green-primary); color: var(--white); }
html { scroll-behavior: smooth; height: 100%; overflow-x: hidden; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.6; min-height: 100%; display: flex; flex-direction: column; overflow-x: hidden; -webkit-overflow-scrolling: touch; }

/* ===== FONT COMBO UTILITIES ===== */
.font-headline { font-family: 'Montserrat', sans-serif; }
.font-body-lato { font-family: 'Lato', sans-serif; }
.font-body-raleway { font-family: 'Raleway', sans-serif; }
.font-body-nunito { font-family: 'Nunito', sans-serif; }
.font-body-opensans { font-family: 'Open Sans', sans-serif; }
.font-body-playfair { font-family: 'Playfair Display', serif; }
.globalNotify { position: fixed; top: 0; left: 0; width: 100%; background: var(--green-dark); color: var(--white); padding: 16px 24px; z-index: 10002; font-weight: 600; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 15px rgba(0,0,0,0.1); animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.globalNotify .closeNotify { background: rgba(255,255,255,0.2); border: none; color: white; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.globalNotify .closeNotify:hover { background: rgba(255,255,255,0.4); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.navbar { background: var(--white); padding: 0.8rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.navFlex { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green-dark); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.4rem; }
.navLinks { list-style: none; display: flex; gap: 1.2rem; align-items: center; }
.navLinks a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s; font-size: 0.95rem; }
.navLinks a:hover, .navLinks a.active { color: var(--green-primary); }
.cartBtn { text-decoration: none; }
.cartIconWrapper { position: relative; background: var(--green-cream); width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green-dark); transition: 0.3s; border: 1.5px solid transparent; }
.cartIconWrapper i { font-size: 1.2rem; }
.cartIconWrapper:hover { background: var(--white); border-color: var(--green-primary); transform: translateY(-2px); }
.cartBadge { position: absolute; top: -8px; right: -8px; background: var(--badge-color); color: white; font-size: 0.7rem; font-weight: 700; min-width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 2px; border: 2px solid var(--white); box-shadow: 0 4px 10px rgba(45, 134, 89, 0.3); animation: popBadge 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popBadge { from { transform: scale(0); } to { transform: scale(1); } }
.adminBadge { background: var(--green-primary); color: white !important; padding: 6px 14px; border-radius: 8px; font-size: 0.75rem; font-weight: 600; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2); }
.logoutLink { color: #888 !important; font-size: 1.1rem; }
.logoutLink:hover { color: #FF4757 !important; }
main { flex: 1; }
.mainFooter { background: var(--white); padding: 4rem 0 2rem; border-top: 1px solid var(--green-cream); margin-top: 5rem; }
.footerGrid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 3rem; }
.footerDesc { color: #666; font-size: 0.9rem; margin-top: 15px; max-width: 300px; }
.footerContact h4, .footerSocial h4 { font-family: 'Montserrat', sans-serif; color: var(--green-dark); margin-bottom: 20px; font-size: 1.1rem; font-weight: 700; }
.footerContact a, .footerContact p { display: block; text-decoration: none; color: #555; font-size: 0.9rem; margin-bottom: 12px; transition: 0.3s; }
.footerContact a:hover { color: var(--green-primary); padding-left: 5px; }
.socialIcons { display: flex; gap: 12px; }
.socialIcons a { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--green-cream); color: var(--green-primary); text-decoration: none; transition: 0.4s; font-size: 1.1rem; }
.socialIcons a:hover { transform: translateY(-5px) rotate(8deg); color: var(--white); }
.socialIcons a.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.socialIcons a.fb:hover { background: #1877F2; }
.socialIcons a.tt:hover { background: #000000; }
.footerBottom { border-top: 1px solid #eee; padding-top: 2rem; text-align: center; }
.footerBottom p { font-size: 0.85rem; color: #999; }
@media (max-width: 768px) { .footerGrid { grid-template-columns: 1fr; gap: 30px; text-align: center; } .footerDesc { margin: 15px auto; } .socialIcons { justify-content: center; } .logo { justify-content: center; } .logo span { display: none; } .navLinks { gap: 0.8rem; } }
