:root {
    --ez-pal-primary: #2E2226;
    --ez-pal-primary-rgb: 46, 34, 38;
    --ez-pal-secondary: #AA4493;
    --ez-pal-secondary-rgb: 170, 68, 147;
    --ez-pal-neutral-dark: #070708;
    --ez-pal-neutral-dark-rgb: 7, 7, 8;
    --ez-pal-neutral-light: #F8F6F2;
    --ez-pal-neutral-light-rgb: 248, 246, 242;
    --ez-pal-soft-light: #F6EDEB;
    --ez-pal-soft-light-rgb: 246, 237, 235;
    --ez-pal-success: #A8AFAD;
    --ez-pal-success-rgb: 168, 175, 173;
    --ez-pal-warning: #FFC107;
    --ez-pal-warning-rgb: 255, 193, 7;
    --ez-theme-accent-primary: #2E2226;
    --ez-theme-accent-secondary: #AA4493;
    --ez-theme-bg-main: #070708;
    --ez-theme-bg-main-rgb: 7, 7, 8;
    --ez-theme-bg-soft: #070708;
    --ez-theme-bg-soft-rgb: 7, 7, 8;
    --ez-theme-text-main: #F8F6F2;
    --ez-theme-text-muted: rgba(248, 246, 242, 0.76);
    --ez-theme-text-soft: rgba(248, 246, 242, 0.58);
}

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

html,
body {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    color: var(--ez-theme-text-main);
    background:
        radial-gradient(circle at top left, rgba(var(--ez-pal-secondary-rgb), 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(var(--ez-pal-primary-rgb), 0.18), transparent 34%),
        linear-gradient(180deg, rgba(var(--ez-theme-bg-main-rgb), 1), rgba(0, 0, 0, 1));
}

.ez-product-landing {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    padding: clamp(18px, 4vw, 52px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.ez-product-landing-card {
    width: min(1120px, 100%);
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(22px, 4vw, 40px);
    padding: clamp(20px, 4vw, 38px);
    border-radius: clamp(24px, 4vw, 34px);
    background:
        radial-gradient(circle at top left, rgba(var(--ez-pal-secondary-rgb), 0.13), transparent 42%),
        linear-gradient(135deg, rgba(var(--ez-theme-bg-soft-rgb), 0.88), rgba(var(--ez-theme-bg-main-rgb), 0.84));
    border: 1px solid rgba(248, 246, 242, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ez-product-landing-media {
    min-width: 0;
    width: 100%;
    margin: 0;
    border-radius: clamp(18px, 3vw, 28px);
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(var(--ez-pal-primary-rgb), 0.10), transparent 58%),
        rgba(248, 246, 242, 0.045);
    border: 1px solid rgba(248, 246, 242, 0.12);
}

.ez-product-landing-media img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

.ez-product-landing-copy {
    min-width: 0;
    display: grid;
    gap: clamp(10px, 1.8vw, 15px);
}

.ez-product-landing-eyebrow,
.ez-product-landing-type,
.ez-product-landing-price,
.ez-product-landing-spec dt {
    color: var(--ez-pal-secondary);
}

.ez-product-landing-title,
.ez-product-landing-spec dd {
    color: var(--ez-theme-text-main);
}

.ez-product-landing-desc {
    color: var(--ez-theme-text-main);
}

.ez-product-landing-meta {
    color: var(--ez-theme-text-muted);
}

.ez-product-landing-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.ez-product-landing-desc {
    max-width: 64ch;
    line-height: 1.65;
}

.ez-product-landing-price {
    margin: 0;
    font-size: clamp(1.4rem, 4vw, 2.15rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.ez-product-landing-type {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ez-product-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ez-product-landing-actions a {
    min-height: 46px;
    min-width: min(190px, 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
}

.ez-product-landing-actions a:first-child {
    color: #ffffff;
    background: var(--ez-pal-secondary);
    border-color: var(--ez-pal-secondary);
    box-shadow: 0 12px 28px rgba(var(--ez-pal-secondary-rgb), 0.28);
}

.ez-product-landing-actions a[data-variant="ghost"] {
    color: #ffffff;
    border-color: var(--ez-pal-secondary);
    background: rgba(var(--ez-pal-primary-rgb), 0.22);
    box-shadow: inset 0 0 0 1px rgba(var(--ez-pal-secondary-rgb), 0.22);
}

.ez-product-landing-actions a:first-child:hover,
.ez-product-landing-actions a:first-child:focus-visible,
.ez-product-landing-actions a[data-variant="ghost"]:hover,
.ez-product-landing-actions a[data-variant="ghost"]:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-1px);
    outline: none;
}

.ez-product-landing-specs {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.ez-product-landing-spec {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 12px;
    row-gap: 5px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(248, 246, 242, 0.045);
    border: 1px solid rgba(248, 246, 242, 0.12);
}

.ez-product-landing-spec-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ez-pal-neutral-light, #ffffff);
    background: var(--ez-pal-secondary);
    box-shadow: 0 10px 24px rgba(var(--ez-pal-secondary-rgb), 0.24);
    overflow: hidden;
}

.ez-product-landing-spec-icon .material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.ez-product-landing-spec dt {
    display: contents;
    margin: 0;
}

.ez-product-landing-spec-label {
    grid-column: 2;
    color: var(--ez-theme-text-muted);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ez-product-landing-spec dd {
    grid-column: 2;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.34;
    font-weight: 850;
    overflow-wrap: anywhere;
}

@media (max-width: 920px) {
    .ez-product-landing-card {
        grid-template-columns: minmax(240px, 0.84fr) minmax(0, 1.16fr);
        gap: 22px;
    }
}

@media (max-width: 760px) {
    .ez-product-landing {
        min-height: 100svh;
        padding: max(14px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
        align-items: flex-start;
        justify-content: center;
    }

    .ez-product-landing-card {
        width: 100%;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 18px;
        padding: 16px;
        border-radius: 26px;
    }

    .ez-product-landing-media {
        width: min(100%, 430px);
        justify-self: center;
    }

    .ez-product-landing-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ez-product-landing-spec {
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 10px;
        row-gap: 4px;
        padding: 12px;
        border-radius: 20px;
    }

    .ez-product-landing-spec-icon {
        width: 38px;
        height: 38px;
    }

    .ez-product-landing-spec-icon .material-symbols-rounded {
        font-size: 22px;
    }

    .ez-product-landing-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ez-product-landing-actions a {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .ez-product-landing {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ez-product-landing-card {
        padding: 14px;
        border-radius: 22px;
    }

    .ez-product-landing-media {
        border-radius: 18px;
    }

    .ez-product-landing-spec {
        padding: 10px;
        border-radius: 18px;
    }

    .ez-product-landing-spec-label {
        font-size: 0.62rem;
        letter-spacing: 0.10em;
    }

    .ez-product-landing-spec dd {
        font-size: 0.88rem;
    }
}

@media (max-height: 720px) and (min-width: 761px) {
    .ez-product-landing {
        align-items: flex-start;
    }

    .ez-product-landing-card {
        align-items: start;
    }

    .ez-product-landing-media img {
        aspect-ratio: 4 / 3;
    }
}