/* Exact scoped component styles captured from the approved Yummy Specials staging reference. */

/* =========================================================
   YUMMY SPECIALS PREMIUM HEADER
   Fully scoped to prevent Elementor/theme style bleed
========================================================= */

.ysp-header,
.ysp-header *,
.ysp-header *::before,
.ysp-header *::after {
    box-sizing: border-box;
}

.ysp-header {
    --ysp-black: #0b0d0b;
    --ysp-black-soft: #121511;
    --ysp-panel: #171a16;
    --ysp-green: #258c47;
    --ysp-green-dark: #176934;
    --ysp-green-light: #4fba70;
    --ysp-orange: #ed7626;
    --ysp-orange-light: #ff9b43;
    --ysp-gold: #f3c84c;
    --ysp-red: #e72232;
    --ysp-cream: #fff9ec;
    --ysp-white: #ffffff;
    --ysp-muted: #a9b0a7;
    --ysp-border: rgba(255, 255, 255, 0.11);
    --ysp-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);

    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    color: var(--ysp-white);
    background: var(--ysp-black);
    border: 0;
    font-family: "Manrope", Arial, sans-serif;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.ysp-header.is-scrolled {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.ysp-header a,
.ysp-header button {
    font-family: inherit;
}

.ysp-header a {
    text-decoration: none;
}

.ysp-header button {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: none;
}

.ysp-container {
    width: min(100% - 40px, 1440px);
    margin: 0 auto;
}

/* Decorative texture */

.ysp-header__texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.8;
    background:
        radial-gradient(circle at 12% 36%, rgba(237, 118, 38, 0.17), transparent 1.5px),
        radial-gradient(circle at 36% 18%, rgba(243, 200, 76, 0.13), transparent 1.5px),
        radial-gradient(circle at 73% 24%, rgba(37, 140, 71, 0.14), transparent 1.6px),
        radial-gradient(circle at 92% 50%, rgba(237, 118, 38, 0.13), transparent 1.5px),
        linear-gradient(110deg, rgba(255,255,255,0.015), transparent 40%);
    background-size:
        140px 100px,
        190px 120px,
        170px 140px,
        220px 150px,
        auto;
}

/* Topbar */

.ysp-topbar {
    position: relative;
    z-index: 5;
    min-height: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.065);
    background: rgba(255,255,255,0.025);
}

.ysp-topbar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ysp-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: #d8ded6;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ysp-status__dot {
    position: relative;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ysp-green-light);
    box-shadow: 0 0 0 4px rgba(79, 186, 112, 0.12);
}

.ysp-status__dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(79, 186, 112, 0.45);
    border-radius: inherit;
    animation: yspStatusPulse 2.6s ease-out infinite;
}

.ysp-topbar__links {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 0 0 auto;
}

.ysp-topbar__links a {
    color: #c7cdc5;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition: color 0.2s ease;
}

.ysp-topbar__links a:hover {
    color: var(--ysp-gold);
}

.ysp-topbar__divider {
    width: 1px;
    height: 11px;
    background: rgba(255,255,255,0.18);
}

/* Main row */

.ysp-main {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(
            180deg,
            rgba(18, 21, 17, 0.96),
            rgba(9, 11, 9, 0.98)
        );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ysp-main__inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    transition: min-height 0.3s ease;
}

.ysp-header.is-scrolled .ysp-main__inner {
    min-height: 84px;
}

/* Logo */

.ysp-logo {
    position: relative;
    z-index: 2;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    outline: none;
}

.ysp-logo img {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    height: 94px;
    max-width: 156px;
    object-fit: contain;
    transition:
        height 0.3s ease,
        transform 0.3s ease,
        filter 0.3s ease;
}

.ysp-logo__glow {
    position: absolute;
    top: 50%;
    left: 42%;
    width: 104px;
    height: 72px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(237, 118, 38, 0.15);
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ysp-logo:hover img {
    transform: translateY(-2px) scale(1.025);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.ysp-logo:hover .ysp-logo__glow {
    opacity: 1;
}

.ysp-header.is-scrolled .ysp-logo img {
    height: 74px;
}

/* Desktop navigation */

.ysp-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ysp-nav__link {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border-radius: 12px;
    color: #d6dbd4;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.ysp-nav__link::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 6px;
    left: 16px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(
        90deg,
        var(--ysp-orange),
        var(--ysp-gold)
    );
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.ysp-nav__link:hover,
.ysp-nav__link--active {
    color: var(--ysp-white);
    background: rgba(255,255,255,0.055);
}

.ysp-nav__link:hover::after,
.ysp-nav__link--active::after {
    transform: scaleX(1);
}

.ysp-nav__link:hover {
    transform: translateY(-1px);
}

/* Dropdown */

.ysp-nav__dropdown {
    position: relative;
}

.ysp-nav__dropdown-trigger {
    cursor: pointer;
}

.ysp-nav__dropdown-trigger svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.ysp-nav__dropdown:hover .ysp-nav__dropdown-trigger svg,
.ysp-nav__dropdown.is-open .ysp-nav__dropdown-trigger svg {
    transform: rotate(180deg);
}

.ysp-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    width: 330px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.105);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(28, 32, 27, 0.98),
            rgba(12, 15, 12, 0.99)
        );
    box-shadow: var(--ysp-shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 9px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.ysp-nav__dropdown-menu::before {
    content: "";
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    height: 18px;
}

.ysp-nav__dropdown:hover .ysp-nav__dropdown-menu,
.ysp-nav__dropdown.is-open .ysp-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.ysp-nav__dropdown-menu > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 11px;
    border-radius: 13px;
    color: var(--ysp-white);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.ysp-nav__dropdown-menu > a:hover {
    background: rgba(255,255,255,0.065);
    transform: translateX(2px);
}

.ysp-dropdown-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(243, 200, 76, 0.19);
    border-radius: 12px;
    color: var(--ysp-gold);
    background: rgba(243, 200, 76, 0.08);
}

.ysp-dropdown-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ysp-nav__dropdown-menu strong,
.ysp-nav__dropdown-menu small {
    display: block;
    overflow-wrap: anywhere;
}

.ysp-nav__dropdown-menu strong {
    margin-bottom: 3px;
    color: #f5f7f4;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
}

.ysp-nav__dropdown-menu small {
    color: #979f95;
    font-size: 10px;
    line-height: 1.45;
    font-weight: 600;
}

/* Actions */

.ysp-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.ysp-prizes {
    min-height: 56px;
    display: inline-grid;
    grid-template-columns: 34px auto 18px;
    align-items: center;
    gap: 10px;
    padding: 7px 13px 7px 10px;
    border: 1px solid rgba(243, 200, 76, 0.23);
    border-radius: 15px;
    color: var(--ysp-white);
    background:
        linear-gradient(
            120deg,
            rgba(243, 200, 76, 0.11),
            rgba(255,255,255,0.025)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 10px 30px rgba(0,0,0,0.18);
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ysp-prizes:hover {
    color: var(--ysp-white);
    border-color: rgba(243, 200, 76, 0.5);
    background:
        linear-gradient(
            120deg,
            rgba(243, 200, 76, 0.18),
            rgba(255,255,255,0.045)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.09),
        0 15px 35px rgba(0,0,0,0.28);
    transform: translateY(-2px);
}

.ysp-prizes__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--ysp-gold);
    background: rgba(243, 200, 76, 0.12);
}

.ysp-prizes__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ysp-prizes__copy {
    min-width: 0;
}

.ysp-prizes__copy small,
.ysp-prizes__copy strong {
    display: block;
    white-space: nowrap;
}

.ysp-prizes__copy small {
    margin-bottom: 1px;
    color: #aaaFA8;
    font-size: 8px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ysp-prizes__copy strong {
    color: var(--ysp-white);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 800;
}

.ysp-prizes__arrow {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #d4d9d2;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.ysp-prizes:hover .ysp-prizes__arrow {
    transform: translateX(3px);
}

.ysp-favourite {
    position: relative;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: var(--ysp-red);
    background: rgba(255,255,255,0.055);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.ysp-favourite svg {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.2s ease;
}

.ysp-favourite:hover {
    color: #ff3948;
    border-color: rgba(231, 34, 50, 0.35);
    background: rgba(231, 34, 50, 0.1);
    transform: translateY(-2px);
}

.ysp-favourite:hover svg {
    transform: scale(1.11);
}

.ysp-favourite__pulse {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(231, 34, 50, 0.3);
    border-radius: 50%;
    opacity: 0;
}

.ysp-favourite:hover .ysp-favourite__pulse {
    animation: yspHeartPulse 0.8s ease-out;
}

/* Mobile menu button */

.ysp-menu-button {
    width: 48px;
    height: 48px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 14px;
    background: rgba(255,255,255,0.055) !important;
    cursor: pointer;
}

.ysp-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: var(--ysp-white);
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

.ysp-menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ysp-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.ysp-menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */

.ysp-mobile-menu {
    position: relative;
    z-index: 19;
    display: none;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: #10130f;
    transition:
        max-height 0.35s ease,
        border-color 0.25s ease;
}

.ysp-mobile-menu.is-open {
    max-height: 620px;
    border-bottom-color: rgba(255,255,255,0.08);
}

.ysp-mobile-menu__inner {
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    padding: 7px 0 22px;
}

.ysp-mobile-menu nav {
    display: grid;
    gap: 3px;
}

.ysp-mobile-menu nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 11px;
    color: #e0e4de;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.ysp-mobile-menu nav a:hover {
    color: var(--ysp-white);
    background: rgba(255,255,255,0.06);
}

.ysp-mobile-menu__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ysp-mobile-prizes,
.ysp-mobile-login {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
}

.ysp-mobile-prizes {
    color: #15170f;
    background: linear-gradient(
        135deg,
        var(--ysp-gold),
        #f7dd75
    );
}

.ysp-mobile-prizes:hover {
    color: #15170f;
}

.ysp-mobile-prizes svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ysp-mobile-login {
    border: 1px solid rgba(255,255,255,0.13);
    color: var(--ysp-white);
    background: rgba(255,255,255,0.05);
}

/* Day navigation */

.ysp-daybar {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(243, 200, 76, 0.28);
    background:
        linear-gradient(
            180deg,
            #121511,
            #0e110e
        );
}

.ysp-daybar > .ysp-container {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 26px;
}

.ysp-daybar__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8f978d;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ysp-daybar__heading svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--ysp-gold);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ysp-days {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(7, minmax(92px, 1fr));
    align-items: center;
    gap: 8px;
}

.ysp-day {
    position: relative;
    min-width: 0;
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    color: #dce1da;
    background: rgba(255,255,255,0.035);
    overflow: hidden;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.ysp-day::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(237, 118, 38, 0.18),
            rgba(243, 200, 76, 0.07)
        );
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ysp-day span,
.ysp-day strong {
    position: relative;
    z-index: 2;
}

.ysp-day span {
    display: none;
}

.ysp-day strong {
    overflow: hidden;
    color: inherit;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ysp-day:hover {
    color: var(--ysp-white);
    border-color: rgba(237, 118, 38, 0.42);
    background: rgba(237, 118, 38, 0.075);
    transform: translateY(-2px);
}

.ysp-day:hover::before {
    opacity: 1;
}

.ysp-day.is-active {
    color: var(--ysp-white);
    border-color: rgba(79, 186, 112, 0.72);
    background:
        linear-gradient(
            135deg,
            var(--ysp-green),
            var(--ysp-green-dark)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 8px 25px rgba(23, 105, 52, 0.25);
}

.ysp-day.is-active::after {
    content: "";
    position: absolute;
    right: 17px;
    bottom: 5px;
    left: 17px;
    height: 2px;
    border-radius: 99px;
    background: rgba(255,255,255,0.75);
}

/* Animations */

@keyframes yspStatusPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.75;
    }

    75%,
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@keyframes yspHeartPulse {
    0% {
        transform: scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

/* Large tablet */

@media (max-width: 1180px) {
    .ysp-main__inner {
        grid-template-columns: 150px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .ysp-nav {
        gap: 1px;
    }

    .ysp-nav__link {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 11px;
    }

    .ysp-prizes {
        grid-template-columns: 33px auto;
    }

    .ysp-prizes__arrow {
        display: none;
    }

    .ysp-daybar > .ysp-container {
        grid-template-columns: 1fr;
        gap: 5px;
        padding-top: 9px;
        padding-bottom: 10px;
    }

    .ysp-daybar__heading {
        display: none;
    }
}

/* Mobile navigation breakpoint */

@media (max-width: 920px) {
    .ysp-container {
        width: min(100% - 30px, 820px);
    }

    .ysp-topbar__links,
    .ysp-nav {
        display: none;
    }

    .ysp-topbar__inner {
        justify-content: center;
    }

    .ysp-main__inner,
    .ysp-header.is-scrolled .ysp-main__inner {
        min-height: 82px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
    }

    .ysp-logo img,
    .ysp-header.is-scrolled .ysp-logo img {
        height: 66px;
        max-width: 118px;
    }

    .ysp-prizes__copy small {
        display: none;
    }

    .ysp-prizes {
        min-height: 48px;
        grid-template-columns: 30px auto;
        padding: 6px 11px 6px 8px;
        border-radius: 13px;
    }

    .ysp-prizes__icon {
        width: 30px;
        height: 30px;
    }

    .ysp-prizes__copy strong {
        font-size: 11px;
    }

    .ysp-favourite {
        width: 48px;
        height: 48px;
        border-radius: 13px;
    }

    .ysp-menu-button {
        display: flex;
    }

    .ysp-mobile-menu {
        display: block;
    }

    .ysp-daybar > .ysp-container {
        width: 100%;
        padding: 9px 15px 11px;
    }

    .ysp-days {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .ysp-days::-webkit-scrollbar {
        display: none;
    }

    .ysp-day {
        flex: 0 0 102px;
        scroll-snap-align: center;
    }
}

/* Small phones */

@media (max-width: 600px) {
    .ysp-container {
        width: min(100% - 24px, 560px);
    }

    .ysp-topbar {
        min-height: 30px;
    }

    .ysp-topbar__inner {
        min-height: 30px;
    }

    .ysp-status {
        max-width: 100%;
        font-size: 9px;
        letter-spacing: 0.045em;
        text-align: center;
    }

    .ysp-main__inner,
    .ysp-header.is-scrolled .ysp-main__inner {
        min-height: 75px;
        gap: 8px;
    }

    .ysp-logo img,
    .ysp-header.is-scrolled .ysp-logo img {
        height: 59px;
        max-width: 100px;
    }

    .ysp-actions {
        gap: 7px;
    }

    .ysp-prizes {
        width: 46px;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .ysp-prizes__copy {
        display: none;
    }

    .ysp-prizes__icon {
        width: 31px;
        height: 31px;
    }

    .ysp-favourite,
    .ysp-menu-button {
        width: 46px;
        height: 46px;
    }

    .ysp-mobile-menu__actions {
        grid-template-columns: 1fr;
    }

    .ysp-daybar > .ysp-container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .ysp-day {
        flex-basis: 76px;
        min-height: 42px;
    }

    .ysp-day strong {
        display: none;
    }

    .ysp-day span {
        display: block;
        font-size: 10px;
        line-height: 1.2;
        font-weight: 800;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .ysp-header *,
    .ysp-header *::before,
    .ysp-header *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


