/* ==========================================================================
   Chilli & Lime — design system
   Growth-tier multi-page takeaway site: vibrant, appetizing, fast-casual.
   Fredoka (rounded, friendly display) + Inter body. Chilli-red + lime-green
   on a warm cream base — deliberately distinct from every other template.
   ========================================================================== */

:root {
    --ink:        #241d18;
    --ink-soft:   #332921;
    --cream:      #fff8ef;
    --cream-soft: #fbeedb;
    --white:      #fffdfa;

    --chilli:       #d1352b;
    --chilli-deep:  #a3271f;
    --chilli-light: #ec6a5e;

    --lime:       #8bc63e;
    --lime-deep:  #6a9c2d;
    --lime-light: #b3dd7a;

    --stone: #8a7d6f;
    --line:  rgba(36, 29, 24, 0.1);
    --line-on-dark: rgba(255, 248, 239, 0.14);

    --font-display: 'Fredoka', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 26px;

    --shadow-sm: 0 2px 10px rgba(36, 29, 24, 0.08);
    --shadow: 0 12px 32px rgba(36, 29, 24, 0.14);
    --shadow-lg: 0 24px 60px rgba(36, 29, 24, 0.22);

    --ease: cubic-bezier(.25, .8, .35, 1);
    color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { margin: 0; font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
em, .italic { font-style: normal; color: var(--chilli); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--chilli); color: var(--white); padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.icon { width: 1.15em; height: 1.15em; vertical-align: -0.22em; flex-shrink: 0; }
.icon--lg { width: 28px; height: 28px; }
.stars { display: inline-flex; gap: 2px; color: var(--chilli); }
.stars .icon { width: 15px; height: 15px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: .94rem;
    border: 1px solid transparent; cursor: pointer; position: relative; overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
}
.btn::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 45%, transparent 60%); transform: translateX(-120%); transition: transform .6s var(--ease); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--chilli); color: var(--white); box-shadow: 0 8px 22px rgba(209, 53, 43, .32); }
.btn--primary:hover { background: var(--chilli-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(209, 53, 43, .4); }
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 8px 22px rgba(139, 198, 62, .32); }
.btn--lime:hover { background: var(--lime-deep); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--on-dark.btn--ghost { color: var(--cream); border-color: var(--line-on-dark); }
.btn--on-dark.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 248, 239, .88); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; transition: padding .3s var(--ease); }
.site-header.is-scrolled .header-inner { padding: 11px 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 34px; height: 34px; color: var(--chilli); flex-shrink: 0; }
.brand__name-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.brand__name .amp { color: var(--lime-deep); }
.brand__tag { font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--stone); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; font-weight: 600; font-size: .93rem; color: var(--ink-soft); padding: 6px 0; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--chilli); transition: right .3s var(--ease); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--chilli-deep); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: transparent; border: none; color: var(--ink); cursor: pointer; transition: background-color .2s var(--ease); }
.icon-btn:hover { background: var(--cream-soft); }
.nav-toggle { display: none; }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 10px 24px 22px; background: var(--cream); border-bottom: 1px solid var(--line); }
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-radius: 8px; }
.mobile-nav a:hover, .mobile-nav a.is-active { background: var(--cream-soft); color: var(--chilli-deep); }
.mobile-nav .btn { margin-top: 10px; }

@media (max-width: 880px) {
    .main-nav, .header-actions .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-nav.is-open { display: flex; }
}

.scrim { position: fixed; inset: 0; background: rgba(36,29,24,.42); opacity: 0; pointer-events: none; z-index: 90; transition: opacity .3s var(--ease); }
.scrim.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; padding: 90px 0 110px; }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; pointer-events: none; animation: driftGlow 13s ease-in-out infinite; }
.hero::before { width: 460px; height: 460px; background: radial-gradient(circle, var(--chilli) 0%, transparent 70%); top: -160px; right: -120px; }
.hero::after { width: 360px; height: 360px; background: radial-gradient(circle, var(--lime) 0%, transparent 70%); bottom: -160px; left: -100px; animation-delay: -6s; }
@keyframes driftGlow { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px, 26px) scale(1.08); } }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: rgba(209,53,43,.18); color: var(--chilli-light); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 22px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.hero h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); color: var(--white); }
.hero h1 em { color: var(--lime-light); font-style: normal; }
.hero p.lede { font-size: 1.12rem; color: rgba(255,248,239,.78); max-width: 46ch; margin: 18px 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.hero-media .float-card { position: absolute; left: -26px; bottom: 26px; background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; max-width: 230px; animation: floatCard 5s ease-in-out infinite; }
.float-card .icon { color: var(--chilli); width: 26px; height: 26px; }
.float-card strong { display: block; font-size: .9rem; }
.float-card span { font-size: .78rem; color: var(--stone); }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .float-card { left: 16px; }
}

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--tight { padding: 60px 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--soft { background: var(--cream-soft); }

.section-head { max-width: 620px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--chilli-deep); margin-bottom: 14px; }
.section--dark .eyebrow { color: var(--chilli-light); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.section-head p { color: var(--stone); font-size: 1.05rem; }
.section--dark .section-head p { color: rgba(255,248,239,.7); }

/* ---------- Highlight / feature cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }

.tcard { background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; height: 100%; border: 1px solid var(--line); text-align: center; }
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tcard__icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--chilli-light), var(--chilli)); color: var(--white); margin: 0 auto 18px; transition: transform .35s var(--ease); }
.tcard:hover .tcard__icon { transform: rotate(-6deg) scale(1.06); }
.tcard h3 { font-size: 1.1rem; margin-bottom: 8px; }
.tcard p { color: var(--stone); font-size: .9rem; flex-grow: 1; }

/* ---------- Menu ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-weight: 700; font-size: .88rem; }
.pill:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.menu-group { margin-bottom: 52px; scroll-margin-top: 100px; }
.menu-group__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.menu-group__icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--lime-light); flex-shrink: 0; }
.menu-group__head h3 { margin: 0; font-size: 1.4rem; }

.menu-list { display: grid; gap: 14px; }
.menu-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.menu-row:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: rgba(209,53,43,.3); }
.menu-row__info strong { display: block; font-size: 1.02rem; font-weight: 700; }
.menu-row__info p { margin: 3px 0 0; color: var(--stone); font-size: .86rem; max-width: 50ch; }
.menu-row__price { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--chilli-deep); flex-shrink: 0; }

@media (max-width: 640px) { .menu-row { flex-wrap: wrap; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gallery-grid a { border-radius: var(--radius-sm); overflow: hidden; display: block; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,29,24,.35), transparent 40%); opacity: 0; transition: opacity .3s var(--ease); }
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a.span-2 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .gallery-grid a.span-2 { grid-column: span 2; grid-row: span 1; } }

/* ---------- Feature row (dark) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { text-align: center; padding: 30px 20px; border-radius: var(--radius); background: rgba(255,248,239,.06); border: 1px solid var(--line-on-dark); }
.feature__icon { width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: rgba(139,198,62,.16); color: var(--lime-light); }
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.feature p { font-size: .88rem; color: rgba(255,248,239,.65); margin: 0; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--cream-soft); font-size: .78rem; font-weight: 700; color: var(--chilli-deep); }
.badge .icon { width: 14px; height: 14px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.testi p { font-size: .96rem; margin: 14px 0 18px; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lime-deep); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.testi__who strong { display: block; font-size: .92rem; }
.testi__who span { font-size: .8rem; color: var(--stone); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--chilli-deep), var(--chilli)); color: var(--white); border-radius: var(--radius-lg); padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.12); top: -100px; right: -60px; }
.cta-band h3 { color: var(--white); margin-bottom: 8px; font-size: 1.7rem; position: relative; z-index: 1; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.cta-band .btn--ghost:hover { background: var(--white); color: var(--chilli-deep); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--stone); font-size: .8rem; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--cream); font: inherit; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--chilli); box-shadow: 0 0 0 4px rgba(209,53,43,.15); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.alert { border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.alert--success { background: rgba(106,156,45,.12); color: var(--lime-deep); }
.alert--error { background: rgba(163,39,31,.1); color: var(--chilli-deep); }
.alert .icon { flex-shrink: 0; margin-top: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,248,239,.72); padding: 76px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-on-dark); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { font-size: .9rem; max-width: 34ch; margin: 16px 0 20px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,248,239,.08); transition: background-color .2s var(--ease), color .2s var(--ease); }
.socials a:hover { background: var(--chilli); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .9rem; padding: 6px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--chilli-light); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.footer-contact .icon { color: var(--chilli-light); margin-top: 2px; }

.footer-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 26px 0 10px; font-size: .82rem; }
.footer-credit { text-align: center; white-space: nowrap; }
.credit-link { color: var(--chilli-light); font-weight: 700; }
.footer-legal { display: flex; gap: 18px; justify-content: flex-end; }
@media (max-width: 700px) { .footer-bar { grid-template-columns: 1fr; text-align: center; } .footer-legal { justify-content: center; } }
.footer-fineprint { font-size: .76rem; color: rgba(255,248,239,.4); text-align: center; margin: 10px 0 0; }

/* ---------- Cookie bar ---------- */
.cookie-bar { position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 640px; margin: 0 auto; background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-lg); z-index: 150; display: flex; flex-direction: column; gap: 14px; transform: translateY(140%); transition: transform .4s var(--ease); }
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: .86rem; }
.cookie-bar a { color: var(--chilli-light); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(36,29,24,.94); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,248,239,.1); border: none; color: var(--cream); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color .2s var(--ease); }
.lightbox-close:hover { background: rgba(255,248,239,.2); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: .24s; }

/* ---------- Content pages (legal) ---------- */
.page-hero { background: var(--ink); color: var(--cream); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,248,239,.72); max-width: 56ch; margin: 12px auto 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; }
.prose p, .prose ul { color: var(--ink-soft); }

.hide-sm { }
@media (max-width: 880px) { .hide-sm { display: none !important; } }
