:root {
    --brand: #ef3340;
    --brand-dark: #c92531;
    --navy: #263f69;
    --navy-2: #14243e;
    --ink: #172033;
    --muted: #667085;
    --line: #e6eaf0;
    --bg: #f6f8fb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(17, 31, 57, 0.13);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

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

.topbar {
    background: var(--navy-2);
    color: rgba(255,255,255,.88);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(230,234,240,.85);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo img {
    width: 250px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
    font-size: 15px;
}

.main-nav a {
    position: relative;
    padding: 30px 0 26px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 3px;
    background: var(--brand);
    border-radius: 99px;
    transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 13px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 24px rgba(239, 51, 64, .22);
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid #cfd7e4;
    box-shadow: none;
}

.btn-light {
    background: #fff;
    color: var(--navy-2);
    box-shadow: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    font-size: 23px;
    cursor: pointer;
}

.hero-slider {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #0d1626;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,18,34,.86) 0%, rgba(8,18,34,.58) 43%, rgba(8,18,34,.12) 76%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: min(760px, calc(100% - 40px));
    left: max(20px, calc((100% - 1180px) / 2));
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    font-size: 13px;
}

.hero-content .eyebrow {
    color: #ff6d77;
}

.hero-content h1 {
    margin: 12px 0 20px;
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: 1.02;
    letter-spacing: -.045em;
    max-width: 900px;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 28px;
    font-size: 19px;
    color: rgba(255,255,255,.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}

.slider-dot.active {
    width: 28px;
    border-radius: 99px;
    background: var(--brand);
}

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--bg);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2,
.page-hero h1 {
    margin: 8px 0 15px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
    margin: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.feature-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
}

.feature-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.feature-copy h2 {
    font-size: clamp(34px, 3.7vw, 50px);
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 10px 0 18px;
}

.feature-copy p {
    color: var(--muted);
    font-size: 17px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 700;
}

.check-item::before {
    content: "✓";
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(239,51,64,.1);
    color: var(--brand);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(18, 31, 54, .06);
}

.card h3 {
    margin: 10px 0 10px;
    font-size: 22px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: rgba(38,63,105,.08);
    color: var(--navy);
}

.promo-banner {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.promo-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,25,44,.84), rgba(14,25,44,.42));
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.promo-content h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.06;
    margin: 0 0 16px;
}

.page-hero {
    position: relative;
    padding: 120px 0 100px;
    color: #fff;
    overflow: hidden;
    background: var(--navy-2);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(12,22,39,.93), rgba(12,22,39,.55)), var(--hero-bg, none);
    background-size: cover;
    background-position: center;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

.quote-strip {
    padding: 34px 0;
    background: var(--brand);
    color: #fff;
}

.quote-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.quote-strip h3 {
    margin: 0;
    font-size: 26px;
}

.quote-strip p {
    margin: 3px 0 0;
    color: rgba(255,255,255,.85);
}

.form-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 38px;
    align-items: start;
}

.info-panel {
    background: var(--navy-2);
    color: #fff;
    border-radius: var(--radius);
    padding: 34px;
    position: sticky;
    top: 124px;
}

.info-panel h2 {
    margin-top: 0;
}

.info-panel p,
.info-panel a {
    color: rgba(255,255,255,.82);
}

.info-row {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d7dde6;
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    outline: none;
}

textarea {
    min-height: 145px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(38,63,105,.09);
}

.form-note {
    font-size: 13px;
    color: var(--muted);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.legal h2 {
    margin-top: 40px;
}

.legal p,
.legal li {
    color: #4f5d73;
}

.site-footer {
    background: #0d1727;
    color: rgba(255,255,255,.78);
    padding: 66px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .9fr 1fr;
    gap: 42px;
}

.footer-logo {
    width: 250px;
    margin-bottom: 18px;
}

.site-footer h4 {
    color: #fff;
    margin: 0 0 14px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

.cookie-bar {
    position: fixed;
    z-index: 2000;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 1050px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(12,22,39,.24);
    padding: 20px;
    display: none;
    align-items: center;
    gap: 20px;
}

.cookie-bar.show {
    display: flex;
}

.cookie-bar p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    color: var(--muted);
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.notice {
    padding: 14px 16px;
    border-radius: 12px;
    background: #ecfdf3;
    color: #027a48;
    margin-bottom: 20px;
}

.notice.error {
    background: #fff1f2;
    color: #b42318;
}

@media (max-width: 1020px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 14px 20px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .header-actions .btn {
        display: none;
    }

    .two-col,
    .form-wrap {
        grid-template-columns: 1fr;
    }

    .info-panel {
        position: static;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar {
        display: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 210px;
    }

    .main-nav {
        top: 72px;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 610px;
    }

    .hero-slide img {
        object-position: 58% center;
    }

    .hero-slide::after {
        background: linear-gradient(180deg, rgba(8,18,34,.48), rgba(8,18,34,.84) 65%, rgba(8,18,34,.94));
    }

    .hero-content {
        top: auto;
        bottom: 82px;
        transform: none;
        left: 14px;
        width: calc(100% - 28px);
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section {
        padding: 70px 0;
    }

    .cards,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-media,
    .feature-media img {
        min-height: 310px;
    }

    .quote-strip .container,
    .footer-bottom,
    .cookie-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero {
        padding: 86px 0 72px;
    }

    .promo-banner {
        min-height: 500px;
    }

    .form-card {
        padding: 24px 18px;
    }

    .cookie-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-actions,
    .cookie-actions .btn {
        width: 100%;
    }
}

/* ===== September 2026 visual refinements ===== */
.header-inner {
    min-height: 88px;
    gap: 18px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: 238px;
}

.main-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(18px, 1.65vw, 30px);
    font-size: 14px;
    white-space: nowrap;
}

.main-nav a {
    padding: 32px 0 28px;
    white-space: nowrap;
}

.header-actions {
    flex: 0 0 auto;
}

.header-quote-btn {
    min-height: 50px;
    padding: 0 20px 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef3340 0%, #ff5964 100%);
    box-shadow: 0 13px 30px rgba(239, 51, 64, .28), inset 0 1px 0 rgba(255,255,255,.24);
    border: 1px solid rgba(255,255,255,.3);
    letter-spacing: -.01em;
}

.header-quote-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .22s ease;
}

.header-quote-btn:hover {
    background: linear-gradient(135deg, #d72834 0%, #ef3340 100%);
    box-shadow: 0 16px 34px rgba(239, 51, 64, .35);
}

.header-quote-btn:hover svg {
    transform: translateX(3px);
}

.hero-slider,
.hero-slide img {
    min-height: 690px;
}

.hero-slide::after {
    background: linear-gradient(90deg, rgba(7,16,31,.76) 0%, rgba(7,16,31,.45) 35%, rgba(7,16,31,.08) 63%, rgba(7,16,31,.04) 100%);
}

.hero-content {
    top: auto;
    bottom: 82px;
    transform: none;
    width: min(690px, calc(100% - 40px));
    padding: 28px 30px 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(8,18,34,.78), rgba(8,18,34,.48));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 60px rgba(0,0,0,.22);
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: clamp(40px, 4.3vw, 66px);
    max-width: 650px;
    margin: 10px 0 16px;
}

.hero-content p {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: 17px;
}

.slider-dots {
    bottom: 30px;
}

.page-hero {
    min-height: 440px;
    padding: 120px 0 96px;
    display: flex;
    align-items: center;
    background: #0b172a;
}

.page-hero::before {
    background-image:
        linear-gradient(90deg, rgba(8,19,36,.90) 0%, rgba(8,19,36,.72) 45%, rgba(8,19,36,.36) 100%),
        var(--hero-bg, url('../images/Slide001.jpg'));
    background-size: cover;
    background-position: center;
    transform: scale(1.015);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(239,51,64,.23), transparent 28%),
        linear-gradient(180deg, transparent 62%, rgba(8,19,36,.35));
    pointer-events: none;
}

.page-hero .container {
    z-index: 2;
}

.page-hero h1 {
    max-width: 960px;
    text-shadow: 0 4px 24px rgba(0,0,0,.28);
}

.cards {
    align-items: stretch;
}

.card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 34px 28px 30px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    top: -75px;
    right: -60px;
    background: radial-gradient(circle, rgba(239,51,64,.10), transparent 70%);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(239,51,64,.28);
    box-shadow: 0 22px 48px rgba(18,31,54,.11);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, #263f69 0%, #172a49 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(38,63,105,.22), inset 0 1px 0 rgba(255,255,255,.17);
}

.icon-box svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    margin-top: 0;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(239,51,64,.16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(63,94,145,.20), transparent 28%),
        linear-gradient(135deg, #091321 0%, #0f1f36 56%, #142945 100%);
    padding: 82px 0 22px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #ff7580 35%, #486995 70%, transparent);
}

.footer-grid {
    position: relative;
    grid-template-columns: 1.45fr .8fr 1fr;
    gap: 64px;
}

.footer-logo {
    width: 275px;
    margin-bottom: 22px;
}

.site-footer h4 {
    position: relative;
    margin-bottom: 20px;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer h4::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 9px;
    border-radius: 99px;
    background: var(--brand);
}

.footer-links {
    gap: 11px;
}

.footer-links a {
    width: fit-content;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    position: relative;
    margin-top: 54px;
    padding-top: 22px;
    align-items: center;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.developer-credit {
    color: #fff;
    font-weight: 700;
    transition: color .2s ease;
}

.developer-credit:hover {
    color: #ff7b84;
}

@media (min-width: 1440px) {
    .container {
        width: min(1360px, calc(100% - 72px));
    }

    .hero-content {
        left: max(36px, calc((100% - 1360px) / 2));
    }

    .hero-slider,
    .hero-slide img {
        min-height: 760px;
    }
}

@media (min-width: 1800px) {
    .container {
        width: min(1520px, calc(100% - 100px));
    }

    .hero-content {
        left: max(50px, calc((100% - 1520px) / 2));
        bottom: 100px;
        width: 730px;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 840px;
    }

    .hero-content h1 {
        font-size: 68px;
    }
}

@media (max-width: 1180px) {
    .logo img {
        width: 220px;
    }

    .main-nav {
        gap: 15px;
        font-size: 13px;
    }

    .header-quote-btn {
        padding-inline: 16px;
    }
}

@media (max-width: 1020px) {
    .main-nav {
        top: 88px;
        white-space: normal;
    }

    .main-nav a {
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .main-nav {
        top: 72px;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 660px;
    }

    .hero-content {
        bottom: 68px;
        left: 14px;
        width: calc(100% - 28px);
        padding: 21px 20px 22px;
        border-radius: 18px;
        backdrop-filter: blur(3px);
    }

    .hero-content h1 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .page-hero {
        min-height: 360px;
        padding: 82px 0 68px;
    }

    .page-hero::before {
        background-position: 58% center;
    }

    .footer-grid {
        gap: 36px;
    }

    .footer-bottom-right {
        justify-content: flex-start;
    }
}

/* ===== Custom delivery date picker ===== */
.date-picker {
    position: relative;
}

.date-picker-trigger {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid #d7dde6;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.date-picker-trigger:hover {
    border-color: #aab6c7;
}

.date-picker-trigger:focus-visible,
.date-picker.is-open .date-picker-trigger {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(38,63,105,.09);
}

.date-picker-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.date-picker:not(.has-value) .date-picker-value {
    color: #697586;
}

.date-picker-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #f43b4f, #e9273e);
    box-shadow: 0 8px 18px rgba(239,47,67,.22);
}

.date-picker-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.date-picker-popover {
    position: absolute;
    z-index: 40;
    left: 0;
    top: calc(100% + 10px);
    width: min(360px, calc(100vw - 36px));
    padding: 16px;
    border: 1px solid rgba(16,36,66,.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15,31,55,.20);
}

.date-picker-popover[hidden] {
    display: none;
}

.date-picker-header,
.date-picker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.date-picker-header {
    margin-bottom: 12px;
}

.date-picker-month {
    font-weight: 900;
    color: var(--navy-2);
    text-align: center;
    text-transform: capitalize;
}

.date-picker-nav {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 11px;
    background: #f1f4f8;
    color: var(--navy-2);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.date-picker-nav:hover {
    background: #e7ebf2;
}

.date-picker-weekdays,
.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.date-picker-weekdays {
    margin-bottom: 6px;
    color: #7b8797;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.date-picker-weekdays span {
    padding: 5px 0;
}

.date-picker-day {
    aspect-ratio: 1 / 1;
    min-width: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.date-picker-day:hover:not(:disabled) {
    background: #f0f3f8;
}

.date-picker-day.is-today {
    box-shadow: inset 0 0 0 1px rgba(239,47,67,.55);
    color: #df263d;
}

.date-picker-day.is-selected {
    background: linear-gradient(135deg, #f43b4f, #e9273e);
    color: #fff;
    box-shadow: 0 7px 16px rgba(239,47,67,.22);
}

.date-picker-day.is-other-month {
    color: #aeb7c3;
}

.date-picker-day:disabled {
    color: #c8ced7;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: .65;
}

.date-picker-footer {
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid #edf0f4;
}

.date-picker-today,
.date-picker-clear {
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.date-picker-today {
    color: var(--navy);
}

.date-picker-clear {
    color: #d62a40;
}

@media (max-width: 520px) {
    .date-picker-popover {
        width: 100%;
        min-width: 290px;
        padding: 13px;
    }
}
