/* Quality Fresca — Shared Styles */
/* Base Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --red: #C8102E;
    --orange: #F7941D;
    --yellow: #FDB913;
    --turquoise: #00A79D;
    --charcoal: #2a2a2a;
}
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; background: #f8f8f8; }

/* Mobile App Banner - HIDDEN */
.mobile-app-banner { display: none !important; }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header-content { max-width: 1600px; margin: 0 auto; padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; }
.qf-logo { height: 60px; }
nav { display: flex; align-items: center; justify-content: center; gap: 35px; flex: 1; }
nav a { color: #2a2a2a; text-decoration: none; font-weight: 700; font-size: 0.9em; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; }
nav a:hover, nav a.active { color: #F7941D; }
.order-btn { background: #F7941D; color: white !important; padding: 12px 28px; border-radius: 30px; font-weight: 800; text-decoration: none; transition: all 0.3s ease; }
.order-btn:hover { background: #C8102E; color: white !important; }

/* Hamburger Menu */
.hamburger { display: none; background: none; border: none; font-size: 1.8em; cursor: pointer; color: #2a2a2a; padding: 5px; }

/* Mobile Responsive */
@media (max-width: 968px) {
    .hamburger { display: block; }
    nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.1); padding: 20px; gap: 15px; z-index: 999; }
    nav.open { display: flex; }
    nav a { font-size: 1.1em; padding: 8px 0; }
    .order-btn, .cta-header { text-align: center; margin-top: 10px; display: block; }
    .qf-logo { height: 45px; }
    .header-content { padding: 12px 20px; }
}

/* Footer */
footer { background: var(--charcoal, #2a2a2a); color: white; padding: 60px 40px 30px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 50px; margin-bottom: 15px; }
.footer-about { font-size: 0.9em; line-height: 1.7; opacity: 0.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #F7941D; }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85em; opacity: 0.6; }

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

/* Common Section Styles */
.section-heading { font-family: 'Montserrat', sans-serif; font-size: 2.5em; font-weight: 900; text-transform: uppercase; color: var(--charcoal); text-align: center; margin-bottom: 15px; }
.section-divider { width: 80px; height: 4px; background: linear-gradient(90deg, var(--orange), var(--yellow)); border-radius: 2px; margin: 0 auto 40px; }

/* Promo Banner */
.promo-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 1100; background: linear-gradient(135deg, #C8102E 0%, #a00d24 100%); color: white; padding: 0 20px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.85em; height: 36px; transition: transform 0.3s ease; }
.promo-banner.dismissed { transform: translateY(-100%); }
.promo-banner .promo-text { font-weight: 700; }
.promo-banner .promo-sub { opacity: 0.9; }
.promo-banner .promo-cta { background: white; color: #C8102E; padding: 3px 16px; border-radius: 20px; text-decoration: none; font-weight: 800; font-size: 0.9em; white-space: nowrap; }
.promo-banner .promo-close { background: none; border: none; color: white; font-size: 1.3em; cursor: pointer; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); opacity: 0.7; }
.promo-banner .promo-close:hover { opacity: 1; }
body.has-promo-banner header { top: 36px; }
body.has-promo-banner .hero, body.has-promo-banner main { margin-top: 0; }
@media (max-width: 640px) {
    .promo-banner { font-size: 0.78em; padding: 0 40px 0 12px; }
    .promo-banner .promo-sub { display: none; }
    .promo-banner .promo-cta { padding: 3px 12px; font-size: 0.8em; margin-left: 8px; }
}

/* Common Button Styles */
.btn-primary { display: inline-block; background: var(--orange); color: white; padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 800; text-transform: uppercase; transition: all 0.3s; font-family: 'Montserrat', sans-serif; }
.btn-primary:hover { background: var(--red); transform: translateY(-2px); }
.btn-outline { display: inline-block; border: 2px solid var(--orange); color: var(--orange); padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 800; text-transform: uppercase; transition: all 0.3s; font-family: 'Montserrat', sans-serif; }
.btn-outline:hover { background: var(--orange); color: white; }
