@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn/Vazirmatn[wght].woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --page: #f7fbff;
    --surface: #ffffff;
    --surface-soft: #eef7ff;
    --surface-tint: #e7f4ff;
    --text: #162744;
    --muted: #64748b;
    --primary: #1597ec;
    --primary-dark: #0b3365;
    --primary-soft: #dff2ff;
    --line: #dbe8f3;
    --amber: #f6b53f;
    --danger: #b42318;
    --radius: 18px;
    --shadow: 0 18px 44px rgb(22 39 68 / 10%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--page);
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    line-height: 1.9;
}

body::selection {
    color: white;
    background: var(--primary);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.55;
}

h1 {
    margin-bottom: 16px;
    font-size: 2.1rem;
}

h2 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.narrow {
    max-width: 780px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.text-link:hover,
.breadcrumb a:hover,
.card-cta:hover {
    color: var(--primary);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary,
.button-small {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 14px 24px rgb(21 151 236 / 22%);
}

.button-primary:hover,
.button-small:hover {
    background: #087fce;
}

.button-secondary,
.button-outline {
    color: var(--primary-dark);
    background: white;
    border-color: var(--primary);
}

.button-secondary:hover,
.button-outline:hover {
    color: white;
    background: var(--primary);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: .88rem;
}

.home-hero {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
    border-bottom: 1px solid var(--line);
}

.hero-layout {
    min-height: 610px;
    display: grid;
    align-items: center;
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero-copy h1 {
    color: var(--primary-dark);
    font-size: 2.3rem;
    font-weight: 900;
}

.hero-copy p {
    max-width: 520px;
    color: #435269;
    font-size: 1rem;
}

.hero-actions {
    display: grid;
    gap: 10px;
    max-width: 320px;
    margin-top: 24px;
}

.hero-actions .button {
    width: 100%;
}

.hero-media {
    position: relative;
    min-height: 340px;
}

.hero-rasa {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

.rasa-intro-card {
    width: min(300px, 92%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin: -26px auto 0;
    background: rgb(255 255 255 / 94%);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgb(22 39 68 / 14%);
}

.rasa-intro-card img {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.rasa-intro-card p {
    margin: 0;
    color: #435269;
    font-size: .82rem;
    line-height: 1.8;
}

.rasa-intro-card strong {
    display: block;
    color: var(--text);
}

.benefits-section {
    position: relative;
    z-index: 3;
    margin-top: -10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.benefit-card {
    min-height: 132px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 22px 12px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.benefit-card:nth-child(odd) {
    border-left: 1px solid var(--line);
}

.benefit-card span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    color: var(--primary);
    place-items: center;
    font-size: 1.35rem;
    font-weight: 900;
}

.benefit-card h2 {
    margin-bottom: 2px;
    font-size: .98rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
}

.section {
    padding-top: 58px;
    padding-bottom: 58px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    text-align: center;
}

.section-title span {
    width: 52px;
    height: 1px;
    background: var(--line);
}

.section-title span::after {
    width: 7px;
    height: 7px;
    display: block;
    margin-top: -3px;
    margin-inline: auto;
    background: var(--primary);
    border-radius: 50%;
    content: '';
}

.section-title h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.35rem;
}

.home-product-grid,
.product-grid,
.services-grid {
    display: grid;
    gap: 18px;
}

.home-product-card,
.product-card,
.service-card,
.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgb(22 39 68 / 6%);
}

.home-product-card {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.product-visual {
    min-height: 132px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background:
        linear-gradient(135deg, #e7f5ff 0%, #ffffff 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.product-visual span {
    width: 68px;
    height: 88px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(180deg, #54bdf6 0%, #0b6dbc 100%);
    border-radius: 8px;
    box-shadow: 0 12px 24px rgb(11 109 188 / 22%);
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.home-product-card h3,
.product-card h2,
.product-card h3 {
    color: var(--primary-dark);
    font-size: 1.16rem;
}

.home-product-card p,
.product-card p,
.service-card p,
.step-card p {
    color: var(--muted);
    font-size: .9rem;
}

.card-cta,
.text-link,
.section-link {
    color: var(--primary);
    font-size: .9rem;
    font-weight: 800;
}

.card-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: 6px;
    padding: 7px 18px;
    color: var(--primary-dark);
    border: 1px solid var(--primary);
    border-radius: 999px;
}

.card-cta:hover {
    color: white;
    background: var(--primary);
}

.order-guide {
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps-grid {
    display: grid;
    gap: 14px;
}

.step-card {
    position: relative;
    min-height: 132px;
    padding: 20px 78px 20px 18px;
}

.step-card > span {
    position: absolute;
    top: 22px;
    right: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 900;
}

.step-card h3 {
    margin-bottom: 4px;
}

.step-card p {
    margin: 0;
}

.rasa-section,
.telegram-section {
    padding: 28px 0;
}

.rasa-panel,
.telegram-panel {
    display: grid;
    gap: 18px;
    align-items: center;
    background: var(--surface-tint);
    border: 1px solid #c8e8ff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(21 151 236 / 8%);
}

.rasa-panel {
    overflow: hidden;
    padding: 24px 22px 0;
}

.rasa-copy p,
.telegram-panel p {
    color: #435269;
}

.rasa-panel img {
    width: min(270px, 74%);
    justify-self: center;
    align-self: end;
}

.rasa-copy .button {
    margin-top: 4px;
}

.telegram-panel {
    padding: 22px;
}

.telegram-mark {
    width: 68px;
    height: 68px;
    display: grid;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    place-items: center;
    font-size: 2rem;
}

.telegram-panel h2 {
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.telegram-panel p {
    margin-bottom: 0;
}

.faq-list {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.faq-list details + details {
    border-top: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 16px 48px 16px 18px;
    color: #26364f;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before {
    position: absolute;
    top: 50%;
    right: 18px;
    color: var(--primary);
    content: '⌄';
    font-size: 1.1rem;
    transform: translateY(-50%);
}

.faq-list details[open] summary::before {
    content: '⌃';
}

.faq-list p {
    margin: -4px 48px 18px 18px;
    color: var(--muted);
    font-size: .9rem;
}

.mobile-sticky-cta {
    position: sticky;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 18;
    min-height: 54px;
    display: grid;
    margin: 0 16px 14px;
    color: white;
    background: var(--primary);
    border-radius: 999px;
    place-items: center;
    box-shadow: 0 14px 28px rgb(21 151 236 / 26%);
    font-weight: 900;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 36px 22px;
    text-align: center;
    background: var(--surface);
    border: 1px dashed #b6ccdf;
    border-radius: var(--radius);
}

.empty-state p {
    margin-bottom: 0;
    color: var(--muted);
}

.page-header {
    padding: 62px 0 48px;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}

.page-header-inner {
    display: grid;
    gap: 24px;
}

.page-header h1 {
    color: var(--primary-dark);
    font-size: 2rem;
}

.page-header p:last-child {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--muted);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 800;
}

.eyebrow span {
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.page-count {
    width: 106px;
    height: 106px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    font: 900 1.8rem Arial, sans-serif;
}

.page-count small {
    display: block;
    font: 400 .66rem Tahoma, sans-serif;
}

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

.product-card {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 24px;
}

.product-card-top,
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-card-top {
    margin-bottom: 28px;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 14px;
    place-items: center;
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.product-label,
.quick-order {
    padding: 4px 11px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
}

.product-label {
    color: var(--muted);
    background: var(--surface-soft);
}

.quick-order {
    color: var(--primary);
    background: var(--primary-soft);
}

.quick-order:hover {
    color: white;
    background: var(--primary);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .78rem;
}

.detail-layout {
    display: grid;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.detail-main {
    min-height: 430px;
    padding: 30px 24px;
}

.detail-main h1 {
    color: var(--primary-dark);
    font-size: 2rem;
}

.product-description {
    max-width: 700px;
    margin: 24px 0 32px;
    color: var(--muted);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.detail-aside {
    padding: 30px 24px;
    color: white;
    background: var(--primary-dark);
}

.aside-title {
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    font-weight: 800;
}

.order-steps {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.order-steps li {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.order-steps li > span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    color: var(--primary-dark);
    background: var(--amber);
    border-radius: 50%;
    place-items: center;
    font-size: .75rem;
    font-weight: 900;
}

.order-steps strong,
.order-steps small {
    display: block;
}

.order-steps small {
    color: rgb(255 255 255 / 68%);
    font-size: .72rem;
}

.form-panel,
.success-panel {
    padding: 28px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

form {
    margin-top: 28px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: .88rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--text);
    background: white;
    border: 1px solid #c7d7e6;
    border-radius: 12px;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #caecff;
    border-color: var(--primary);
}

.field-error,
.errorlist {
    margin: 6px 0 0;
    color: var(--danger);
    font-size: .82rem;
}

.success-panel {
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: grid;
    margin: 0 auto 22px;
    color: white;
    background: var(--primary);
    border-radius: 50%;
    place-items: center;
    font-size: 2rem;
}

@media (min-width: 680px) {
    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .hero-layout {
        grid-template-columns: .92fr 1.08fr;
        min-height: 620px;
        gap: 34px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .hero-copy p {
        font-size: 1.05rem;
    }

    .hero-actions {
        grid-template-columns: 1fr 1fr;
        max-width: 520px;
    }

    .hero-rasa {
        max-height: 520px;
    }

    .rasa-intro-card {
        position: absolute;
        right: 4%;
        bottom: 8%;
        margin: 0;
    }

    .benefits-section {
        margin-top: -32px;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefit-card {
        border-bottom: 0;
        border-left: 1px solid var(--line);
    }

    .benefit-card:last-child {
        border-left: 0;
    }

    .section {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .home-product-grid,
    .product-grid,
    .steps-grid,
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rasa-panel {
        grid-template-columns: 1fr 270px;
        padding: 26px 34px 0;
    }

    .telegram-panel {
        grid-template-columns: 74px 1fr auto;
        padding: 24px 28px;
    }

    .mobile-sticky-cta {
        display: none;
    }

    .page-header-inner {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    }

    .detail-main {
        padding: 54px;
    }

    .detail-aside {
        padding: 44px 32px;
    }
}

@media (min-width: 980px) {
    .hero-layout {
        gap: 54px;
    }

    .hero-copy h1 {
        font-size: 3.45rem;
    }

    .home-product-card {
        grid-template-columns: 150px 1fr;
        align-items: center;
    }
}

@media (max-width: 679px) {
    .home-product-card {
        text-align: center;
    }

    .section-title span {
        width: 34px;
    }

    .telegram-panel .button,
    .rasa-copy .button {
        width: 100%;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Temporary MVP homepage */
.mvp-home {
    color: #102442;
    background: #f6faff;
}

.site-header {
    position: relative;
    z-index: 20;
    background: rgb(255 255 255 / 97%);
    border-bottom: 1px solid #e2edf6;
}

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

.brand img {
    width: min(198px, calc(100vw - 140px));
    height: auto;
    display: block;
}

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

.header-cart-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    color: #0b3365;
    background: #ffffff;
    border: 1px solid #c8e7fa;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.header-cart-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.header-cart-link b {
    min-width: 23px;
    height: 23px;
    display: inline-grid;
    padding-inline: 5px;
    color: #ffffff;
    background: #1597ec;
    border-radius: 999px;
    place-items: center;
    font-size: .72rem;
}

.header-cart-link:hover,
.header-cart-link:focus-visible {
    color: #0878c2;
    background: #eef8ff;
}

.verified-phone a {
    width: fit-content;
    margin-top: 4px;
    color: #0878c2;
    font-size: .78rem;
    font-weight: 700;
}

.verified-phone a:hover,
.verified-phone a:focus-visible {
    text-decoration: underline;
}

.mvp-header-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    color: #0878c2;
    background: #eef8ff;
    border: 1px solid #c8e7fa;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 600;
}

.mvp-header-link:hover,
.mvp-header-link:focus-visible {
    color: #ffffff;
    background: #0878c2;
    border-color: #0878c2;
}

.mvp-home a:focus-visible {
    outline: 3px solid rgb(21 151 236 / 35%);
    outline-offset: 3px;
}

.mvp-hero {
    padding: 22px 0 58px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgb(21 151 236 / 12%), transparent 25rem),
        linear-gradient(180deg, #ffffff 0%, #f3f9fe 100%);
}

.mvp-hero-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce9f3;
    border-radius: 26px;
    box-shadow: 0 26px 70px rgb(15 48 84 / 13%);
}

.mvp-hero-copy {
    z-index: 1;
    padding: 28px 22px 24px;
}

.mvp-eyebrow {
    font-weight: 600;
}

.mvp-eyebrow,
.mvp-section-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: #087bc8;
    font-size: .84rem;
    font-weight: 700;
}

.mvp-eyebrow::before,
.mvp-section-heading > span::before {
    width: 18px;
    height: 3px;
    content: "";
    background: #39aaf0;
    border-radius: 999px;
}

.mvp-hero-copy h1 {
    margin-bottom: 8px;
    color: #0b3365;
    font-size: clamp(2rem, 9vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.045em;
}

.mvp-hero-copy p {
    max-width: 46ch;
    margin-bottom: 8px;
    font-size: .94rem;
    line-height: 2;
}

.mvp-hero-lead {
    margin-bottom: 13px !important;
    color: #27445f;
    font-size: 1rem !important;
    font-weight: 500;
}

.mvp-hero-supporting {
    color: #354e66;
    font-weight: 500;
}

.mvp-primary-action {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 17px;
    padding: 10px 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #1398eb, #0878c2);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgb(18 142 224 / 22%);
    font-size: .94rem;
    font-weight: 600;
    transition: background .2s ease, box-shadow .2s ease;
}

.mvp-primary-action:hover,
.mvp-primary-action:focus-visible {
    background: linear-gradient(135deg, #087fcf, #075f9a);
    box-shadow: 0 14px 30px rgb(8 120 194 / 28%);
}

.mvp-telegram-contact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    padding: 11px 12px;
    color: #0d3a63;
    background: rgb(242 250 255 / 92%);
    border: 1px solid #cce8f8;
    border-radius: 18px;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.mvp-telegram-contact:hover,
.mvp-telegram-contact:focus-visible {
    color: #075f9a;
    background: #e7f6ff;
}

.mvp-telegram-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #229ed9;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgb(34 158 217 / 22%);
}

.mvp-telegram-icon svg {
    width: 22px;
    height: 22px;
    fill: currentcolor;
}

.mvp-telegram-contact strong,
.mvp-telegram-contact small {
    display: block;
}

.mvp-telegram-contact strong {
    font-size: .84rem;
    font-weight: 700;
}

.mvp-telegram-contact small {
    margin-top: 1px;
    color: #667a91;
    font-size: .74rem;
    font-weight: 400;
}

.mvp-contact-arrow {
    color: #168fcf;
    font-size: 1.15rem;
}

.mvp-hero-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
    object-position: 58% center;
}

.mvp-products {
    padding: 68px 0 76px;
    background: #ffffff;
}

.mvp-section-heading {
    max-width: 680px;
    margin-bottom: 30px;
}

.mvp-section-heading h2 {
    margin-bottom: 9px;
    color: #0b2b55;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.mvp-section-heading p {
    margin-bottom: 0;
    color: #65748a;
    font-size: .96rem;
    font-weight: 400;
}

.mvp-product-grid {
    display: grid;
    gap: 18px;
}

.mvp-product-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
    padding: 24px;
    background:
        radial-gradient(circle at 100% 0, rgb(21 151 236 / 10%), transparent 12rem),
        #ffffff;
    border: 1px solid #dce9f3;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgb(19 54 91 / 8%);
}

.mvp-product-card::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, #2aa7ee, transparent);
    border-radius: 999px;
}

.mvp-product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.mvp-product-visual {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    color: #128bd7;
    background: linear-gradient(145deg, #f1faff, #dff3ff);
    border: 1px solid #cbe8f8;
    border-radius: 20px;
}

.mvp-product-visual svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.mvp-product-number {
    min-width: 42px;
    padding: 5px 10px;
    color: #7590a9;
    background: #f3f7fa;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
}

.mvp-product-content h3 {
    margin-bottom: 8px;
    color: #102c52;
    font-size: 1.3rem;
    font-weight: 700;
}

.mvp-product-content h3 a:hover,
.mvp-product-content h3 a:focus-visible {
    color: #087bc8;
}

.mvp-product-content p {
    margin-bottom: 0;
    color: #68778c;
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.9;
}

.mvp-card-action {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 9px 15px;
    color: #0878c2;
    background: #eef8ff;
    border: 1px solid #d3ebfa;
    border-radius: 13px;
    font-size: .9rem;
    font-weight: 600;
}

.mvp-card-action:hover,
.mvp-card-action:focus-visible {
    color: #ffffff;
    background: #087fcf;
    border-color: #087fcf;
}

.mvp-empty-state {
    grid-column: 1 / -1;
    padding: 36px;
    text-align: center;
    background: #f7fbff;
    border: 1px dashed #bcd8ea;
    border-radius: 22px;
}

.mvp-empty-state h3 {
    font-weight: 700;
}

.mvp-empty-state p {
    margin-bottom: 0;
    color: #68778c;
}

.mvp-footer {
    padding: 40px 0;
    color: #dce9f6;
    background:
        radial-gradient(circle at 85% 0, rgb(36 159 224 / 18%), transparent 22rem),
        #0b294c;
}

.mvp-footer-grid {
    display: grid;
    gap: 30px;
    align-items: stretch;
}

.mvp-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mvp-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: linear-gradient(145deg, #ffffff, #f3f9fd);
    border: 1px solid rgb(202 225 240 / 82%);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgb(2 20 39 / 13%);
}

.mvp-footer-logo img {
    width: 168px;
    height: auto;
    display: block;
}

.mvp-footer-brand p {
    max-width: 290px;
    margin: 18px auto 0;
    color: #c7d8e9;
    font-size: .9rem;
    font-weight: 400;
}

.mvp-footer-contact h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.mvp-footer-contact ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvp-footer-contact li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    color: #c7d8e9;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    font-size: .86rem;
}

.mvp-footer-contact li:last-child {
    align-items: start;
    border-bottom: 0;
}

.mvp-contact-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #74c9f7;
    background: rgb(66 174 233 / 10%);
    border: 1px solid rgb(117 202 247 / 16%);
    border-radius: 11px;
}

.mvp-contact-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.mvp-footer-contact li:nth-child(2) .mvp-contact-icon svg {
    fill: currentcolor;
    stroke: none;
}

.mvp-contact-detail {
    min-width: 0;
    display: block;
}

.mvp-contact-detail strong,
.mvp-contact-detail a,
.mvp-contact-detail address {
    display: block;
}

.mvp-contact-detail strong {
    margin-bottom: 2px;
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
}

.mvp-contact-detail a,
.mvp-contact-detail address {
    color: #b9ccdd;
    font-weight: 400;
}

.mvp-footer-contact a:hover,
.mvp-footer-contact a:focus-visible {
    color: #7dd2ff;
}

.mvp-footer-contact address {
    max-width: 470px;
    font-style: normal;
    line-height: 1.85;
}

.mvp-enamad-trust {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-align: center;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(179 211 235 / 30%);
    border-radius: 20px;
}

.enamad-badge {
    width: 104px;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgb(207 227 241 / 88%);
    border-radius: 14px;
    overflow: hidden;
}

.enamad-badge img {
    width: 100%;
    max-width: 88px;
    height: auto;
    display: block;
    object-fit: contain;
}

.mvp-enamad-trust .enamad-badge {
    margin-top: 12px;
}

.mvp-enamad-trust strong,
.mvp-enamad-trust small {
    display: block;
}

.mvp-enamad-trust strong {
    color: #ffffff;
    font-size: .92rem;
    font-weight: 700;
}

.mvp-enamad-trust small {
    margin-top: 4px;
    color: #aabfd2;
    font-size: .76rem;
    font-weight: 400;
}

@media (min-width: 720px) {
    .header-inner {
        min-height: 110px;
    }

    .brand img {
        width: 225px;
    }

    .mvp-hero {
        padding: 32px 0 72px;
    }

    .mvp-hero-copy {
        padding: 38px;
    }

    .mvp-primary-action {
        width: auto;
        padding-inline: 26px;
    }

    .mvp-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .mvp-product-card {
        padding: 26px;
    }

    .mvp-footer-grid {
        grid-template-columns: 1fr;
    }

    .mvp-enamad-trust {
        grid-column: auto;
    }
}

/* Inline product ordering and session cart */
.inline-order-panel {
    margin-top: 30px;
    padding: 24px;
    background:
        radial-gradient(circle at 100% 0, rgb(21 151 236 / 10%), transparent 22rem),
        #ffffff;
    border: 1px solid #d8e8f3;
    border-radius: 26px;
    box-shadow: 0 18px 44px rgb(15 48 84 / 9%);
    scroll-margin-top: 24px;
}

.inline-order-heading {
    max-width: 680px;
}

.inline-order-heading h2 {
    margin-bottom: 8px;
    color: #0b3365;
    font-size: clamp(1.45rem, 5vw, 2rem);
    font-weight: 800;
}

.inline-order-heading > p:last-child {
    margin-bottom: 0;
    color: #53677d;
}

.inline-order-form {
    margin-top: 24px;
}

.inline-order-fields {
    display: grid;
    gap: 16px;
}

.inline-order-fields .form-field {
    margin: 0;
}

.inline-order-fields .form-field small {
    display: block;
    margin-top: 6px;
    color: #66778d;
    font-size: .78rem;
}

.inline-order-fields input,
.inline-order-fields select {
    min-height: 50px;
    background: #fbfdff;
}

.inline-order-fields input[type="file"] {
    padding: 9px;
    cursor: pointer;
}

.form-field-upload {
    padding: 18px;
    background: #f3f9fe;
    border: 1px dashed #9dcbe8;
    border-radius: 16px;
}

.inline-order-submit {
    display: grid;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #e0ebf4;
}

.inline-order-submit p {
    margin: 0;
    color: #53677d;
    font-size: .88rem;
}

.inline-order-submit p strong {
    color: #0b3365;
}

.cart-shell {
    padding-top: 42px;
    padding-bottom: 72px;
}

.cart-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.cart-heading h1 {
    color: #0b3365;
    font-weight: 800;
}

.cart-heading > p:last-child {
    color: #53677d;
}

.cart-items {
    display: grid;
    gap: 18px;
}

.cart-item {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #d8e8f3;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgb(15 48 84 / 8%);
}

.cart-item header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2edf5;
}

.cart-item header span {
    color: #1597ec;
    font-size: .78rem;
    font-weight: 800;
}

.cart-item h2 {
    margin: 2px 0 0;
    color: #0b3365;
    font-size: 1.25rem;
    font-weight: 800;
}

.cart-quantity {
    flex: 0 0 auto;
    padding: 5px 12px;
    color: #087fcf;
    background: #e8f6ff;
    border-radius: 999px;
    font-size: .82rem;
}

.cart-configuration {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.cart-configuration div {
    padding: 11px 12px;
    background: #f6faff;
    border-radius: 12px;
}

.cart-configuration dt {
    color: #718096;
    font-size: .72rem;
}

.cart-configuration dd {
    margin: 0;
    color: #1f405f;
    font-size: .88rem;
    font-weight: 700;
}

.cart-file {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: #eef8ff;
    border: 1px solid #d3eaf8;
    border-radius: 14px;
}

.cart-file > span {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    color: #ffffff;
    background: #1597ec;
    border-radius: 12px;
    place-items: center;
    font-weight: 900;
}

.cart-file small,
.cart-file strong {
    display: block;
}

.cart-file small {
    color: #718096;
    font-size: .72rem;
}

.cart-file strong {
    overflow-wrap: anywhere;
    color: #174163;
    font-size: .86rem;
}

.cart-price {
    margin: 16px 0 0;
    color: #53677d;
    font-size: .84rem;
}

.cart-price strong {
    color: #0b3365;
}

.cart-item-remove-form {
    margin-top: 16px;
    text-align: left;
}

.cart-remove-button,
.cart-clear-button {
    min-height: 40px;
    padding: 7px 14px;
    color: #b42318;
    background: #fff7f6;
    border: 1px solid #f3c7c2;
    border-radius: 999px;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 700;
}

.cart-remove-button:hover,
.cart-remove-button:focus-visible,
.cart-clear-button:hover,
.cart-clear-button:focus-visible {
    color: #ffffff;
    background: #b42318;
    border-color: #b42318;
}

.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    margin-top: 20px;
    color: #ffffff;
    background: #0b3365;
    border-radius: 18px;
}

.cart-summary-total strong {
    font-size: 1.08rem;
}

.cart-clear-form {
    margin-top: 14px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 28px;
}

.cart-actions small {
    color: #718096;
}

.cart-empty {
    background: #ffffff;
    border: 1px solid #d8e8f3;
    border-radius: 22px;
}

@media (min-width: 720px) {
    .inline-order-panel {
        padding: 34px;
    }

    .inline-order-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inline-order-fields .form-field-upload {
        grid-column: 1 / -1;
    }

    .inline-order-submit {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cart-item {
        padding: 28px;
    }

    .cart-configuration {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .header-inner {
        gap: 8px;
    }

    .brand img {
        width: min(145px, calc(100vw - 198px));
        min-width: 92px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-cart-link,
    .mvp-header-link {
        min-height: 40px;
        padding: 6px 9px;
        font-size: .76rem;
    }

    .header-cart-link span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.inline-order-fields [hidden] {
    display: none;
}

.async-upload,
.live-price {
    margin-top: 24px;
    padding: 20px;
    background: #f6faff;
    border: 1px solid #d8e8f3;
    border-radius: 20px;
}

.async-upload-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.async-upload h3,
.live-price h3 {
    margin-bottom: 4px;
    color: #0b3365;
    font-size: 1.08rem;
    font-weight: 800;
}

.async-upload-heading p {
    margin: 0;
    color: #64748b;
    font-size: .8rem;
}

.upload-picker {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    color: #087fcf;
    background: #ffffff;
    border: 1px solid #8dcbed;
    border-radius: 999px;
    cursor: pointer;
    font-size: .86rem;
    font-weight: 700;
}

.upload-picker:hover,
.upload-picker:focus-visible {
    color: #ffffff;
    background: #1597ec;
}

.upload-empty {
    margin: 18px 0 0;
    padding: 14px;
    color: #718096;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #a9cde4;
    border-radius: 14px;
    font-size: .82rem;
}

.upload-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.upload-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dce9f3;
    border-radius: 14px;
}

.upload-status-icon {
    width: 38px;
    height: 38px;
    display: grid;
    color: #ffffff;
    background: #1597ec;
    border-radius: 12px;
    place-items: center;
    font-weight: 900;
}

.upload-item[data-state="complete"] .upload-status-icon {
    background: #169b62;
}

.upload-item[data-state="failed"] .upload-status-icon {
    background: #c13f36;
}

.upload-item-content {
    min-width: 0;
}

.upload-item-content strong,
.upload-item-content span,
.upload-item-content small {
    display: block;
}

.upload-item-content strong {
    overflow-wrap: anywhere;
    color: #173d61;
    font-size: .85rem;
}

.upload-item-content span,
.upload-item-content small {
    color: #64748b;
    font-size: .73rem;
}

.upload-progress {
    height: 6px;
    overflow: hidden;
    margin: 7px 0;
    background: #dcebf5;
    border-radius: 999px;
}

.upload-progress i {
    width: 0;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #1597ec, #59c6f5);
    border-radius: inherit;
    transition: width .2s ease;
}

.upload-item-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
}

.upload-item-actions button,
.otp-resend-form button {
    padding: 5px 10px;
    color: #087fcf;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 700;
}

.live-price-state {
    margin: 12px 0 0;
    color: #64748b;
    font-size: .84rem;
}

.price-breakdown {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
}

.price-breakdown div,
.cart-price-breakdown div,
.review-total div {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.price-breakdown dt,
.cart-price-breakdown dt,
.review-total dt {
    color: #64748b;
    font-size: .82rem;
}

.price-breakdown dd,
.cart-price-breakdown dd,
.review-total dd {
    margin: 0;
    color: #173d61;
    font-size: .86rem;
    font-weight: 700;
}

.price-breakdown .price-total,
.cart-price-breakdown .cart-price-total,
.review-total .review-payable {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #d8e8f3;
}

.payable-total {
    display: block;
    margin-top: 14px;
    padding: 12px 14px;
    color: #ffffff;
    background: #0b3365;
    border-radius: 12px;
    text-align: center;
}

.inline-order-submit [data-form-message] {
    min-height: 1.8em;
    color: #b42318;
}

.button:disabled,
.checkout-submit:disabled {
    cursor: not-allowed;
    opacity: .52;
}

.cart-files {
    display: grid;
    gap: 9px;
}

.cart-price-breakdown {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 16px;
    background: #f6faff;
    border-radius: 14px;
}

.cart-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    padding: 20px;
    place-items: center;
}

.cart-modal[hidden] {
    display: none;
}

.cart-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(6 30 56 / 64%);
    backdrop-filter: blur(5px);
}

.cart-modal-card {
    position: relative;
    width: min(480px, 100%);
    padding: 28px 22px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgb(4 30 57 / 28%);
}

.cart-modal-check {
    width: 58px;
    height: 58px;
    display: grid;
    margin: 0 auto 16px;
    color: #ffffff;
    background: #169b62;
    border-radius: 50%;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.cart-modal-card h2 {
    color: #0b3365;
    font-size: 1.3rem;
    font-weight: 800;
}

.cart-modal-card p {
    color: #64748b;
}

.cart-modal-actions {
    display: grid;
    gap: 10px;
}

.modal-open {
    overflow: hidden;
}

.checkout-shell {
    max-width: 760px;
    padding-top: 42px;
    padding-bottom: 72px;
}

.checkout-progress {
    margin-bottom: 16px;
}

.checkout-progress > span {
    position: relative;
    height: 7px;
    display: block;
    overflow: hidden;
    background: #dcebf5;
    border-radius: 999px;
}

.checkout-progress > span::after {
    width: calc(var(--checkout-progress) * 20%);
    height: 100%;
    display: block;
    content: "";
    background: linear-gradient(90deg, #1597ec, #5cc8f4);
}

.checkout-progress small {
    color: #64748b;
    font-size: .75rem;
}

.checkout-card {
    padding: 26px 22px;
    background: #ffffff;
    border: 1px solid #d8e8f3;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgb(15 48 84 / 9%);
}

.checkout-card h1 {
    color: #0b3365;
    font-size: clamp(1.7rem, 6vw, 2.35rem);
    font-weight: 800;
}

.checkout-description {
    color: #64748b;
}

.verified-phone,
.checkout-reference {
    display: grid;
    gap: 3px;
    margin: 18px 0;
    padding: 15px 17px;
    background: #f0f8ff;
    border: 1px solid #cfe8f8;
    border-radius: 16px;
}

.verified-phone small,
.verified-phone span,
.checkout-reference small {
    color: #64748b;
}

.verified-phone strong,
.checkout-reference strong {
    color: #0b3365;
    font-size: 1.15rem;
}

.checkout-success-card {
    text-align: center;
}

.checkout-success-card .checkout-reference {
    text-align: center;
}

.checkout-trust {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 20px 0 14px;
    padding: 14px 16px;
    color: #45627c;
    background: #f7fbfe;
    border: 1px solid #d6e8f4;
    border-radius: 16px;
}

.checkout-trust-copy strong,
.checkout-trust-copy small {
    display: block;
}

.checkout-trust-copy strong {
    margin-bottom: 4px;
    color: #0b3365;
    font-size: .92rem;
    font-weight: 700;
}

.checkout-trust-copy small {
    line-height: 1.8;
    font-size: .78rem;
    font-weight: 400;
}

.checkout-trust .enamad-badge {
    width: 88px;
}

.checkout-submit {
    width: 100%;
}

.development-otp {
    margin: 18px 0;
    padding: 14px;
    color: #6c4d09;
    background: #fff8e2;
    border: 1px solid #f2d384;
    border-radius: 14px;
}

.development-otp span,
.development-otp small {
    display: block;
}

.otp-resend-form {
    margin-top: 12px;
    text-align: center;
}

.delivery-options {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.delivery-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #f8fbfe;
    border: 1px solid #d8e8f3;
    border-radius: 16px;
    cursor: pointer;
}

.delivery-option:has(input:checked) {
    background: #edf8ff;
    border-color: #1597ec;
}

.delivery-option input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    margin-top: 4px;
}

.delivery-option strong,
.delivery-option small {
    display: block;
}

.delivery-option strong {
    color: #0b3365;
}

.delivery-option small {
    color: #64748b;
}

.review-customer,
.review-items {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.review-customer div,
.review-items article {
    padding: 14px;
    background: #f6faff;
    border-radius: 14px;
}

.review-customer small,
.review-customer strong {
    display: block;
}

.review-customer small {
    color: #64748b;
}

.review-items article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
}

.review-items article span {
    color: #1597ec;
    font-size: .76rem;
}

.review-items article h2 {
    margin: 0;
    color: #0b3365;
    font-size: 1rem;
}

.review-items article > strong {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
}

.review-total {
    display: grid;
    gap: 10px;
    padding: 18px;
    background: #f6faff;
    border-radius: 16px;
}

.review-note {
    color: #64748b;
    font-size: .82rem;
}

.payment-result-card {
    max-width: 760px;
    text-align: center;
}

.payment-result-icon {
    width: 72px;
    height: 72px;
    display: grid;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    place-items: center;
}

.payment-result-icon-success {
    color: #087443;
    background: #e8f8ef;
    border: 1px solid #b9e8cc;
}

.payment-result-icon-failed {
    color: #a13232;
    background: #fff0f0;
    border: 1px solid #f3caca;
}

.payment-result-icon-pending {
    color: #0b67a5;
    background: #edf8ff;
    border: 1px solid #c9e6f8;
}

.payment-site-reference {
    margin-inline: auto;
}

.payment-receipt-reference {
    color: #53677d;
}

.payment-thank-you-copy {
    max-width: 62ch;
    margin-inline: auto;
}

.payment-thank-you-copy p {
    margin: 0 0 6px;
}

.payment-result-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.payment-result-actions form,
.payment-result-actions .button {
    width: 100%;
}

@media (min-width: 720px) {
    .upload-item {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .upload-item-actions {
        grid-column: auto;
    }

    .cart-modal-card,
    .checkout-card {
        padding: 34px;
    }

    .cart-modal-actions {
        grid-template-columns: 1fr 1fr;
    }

    .review-customer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MVP product catalog */
.product-page main {
    background: #f7fbff;
}

.product-list-page .page-header {
    background:
        radial-gradient(circle at 10% 0, rgb(21 151 236 / 12%), transparent 24rem),
        linear-gradient(180deg, #ffffff, #eef8ff);
}

.product-list-page .product-grid {
    gap: 20px;
}

.product-list-page .product-card {
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    background: #ffffff;
    border: 1px solid #dce9f3;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgb(19 54 91 / 8%);
}

.product-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 12%, rgb(255 255 255 / 88%), transparent 12rem),
        linear-gradient(145deg, #eef8ff, #e3f1fa);
    border-bottom: 1px solid #deebf4;
    place-items: center;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    padding: 12px;
    object-fit: contain;
}

.product-image-fallback {
    width: 96px;
    height: 96px;
    display: grid;
    color: #087fcf;
    background: rgb(255 255 255 / 82%);
    border: 1px solid #c9e5f7;
    border-radius: 26px;
    box-shadow: 0 12px 26px rgb(23 105 155 / 10%);
    font-size: 1.1rem;
    font-weight: 800;
    place-items: center;
}

.product-list-page .product-card-top {
    margin: 20px 22px 14px;
}

.product-list-page .product-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: .82rem;
}

.product-card-content {
    padding-inline: 22px;
}

.product-list-page .product-card h2 {
    margin-bottom: 8px;
    color: #0b3365;
    font-size: 1.32rem;
    font-weight: 800;
}

.product-list-page .product-card h2 a:hover,
.product-list-page .product-card h2 a:focus-visible {
    color: #087fcf;
}

.product-list-page .product-card p {
    margin-bottom: 0;
    color: #66778d;
    font-size: .91rem;
    line-height: 1.9;
}

.product-list-page .product-card-footer {
    margin: 20px 22px 0;
    padding: 16px 0 22px;
}

.product-list-page .quick-order {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding-inline: 15px;
    font-weight: 700;
}

.product-detail-page .section.container {
    padding-top: 34px;
    padding-bottom: 70px;
}

.product-detail-page .breadcrumb {
    margin-bottom: 18px;
}

.product-detail-page .detail-layout {
    grid-template-columns: 1fr;
    border-color: #d8e8f3;
    border-radius: 26px;
    box-shadow: 0 22px 54px rgb(15 48 84 / 11%);
}

.product-detail-page .detail-main {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    padding: 24px;
}

.product-detail-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: grid;
    background:
        radial-gradient(circle at 18% 12%, rgb(255 255 255 / 92%), transparent 14rem),
        linear-gradient(145deg, #edf8ff, #deedf7);
    border: 1px solid #d4e7f4;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgb(21 67 106 / 10%);
    place-items: center;
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    display: block;
    padding: 14px;
    border-radius: 20px;
    object-fit: contain;
}

.product-detail-copy {
    min-width: 0;
}

.product-detail-page .detail-main h1 {
    margin-bottom: 10px;
    color: #0b3365;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
}

.product-detail-page .product-description {
    max-width: 54ch;
    margin: 18px 0 28px;
    color: #53677d;
    font-size: .98rem;
    line-height: 2;
}

.product-detail-page .product-description p:last-child {
    margin-bottom: 0;
}

.product-detail-page .detail-actions {
    align-items: center;
}

.product-order-action {
    width: 100%;
    border-radius: 999px;
    font-weight: 700;
}

.product-detail-page .detail-aside {
    background:
        radial-gradient(circle at 100% 0, rgb(41 159 224 / 20%), transparent 16rem),
        #0b3365;
}

@media (min-width: 720px) {
    .product-list-page .product-grid {
        gap: 22px;
    }

    .product-detail-page .detail-main {
        grid-template-columns: minmax(240px, .82fr) minmax(0, 1.18fr);
        gap: 34px;
        padding: 38px;
    }

    .product-order-action {
        width: auto;
    }

    .product-detail-page .detail-aside {
        padding: 30px 38px;
    }

    .product-detail-page .order-steps {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .product-detail-page .order-steps li {
        margin-bottom: 0;
    }
}

@media (min-width: 980px) {
    .product-detail-page .detail-layout {
        grid-template-columns: minmax(0, 1fr) minmax(270px, .34fr);
    }

    .product-detail-page .detail-main {
        gap: 38px;
        padding: 42px;
    }

    .product-detail-page .detail-aside {
        padding: 42px 30px;
    }

    .product-detail-page .order-steps {
        display: block;
    }

    .product-detail-page .order-steps li {
        margin-bottom: 22px;
    }
}

@media (min-width: 980px) {
    .header-inner {
        min-height: 118px;
    }

    .brand img {
        width: 249px;
    }

    .mvp-hero {
        padding: 34px 0 84px;
    }

    .mvp-hero-stage {
        min-height: 600px;
        display: block;
        aspect-ratio: 1200 / 675;
    }

    .mvp-hero-stage::before {
        position: absolute;
        z-index: 1;
        inset: 0;
        content: "";
        pointer-events: none;
        background: linear-gradient(
            to right,
            rgb(255 255 255 / 94%) 0%,
            rgb(249 253 255 / 82%) 30%,
            rgb(240 249 255 / 42%) 48%,
            rgb(255 255 255 / 18%) 60%,
            transparent 72%
        );
    }

    .mvp-hero-image {
        position: absolute;
        z-index: 0;
        inset: 0;
        height: 100%;
        aspect-ratio: auto;
        object-position: center;
    }

    .mvp-hero-copy {
        position: absolute;
        z-index: 2;
        top: 50%;
        inset-inline-end: clamp(38px, 5vw, 72px);
        width: min(45%, 480px);
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: translateY(-50%);
    }

    .mvp-hero-copy h1 {
        font-size: clamp(2.45rem, 3.4vw, 3.25rem);
    }

    .mvp-hero-copy p {
        font-size: .9rem;
        line-height: 1.9;
    }

    .mvp-hero-lead {
        font-size: .96rem !important;
    }

    .mvp-telegram-contact {
        max-width: 420px;
        background: rgb(240 249 255 / 84%);
        border-radius: 999px;
    }

    .mvp-products {
        padding: 86px 0 92px;
    }

    .mvp-footer {
        padding: 50px 0;
    }

    .mvp-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px;
    }

    .mvp-enamad-trust {
        grid-column: auto;
    }
}

@media (max-width: 420px) {
    .checkout-trust {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}
