/* Broasted Club — Saudi Broast Style Layout */

:root {
    --primary: #dc7325;
    --secondary: #113217;
    --background: #fcf1e4;
    --text: var(--secondary);
    --text-muted: rgba(17, 50, 23, 0.65);
    --text-light: var(--background);
    --shadow: 0 8px 30px rgba(17, 50, 23, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--text); background: var(--background); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* Website Loader — from website-loader.htm */
.site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 10000;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.site-loader-logo {
    margin: 0 auto 24px;
    object-fit: contain;
}

.site-loader .spinner {
    width: 70px;
    margin: 0 auto;
    text-align: center;
}

.site-loader .spinner > div {
    width: 14px;
    height: 14px;
    background-color: var(--primary);
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.site-loader .spinner .bounce2 { background-color: var(--secondary); animation-delay: -0.16s; }
.site-loader .spinner .bounce1 { animation-delay: -0.32s; }

@keyframes sk-bouncedelay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Header — removed; nav integrated in hero */

/* Sticky Nav */
.sticky-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--background);
    box-shadow: 0 2px 16px rgba(17, 50, 23, 0.1);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    padding: 10px 0;
}
.sticky-nav.visible { transform: translateY(0); }
.sticky-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.sticky-nav-inner img { object-fit: contain; }
.sticky-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.sticky-nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sticky-nav-links a:hover { color: var(--primary); }
.sticky-nav-links .btn { padding: 8px 18px; font-size: 0.75rem; }

/* Hero Slider — Saudi Broast style */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 620px;
}

.hero-slider-main {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.hero-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 4%;
    gap: 20px;
}

.hero-top-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-top-logo img {
    display: block;
    height: clamp(44px, 5vw, 56px);
    width: auto;
    max-width: min(180px, 42vw);
    object-fit: contain;
    border-radius: 8px;
    background: var(--background);
    box-shadow: 0 2px 10px rgba(17, 50, 23, 0.12);
}

.hero-top-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-top-nav a {
    color: var(--background);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-top-nav a:hover { opacity: 0.85; }

.hero-top-phone {
    color: var(--background) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    font-size: 0.95rem !important;
    opacity: 0.95;
}

.hero-menu-toggle { display: none; }
.hero-menu-toggle span { background: var(--background); }

.slider-track {
    display: flex;
    flex: 1 1 auto;
    min-height: 480px;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--primary);
    min-height: 480px;
    padding-top: 90px;
}

.slide-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 20px;
    padding: 30px 0 24px;
    min-height: calc(100vh - 360px);
    min-height: 420px;
}

.slide-food {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2%;
}

.slide-food img {
    max-height: min(540px, 68vh);
    width: auto;
    max-width: 110%;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 28px 50px rgba(17, 50, 23, 0.28));
}

.slide-copy {
    position: relative;
    text-align: left;
    padding-left: 10px;
    padding-right: 4%;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 9vw, 7rem);
    color: var(--background);
    line-height: 0.9;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.slide-title span {
    display: block;
}

.slide-status {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    letter-spacing: 5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.slide-status span {
    color: var(--background);
    font-weight: 400;
    opacity: 0.92;
}

.slide-status strong {
    color: var(--background);
    font-weight: 400;
    margin-left: 10px;
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

/* Hero Promo Strip — flush at hero bottom (Saudi Broast #promo-2) */
.hero-promo.promo-section {
    position: relative;
    z-index: 12;
    flex-shrink: 0;
    width: 100%;
    margin-top: 0;
    padding: 12px 0 0;
    background: var(--background);
}

.hero-promo.promo-section.pt-100 {
    padding-top: 12px;
}

.hero-promo-inner {
    width: min(1280px, 96%);
    margin: 0 auto;
    padding: 0 8px;
}

.pt-100 { padding-top: 100px; }

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(252, 241, 228, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--background);
    width: 22px;
    height: 8px;
    border-radius: 4px;
    box-shadow: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-primary { background: var(--primary); color: var(--background); }
.btn-primary:hover { background: var(--secondary); color: var(--background); transform: translateY(-1px); }
.btn-brown { background: var(--secondary); color: var(--background); }
.btn-brown:hover { background: var(--secondary); }
.btn-outline { background: transparent; border: 2px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--background); }
.btn-whatsapp { background: var(--primary); color: var(--background); }
.btn-whatsapp:hover { background: var(--secondary); color: var(--background); }

/* Promo Banners — Saudi Broast style */
.promo-section {
    padding: 0;
    background: var(--background);
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.promo-banner {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    align-items: stretch;
    min-height: 180px;
    background: #f7ebdc;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: none;
}
.promo-banner-media {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: #f7ebdc;
    overflow: hidden;
}
.promo-banner-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: none;
    object-fit: cover;
    object-position: left center;
    filter: none;
}
.promo-banner-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    min-width: 0;
    padding: 48px 20px 36px 24px;
}
.promo-banner-eyebrow {
    font-size: clamp(1.35rem, 2.2vw, 2.25rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.25px;
    color: #6f5e4d;
    margin: 0;
    line-height: 1.1;
    font-family: var(--font-body);
    white-space: nowrap;
}
.promo-banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.375rem);
    line-height: 1.1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6f5e4d;
    margin: 0;
}
.promo-banner-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    line-height: 1.1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2a2520;
    margin: 0;
}
.promo-banner-btn {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 130px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    transition: opacity 0.2s ease;
}
.promo-banner-btn:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.92;
    color: #fff;
}
.promo-banner-btn--whatsapp {
    background: #25d366;
}
.promo-banner-btn--whatsapp:hover {
    background: #25d366;
}
.promo-banner-btn--call {
    background: #d62828;
}
.promo-banner-btn--call:hover {
    background: #d62828;
}
.promo-banner-btn i {
    font-size: 1.05rem;
}

/* Section Common */
section { padding: 80px 0; }
.section-head {
    text-align: center;
    margin-bottom: 48px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-head p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* About */
.about-section {
    background: var(--background);
    overflow: hidden;
}
.about-intro {
    padding: 80px 0 100px;
    text-align: center;
}
.about-intro-inner {
    max-width: 720px;
    margin: 0 auto;
}
.about-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    line-height: 1.15;
}
.about-intro p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.about-food-strip {
    position: relative;
    z-index: 2;
    margin-top: -60px;
    margin-bottom: -90px;
    pointer-events: none;
}
.about-food-strip-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(8px, 2vw, 20px);
    padding: 0 16px;
}
.about-food-item {
    flex: 0 1 clamp(100px, 16vw, 190px);
    max-width: 190px;
}
.about-food-item img {
    width: 100%;
    height: clamp(140px, 22vw, 240px);
    object-fit: cover;
    object-position: top center;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 16px 40px rgba(17, 50, 23, 0.18);
}
.about-features-banner {
    background: var(--primary);
    padding: 110px 0 64px;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.about-feature i {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    color: var(--background);
    background: transparent;
    border: 2px solid rgba(252, 241, 228, 0.75);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.about-feature h5 {
    font-size: 0.95rem;
    color: var(--background);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.about-feature p {
    font-size: 0.85rem;
    color: rgba(252, 241, 228, 0.88);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

/* App / Mobile Order Promo (banner-3) — Saudi Broast match */
#banner-3.app-promo {
    background: var(--primary);
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}
#banner-3 .app-promo-wrap {
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: 0;
    position: relative;
}
#banner-3 .banner-3-txt {
    color: var(--background);
    text-align: left;
    padding: 56px 0;
}
#banner-3 .banner-3-txt h2 {
    color: var(--background);
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
#banner-3 .banner-3-txt p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    padding-right: 10%;
    margin-bottom: 25px;
    color: rgba(252, 241, 228, 0.88);
}
#banner-3 .stores-badge {
    display: inline-block;
}
#banner-3 .store {
    display: inline-block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
#banner-3 .store:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}
#banner-3 .store-badge-img {
    display: block;
    width: 163px;
    height: 50px;
}
#banner-3 .banner-3-img,
#banner-3 .app-promo-visual {
    text-align: center;
    margin-top: 0;
    margin-left: -30px;
    position: relative;
    z-index: 2;
    background: transparent;
}
#banner-3 .banner-3-img img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Orange banner → cream about transition */
#banner-3 + .about-section .about-intro {
    padding-top: 72px;
}

/* Quality */
.quality-section { background: var(--background); }
.quality-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.quality-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}
.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.quality-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.quality-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.quality-list p { color: var(--text-muted); font-size: 0.92rem; }

/* Location & Contact */
.contact-section { background: var(--background); }
.contact-unified {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-location,
.contact-form-wrap { padding: 40px; }
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.45);
    border-left: 1px solid rgba(17, 50, 23, 0.08);
}
.contact-col-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--secondary);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.contact-col-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 24px;
}
.location-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.location-detail i { color: var(--primary); width: 20px; margin-top: 3px; }
.location-detail h6 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 2px; }
.location-detail p { font-size: 0.9rem; color: var(--secondary); }
.location-detail a:hover { color: var(--primary); }
.contact-location .map-wrap {
    margin-top: 0;
    height: 260px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(17, 50, 23, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--background);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--background);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-message { margin-top: 12px; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; display: none; }
.form-message.success { display: block; background: rgba(17, 50, 23, 0.1); color: var(--secondary); }
.form-message.error { display: block; background: rgba(220, 115, 37, 0.15); color: var(--primary); }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 360px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer {
    background: var(--secondary);
    color: rgba(252, 241, 228,0.65);
    padding: 48px 0 120px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
}
.footer-brand img { height: 70px; margin-bottom: 16px; object-fit: contain; }
.footer-col h4 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: rgba(252, 241, 228,0.6); }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(220, 115, 37,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); color: var(--background); }
.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-up { opacity: 1; transform: none; transition: none; }
    .slider-track { transition: none; }
    .com-button { animation: none; }
}

/* Below-fold sections */
.promo-section,
.about-section,
.quality-section,
.app-promo,
.contact-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Floating buttons */
.com-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.com-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    padding-bottom: 80px;
}
.com-button {
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0;
    flex-shrink: 0;
}
.wa-button { background: var(--secondary); }
.wa-button img,
.call-button img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transform: none;
    transition: none;
}
.top-button i {
    width: auto;
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    flex-shrink: 0;
}
.call-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.top-button {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--primary);
    color: var(--background);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    font-size: 22px;
    transition: opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.top-button.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.top-button:hover { background: var(--secondary); }
.call-button img { filter: brightness(0) invert(1); }
.call-button:hover,
.wa-button:hover,
.top-button.visible:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.com-options {
    background: var(--background);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: scale(0);
    transform-origin: bottom right;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 250px;
    position: absolute;
    bottom: 225px;
    right: 0;
    pointer-events: none;
}
.com-options.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}
.com-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.com-option:last-child { margin-bottom: 0; }
.com-option:hover {
    background: rgba(17, 50, 23, 0.06);
    transform: translateX(-5px);
}
.com-option i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 16px;
    color: var(--background);
    flex-shrink: 0;
}
.wa-option i { background: var(--secondary); }
.call-option .call-option-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    background: var(--primary);
}
.call-option .call-option-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.com-option-text h4 { margin: 0; font-size: 14px; color: var(--secondary); }
.com-option-text p { margin: 3px 0 0; font-size: 12px; color: var(--text-muted); }

/* Artliery credit badge */
.artliery-credit {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: auto;
    z-index: 9998;
    background: rgba(17, 17, 17, 0.85);
    color: #fff;
    font: 500 12px/1 system-ui, sans-serif;
    padding: 7px 12px;
    border-radius: 9999px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    animation: artliery-credit-enter 0.65s ease forwards 0.9s;
    transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.artliery-credit:hover,
.artliery-credit:focus-visible {
    opacity: 1;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.22);
    transform: translateY(0) scale(1.04);
    outline: none;
}
@keyframes artliery-credit-enter {
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 32px; min-height: auto; }
    .slide-copy { padding-left: 0; padding-right: 0; }
    .slide-food { justify-content: center; padding-left: 0; }
    .slide-food img { max-height: 300px; max-width: 100%; object-position: center; }
    .hero-promo.promo-section,
    .hero-promo.promo-section.pt-100 { padding-top: 8px; }
    .promo-grid { grid-template-columns: 1fr; gap: 8px; }
    .promo-banner { grid-template-columns: 1fr 1fr; min-height: 150px; }
    .promo-banner-media img { min-height: 150px; }
    .promo-banner-body { padding: 40px 16px 28px 18px; gap: 6px; }
    .promo-banner-eyebrow { font-size: 1.5rem; letter-spacing: 1.1px; }
    .promo-banner-title { font-size: 1.85rem; letter-spacing: 1.25px; }
    .quality-wrap, .contact-unified { grid-template-columns: 1fr; }
    .contact-form-wrap { border-left: none; border-top: 1px solid rgba(17, 50, 23, 0.08); }
    .about-food-strip { margin-top: -40px; margin-bottom: -60px; }
    .about-features-banner { padding: 90px 0 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sticky-nav-links { display: none; }
}
@media (max-width: 1199px) {
    #banner-3 .banner-3-txt h2 { font-size: 3.85rem; }
}
@media (min-width: 768px) and (max-width: 991px) {
    #banner-3 .banner-3-txt h2 { font-size: 3.5rem; }
    #banner-3 .banner-3-txt p { padding: 0; margin-bottom: 25px; }
    #banner-3 .banner-3-img img { max-width: none; width: 160%; margin-left: -20px; }
}
@media (max-width: 768px) {
    .hero-top-nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 18px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    .hero-top-nav.open { transform: translateY(0); opacity: 1; }
    .hero-menu-toggle { display: flex; }
    .hero-top-nav a { font-size: 0.95rem; }
    .slide { min-height: 560px; padding-top: 80px; }
    .slide-title { font-size: clamp(2.8rem, 12vw, 4rem); }
    .about-intro { padding: 56px 0 72px; }
    .about-features-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-food-item:nth-child(n+4) { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 56px 0; }
    .com-container { bottom: 20px; right: 20px; }
    .com-button { width: 50px; height: 50px; }
    .com-stack { padding-bottom: 72px; gap: 12px; }
    .wa-button img,
    .call-button img { width: 28px; height: 28px; }
    .top-button { font-size: 18px; }
    .com-options { width: 220px; bottom: 185px; }
    .site-footer { padding-bottom: 100px; }
    #banner-3 { text-align: center; padding-top: 80px; margin-top: 0; }
    #banner-3 .app-promo-wrap { grid-template-columns: 1fr; }
    #banner-3 .banner-3-txt { padding: 0 0 24px; text-align: center; }
    #banner-3 .banner-3-txt h2 { font-size: 3.75rem; }
    #banner-3 .banner-3-txt p { padding: 0; margin-bottom: 25px; }
    #banner-3 .stores-badge { margin: 0 auto; }
    #banner-3 .banner-3-img { margin-top: 30px; margin-left: 0; }
    #banner-3 .banner-3-img img { width: 100%; margin-left: 0; }
    .artliery-credit {
        bottom: 10px;
        left: 10px;
        right: auto;
        font-size: 11px;
        padding: 6px 10px;
    }
    .promo-banner-body {
        align-items: flex-start;
        text-align: left;
        padding: 32px 16px 28px;
        gap: 6px;
    }
    .promo-banner-eyebrow { font-size: 1.35rem; letter-spacing: 1px; }
    .promo-banner-title { letter-spacing: 1px; }
    .promo-banner-btn { margin-top: 8px; }
}
@media (max-width: 480px) {
    #banner-3 .banner-3-txt h2 { font-size: 3rem; }
}
@media (max-width: 400px) {
    .promo-banner-eyebrow {
        white-space: normal;
        font-size: 1.2rem;
        letter-spacing: 0.75px;
    }
    #banner-3 .banner-3-txt h2 { font-size: 2.6rem; }
}
