.updates-page {
    background: #f7f9fc;
    padding: 3.5rem 0;
}

.updates-modern {
    background:
        radial-gradient(1200px 400px at 0% 0%, rgba(18, 33, 178, 0.12), transparent 70%),
        radial-gradient(1000px 500px at 100% 0%, rgba(26, 64, 219, 0.1), transparent 70%),
        linear-gradient(180deg, #f5f8ff 0%, #f9fbff 100%);
    padding: 3rem 0 4rem;
}

.updates-hero {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(5px);
    border: 1px solid #dce6fb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(18, 33, 178, 0.08);
    animation: updatesFadeIn 0.55s ease;
}

.updates-eyebrow {
    color: #1221b2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}

.updates-hero h1 {
    color: #1f2435;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 2rem;
    line-height: 1.2;
}

.updates-lead {
    color: #49506a;
    font-size: 1.05rem;
    line-height: 1.55;
}

.updates-chip-row {
    margin-top: 1rem;
}

.updates-chip {
    display: inline-block;
    background: #ebf1ff;
    color: #1221b2;
    border: 1px solid #cedbf9;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-weight: 700;
    font-size: 0.88rem;
    margin-right: 0.5rem;
    margin-top: 0.4rem;
}

.updates-cta-row {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.updates-modern-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.updates-modern-card {
    background: #fff;
    border: 1px solid #e1e9fb;
    border-radius: 14px;
    padding: 1.15rem;
    box-shadow: 0 8px 20px rgba(18, 33, 178, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.updates-card-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: block;
}

.updates-modern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 26px rgba(18, 33, 178, 0.12);
}

.updates-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf0ff;
    color: #1221b2;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.updates-modern-card h3 {
    color: #1221b2;
    font-size: 1.18rem;
    margin-bottom: 0.55rem;
}

.updates-modern-card p {
    color: #3e465f;
    line-height: 1.5;
}

.updates-modern-card ul {
    margin-top: 0.3rem;
    padding-left: 1.2rem;
}

.updates-modern-card li {
    color: #3e465f;
    line-height: 1.52;
    list-style: disc;
}

.updates-price-note {
    margin-top: 1.2rem;
}

@keyframes updatesFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.update-card {
    background: #fff;
    border: 1px solid #e4eaf3;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 8px 20px rgba(18, 33, 178, 0.06);
}

.update-card h3 {
    color: #1221b2;
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.update-card p {
    color: #3a3a3a;
    line-height: 1.45;
}

.update-card ul {
    margin-top: 0.35rem;
    padding-left: 1.2rem;
}

.update-card li {
    color: #3a3a3a;
    line-height: 1.55;
    list-style: disc;
}

.updates-highlights {
    background:
        radial-gradient(900px 260px at 10% 0%, rgba(255, 255, 255, 0.14), transparent 70%),
        linear-gradient(135deg, #10208f 0%, #1c2dc2 60%, #2b39cf 100%);
    color: #fff;
    padding: 2.6rem 0;
}

.updates-highlights-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.updates-highlights-tag {
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    opacity: 0.9;
}

.updates-highlights-head h2 {
    color: #fff;
    margin: 0.35rem 0 0.25rem;
    font-size: 2rem;
    line-height: 1.1;
}

.updates-highlights-head p {
    color: #dfe6ff;
    line-height: 1.45;
}

.updates-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.updates-highlight-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    backdrop-filter: blur(4px);
}

.updates-highlight-card h3 {
    color: #fff;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.updates-highlight-card h3 i {
    margin-right: 0.35rem;
}

.updates-highlight-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.updates-highlight-card li {
    line-height: 1.55;
    list-style: disc;
    color: #f3f6ff;
}

.delivery-pill {
    display: inline-block;
    background: #edf1fb;
    color: #1221b2;
    border-radius: 24px;
    padding: 0.35rem 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.35rem;
    margin-top: 0.35rem;
}

.notice-box {
    background: #fff8e8;
    border-left: 4px solid #ffb100;
    color: #5f4a1e;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .updates-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .updates-modern {
        padding: 2rem 0 2.5rem;
    }

    .updates-hero {
        padding: 1.3rem;
    }

    .updates-hero h1 {
        font-size: 1.5rem;
    }

    .updates-modern-grid {
        grid-template-columns: 1fr;
    }

    .updates-card-image {
        height: 200px;
    }

    .updates-page {
        padding: 2.2rem 0;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .updates-highlights {
        padding: 2rem 0;
    }

    .updates-highlights-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .updates-highlights-head h2 {
        font-size: 1.5rem;
    }
}

.menu-page-intro {
    background: #f7f9fc;
    border: 1px solid #e4eaf3;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.menu-page-intro p {
    color: #3a3a3a;
    line-height: 1.45;
}

.menu-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.menu-pdf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-pdf-card {
    background: #fff;
    border: 1px solid #e4eaf3;
    border-radius: 12px;
    padding: 1rem;
}

.menu-pdf-card h4 {
    color: #1221b2;
    margin-bottom: 0.45rem;
}

.menu-pdf-card a {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.menu-pdf-frame {
    width: 100%;
    height: 640px;
    border: 1px solid #d6deed;
    border-radius: 8px;
    background: #fff;
}

.menu-pdf-card-single {
    max-width: 960px;
}

.menu-pdf-frame-large {
    height: 850px;
}

@media (max-width: 991px) {
    .menu-pdf-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .menu-pdf-frame {
        height: 520px;
    }

    .menu-pdf-frame-large {
        height: 620px;
    }
}

.menu-full-pages {
    max-width: 960px;
    margin: 0 auto;
}

.menu-full-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #dbe2f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #fff;
}
