:root {
    --ink: #131628;
    --muted: #636b7f;
    --paper: #ffffff;
    --edge: #e7e8ec;
    --dark: #060609;
    --accent-teal: #1cc5be;
    --accent-blue: #4f64cf;
    --accent-pink: #e9529c;
    --nav-grad: linear-gradient(90deg, #f48dc0 0%, #ef4f9f 52%, #d83c89 100%);
    --radius-lg: 18px;
    --button-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-detail-page {
    background: #ffffff;
    padding-bottom: 58px;
}

.product-detail-shell {
    padding: 52px 0 30px;
}

.product-detail-breadcrumbs {
    margin-bottom: 20px;
    font-size: 12px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
    gap: 44px;
    align-items: start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    min-width: 0;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 88px));
    gap: 12px;
    justify-content: start;
}

.product-thumb {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    padding: 0;
    border: 2px solid #ead6e2;
    border-radius: 8px;
    overflow: hidden;
    background: #f6edf2;
    cursor: pointer;
}

.product-thumb.is-active,
.product-thumb:focus-visible {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.14);
    outline: none;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-main-media {
    position: relative;
    min-width: 0;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    overflow: hidden;
    background: #f7edf3;
}

.product-main-media > img {
    width: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
}

.product-summary-cards {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.product-summary-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    border: 1px solid #efd8e4;
    border-radius: 12px;
    background:
        linear-gradient(135deg, #fffafd 0%, #ffffff 55%, #fff5fa 100%);
    box-shadow: 0 10px 22px rgba(41, 31, 52, 0.05);
}

.product-summary-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 22px;
}

.product-summary-card__text {
    color: #121832;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.product-detail-description {
    max-width: 560px;
    margin-top: 16px;
    color: #303852;
    font-size: 15px;
    line-height: 1.6;
}

.product-detail-description p {
    margin: 0 0 0.85em;
}

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

.product-description-more {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.85em;
    padding: 0;
    border: 0;
    background: none;
    color: #ec4e9e;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.product-description-more[hidden] {
    display: none !important;
}

.product-description-more:hover,
.product-description-more:focus-visible {
    color: #d13d8b;
}

/*
 * Collapse only when JS adds .is-collapsed. The full description stays in the HTML
 * for search bots; we avoid display:none so crawlers can still read the clipped copy.
 */
.product-detail-description.is-collapsed .product-description-rest {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-detail-description.is-expanded .product-description-rest {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.product-promise-cards {
    max-width: 560px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.product-promise-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #efd8e4;
    border-radius: 12px;
    background:
        linear-gradient(135deg, #fffafd 0%, #ffffff 55%, #fff5fa 100%);
    box-shadow: 0 8px 18px rgba(41, 31, 52, 0.04);
}

.product-promise-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 21px;
}

.product-promise-card__text {
    color: #121832;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.product-transform-slider-host {
    min-width: 0;
    margin: 16px 0 0;
}

.product-transform-slider-host[hidden],
.product-transform-slider[hidden] {
    display: none !important;
}

.product-transform-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #111827;
    user-select: none;
    touch-action: none;
}

.product-transform-slider__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-transform-slider__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--product-transform-position)) 0 0);
}

.product-transform-slider__pet-wrap {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 0.15rem;
    pointer-events: none;
}

.product-transform-slider__pet {
    display: block;
    width: 7.5rem;
    height: 7.5rem;
    flex: 0 0 auto;
    object-fit: cover;
    border: 0.22rem solid #fff;
    border-radius: 0.4rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.24);
}

.product-transform-slider__example-badge {
    display: block;
    width: 9rem;
    max-width: 44%;
    height: auto;
    margin-top: 0.3rem;
    margin-left: -0.5rem;
    flex: 0 0 auto;
    filter: drop-shadow(0 0.35rem 0.7rem rgba(0, 0, 0, 0.28));
}

.product-transform-slider__label {
    position: absolute;
    z-index: 3;
    bottom: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.46);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.product-transform-slider__label--before {
    left: 1rem;
}

.product-transform-slider__label--after {
    right: 1rem;
}

.product-transform-slider__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--product-transform-position);
    z-index: 4;
    width: 0.15rem;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
}

.product-transform-slider__divider::after {
    content: "\2194";
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0.15rem solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #ec4e9e;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
}

.product-transform-slider__range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.gallery-page {
    --gallery-pink: #ec4e9e;
    --gallery-ink: #121832;
    --gallery-muted: #3d455f;
    background:
        radial-gradient(circle at 12% 6%, rgba(236, 78, 158, 0.1), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(236, 78, 158, 0.08), transparent 26%),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 40%, #fff6fa 100%);
    overflow: clip;
}

.gallery-pink {
    color: var(--gallery-pink);
}

.gallery-script {
    font-family: "Caveat", "Outfit", cursive;
    color: var(--gallery-pink);
    font-weight: 700;
}

.gallery-sparkle {
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    margin: 0 0.12em;
    vertical-align: 0.18em;
    background: var(--gallery-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: gallery-twinkle 2.8s ease-in-out infinite;
}

.gallery-sparkle:last-child {
    animation-delay: 0.9s;
}

@keyframes gallery-twinkle {
    0%, 100% { opacity: 0.55; transform: scale(0.85) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.08) rotate(12deg); }
}

.gallery-hero {
    position: relative;
    padding: 76px 0 18px;
    text-align: center;
}

.gallery-hero__inner {
    position: relative;
}

.gallery-hero__deco {
    position: absolute;
    color: var(--gallery-pink);
    opacity: 0.55;
    pointer-events: none;
}

.gallery-hero__deco .material-symbols-outlined {
    font-size: 34px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.gallery-hero__deco--paw {
    top: 8px;
    left: 4%;
    animation: gallery-float 4.5s ease-in-out infinite;
}

.gallery-hero__deco--heart {
    top: 18px;
    right: 5%;
    animation: gallery-float 5.2s ease-in-out infinite reverse;
}

@keyframes gallery-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.gallery-hero__title {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(46px, 7vw, 88px);
    line-height: 0.92;
    letter-spacing: 0.01em;
    color: var(--gallery-ink);
    text-transform: uppercase;
}

.gallery-hero__title .gallery-pink {
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-hero__subtitle {
    margin: 14px 0 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    color: var(--gallery-ink);
}

.gallery-hero__lead {
    max-width: 720px;
    margin: 16px auto 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--gallery-muted);
}

.gallery-hero__hint {
    margin: 14px 0 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.15;
    color: var(--gallery-pink);
}

.gallery-showcase {
    padding: 18px 0 2rem;
}

.gallery-sliders {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.gallery-transform-slider {
    flex: 0 1 350px;
    width: min(350px, 100%);
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(41, 31, 52, 0.12);
}

.gallery-transform-slider .product-transform-slider__pet-wrap {
    top: 0.65rem;
    left: 0.65rem;
}

.gallery-transform-slider .product-transform-slider__pet {
    width: 5.25rem;
    height: 5.25rem;
    border-width: 0.16rem;
}

.gallery-transform-slider .product-transform-slider__example-badge {
    width: 6.25rem;
}

.gallery-characters {
    margin-top: 3.5rem;
    text-align: center;
}

.gallery-characters__title {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--gallery-ink);
}

.gallery-characters__title .gallery-pink {
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-characters__lead {
    max-width: 700px;
    margin: 12px auto 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--gallery-muted);
}

.gallery-characters__grid {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.gallery-character-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.gallery-character-card:hover,
.gallery-character-card:focus-visible {
    transform: translateY(-3px);
    opacity: 0.94;
}

.gallery-character-card img {
    display: block;
    width: 200px;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f3f8;
    box-shadow: 0 10px 24px rgba(41, 31, 52, 0.1);
}

.gallery-character-card__name {
    display: block;
    margin-top: 0.65rem;
    color: #121832;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.gallery-cta {
    padding: 28px 0 72px;
    text-align: center;
}

.gallery-cta__inner h2 {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--gallery-ink);
}

.gallery-cta__inner h2 .gallery-pink {
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-cta__inner > p {
    max-width: 560px;
    margin: 14px auto 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    color: var(--gallery-ink);
}

.gallery-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    min-width: 220px;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 55%, #d73581 100%);
    color: #fff;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(236, 78, 158, 0.32);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-cta__button:hover,
.gallery-cta__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(236, 78, 158, 0.38);
    color: #fff;
}

.gallery-cta__button .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.gallery-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 1rem 0 0;
    text-align: center;
}

.gallery-empty p {
    margin: 0;
    color: #3e4865;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .gallery-hero {
        padding: 36px 0 8px;
    }

    .gallery-hero__deco {
        display: none;
    }

    .gallery-hero__lead {
        font-size: 16px;
    }

    .gallery-showcase {
        padding: 10px 0 2rem;
    }

    .gallery-sliders {
        gap: 1rem;
    }

    .gallery-transform-slider {
        border-radius: 10px;
    }

    .gallery-characters {
        margin-top: 2.5rem;
    }

    .gallery-characters__grid {
        gap: 1rem;
    }

    .gallery-cta {
        padding-bottom: 56px;
    }
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #17203a;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(41, 31, 52, 0.14);
    cursor: pointer;
    z-index: 2;
}

.product-gallery-arrow--prev {
    left: 14px;
}

.product-gallery-arrow--next {
    right: 14px;
}

.product-gallery-arrow .material-symbols-outlined {
    font-size: 24px;
}

.product-zoom-button {
    position: absolute;
    right: 14px;
    bottom: 14px;
    min-height: 38px;
    padding: 0 14px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #17203a;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(41, 31, 52, 0.14);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    z-index: 2;
}

.product-zoom-button .material-symbols-outlined {
    font-size: 20px;
}

.product-zoom-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.product-zoom-overlay[hidden] {
    display: none;
}

.product-zoom-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(18, 24, 50, 0.82);
    cursor: pointer;
}

.product-zoom-dialog {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 100%);
}

.product-zoom-dialog img {
    width: 100%;
    max-height: calc(100vh - 48px);
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.product-zoom-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #17203a;
    background: #ffffff;
    cursor: pointer;
}

body.product-zoom-is-open {
    overflow: hidden;
}

.checkout-page {
    padding-bottom: 54px;
    background:
        radial-gradient(circle at 18% 18%, rgba(236, 78, 158, 0.12), transparent 28%),
        radial-gradient(circle at 82% 42%, rgba(236, 78, 158, 0.1), transparent 24%),
        #fff8fc;
}

.checkout-busy-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(18, 24, 50, 0.42);
    backdrop-filter: blur(2px);
}

.checkout-busy-overlay[hidden] {
    display: none !important;
}

.checkout-busy-card {
    width: min(100%, 320px);
    border-radius: 14px;
    padding: 28px 24px;
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    color: #121832;
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(18, 24, 50, 0.22);
}

.checkout-busy-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(236, 78, 158, 0.22);
    border-top-color: #ec4e9e;
    border-radius: 999px;
    animation: checkout-busy-spin 0.7s linear infinite;
}

.checkout-busy-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

@keyframes checkout-busy-spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-basket-group.is-removing {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.checkout-page--empty-basket {
    min-height: calc(100vh - 220px);
    display: flex;
    flex-direction: column;
}

.basket-empty {
    flex: 1;
    max-width: 720px;
    width: 100%;
    margin: 0 auto 54px;
    display: flex;
    align-items: center;
}

.basket-empty-card {
    width: 100%;
    border: 1px solid #efd8e4;
    border-radius: 12px;
    padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 48px);
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(236, 78, 158, 0.12), transparent 42%),
        #ffffff;
    box-shadow: 0 18px 42px rgba(18, 24, 50, 0.06);
}

.basket-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 36px;
}

.basket-empty-card h2 {
    margin: 8px 0 0;
    color: #121832;
    font-size: clamp(26px, 3.6vw, 34px);
    line-height: 1.1;
}

.basket-empty-card > p {
    max-width: 420px;
    margin: 0;
    color: #536079;
    font-size: 15px;
    line-height: 1.5;
}

.basket-empty-actions {
    margin-top: 12px;
    width: min(100%, 360px);
    display: grid;
    gap: 12px;
}

.basket-empty-actions .address-payment-button {
    width: 100%;
    text-decoration: none;
}

.basket-empty-secondary {
    min-height: 48px;
    border: 1px solid #f1d6e4;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121832;
    background: #fff8fc;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.basket-empty-secondary:hover,
.basket-empty-secondary:focus-visible {
    border-color: #ec4e9e;
    outline: none;
}

.checkout-hero {
    padding: 70px 0 36px;
    text-align: center;
}

.checkout-hero h1 {
    color: #121832;
    font-size: clamp(36px, 4.8vw, 58px);
    line-height: 1;
}

.checkout-hero > p {
    max-width: 540px;
    margin: 12px auto 0;
    color: #5f677c;
    font-size: 14px;
    line-height: 1.35;
}

.checkout-steps {
    position: relative;
    max-width: 650px;
    margin: 28px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.checkout-steps::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #efd8e4;
}

.checkout-steps li {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 7px;
    color: #697188;
    font-size: 12px;
    font-weight: 800;
}

.checkout-steps span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #697188;
    background: #ffffff;
    box-shadow: inset 0 0 0 2px #efd8e4;
}

.checkout-steps .is-active {
    color: #121832;
}

.checkout-steps .is-active span {
    color: #ffffff;
    background: #ec4e9e;
    box-shadow: none;
}

.checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    align-items: start;
    gap: 34px;
}

.checkout-flash {
    margin: 0;
    padding: 18px 22px;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(41, 31, 52, 0.06);
    color: #121832;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.checkout-flash--error {
    color: #b00020;
}

.checkout-flash--success {
    color: #0f766e;
}

.checkout-flash a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

.basket-added-flash-wrap {
    margin-bottom: 1rem;
}

.basket-added-flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid #b7ebc9;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #f3fff7 0%, #ffffff 55%, #eefcf4 100%);
    box-shadow: 0 12px 28px rgba(41, 31, 52, 0.06);
}

.basket-added-flash__main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.basket-added-flash__media {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d7f0e0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-added-flash__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.basket-added-flash__media--empty {
    color: #16a34a;
}

.basket-added-flash__media--empty .material-symbols-outlined {
    font-size: 30px;
}

.basket-added-flash__copy {
    min-width: 0;
}

.basket-added-flash__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 4px;
    color: #15803d;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.basket-added-flash__eyebrow .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
}

.basket-added-flash__title {
    margin: 0;
    color: #121832;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.basket-added-flash__meta,
.basket-added-flash__qty {
    margin: 4px 0 0;
    color: #4a5470;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.basket-added-flash__qty {
    color: #121832;
}

.basket-added-flash__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    color: #ffffff !important;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    white-space: nowrap;
}

.basket-added-flash__button .material-symbols-outlined {
    font-size: 20px;
}

.basket-added-flash__button:hover,
.basket-added-flash__button:focus-visible {
    filter: brightness(1.03);
}

@media (max-width: 720px) {
    .basket-added-flash {
        flex-direction: column;
        align-items: stretch;
    }

    .basket-added-flash__button {
        width: 100%;
    }
}

.checkout-shell > .checkout-flash {
    grid-column: 1 / -1;
}

.address-checkout-form > .checkout-flash {
    margin: 0;
}

.account-panel > .checkout-flash {
    width: 100%;
    margin-top: 18px;
    text-align: left;
}

.checkout-main-column,
.checkout-sidebar {
    min-width: 0;
}

.checkout-main-column,
.checkout-page-flashes {
    display: grid;
    gap: 18px;
}

.checkout-page-flashes {
    margin-bottom: 18px;
}

.checkout-main-column > .basket-added-flash-wrap,
.checkout-page-flashes > .basket-added-flash-wrap {
    margin-bottom: 0;
}

.checkout-section-heading,
.checkout-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.checkout-section-heading {
    margin-bottom: 14px;
}

.checkout-section-heading h2,
.checkout-card-heading h2,
.checkout-shipping-card h2,
.checkout-summary-card h2,
.checkout-payment-card h2 {
    color: #121832;
    font-size: 20px;
    line-height: 1.1;
}

.checkout-section-heading h2 span {
    color: #ec4e9e;
    font-size: 14px;
}

.checkout-section-heading a,
.checkout-card-heading a {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ec4e9e;
    background: transparent;
    text-decoration: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.checkout-section-heading .material-symbols-outlined,
.checkout-card-heading .material-symbols-outlined {
    color: currentColor;
    font-size: 16px;
}

.checkout-basket-list {
    display: grid;
    gap: 18px;
}

.checkout-basket-group,
.checkout-basket-item,
.checkout-basket-note,
.checkout-promo,
.checkout-address-card,
.checkout-dispatch-note,
.checkout-shipping-card,
.checkout-summary-card,
.checkout-payment-card,
.checkout-reassurance {
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(41, 31, 52, 0.06);
}

.checkout-basket-group {
    min-width: 0;
    overflow: hidden;
}

.checkout-basket-group--unavailable {
    border-color: #f0b4c4;
    background: #fff7fb;
    box-shadow: 0 12px 28px rgba(176, 0, 32, 0.06);
}

.checkout-basket-note {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.checkout-basket-note > .material-symbols-outlined {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 22px;
}

.checkout-basket-note p {
    margin: 0;
    color: #4a5470;
    font-size: 13px;
    line-height: 1.45;
}

.checkout-basket-item {
    min-width: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 110px;
    gap: 28px;
    align-items: start;
}

.checkout-basket-group .checkout-basket-item {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.checkout-basket-note--qty {
    margin: 0;
    border: none;
    border-top: 1px solid #f1e0e9;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.checkout-basket-item--unavailable {
    border-color: #f0b4c4;
    background: #fff7fb;
    box-shadow: 0 12px 28px rgba(176, 0, 32, 0.06);
}

.checkout-basket-group--unavailable .checkout-basket-item {
    border: none;
    box-shadow: none;
    background: transparent;
}

.checkout-item-unavailable-note {
    margin: 12px 0 0;
    color: #b00020;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.checkout-item-alt-button,
.checkout-item-remove-primary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ec4e9e;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
}

.checkout-item-alt-button {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #ec4e9e;
    border-radius: 8px;
    background: #ffffff;
}

.checkout-item-remove-primary {
    border: none;
    padding: 0;
}

.checkout-summary-blocked {
    margin: 0 0 14px;
    color: #b00020;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.checkout-estimate-status {
    margin: 12px 0 0;
    color: #4a5470;
    font-size: 13px;
    line-height: 1.45;
}

.checkout-estimate-status--error {
    color: #b00020;
}

.checkout-payment-button--disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    background: #d9d3de;
    color: #ffffff;
    font-weight: 700;
    cursor: not-allowed;
    pointer-events: none;
}

.checkout-item-media {
    position: relative;
    min-width: 0;
}

.checkout-item-media > strong {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    border-radius: 4px;
    padding: 4px 7px;
    color: #ffffff;
    background: #ec4e9e;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.checkout-item-media > img {
    width: 100%;
    aspect-ratio: 6 / 5;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    background: #f8eef4;
}

.checkout-item-media--plain > img {
    object-fit: contain;
}

.checkout-item-details h3 {
    margin: 0;
    color: #121832;
    font-size: 17px;
    line-height: 1.25;
}

.checkout-item-details dl {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.checkout-item-details dl div {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    color: #485168;
    font-size: 14px;
    line-height: 1.45;
}

.checkout-item-details dt {
    color: #71798d;
    font-weight: 500;
}

.checkout-item-details dd {
    margin: 0;
    min-width: 0;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.checkout-upload-label {
    margin-top: 18px;
    color: #ec4e9e;
    font-size: 13px;
    font-weight: 700;
}

.checkout-upload-thumb {
    width: 56px;
    height: 56px;
    margin-top: 5px;
    border-radius: 6px;
    display: block;
    object-fit: cover;
    background: #f8eef4;
}

.checkout-item-actions {
    min-width: 0;
    display: grid;
    align-content: start;
    justify-items: end;
    gap: 13px;
}

.checkout-item-actions > strong {
    color: #ec4e9e;
    font-size: 16px;
}

.checkout-item-controls {
    width: 94px;
    display: grid;
    gap: 10px;
    justify-self: end;
}

.checkout-item-qty-form {
    margin: 0;
}

.checkout-item-links {
    display: grid;
    gap: 10px;
    justify-items: stretch;
}

.checkout-item-links a,
.checkout-item-links button {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #ec4e9e;
    background: transparent;
    text-decoration: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

/* Author display rules above otherwise override the HTML hidden attribute. */
.checkout-item-links [hidden] {
    display: none !important;
}

.checkout-item-links .checkout-item-update-button {
    width: 94px;
    min-height: 38px;
    padding: 0 8px;
    border-radius: 8px;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    text-align: center;
}

.checkout-item-links .checkout-item-update-button:hover {
    filter: brightness(1.03);
}

.checkout-item-links [data-basket-reset] {
    justify-content: center;
    text-align: center;
}

.checkout-item-links .checkout-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    min-width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: currentColor;
    font-size: 16px;
    line-height: 1;
}

.checkout-item-links form {
    margin: 0;
    width: 100%;
}

.checkout-quantity {
    width: 94px;
    min-height: 38px;
    grid-template-columns: 30px 1fr 30px;
    align-items: stretch;
}

.checkout-quantity button,
.checkout-quantity input {
    min-width: 0;
    height: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

.checkout-promo {
    margin-top: 18px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(180px, 330px) 94px;
    align-items: center;
    gap: 12px;
}

.checkout-promo label {
    color: #121832;
    font-size: 13px;
    font-weight: 700;
}

.checkout-promo input {
    width: 100%;
    min-height: 38px;
    border: 1px solid #ead7e2;
    border-radius: 7px;
    padding: 0 13px;
    color: #121832;
    font-family: inherit;
    font-size: 12px;
}

.checkout-promo input:focus,
.checkout-promo input:focus-visible {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.16);
    outline: none;
}

.checkout-promo:focus-within input {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.16);
}

.checkout-promo button,
.checkout-payment-button {
    border: none;
    border-radius: 8px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    text-decoration: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.checkout-payment-button {
    background: var(--ink);
}

.checkout-details-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.checkout-address-card {
    overflow: hidden;
}

.checkout-card-heading {
    padding: 16px 18px 0;
}

.checkout-card-heading h2 {
    font-size: 15px;
}

.checkout-address-body {
    padding: 18px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
}

.checkout-address-body > .material-symbols-outlined,
.checkout-dispatch-note > .material-symbols-outlined:first-child,
.checkout-reassurance > article > .material-symbols-outlined {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
}

.checkout-address-body p,
.checkout-dispatch-note p,
.checkout-reassurance p,
.checkout-payment-card p {
    margin: 0;
}

.checkout-address-body strong,
.checkout-address-body small,
.checkout-dispatch-note strong,
.checkout-dispatch-note small,
.checkout-reassurance strong,
.checkout-reassurance small,
.checkout-payment-card strong,
.checkout-payment-card small {
    display: block;
}

.checkout-address-body strong,
.checkout-dispatch-note strong,
.checkout-reassurance strong,
.checkout-payment-card strong {
    color: #121832;
    font-size: 13px;
    line-height: 1.25;
}

.checkout-address-body strong {
    font-size: 14px;
}

.checkout-address-body small,
.checkout-dispatch-note small,
.checkout-reassurance small,
.checkout-payment-card small,
.checkout-payment-help {
    color: #697188;
    font-size: 12px;
    line-height: 1.32;
}

.checkout-address-body small {
    font-size: 14px;
    line-height: 1.45;
}

.checkout-same-address {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ec4e9e;
    background: #fff6fb;
    font-size: 11px;
    font-weight: 700;
}

.checkout-same-address .material-symbols-outlined {
    color: currentColor;
    font-size: 15px;
}

.checkout-dispatch-note {
    margin-top: 20px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    background: #ffffff;
}

.checkout-dispatch-note > .material-symbols-outlined:last-child {
    align-self: start;
    color: #ec4e9e;
    font-size: 22px;
}

.checkout-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 28px;
}

.checkout-summary-card,
.checkout-shipping-card,
.checkout-payment-card {
    padding: 26px;
}

.checkout-shipping-intro {
    margin: 8px 0 0;
    color: #4a5470;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.checkout-shipping-status {
    margin: 12px 0 0;
    color: #4a5470;
    font-size: 13px;
    line-height: 1.45;
}

.checkout-shipping-status--error {
    color: #b00020;
}

.checkout-shipping-options {
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.checkout-shipping-options[hidden],
.checkout-shipping-status[hidden] {
    display: none !important;
}

.checkout-shipping-option {
    margin: 0;
    border: 1px solid #efd8e4;
    border-radius: 9px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.checkout-shipping-option input {
    margin: 0;
    accent-color: #ec4e9e;
}

.checkout-shipping-option.is-selected {
    border-color: #ec4e9e;
    background: #fff7fb;
    box-shadow: 0 0 0 1px #ec4e9e;
}

.checkout-shipping-option-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.checkout-shipping-option-copy strong {
    color: #121832;
    font-size: 14px;
    font-weight: 700;
}

.checkout-shipping-option-copy small {
    color: #4a5470;
    font-size: 12px;
    line-height: 1.35;
}

.checkout-shipping-option-price {
    color: #121832;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

.checkout-shipping-option-price s {
    color: #8a93a8;
    font-weight: 600;
}

.checkout-summary-card dl {
    margin: 20px 0 0;
    display: grid;
    gap: 13px;
}

.checkout-summary-card dl div,
.checkout-total,
.checkout-security-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Author display rules above otherwise override the HTML hidden attribute. */
.checkout-summary-card dl div[hidden] {
    display: none !important;
}

.checkout-summary-card dt,
.checkout-summary-card dd,
.checkout-total span,
.checkout-security-row,
.checkout-payment-help {
    margin: 0;
    color: #303852;
    font-size: 13px;
}

.checkout-summary-card dd,
.checkout-total strong {
    font-weight: 700;
}

.checkout-discount dt,
.checkout-discount dd {
    color: #ec4e9e;
}

.checkout-promo-form {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #f1e0e9;
}

.checkout-promo-form label {
    display: block;
    margin: 0 0 6px;
    color: #121832;
    font-size: 13px;
    font-weight: 700;
}

.checkout-promo-row {
    display: flex;
    gap: 8px;
}

.checkout-promo-row input {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    border: 1px solid #e4d6df;
    border-radius: 8px;
    padding: 0 12px;
    color: #121832;
    font: inherit;
    text-transform: uppercase;
}

.checkout-promo-row button,
.checkout-promo-applied button {
    flex: 0 0 auto;
    height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 14px;
    background: #121832;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.checkout-promo-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkout-promo-apply[hidden],
.checkout-promo-applied[hidden] {
    display: none !important;
}

.checkout-promo-applied p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #ec4e9e;
    font-size: 13px;
    font-weight: 700;
}

.checkout-promo-applied button {
    background: transparent;
    color: #303852;
    border: 1px solid #e4d6df;
}

.checkout-promo-message {
    margin: 8px 0 0;
    color: #b00020;
    font-size: 13px;
}

.checkout-total {
    margin-top: 24px;
    border-top: 1px solid #f1e0e9;
    padding-top: 22px;
}

.checkout-total span {
    color: #121832;
    font-size: 18px;
    font-weight: 700;
}

.checkout-total strong {
    color: #ec4e9e;
    font-size: 28px;
}

.checkout-total--waiting strong {
    visibility: hidden;
}

.checkout-saving {
    margin-top: 20px;
    border: 1px solid #f6cfe1;
    border-radius: 9px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    color: #ec4e9e;
    background: #fff1f8;
}

.checkout-saving .material-symbols-outlined {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    border: 3px solid currentColor;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

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

.checkout-saving small {
    color: #697188;
}

.checkout-payment-card h2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-payment-card h2 .material-symbols-outlined {
    color: #ec4e9e;
}

.checkout-payment-illustration {
    position: relative;
    min-height: 150px;
    margin-top: 20px;
    border: 1px solid #f1d6e4;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #fff7fb, #fff1f8);
}

.checkout-payment-illustration .material-symbols-outlined:first-child {
    width: 96px;
    height: 60px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f75baa, #e73e94);
    box-shadow: 0 18px 28px rgba(222, 57, 138, 0.24);
    font-size: 42px;
    transform: rotate(-8deg);
}

.checkout-payment-illustration .material-symbols-outlined:last-child {
    position: absolute;
    right: 52px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border: 4px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ec4e9e;
    box-shadow: 0 12px 24px rgba(222, 57, 138, 0.24);
}

.checkout-payment-card p:not(.checkout-payment-help) {
    margin-top: 18px;
    text-align: center;
}

.checkout-payment-methods {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.checkout-payment-methods span {
    min-width: 38px;
    height: 24px;
    border: 1px solid #dfe2ea;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #14203b;
    background: #ffffff;
}

.checkout-payment-methods i {
    font-size: 18px;
}

.checkout-payment-button {
    width: 100%;
    min-height: 50px;
    margin-top: 22px;
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.checkout-payment-button .material-symbols-outlined {
    color: currentColor;
    font-size: 18px;
}

.checkout-payment-help {
    margin-top: 22px;
    text-align: center;
}

.checkout-security-row {
    margin-top: 22px;
    border-top: 1px solid #f1e0e9;
    padding-top: 16px;
    color: #697188;
    font-size: 12px;
}

.checkout-security-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.checkout-reassurance {
    margin-top: 28px!important;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.checkout-reassurance article {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.checkout-reassurance article + article {
    border-left: 1px solid #f1e0e9;
    padding-left: 22px;
}

.address-checkout-hero {
    max-width: 880px;
    padding: 70px 0 36px;
    text-align: center;
}

.address-checkout-hero h1 {
    color: #121832;
    font-size: clamp(34px, 4.8vw, 44px);
    line-height: 1;
}

.address-checkout-hero p {
    margin: 12px auto 0;
    color: #536079;
    font-size: 14px;
    line-height: 1.35;
}

.address-checkout-hero p:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #303852;
}

.address-checkout-hero .material-symbols-outlined {
    color: #697188;
    font-size: 17px;
}

.address-checkout-hero a {
    color: #ec4e9e;
    font-weight: 700;
    text-decoration: none;
}

.address-checkout-form {
    max-width: 880px;
    display: grid;
    gap: 20px;
}

.address-form-card {
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #ffffff;
}

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

.address-form-card-head {
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.address-form-card-head > .material-symbols-outlined {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 25px;
}

.address-form-card-head h2 {
    color: #121832;
    font-size: 22px;
    line-height: 1.1;
}

.address-form-card-head p {
    display: block;
    margin-top: 6px;
    color: #697188;
    font-size: 12px;
    line-height: 1.35;
}

.address-form-grid {
    display: grid;
    gap: 18px 22px;
}

.address-form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.postcode-lookup {
    margin: 0 0 22px;
}

.address-lookup-field {
    display: block;
    margin: 0;
}

.address-lookup-control {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    border: 1px solid #f1d6e4;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    background: #fff8fc;
    overflow: hidden;
}

.address-lookup-control > .material-symbols-outlined {
    justify-self: center;
    color: #ec4e9e;
    font-size: 22px;
}

.address-lookup-control input {
    min-height: 46px;
    margin-top: 0;
    border: none;
    border-radius: 0;
    padding: 0 14px 0 10px;
    background: transparent;
}

.address-lookup-control input:focus,
.address-lookup-control input:focus-visible {
    box-shadow: none;
}

.address-lookup-control:focus-within {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.16);
}

.postcode-lookup-btn {
    min-height: 46px;
    margin: 0;
    border: 0;
    border-left: 1px solid #f1d6e4;
    padding: 0 18px;
    color: #ec4e9e;
    background: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.postcode-lookup-btn:hover,
.postcode-lookup-btn:focus-visible {
    color: #ffffff;
    background: #ec4e9e;
    outline: none;
}

.postcode-lookup-btn:disabled {
    opacity: 0.55;
    cursor: wait;
}

.postcode-lookup-results[hidden] {
    display: none !important;
}

.postcode-lookup-status {
    min-height: 0;
    margin: 10px 0 0;
    color: #697188;
    font-size: 12px;
    line-height: 1.35;
}

.postcode-lookup-status:empty {
    display: none;
}

.address-field-wide {
    grid-column: 1 / -1;
}

.address-checkout-form label {
    min-width: 0;
    color: #121832;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

.address-checkout-form .address-lookup-field {
    display: block;
}

.address-checkout-form label span[aria-hidden="true"] {
    color: #ec4e9e;
}

.address-checkout-form label small {
    color: #697188;
    font-size: 11px;
    font-weight: 500;
}

.address-checkout-form input,
.address-checkout-form select,
.address-checkout-form textarea,
.address-checkout-form .postcode-lookup-results {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    border: 1px solid #dfe3ea;
    border-radius: 7px;
    padding: 0 14px;
    color: #121832;
    background: #ffffff;
    font-family: inherit;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
}

.address-checkout-form .address-form-grid label > input,
.address-checkout-form .address-form-grid label > select {
    margin-top: 10px;
}

.address-checkout-form .address-lookup-control {
    margin-top: 10px;
}

.address-checkout-form .postcode-lookup-results {
    margin-top: 10px;
}

.address-checkout-form select,
.address-checkout-form .postcode-lookup-results {
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23697188' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.address-checkout-form input:focus,
.address-checkout-form select:focus,
.address-checkout-form .postcode-lookup-results:focus,
.address-checkout-form input:focus-visible,
.address-checkout-form select:focus-visible,
.address-checkout-form .postcode-lookup-results:focus-visible {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.16);
    outline: none;
}

.address-checkout-form .address-lookup-control input {
    height: 100%;
    min-height: 46px;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    padding: 0 14px 0 10px;
    background: transparent;
    box-shadow: none;
}

.address-checkout-form .address-lookup-control input:focus,
.address-checkout-form .address-lookup-control input:focus-visible {
    border: 0;
    box-shadow: none;
    outline: none;
}

.pac-container {
    z-index: 10000;
    border: 1px solid #f1d6e4;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(18, 24, 50, 0.14);
    font-family: 'Outfit', Arial, sans-serif;
    overflow: hidden;
}

.pac-item {
    min-height: 42px;
    padding: 8px 12px;
    border-top: 1px solid #f7e6ef;
    color: #697188;
    font-size: 12px;
    cursor: pointer;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background: #fff8fc;
}

.pac-item-query {
    color: #121832;
    font-size: 13px;
    font-weight: 700;
}

.address-phone-field {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
}

.address-phone-field select,
.address-phone-field input {
    margin-top: 8px;
}

.address-billing-card {
    overflow: hidden;
}

.address-toggle-row {
    min-width: 0;
    margin: -4px 0 22px;
    border: 1px solid #f1d6e4;
    border-radius: 9px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: #121832;
    background: #fff8fc;
    cursor: pointer;
}

.address-toggle-row input {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.address-toggle-ui {
    position: relative;
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: #dfe3ea;
    box-shadow: inset 0 0 0 1px rgba(18, 24, 50, 0.08);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.address-toggle-ui::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(18, 24, 50, 0.18);
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.address-toggle-row input:checked + .address-toggle-ui {
    background: #ec4e9e;
    box-shadow: inset 0 0 0 1px rgba(236, 78, 158, 0.18);
}

.address-toggle-row input:checked + .address-toggle-ui::after {
    transform: translate(20px, -50%);
}

.address-toggle-row input:focus-visible + .address-toggle-ui {
    box-shadow: 0 0 0 3px rgba(236, 78, 158, 0.18);
}

.address-toggle-row strong,
.address-toggle-row small {
    display: block;
}

.address-toggle-row strong {
    font-size: 13px;
    line-height: 1.2;
}

.address-toggle-row small {
    margin-top: 4px;
    color: #697188;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.address-payment-button {
    width: 100%;
    min-height: 54px;
    border: 1px solid #ec4e9e;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(236, 78, 158, 0.18);
}

.address-payment-button:disabled,
.address-payment-button[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.address-payment-button.is-ready {
    opacity: 1;
    cursor: pointer;
    filter: none;
}

.address-payment-button .material-symbols-outlined {
    flex: 0 0 auto;
    color: currentColor;
    font-size: 20px;
}

.address-form-card > .address-payment-button,
.address-form-card > p > .address-payment-button {
    margin-top: 8px;
}

.address-checkout-form input[readonly] {
    color: #536079;
    background: #f7f8fb;
}

.address-checkout-form label > small a {
    color: #ec4e9e;
    font-weight: 600;
    text-decoration: none;
}

.checkout-email-account {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #f1d6e4;
}

.checkout-email-account-note {
    margin: 0 0 18px;
    color: #536079;
    font-size: 14px;
    line-height: 1.45;
}

.checkout-email-links {
    margin: 12px 0 0;
    color: #536079;
    font-size: 13px;
}

.checkout-email-links a {
    color: #ec4e9e;
    font-weight: 600;
    text-decoration: none;
}

.checkout-email-actions {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.checkout-email-actions .address-payment-button,
.account-exists-panel .address-payment-button {
    width: 100%;
}

.account-exists-panel .address-form-card-head {
    margin-bottom: 22px;
}

.checkout-guest-button {
    min-height: 52px;
    border: 1px solid #f1d6e4;
    border-radius: 8px;
    color: #121832;
    background: #fff8fc;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-guest-button:hover,
.checkout-guest-button:focus-visible {
    border-color: #ec4e9e;
    outline: none;
}

.checkout-success-meta {
    margin: 0 0 10px;
    color: #121832;
    font-size: 15px;
}

.checkout-success-copy {
    margin: 18px 0 22px;
    color: #536079;
    font-size: 14px;
    line-height: 1.45;
}

.checkout-success-submit {
    margin-top: 22px;
    width: 100%;
}

.address-checkout-form .account-recaptcha {
    display: flex;
    justify-content: flex-start;
}

.wrapper.address-checkout-reassurance {
    margin-top: 34px;
    margin-bottom: 54px;
}

.product-purchase {
    min-width: 0;
}

.product-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 4px;
    color: #ffffff;
    background: #ec4e9e;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.product-purchase h1 {
    margin-top: 10px;
    color: #121832;
    font-size: 34px;
    line-height: 1.05;
}

.product-detail-rating {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #ff2f91;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.product-detail-rating a {
    color: #313a56;
    text-decoration: none;
}

.product-detail-intro {
    max-width: 560px;
    margin-top: 16px;
    color: #333c56;
    font-size: 15px;
    line-height: 1.5;
}

.product-availability-countries {
    max-width: 560px;
    margin-top: 12px;
    color: #4a5470;
    font-size: 13px;
    line-height: 1.45;
}

.product-delivery-country-form {
    margin-top: 16px;
    display: grid;
    gap: 8px;
    max-width: 320px;
}

.product-delivery-country-form label {
    color: #111832;
    font-size: 13px;
    font-weight: 700;
}

.product-delivery-country-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #efd8e4;
    border-radius: 8px;
    padding: 0 12px;
    color: #121832;
    background: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
}

.product-unavailable-message {
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #fff7fb;
    color: #b00020;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.product-detail-price {
    margin-top: 16px;
    color: #ec4e9e;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.product-purchase-form {
    margin-top: 0;
}

.product-option-group {
    margin: 18px 0 0;
    padding: 0;
    border: 0;
}

.product-option-group[data-pdp-species-group] .pill-options {
    max-width: 280px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-option-group legend {
    margin-bottom: 10px;
    color: #111832;
    font-size: 13px;
}

.theme-picker {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.theme-option {
    min-width: 0;
    cursor: pointer;
    transition: opacity 0.18s ease;
}

.theme-picker:has(.is-selected) .theme-option:not(.is-selected):not([hidden]) {
    opacity: 0.4;
}

.theme-picker:has(.is-selected) .theme-option:not(.is-selected):not([hidden]):hover {
    opacity: 0.75;
}

.theme-option input,
.pill-options input,
.product-upload-zone input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.theme-option img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    border: 2px solid #ead6e2;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    background: #f6edf2;
}

.theme-option span {
    display: block;
    margin-top: 7px;
    color: #2f3750;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.theme-option.is-selected img,
.theme-option:focus-within img {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.14);
}

.character-picker-row {
    display: grid;
    gap: 12px;
}

[data-pdp-character-group].is-collapsed {
    scroll-margin-top: 96px;
}

[data-pdp-character-group].is-collapsed .character-picker-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    scroll-margin-top: 96px;
}

[data-pdp-character-group].is-collapsed .theme-picker {
    grid-template-columns: minmax(0, 120px);
    justify-content: start;
    flex: 0 0 auto;
    width: 120px;
}

.character-change-button {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #ead7e2;
    border-radius: 6px;
    color: #2b334d;
    background: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
}

[data-pdp-character-group].is-collapsed .character-change-button {
    border-color: #ec4e9e;
    color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.1);
}

.character-change-button:hover,
.character-change-button:focus-visible {
    border-color: #ec4e9e;
    color: #ec4e9e;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.1);
    outline: none;
}

.character-change-button[hidden] {
    display: none;
}

.pill-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

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

.pill-options label {
    min-width: 0;
    min-height: 38px;
    border: 1px solid #ec4e9e;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #ffffff;
    background: #ec4e9e;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.pill-options:has(.is-selected) label:not(.is-selected) {
    opacity: 0.45;
}

.pill-options:has(.is-selected) label:not(.is-selected):hover {
    opacity: 0.8;
}

.pill-options label.is-selected,
.pill-options label:focus-within {
    border-color: #d93f8d;
    color: #ffffff;
    background: #d93f8d;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.22);
}

.template-picker.template-picker--with-mockups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.template-picker.template-picker--with-mockups .template-option {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 8px;
    padding: 8px;
    text-align: center;
    color: #2b334d;
    background: #ffffff;
    border-color: #ead7e2;
    box-shadow: none;
}

.template-picker.template-picker--with-mockups .template-option.is-selected,
.template-picker.template-picker--with-mockups .template-option:focus-within {
    border-color: #ec4e9e;
    color: #ec4e9e;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.1);
}

.template-picker.template-picker--with-mockups .template-option-media {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 1000;
    overflow: hidden;
    border-radius: 6px;
    background: #f6edf2;
}

.template-picker.template-picker--with-mockups .template-option-media[hidden] {
    display: none;
}

.template-picker.template-picker--with-mockups .template-option-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-picker.template-picker--with-mockups .template-option-label {
    display: block;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

.product-upload-zone {
    min-height: 122px;
    border: 1px dashed #ec4e9e;
    border-radius: 8px;
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 18px;
    color: #ec4e9e;
    background: #fff8fc;
    text-align: center;
    cursor: pointer;
}

.product-upload-zone .material-symbols-outlined {
    font-size: 34px;
}

.product-upload-zone strong {
    font-size: 13px;
    line-height: 1.25;
}

.product-upload-zone small {
    color: #5d667e;
    font-size: 12px;
    line-height: 1.35;
}

.product-photo-note {
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #ead7e2;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff9fc 0%, #ffffff 100%);
    color: #2f3750;
}

.product-photo-note .material-symbols-outlined {
    flex: 0 0 auto;
    color: #ec4e9e;
    font-size: 22px;
    line-height: 1;
    margin-top: 1px;
}

.product-photo-note p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.product-buy-row {
    margin-top: 0;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
}

.product-add-block {
    margin-top: 14px;
    margin-bottom: 18px;
    display: grid;
    gap: 10px;
}

.product-add-block[hidden] {
    display: none;
}

.product-buy-block {
    margin-top: 14px;
    margin-bottom: 28px;
    display: grid;
    gap: 10px;
}

.product-buy-block[hidden] {
    display: none;
}

.product-add-requirements {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid #f0d3e1;
    border-radius: 8px;
    background: #fff7fb;
    color: #5c3348;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.product-add-requirements[hidden] {
    display: none;
}

.product-add-block .product-buy-row,
.product-buy-block .product-buy-row {
    margin-top: 0;
}

.product-selection-mockup {
    margin: 14px 0 0;
    padding: 0;
    border: 1px solid rgba(48, 56, 82, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-selection-mockup[hidden] {
    display: none;
}

.product-selection-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

.product-selection-mockup figcaption {
    padding: 0.75rem 1rem;
    color: #303852;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.quantity-stepper {
    min-height: 48px;
    border: 1px solid #ead7e2;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    overflow: hidden;
    background: #ffffff;
}

.quantity-stepper button,
.quantity-stepper input {
    border: 0;
    background: transparent;
    color: #17203a;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.quantity-stepper button {
    cursor: pointer;
}

.quantity-stepper input {
    width: 100%;
    appearance: textfield;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-create-button {
    min-height: 48px;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #ed4298 56%, #df2f87 100%);
    box-shadow: 0 14px 28px rgba(222, 57, 138, 0.26);
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.product-create-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    filter: grayscale(0.15);
}

.product-create-button.is-loading,
.product-create-button.is-loading:disabled {
    opacity: 1;
    cursor: wait;
    box-shadow: 0 14px 28px rgba(222, 57, 138, 0.26);
    filter: none;
    pointer-events: none;
}

.product-create-button__spinner {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: product-create-spin 0.7s linear infinite;
}

@keyframes product-create-spin {
    to {
        transform: rotate(360deg);
    }
}

.product-mini-promises {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-mini-promises p {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 8px;
    color: #303852;
    font-size: 12px;
    line-height: 1.2;
}

.product-mini-promises .material-symbols-outlined {
    grid-row: span 2;
    color: #6f7688;
    font-size: 22px;
}

.product-mini-promises strong,
.product-mini-promises small {
    display: block;
}

.product-mini-promises small {
    color: #697188;
}

.product-info-strip,
.product-review-strip {
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(41, 31, 52, 0.06);
}

.product-info-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wrapper.product-info-strip {
    margin-top: 34px;
}

.product-info-strip article {
    min-width: 0;
    min-height: 116px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.product-info-strip article + article {
    border-left: 1px solid #f1e0e9;
}

.product-info-strip .material-symbols-outlined {
    grid-row: 1 / span 3;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
}

.product-info-strip h2,
.product-info-strip p,
.product-info-strip a {
    grid-column: 2;
}

.product-info-strip h2,
.product-review-strip h2,
.related-products h2,
.product-detail-copy h2 {
    color: #121832;
    font-size: 17px;
    line-height: 1.15;
}

.product-info-strip p {
    margin-top: 8px;
    color: #4c556d;
    font-size: 12px;
    line-height: 1.35;
}

.product-info-strip a,
.product-review-summary a {
    display: inline-flex;
    margin-top: 10px;
    color: #ec4e9e;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.product-review-strip {
    position: relative;
    margin-top: 22px;
    display: grid;
    grid-template-columns: 250px repeat(3, minmax(0, 1fr));
}

.wrapper.product-review-strip {
    margin-top: 28px;
}

.product-review-summary,
.product-review-strip article {
    min-width: 0;
    padding: 20px 24px;
}

.product-review-strip article + article,
.product-review-strip article:first-of-type {
    border-left: 1px solid #f1e0e9;
}

.product-review-strip article > div {
    color: #ff2f91;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-review-strip article p,
.product-review-summary p {
    margin-top: 10px;
    color: #303852;
    font-size: 13px;
    line-height: 1.42;
}

.product-review-strip article strong,
.product-review-strip article small {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
}

.product-review-strip article small {
    margin-left: 8px;
    color: #798095;
}

.related-products {
    margin-top: 28px;
}

.wrapper.related-products {
    margin-top: 34px;
}

.related-product-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.related-product-card {
    position: relative;
    min-width: 0;
    border: 1px solid #efd8e4;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transform-origin: center center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.related-product-card img {
    width: 100%;
    aspect-ratio: 1200 / 1000;
    display: block;
    object-fit: cover;
    background: #f7edf3;
}

.related-product-card button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #ffffff;
    cursor: pointer;
}

.related-product-card h3 {
    padding: 12px 12px 0;
    color: #121832;
    font-size: 14px;
    line-height: 1.2;
}

.related-product-card strong {
    display: block;
    padding: 7px 12px 14px;
    color: #ec4e9e;
    font-size: 12px;
}

.product-detail-copy {
    margin-top: 30px;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 310px;
    align-items: start;
    gap: 44px;
}

.wrapper.product-detail-copy {
    margin-top: 36px;
    margin-bottom: 0;
}

.product-detail-copy nav {
    border: 1px solid #efd8e4;
    border-radius: 8px;
    background: #fff8fc;
    overflow: hidden;
}

.product-detail-copy nav a {
    display: block;
    padding: 13px 16px;
    color: #333c56;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.product-detail-copy nav a.is-active {
    color: #ec4e9e;
    background: #ffffff;
}

.product-detail-copy p {
    margin-top: 14px;
    color: #303852;
    font-size: 15px;
    line-height: 1.55;
}

.product-detail-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.product-detail-copy li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    color: #303852;
    font-size: 14px;
    font-weight: 700;
}

.product-detail-copy li .material-symbols-outlined {
    color: #ec4e9e;
}

.category-hero {
    position: relative;
    padding: 72px 0 46px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 246, 251, 0.92) 47%, rgba(255, 213, 232, 0.76) 100%),
        url("../images/_heroimages/hero-bg-pattern-4.webp") center / cover no-repeat;
    overflow: hidden;
}

.category-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: #f2dce7;
}

.category-hero-inner {
    min-height: 318px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    align-items: center;
    gap: 44px;
}

.category-hero-copy {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #5c647a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.breadcrumbs a {
    color: #4d5570;
    text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: #ec4e9e;
    outline: none;
}

.breadcrumbs .material-symbols-outlined {
    color: #ec4e9e;
    font-size: 16px;
}

.category-hero h1 {
    margin-top: 16px;
    color: #121832;
    font-size: 62px;
    line-height: 0.98;
    letter-spacing: 0;
}

.category-hero h1 span {
    display: inline-block;
    margin-left: 8px;
    color: #ec4e9e;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 78px;
    font-weight: 700;
    line-height: 0.82;
    transform: rotate(-4deg);
    transform-origin: left center;
    letter-spacing: -0.05em;
}

.category-hero-copy > p {
    max-width: 680px;
    margin-top: 16px;
    color: #2e3650;
    font-size: 17px;
    line-height: 1.48;
}

.category-promise-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.category-promise-list p {
    min-width: 0;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
    color: #17203a;
    font-size: 13px;
    line-height: 1.12;
}

.category-promise-list .material-symbols-outlined {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff2f9;
    box-shadow: 0 8px 18px rgba(222, 57, 138, 0.16);
}

.category-promise-list strong,
.category-promise-list small {
    display: block;
    min-width: 0;
}

.category-promise-list small {
    margin-top: 3px;
    color: #5a6278;
    font-size: 12px;
}

.category-hero-media {
    position: relative;
    min-height: 300px;
    align-self: stretch;
}

.category-hero-main {
    position: absolute;
    right: 46px;
    bottom: -8px;
    width: min(360px, 76%);
    height: 275px;
    border: 5px solid #f359a5;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(48, 28, 46, 0.22);
}

.category-hero--character .category-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
}

.category-hero--character .category-hero-media {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.category-hero--character .category-hero-main {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
}

.character-hero-intro {
    max-width: 680px;
    margin-top: 16px;
    color: #2e3650;
    font-size: 17px;
    line-height: 1.48;
}

.character-about {
    display: none;
}

.category-hero-product {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(190px, 42%);
    aspect-ratio: 1 / 1;
    border: 6px solid #ffffff;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(48, 28, 46, 0.2);
}

.category-products {
    padding: 16px 0 42px;
    background: #fff8fc;
}

.category-search {
    position: relative;
    z-index: 2;
    min-height: 58px;
    margin-top: -6px;
    padding: 8px;
    border: 1px solid #ead7e2;
    border-radius: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(41, 31, 52, 0.1);
}

.category-search-field {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    color: #6f7587;
}

.category-search-field .material-symbols-outlined {
    justify-self: center;
    color: #25304a;
}

.category-search input {
    min-width: 0;
    width: 100%;
    height: 42px;
    border: none;
    color: #18203a;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.category-search input::placeholder {
    color: #838ba0;
}

.category-search button,
.clear-filter-button {
    border: none;
    border-radius: 7px;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #ed4298 56%, #df2f87 100%);
    box-shadow: 0 10px 20px rgba(222, 57, 138, 0.22);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
}

.category-search button {
    min-width: 110px;
    min-height: 42px;
    padding: 0 22px;
}

.theme-listing-filters {
    position: relative;
    z-index: 2;
    margin-top: -6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.theme-listing-filter {
    padding: 14px 16px 16px;
    border: 1px solid #ead7e2;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
}

.theme-listing-filter-label {
    margin: 0;
    width: 100%;
    color: #17203a;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.theme-listing-filter .theme-listing-species-filter,
.theme-listing-filter .theme-listing-theme-filter {
    margin: 0;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.theme-listing-species-filter .product-tab {
    min-width: 92px;
}

.theme-listing-theme-filter .product-tab {
    min-width: 0;
}

.theme-listing-empty {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    text-align: center;
}

.theme-listing-empty[hidden],
.theme-listing-grid .theme-card[hidden],
.product-card[hidden],
.product-image[hidden],
.product-image-toggle[hidden] {
    display: none !important;
}

.theme-listing-grid {
    margin-top: 18px;
}

.mobile-filter-toggle-button {
    display: none;
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 18px;
    border: 1px solid #ec4e9e;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #ed4298 56%, #df2f87 100%);
    box-shadow: 0 10px 20px rgba(222, 57, 138, 0.18);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.mobile-filter-toggle-button .material-symbols-outlined {
    color: currentColor;
    font-size: 20px;
}

.mobile-filter-close-button {
    display: none;
}

.category-layout {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 242px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.filter-panel {
    position: sticky;
    top: 92px;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(41, 31, 52, 0.08);
    overflow: hidden;
    user-select: none;
}

.filter-panel-head {
    min-height: 52px;
    padding: 0 16px;
    border-bottom: 1px solid #f1e0e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.filter-panel-head h2 {
    color: #17203a;
    font-size: 15px;
    line-height: 1;
}

.filter-panel-head a {
    color: #ec4e9e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.filter-group {
    padding: 16px 16px 14px;
    border-bottom: 1px solid #f1e0e9;
}

.filter-group h3 {
    margin-bottom: 12px;
}

.filter-group h3 button {
    width: 100%;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #17203a;
    background: transparent;
    text-align: left;
    text-transform: uppercase;
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.filter-group h3 button:focus-visible {
    color: #ec4e9e;
    outline: none;
}

.filter-group h3 button::after {
    content: "expand_less";
    color: #667086;
    font-family: "Material Symbols Outlined";
    font-size: 16px;
    line-height: 1;
    transition: transform 180ms ease;
}

.filter-group.is-collapsed h3 button::after {
    transform: rotate(180deg);
}

.filter-group.is-collapsed .filter-group-body {
    display: none;
}

.filter-group-body {
    display: block;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    color: #3f4862;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.filter-group label + label {
    margin-top: 6px;
}

.filter-group input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #ec4e9e;
}

.filter-group label span {
    color: #737b8f;
}

.price-current {
    margin-bottom: 8px;
    justify-content: space-between;
    color: #17203a;
}

.price-current output {
    color: #ec4e9e;
    font-weight: 900;
}

.price-range-input {
    --price-range-percent: 100%;
    width: 100%;
    height: 26px;
    margin: 0;
    display: block;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.price-range-input:focus-visible {
    outline: none;
}

.price-range-input::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ec4e9e 0 var(--price-range-percent), #ffe1f0 var(--price-range-percent) 100%);
}

.price-range-input::-moz-range-track {
    height: 5px;
    border-radius: 999px;
    background: #ffe1f0;
}

.price-range-input::-moz-range-progress {
    height: 5px;
    border-radius: 999px;
    background: #ec4e9e;
}

.price-range-input::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -6.5px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #ec4e9e;
    box-shadow: 0 5px 12px rgba(222, 57, 138, 0.22);
}

.price-range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #ec4e9e;
    box-shadow: 0 5px 12px rgba(222, 57, 138, 0.22);
}

.price-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #536078;
    font-size: 12px;
    font-weight: 700;
}

.clear-filter-button {
    width: calc(100% - 32px);
    min-height: 38px;
    margin: 16px;
    background: #ffffff;
    color: #ec4e9e;
    border: 1px solid #ec4e9e;
    box-shadow: none;
}

.category-results {
    min-width: 0;
}

.category-results--full {
    margin-top: 18px;
}

.category-results-bar {
    min-height: 52px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #536078;
    font-size: 14px;
    font-weight: 600;
}

.category-search-clear {
    color: #ec4e9e;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.category-search-clear:hover,
.category-search-clear:focus-visible {
    text-decoration: underline;
}

.listing-theme-results,
.listing-character-results {
    margin: 0 0 28px;
}

.listing-theme-results h2,
.listing-character-results h2,
.listing-product-results-title {
    margin: 0 0 14px;
    color: #18203a;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.listing-product-results-title {
    margin-top: 8px;
}

.listing-character-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.listing-character-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.listing-character-card:hover,
.listing-character-card:focus-visible {
    transform: translateY(-3px);
    opacity: 0.94;
}

.listing-character-card img {
    display: block;
    width: 200px;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f3f8;
    box-shadow: 0 10px 24px rgba(41, 31, 52, 0.1);
}

.listing-character-card__name {
    display: block;
    margin-top: 0.65rem;
    color: #121832;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.listing-character-card__theme {
    display: block;
    margin-top: 0.2rem;
    color: #6f7587;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.category-results-bar strong {
    color: #18203a;
}

.category-results-bar label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.category-results-bar select {
    min-height: 38px;
    min-width: 132px;
    padding: 0 34px 0 12px;
    border: 1px solid #e1d8e0;
    border-radius: 8px;
    color: #303852;
    background: #ffffff;
    font-family: inherit;
    font-weight: 700;
}

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

.category-product-grid .product-card-body {
    padding: 14px;
}

.category-product-grid .product-card h3 {
    font-size: 18px;
}

.category-product-grid .product-card p {
    min-height: 38px;
    font-size: 13px;
}

.category-product-grid .product-card-actions {
    grid-template-columns: 1fr;
    gap: 8px;
}

.category-product-grid .product-primary-action {
    font-size: 12px;
}

.product-rating {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffb300;
    font-size: 13px;
    line-height: 1;
}

.product-rating small {
    color: #72798a;
    font-size: 12px;
    font-weight: 700;
}

.category-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-pagination a,
.category-pagination span {
    min-width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222a43;
    background: #ffffff;
    border: 1px solid #ead7e2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.category-pagination span {
    border-color: transparent;
    background: transparent;
}

.category-pagination a.is-active,
.category-pagination a:hover,
.category-pagination a:focus-visible {
    color: #ffffff;
    background: #ec4e9e;
    border-color: #ec4e9e;
    outline: none;
}

.category-reassurance {
    padding: 0 0 42px;
    background: #fff8fc;
}

.category-reassurance-inner {
    padding: 24px 30px;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    background:
        linear-gradient(90deg, #ffffff 0%, #fff8fc 100%);
}

.category-reassurance img {
    width: 128px;
    height: 128px;
    border: 5px solid #ffffff;
    border-radius: 999px;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 0 2px #ec4e9e, 0 16px 30px rgba(41, 31, 52, 0.14);
}

.category-reassurance h2 {
    color: #121832;
    font-size: 24px;
    line-height: 1.1;
}

.category-reassurance p {
    margin-top: 10px;
    color: #3f4862;
    font-size: 14px;
    line-height: 1.5;
}

.category-reassurance-list {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-reassurance-list p {
    margin: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 4px 9px;
}

.category-reassurance-list .material-symbols-outlined {
    grid-row: span 2;
    color: #ec4e9e;
    font-size: 26px;
}

.category-reassurance-list strong,
.category-reassurance-list small {
    display: block;
    min-width: 0;
}

.category-reassurance-list strong {
    color: #19213b;
    font-size: 13px;
    line-height: 1.1;
}

.category-reassurance-list small {
    color: #5c6478;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .address-checkout-form,
    .address-checkout-hero {
        max-width: min(880px, calc(100% - 44px));
    }

    .checkout-details-grid {
        grid-template-columns: 1fr;
    }

    .checkout-shell {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
        gap: 24px;
    }

    .checkout-basket-item {
        grid-template-columns: 150px minmax(0, 1fr) 100px;
        gap: 22px;
    }

    .checkout-reassurance {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .checkout-reassurance article:nth-child(odd) {
        border-left: none;
        padding-left: 0;
    }

    .checkout-reassurance article:nth-child(even) {
        border-left: 1px solid #f1e0e9;
        padding-left: 22px;
    }

    .checkout-reassurance article:nth-child(n + 3) {
        border-top: 1px solid #f1e0e9;
        padding-top: 18px;
        margin-top: 18px;
    }

    .product-detail-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
        gap: 28px;
    }

    .product-main-media,
    .product-main-media > img {
        min-height: 500px;
    }

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

    .product-review-strip::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: #f1e0e9;
        transform: translateX(-0.5px);
        pointer-events: none;
    }

    .product-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-info-strip article:nth-child(odd) {
        border-left: none;
    }

    .product-info-strip article:nth-child(n + 3) {
        border-top: 1px solid #f1e0e9;
    }

    .product-review-strip article + article,
    .product-review-strip article:first-of-type {
        border-left: none;
    }

    .product-review-strip article:nth-of-type(n + 2) {
        border-top: 1px solid #f1e0e9;
    }

    .related-product-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .product-detail-copy {
        grid-template-columns: 170px minmax(0, 1fr) 260px;
        gap: 30px;
    }

    .product-detail-copy ul {
        grid-column: auto;
    }

    .category-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.55fr);
        gap: 28px;
    }

    .category-hero--character .category-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
    }

    .category-hero--character .category-hero-main {
        width: min(280px, 100%);
    }

    .category-promise-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-layout {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 18px;
    }

    .category-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .product-detail-grid,
    .product-detail-copy {
        grid-template-columns: 1fr;
    }

    .product-detail-copy ul {
        grid-column: auto;
    }

    .product-transform-slider__pet-wrap {
        top: 0.7rem;
        left: 0.7rem;
        gap: 0.1rem;
    }

    .product-transform-slider__pet {
        width: 6.5rem;
        height: 6.5rem;
    }

    .product-transform-slider__example-badge {
        width: 7.75rem;
        max-width: 46%;
        margin-top: 0.2rem;
        margin-left: -0.4rem;
    }

    .product-transform-slider__divider::after {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.15rem;
    }

    .product-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-info-strip article:nth-child(odd) {
        border-left: none;
    }

    .product-info-strip article:nth-child(n + 3) {
        border-top: 1px solid #f1e0e9;
    }

    .category-hero {
        padding: 44px 0 34px;
    }

    .category-hero-inner,
    .category-layout,
    .category-reassurance-inner {
        grid-template-columns: 1fr;
    }

    .category-hero--character .category-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-hero-media {
        min-height: 270px;
    }

    .category-hero-main {
        left: 0;
        right: auto;
        width: min(420px, 78%);
    }

    .category-hero--character .category-hero-media {
        min-height: 0;
        justify-content: center;
    }

    .category-hero--character .category-hero-main {
        left: auto;
        width: min(280px, 72%);
    }

    .category-hero-product {
        right: 4%;
    }

    .mobile-filter-toggle-button {
        display: inline-flex;
    }

    .filter-panel {
        position: static;
        display: none;
        grid-template-columns: 1fr;
    }

    .filter-panel.is-mobile-open {
        display: grid;
    }

    .filter-panel:not(.is-mobile-open) .filter-group h3 button::after {
        content: none;
    }

    .filter-panel-head,
    .clear-filter-button,
    .mobile-filter-close-button {
        grid-column: 1 / -1;
    }

    .mobile-filter-close-button {
        min-height: 48px;
        margin: 4px 16px 16px;
        border: 1px solid #17203a;
        border-radius: 9px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        color: #ffffff;
        background: #17203a;
        font-family: inherit;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-filter-close-button .material-symbols-outlined {
        color: currentColor;
        font-size: 19px;
    }

    .filter-group:nth-of-type(odd) {
        border-right: none;
    }

    .category-reassurance-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .address-checkout-hero {
        padding-top: 38px;
    }

    .address-form-grid--two {
        grid-template-columns: 1fr;
    }

    .address-form-card {
        padding: 22px;
    }

    .address-payment-button {
        width: 100%;
    }

    .checkout-hero {
        padding: 38px 0 24px;
    }

    .checkout-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wrapper.checkout-shell {
        margin-bottom: 18px;
    }

    .checkout-sidebar {
        position: static;
    }

    .checkout-main-column,
    .checkout-sidebar {
        display: contents;
    }

    .checkout-main-column > .checkout-flash,
    .checkout-main-column > .basket-added-flash-wrap {
        order: 0;
    }

    .checkout-shipping-card,
    .checkout-summary-card {
        order: 1;
    }

    .checkout-basket-list {
        order: 2;
    }

    .checkout-promo {
        order: 3;
    }

    .checkout-details-grid {
        margin-top: 0;
        order: 4;
    }

    .checkout-payment-card {
        order: 5;
    }

    .checkout-dispatch-note {
        margin-top: 0;
        order: 6;
    }

    .checkout-details-grid {
        gap: 18px;
    }

    .checkout-reassurance {
        margin-top: 0;
    }

    .product-detail-shell {
        padding-top: 38px;
    }

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

    .product-thumbs {
        grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
        gap: 10px;
    }

    .product-main-media,
    .product-main-media > img {
        min-height: 390px;
    }

    .product-purchase h1 {
        font-size: 30px;
    }

    .product-summary-card {
        min-height: 0;
        padding: 14px 16px;
    }

    .theme-picker {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
    }

    .theme-option span {
        font-size: 12px;
        line-height: 1.2;
    }

    [data-pdp-character-group].is-collapsed .theme-picker {
        grid-template-columns: minmax(0, 132px);
        width: 132px;
    }

    [data-pdp-character-group].is-collapsed .character-picker-row {
        gap: 10px;
    }

    .product-mini-promises {
        gap: 10px;
    }

    .product-mini-promises p {
        grid-template-columns: 1fr;
        justify-items: center;
        row-gap: 3px;
        text-align: center;
    }

    .product-mini-promises .material-symbols-outlined {
        grid-row: auto;
    }

    .category-products,
    .category-reassurance {
        padding-bottom: 34px;
    }

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

    .category-hero {
        padding-top: 34px;
    }

    .category-hero-inner {
        min-height: 0;
    }

    .category-hero-media {
        display: none;
    }

    .category-hero--character {
        padding: 28px 0 22px;
    }

    .category-hero--character .category-hero-inner {
        gap: 18px;
    }

    .category-hero--character .category-hero-media {
        display: flex;
        justify-content: center;
        min-height: 0;
    }

    .category-hero--character .category-hero-main {
        width: min(260px, 72%);
    }

    .category-hero--character .character-hero-intro {
        display: none;
    }

    .character-about {
        display: block;
        padding: 0 0 34px;
        background: #fff8fc;
    }

    .character-about-card {
        padding: 18px 18px;
        border: 1px solid #efd8e4;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(48, 28, 46, 0.08);
    }

    .character-about-card p {
        margin: 0;
        color: #2e3650;
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 560px) {
    .address-checkout-hero {
        padding-top: 30px;
    }

    .address-checkout-hero h1 {
        font-size: 34px;
    }

    .address-checkout-hero p:first-of-type {
        align-items: flex-start;
    }

    .address-checkout-form,
    .address-checkout-hero {
        max-width: calc(100% - 28px);
    }

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

    .address-form-card-head {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .address-phone-field {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .address-form-card-head h2 {
        font-size: 19px;
    }

    .address-lookup-control {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .wrapper.address-checkout-reassurance {
        margin-top: 28px;
        margin-bottom: 38px;
    }

    .checkout-page {
        padding-bottom: 38px;
    }

    .checkout-hero {
        padding: 30px 0 20px;
    }

    .checkout-hero h1 {
        font-size: 34px;
    }

    .checkout-hero > p {
        font-size: 13px;
    }

    .checkout-section-heading {
        align-items: flex-start;
    }

    .checkout-basket-item {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 16px;
        padding: 16px;
    }

    .checkout-item-details dl {
        margin-top: 12px;
        gap: 8px;
    }

    .checkout-item-details dl div {
        grid-template-columns: 72px minmax(0, 1fr);
        column-gap: 10px;
    }

    .checkout-item-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr auto;
        align-items: start;
        justify-items: start;
        column-gap: 16px;
    }

    .checkout-item-actions > strong {
        font-size: 15px;
        justify-self: start;
    }

    .checkout-item-controls {
        justify-self: end;
    }

    .checkout-promo,
    .checkout-details-grid,
    .checkout-reassurance {
        grid-template-columns: 1fr;
    }

    .checkout-promo {
        margin-top: 0;
        padding: 14px;
    }

    .checkout-address-body,
    .checkout-reassurance article {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .checkout-dispatch-note {
        grid-template-columns: 44px minmax(0, 1fr) 22px;
    }

    .checkout-summary-card,
    .checkout-shipping-card,
    .checkout-payment-card {
        padding: 20px;
    }

    .checkout-total strong {
        font-size: 24px;
    }

    .checkout-payment-illustration {
        min-height: 128px;
    }

    .checkout-reassurance article,
    .checkout-reassurance article:nth-child(even),
    .checkout-reassurance article:nth-child(n + 3) {
        border-left: none;
        border-top: 1px solid #f1e0e9;
        padding-left: 0;
        padding-top: 16px;
        margin-top: 16px;
    }

    .checkout-reassurance article:first-child {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .product-detail-shell {
        padding-top: 30px;
    }

    .product-detail-breadcrumbs {
        font-size: 11px;
    }

    .product-main-media,
    .product-main-media > img {
        min-height: 320px;
    }

    .product-gallery-arrow {
        width: 38px;
        height: 38px;
    }

    .product-zoom-overlay {
        padding: 14px;
    }

    .product-zoom-dialog img {
        max-height: calc(100vh - 28px);
    }

    .product-zoom-close {
        top: 8px;
        right: 8px;
        width: 38px;
        height: 38px;
    }

    .product-mini-promises {
        gap: 8px;
    }

    .product-mini-promises p {
        font-size: 10.5px;
    }

    .product-mini-promises .material-symbols-outlined {
        font-size: 18px;
    }

    .pill-options,
    .frame-options,
    .product-buy-row,
    .product-info-strip,
    .product-review-strip,
    .product-detail-copy ul {
        grid-template-columns: 1fr;
    }

    .template-picker.template-picker--with-mockups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-info-strip article,
    .product-review-summary,
    .product-review-strip article {
        padding: 18px;
    }

    .product-info-strip article + article,
    .product-review-strip article + article,
    .product-review-strip article:first-of-type {
        border-left: none;
        border-top: 1px solid #f1e0e9;
    }

    .product-review-strip::after {
        content: none;
    }

    .related-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-detail-copy {
        gap: 22px;
    }

    .category-hero {
        padding: 30px 0 26px;
    }

    .category-hero h1 {
        font-size: 34px;
    }

    .category-hero h1 span {
        display: block;
        margin: 8px 0 0;
        font-size: 54px;
        transform: none;
    }

    .category-hero-copy > p {
        font-size: 16px;
    }

    .filter-panel,
    .category-results-bar,
    .category-reassurance-list {
        grid-template-columns: 1fr;
    }

    .category-promise-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
    }

    .category-promise-list p {
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 8px;
    }

    .category-promise-list .material-symbols-outlined {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .category-promise-list strong {
        font-size: 12px;
    }

    .category-promise-list small {
        font-size: 11px;
    }

    .category-search {
        grid-template-columns: 1fr;
    }

    .category-search button {
        width: 100%;
    }

    .theme-listing-filters {
        gap: 12px;
    }

    .theme-listing-filter .theme-listing-species-filter,
    .theme-listing-filter .theme-listing-theme-filter {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        padding-bottom: 0;
    }

    .theme-listing-filter .theme-listing-species-filter .product-tab,
    .theme-listing-filter .theme-listing-theme-filter .product-tab {
        flex: 0 0 auto;
    }

    .category-results-bar {
        display: grid;
        align-items: start;
    }

    .category-results-bar label,
    .category-results-bar select {
        width: 100%;
    }

    .filter-group:nth-of-type(odd) {
        border-right: none;
    }

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

    .category-reassurance-inner {
        padding: 22px 18px;
        text-align: left;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    font-family: "Outfit", "Segoe UI", sans-serif;
    color: var(--ink);
    background: #f8f8fb;
    overflow-x: hidden;
}

.background-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(17, 21, 38, 0.05) 0.75px, transparent 0.75px);
    background-size: 7px 7px;
    opacity: 0.23;
    z-index: -1;
}

.wrapper {
    width: 1320px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}

.wrapper.address-checkout-hero,
.wrapper.address-checkout-form {
    width: min(880px, calc(100% - 80px));
    max-width: 880px;
}

.order-complete-page {
    padding-top: 0;
}

.order-complete-shell {
    padding-top: 70px;
    padding-bottom: 74px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.order-complete-main,
.order-complete-sidebar {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.order-complete-hero {
    min-width: 0;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin-bottom: 6px;
}

.order-confirmation-icon {
    position: relative;
    width: 58px;
    height: 58px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #ffffff;
    box-shadow: inset 0 0 0 3px #ec4e9e;
}

.order-confirmation-icon .material-symbols-outlined {
    font-size: 36px;
    font-weight: 700;
}

.order-complete-hero h1 {
    color: #121832;
    font-size: clamp(34px, 4vw, 42px);
    line-height: 0.98;
}

.order-complete-hero p {
    max-width: 620px;
    margin-top: 8px;
    color: #536079;
    font-size: 13px;
    line-height: 1.4;
}

.order-card {
    min-width: 0;
    border: 1px solid #efd8e4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 24, 50, 0.05);
}

.order-card h2,
.order-card h3,
.order-card p,
.order-card dl,
.order-card address {
    margin: 0;
}

.order-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-card-heading > .material-symbols-outlined {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 20px;
}

.order-card-heading h2,
.order-card h2 {
    color: #121832;
    font-size: 18px;
    line-height: 1.2;
}

.order-overview-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-overview-card article {
    min-width: 0;
    padding: 26px 18px;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 7px;
    text-align: center;
    font-weight: 700;
}

.order-overview-card article + article {
    border-left: 1px solid #f1e0e9;
}

.order-overview-card article > .material-symbols-outlined {
    width: 48px;
    height: 48px;
    margin: 0 auto 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #fff1f8;
    font-size: 25px;
}

.order-overview-card small,
.order-item-row p,
.order-item-row small,
.order-summary-complete dt,
.order-help-card p,
.order-secure-card p,
.order-secure-card small,
.order-progress-list small {
    color: #697188;
    font-size: 12px;
    line-height: 1.35;
}

.order-overview-card small {
    display: block;
    min-height: 16px;
}

.order-overview-card strong,
.order-item-row strong,
.order-summary-complete dd {
    color: #121832;
    font-size: 13px;
    font-weight: 600;
}

.order-overview-card article > strong {
    display: block;
    max-width: 140px;
    line-height: 1.25;
}

.order-status-pill {
    width: fit-content;
    margin: 0;
    border-radius: 999px;
    padding: 5px 14px;
    display: block;
    color: #118a46 !important;
    background: #c8f8dc;
    font-size: 11px !important;
}

.order-status-pill--pending {
    color: #9a5b00 !important;
    background: #ffe8c2;
}

.order-love-note {
    grid-column: 1 / -1;
    border-top: 1px solid #f1e0e9;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}

.order-love-note > .material-symbols-outlined {
    color: #ec4e9e;
    font-size: 26px;
}

.order-love-note strong {
    display: block;
    color: #121832;
    font-size: 13px;
}

.order-love-note small {
    display: block;
    margin-top: 4px;
    color: #697188;
    font-size: 12px;
}

.order-tracking-card,
.order-items-card,
.order-progress-card,
.order-address-card,
.order-summary-complete,
.order-help-card,
.order-secure-card,
.order-cta-card,
.order-approval-card {
    padding: 22px;
}

.order-cta-card > p {
    margin-top: 14px;
    color: #536079;
    font-size: 12px;
    line-height: 1.45;
}

.order-cta-card .order-primary-button {
    margin-top: 18px;
    width: fit-content;
    min-width: 230px;
}

.order-approval-card > p {
    margin-top: 14px;
    color: #536079;
    font-size: 12px;
    line-height: 1.45;
}

.order-approval-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.order-approval-item {
    margin: 0;
    padding: 14px;
    border: 1px solid #f1e0e9;
    border-radius: 12px;
    background: #fff;
    display: grid;
    gap: 12px;
    align-content: start;
}

.order-approval-thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #fff7fb;
    border: 1px solid #f7e4ee;
}

.order-approval-thumb img,
.order-approval-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    cursor: zoom-in;
}

.order-approval-copy h3 {
    color: #121832;
    font-size: 15px;
    line-height: 1.3;
    margin: 0;
}

.order-approval-copy p {
    margin: 4px 0 0;
    color: #697188;
    font-size: 12px;
    line-height: 1.4;
}

.order-approval-form {
    display: grid;
    gap: 10px;
}

.order-approval-form.is-submitting {
    pointer-events: none;
}

.order-approval-form.is-submitting .order-primary-button[aria-busy="true"] {
    opacity: 0.88;
    cursor: wait;
}

.order-approval-item .order-primary-button {
    width: 100%;
    min-height: 42px;
    box-shadow: none;
}

.order-approval-changes {
    margin: 0;
}

.order-approval-request-link {
    display: inline;
    width: fit-content;
    padding: 0;
    border: 0;
    background: none;
    color: #ec4e9e;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: underline;
    cursor: pointer;
    list-style: none;
}

.order-approval-request-link::-webkit-details-marker,
.order-approval-request-link::marker {
    display: none;
    content: '';
}

.order-approval-changes-panel {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.order-approval-changes-panel label {
    color: #121832;
    font-size: 13px;
    font-weight: 700;
}

.order-approval-item textarea {
    width: 100%;
    min-height: 84px;
    border: 1px solid #efd8e4;
    border-radius: 8px;
    padding: 10px 12px;
    color: #121832;
    font-family: inherit;
    font-size: 13px;
    resize: vertical;
}

.order-approval-lightbox {
    width: min(920px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    padding: 16px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(18, 24, 50, 0.28);
}

.order-approval-lightbox::backdrop {
    background: rgba(18, 24, 50, 0.62);
}

.order-approval-lightbox form {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.order-approval-lightbox button {
    border: 0;
    background: none;
    color: #ec4e9e;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

.order-approval-lightbox img {
    display: block;
    width: 100%;
    max-height: min(80vh, 900px);
    object-fit: contain;
    background: #fff7fb;
    border-radius: 8px;
    cursor: default;
}

button.order-primary-button,
button.order-secondary-button {
    font-family: inherit;
    cursor: pointer;
}

.order-tracking-card > p,
.order-help-card p,
.order-secure-card p {
    margin-top: 14px;
    color: #536079;
    font-size: 12px;
    line-height: 1.45;
}

.order-tracking-parcel-title {
    margin: 22px 0 0;
    color: #121832;
    font-size: 15px;
    font-weight: 700;
}

.order-tracking-card > p.order-tracking-products {
    margin: 6px 0 0;
    color: #121832;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.order-tracking-row + .order-tracking-parcel-title {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #f1e0e9;
}

.order-tracking-parcel-title + .order-tracking-products,
.order-tracking-parcel-title + .order-tracking-row {
    margin-top: 8px;
}

.order-tracking-products + .order-tracking-row {
    margin-top: 12px;
}

.order-tracking-row {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.order-tracking-row div {
    min-width: 0;
    border-left: 1px solid #f1e0e9;
    padding-left: 20px;
}

.order-tracking-row small {
    color: #697188;
    font-size: 12px;
    font-weight: 700;
}

.order-tracking-row strong {
    margin-left: 6px;
    color: #ec4e9e;
    font-size: 13px;
}

.order-tracking-row a:not(.order-primary-button) {
    display: block;
    margin-top: 6px;
    color: #536079;
    font-size: 12px;
    text-decoration: none;
}

.order-tracking-items-label {
    margin: 10px 0 0;
    color: #536079;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-tracking-items {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    color: #121832;
    font-size: 13px;
    line-height: 1.45;
}

.order-tracking-items li + li {
    margin-top: 4px;
}

.order-tracking-row--ref-only {
    grid-template-columns: minmax(0, 1fr);
}

.order-tracking-row--ref-only div {
    border-left: none;
    padding-left: 0;
}

.order-primary-button,
.order-secondary-button {
    min-height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.order-primary-button {
    border: 1px solid #ec4e9e;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    box-shadow: 0 12px 24px rgba(236, 78, 158, 0.2);
}

.order-secondary-button {
    border: 1px solid #ec4e9e;
    color: #ec4e9e;
    background: #ffffff;
}

.order-primary-button .material-symbols-outlined,
.order-secondary-button .material-symbols-outlined {
    color: currentColor;
    font-size: 20px;
}

.order-upload-shell {
    max-width: 880px;
    display: grid;
    gap: 20px;
    padding-bottom: 54px;
}

.order-upload-thanks .order-upload-thanks-button {
    margin: 0 22px 22px;
    width: calc(100% - 44px);
    max-width: 280px;
}

.order-upload-tips {
    --hiw-pink: #ec4e9e;
    --hiw-muted: #3d455f;
    margin: 0 0 18px;
}

.order-upload-photo-examples {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.order-upload-photo-examples__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.order-upload-photo-examples__group--good .order-upload-photo-examples__label {
    color: #15803d;
}

.order-upload-photo-examples__group--bad .order-upload-photo-examples__label {
    color: #b42318;
}

.order-upload-photo-examples__label .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

.order-upload-photo-examples__group--good .order-upload-photo-examples__label .material-symbols-outlined {
    color: #16a34a;
}

.order-upload-photo-examples__group--bad .order-upload-photo-examples__label .material-symbols-outlined {
    color: #dc2626;
}

.order-upload-photo-examples__grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.order-upload-photo-examples__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #efd8e4;
    background: #fff;
}

.order-upload-photo-examples__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-upload-photo-examples__badge {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(18, 24, 50, 0.16);
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

.order-upload-photo-examples__group--good .order-upload-photo-examples__badge {
    color: #16a34a;
}

.order-upload-photo-examples__group--bad .order-upload-photo-examples__badge {
    color: #dc2626;
}

@media (max-width: 520px) {
    .order-upload-photo-examples__grid {
        gap: 8px;
    }

    .order-upload-photo-examples__badge {
        width: 24px;
        height: 24px;
        font-size: 18px;
        right: 4px;
        bottom: 4px;
    }
}

.order-upload-pool {
    display: grid;
    gap: 14px;
}

.order-upload-select-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 48px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.order-upload-select-button .material-symbols-outlined {
    font-size: 22px;
}

.order-upload-items {
    display: grid;
    gap: 14px;
}

.order-upload-item {
    min-width: 0;
    border: 1px solid #f1d6e4;
    border-radius: 10px;
    padding: 16px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    background: #ffffff;
}

.order-upload-item.is-disabled {
    background: #fff8fc;
}

.order-upload-item-media {
    width: 96px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f7edf3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-upload-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-upload-item-placeholder {
    color: #c9a4b8;
    font-size: 34px;
}

.order-upload-item-body h3 {
    margin: 0;
    color: #121832;
    font-size: 16px;
    line-height: 1.25;
}

.order-upload-item-body > p,
.order-upload-empty-note {
    margin: 6px 0 0;
    color: #697188;
    font-size: 13px;
    line-height: 1.4;
}

.order-upload-item-meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.order-upload-item-meta small {
    color: #697188;
    font-size: 12px;
    font-weight: 600;
}

.order-upload-status {
    width: fit-content;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.order-upload-status.is-awaiting {
    color: #9a3412;
    background: #ffedd5;
}

.order-upload-status.is-received {
    color: #0f766e;
    background: #ccfbf1;
}

.order-upload-status.is-generating,
.order-upload-status.is-review {
    color: #1d4ed8;
    background: #dbeafe;
}

.order-upload-status.is-complete {
    color: #118a46;
    background: #c8f8dc;
}

.order-upload-existing {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.order-upload-existing img {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #efd8e4;
    background: #fff;
}

.order-upload-locked {
    display: inline-block;
    margin-top: 12px;
    color: #697188;
    font-size: 12px;
    font-weight: 700;
}

.order-upload-hint {
    margin: 0;
    color: #697188;
    font-size: 13px;
}

.order-upload-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.order-upload-photo-card {
    border: 1px solid #efd8e4;
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
    display: grid;
    gap: 8px;
}

.order-upload-photo-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #f7edf3;
}

.order-upload-photo-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.order-upload-link-btn {
    border: none;
    padding: 0;
    background: transparent;
    color: #ec4e9e;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.order-upload-link-btn--danger {
    color: #b42318;
}

.order-upload-item-choices {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-upload-choice {
    position: relative;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid #efd8e4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff8fc;
    cursor: pointer;
}

.order-upload-choice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-upload-choice-tick {
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: none;
    font-size: 22px;
    color: #16a34a;
    background: #ffffff;
    border-radius: 999px;
    line-height: 1;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

.order-upload-choice.is-selected {
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.18);
}

.order-upload-choice.is-selected .order-upload-choice-tick {
    display: block;
}

.order-upload-submit-card {
    display: grid;
    gap: 16px;
}

.order-upload-confirm {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #f3c9a8;
    border-radius: 12px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.order-upload-confirm input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.order-upload-thanks p {
    margin: 6px 0 0;
    color: #3d455f;
    font-size: 16px;
    line-height: 1.45;
}

.order-upload-editor {
    border: none;
    border-radius: 12px;
    padding: 0;
    width: min(920px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    background: transparent;
}

.order-upload-editor::backdrop {
    background: rgba(18, 24, 50, 0.55);
}

.order-upload-editor-shell {
    margin: 0;
    padding: 22px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(18, 24, 50, 0.18);
    display: grid;
    gap: 16px;
}

.order-upload-editor-shell h2 {
    margin: 0;
    color: #121832;
    font-size: 22px;
}

.order-upload-editor-canvas {
    min-height: 320px;
    max-height: min(60vh, 560px);
    overflow: hidden;
    border-radius: 10px;
    background: #111827;
}

.order-upload-editor-canvas img {
    display: block;
    max-width: 100%;
}

.order-upload-editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-upload-editor-actions button {
    min-height: 42px;
    border: 1px solid #f1d6e4;
    border-radius: 8px;
    padding: 0 14px;
    color: #121832;
    background: #fff8fc;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.order-upload-editor-actions #apply-edit {
    border: none;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
}

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

    .order-upload-item-media {
        width: 72px;
    }

    .order-upload-select-button {
        width: 100%;
    }

    .order-upload-choice {
        width: 64px;
        height: 64px;
    }
}

.order-item-row {
    min-width: 0;
    border-top: 1px solid #f1e0e9;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 70px 70px;
    align-items: center;
    gap: 16px;
}

.order-item-row:first-of-type {
    margin-top: 16px;
}

.order-item-row:last-child {
    padding-bottom: 0;
}

.order-item-row > img,
.order-item-row > .order-item-placeholder {
    width: 74px;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #fff1f8;
}

.order-item-flags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 9px;
}

.order-item-flags .order-item-photo {
    margin-top: 0;
}

.order-item-status {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 3px 9px;
    border-radius: 999px;
    background: #fff1f8;
    color: #ec4e9e;
    font-family: inherit;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.order-item-status.is-dispatched {
    background: #121832;
    color: #ffffff;
}

.order-item-row .order-item-dispatch,
.order-item-row .order-item-tracking {
    display: block;
    margin: 6px 0 0;
    color: #121832;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.35;
}

.order-item-row .order-item-dispatch.is-dispatched {
    color: #1b8a4a;
}

.order-item-row .order-item-tracking {
    color: #3d4660;
    font-weight: 600;
}

.order-item-row .order-item-track {
    display: inline-block;
    margin-top: 6px;
    color: #ec4e9e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.order-item-row h3 {
    color: #121832;
    font-size: 14px;
    line-height: 1.2;
}

.order-item-row .order-item-photo {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #697188;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.order-item-row .order-item-photo img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.order-progress-list {
    position: relative;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
}

.order-progress-list::before,
.order-progress-list::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12.5%;
    height: 3px;
}

.order-progress-list::before {
    right: 12.5%;
    background: #dfe3ea;
}

.order-progress-list::after {
    width: calc(75% * var(--progress, 0));
    background: #ec4e9e;
}

.order-progress-list li {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.order-progress-list li span {
    box-sizing: border-box;
    position: relative;
    width: 26px;
    height: 26px;
    margin: 0 auto 10px;
    border: 3px solid #c8ceda;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.order-progress-list li.is-complete span,
.order-progress-list li.is-current span {
    border-color: #ec4e9e;
    background: #ec4e9e;
}

.order-progress-list li.is-complete span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translate(-50%, -58%) rotate(45deg);
}

.order-progress-list li.is-current span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.order-progress-list strong {
    display: block;
    color: #121832;
    font-size: 12px;
    line-height: 1.2;
}

.order-progress-list li.is-complete strong,
.order-progress-list li.is-current strong,
.order-progress-list li.is-current small {
    color: #ec4e9e;
}

.order-address-grid,
.order-actions-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.order-address-card address {
    margin-top: 14px;
    color: #121832;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.55;
}

.order-summary-complete h2 {
    margin-bottom: 18px;
}

.order-summary-complete dl {
    display: grid;
    gap: 14px;
}

.order-summary-complete dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.order-summary-complete .order-discount-row dt,
.order-summary-complete .order-discount-row dd {
    color: #ec4e9e;
}

.order-summary-complete .order-total-row {
    margin-top: 4px;
    border-top: 1px solid #f1e0e9;
    padding-top: 18px;
}

.order-summary-complete .order-total-row dt,
.order-summary-complete .order-total-row dd {
    color: #121832;
    font-size: 18px;
    font-weight: 900;
}

.order-summary-complete .order-total-row dd {
    color: #ec4e9e;
}

.order-summary-complete .order-primary-button {
    width: 100%;
    margin-top: 22px;
}

.order-help-card,
.order-secure-card {
    display: grid;
    gap: 12px;
}

.order-help-card a:not(.order-inline-link) {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #121832;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.order-help-card a .material-symbols-outlined {
    color: #ec4e9e;
    font-size: 18px;
}

.order-help-card small {
    color: #697188;
    font-size: 12px;
}

.order-inline-link {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ec4e9e;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.order-inline-link .material-symbols-outlined {
    color: currentColor;
    font-size: 16px;
}

.order-stripe-box {
    min-height: 58px;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #697188;
    font-size: 12px;
}

.order-stripe-box strong {
    color: #635bff;
    font-size: 20px;
    letter-spacing: 0;
}

.order-stripe-box .material-symbols-outlined {
    color: #697188;
    font-size: 16px;
}

@media (max-width: 1100px) {
    .order-complete-shell {
        grid-template-columns: 1fr;
    }

    .order-complete-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}

@media (max-width: 860px) {
    .order-complete-shell {
        padding-top: 38px;
        padding-bottom: 52px;
    }

    .order-complete-hero {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 16px;
    }

    .order-confirmation-icon {
        width: 56px;
        height: 56px;
    }

    .order-confirmation-icon .material-symbols-outlined {
        font-size: 34px;
    }

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

    .order-overview-card article:nth-child(3) {
        border-left: none;
    }

    .order-overview-card article:nth-child(n + 3) {
        border-top: 1px solid #f1e0e9;
    }

    .order-tracking-row {
        grid-template-columns: 1fr;
    }

    .order-tracking-row div {
        border-left: none;
        border-top: 1px solid #f1e0e9;
        padding: 18px 0 0;
    }

    .order-complete-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .order-complete-shell {
        padding-top: 30px;
        padding-bottom: 38px;
        gap: 18px;
    }

    .order-complete-main,
    .order-complete-sidebar {
        gap: 14px;
    }

    .order-complete-hero {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .order-complete-hero h1 {
        font-size: 34px;
    }

    .order-overview-card,
    .order-address-grid,
    .order-actions-row {
        grid-template-columns: 1fr;
    }

    .order-overview-card article,
    .order-tracking-card,
    .order-items-card,
    .order-progress-card,
    .order-address-card,
    .order-summary-complete,
    .order-help-card,
    .order-secure-card,
    .order-cta-card,
    .order-approval-card {
        padding: 18px;
    }

    .order-overview-card article + article,
    .order-overview-card article:nth-child(3) {
        border-left: none;
        border-top: 1px solid #f1e0e9;
    }

    .order-love-note {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 18px;
    }

    .order-item-row {
        grid-template-columns: 64px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
    }

    .order-item-row > img {
        width: 64px;
    }

    .order-item-row > small,
    .order-item-row > strong {
        grid-column: 2;
    }

    .order-progress-list {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .order-progress-list::before,
    .order-progress-list::after {
        top: 12px;
        left: 12px;
        right: auto;
        width: 3px;
    }

    .order-progress-list::before {
        bottom: 12px;
        height: auto;
    }

    .order-progress-list::after {
        height: calc((100% - 24px) * var(--progress, 0));
        width: 3px;
    }

    .order-progress-list li {
        min-height: 46px;
        padding-left: 42px;
        text-align: left;
    }

    .order-progress-list li span {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }

    .order-approval-item {
        grid-template-columns: 1fr;
    }

    .order-approval-thumb img,
    .order-approval-item img {
        width: 100%;
        max-width: none;
    }
}

.checkout-address-page .address-checkout-form input:focus,
.checkout-address-page .address-checkout-form select:focus,
.checkout-address-page .address-checkout-form textarea:focus,
.checkout-address-page .address-checkout-form input:focus-visible,
.checkout-address-page .address-checkout-form select:focus-visible,
.checkout-address-page .address-checkout-form textarea:focus-visible {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.16);
    outline: none;
}

.checkout-address-page .address-checkout-form input:focus {
    box-shadow: none;
}

@media (max-width: 860px) {
    .wrapper.address-checkout-hero,
    .wrapper.address-checkout-form {
        width: calc(100% - 44px);
    }
}

@media (max-width: 560px) {
    .wrapper.address-checkout-hero,
    .wrapper.address-checkout-form {
        width: calc(100% - 28px);
    }
}

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

.topbar {
    background: var(--ink);
}

.topbar .container {
    width: 1320px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-right {
    padding-left: 20px;
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 400;
}

.topbar-right .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.topbar-right a + a {
    border-left: 1px solid #d6d7dc;
    padding-left: 18px;
}

.site-header {
    background: #000;
}

.site-header-inner {
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(170px, 30vw) 1fr auto auto;
    align-items: center;
    gap: 22px;
}

.site-logo {
    text-decoration: none;
}

.site-logo-image {
    display: block;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 17 / 10;
    object-fit: contain;
    object-position: left center;
    border-radius: 6px;
}

.header-benefits {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 1.3vw, 20px);
    padding-inline: 10px;
}

.header-benefits p {
    display: flex;
    align-items: center;
    gap: 12px;
    width: clamp(140px, 15vw, 214px);
    color: #f6f7fc;
    font-weight: 600;
    line-height: 1.22;
    font-size: clamp(14px, 1.05vw, 17px);
}

@media (max-width: 1240px) {
    .site-header-inner {
        grid-template-columns: minmax(140px, 26vw) 1fr auto auto;
        gap: 14px;
        min-height: 176px;
    }

    .header-benefits {
        padding-inline: 0;
    }

    .header-benefits p + p {
        padding-left: 12px;
    }
}

.header-benefits p + p {
    border-left: 1px solid rgba(255, 255, 255, 0.26);
    padding-left: 18px;
}

.header-benefits .material-symbols-outlined {
    color: #ef4f9f;
    font-size: 42px !important;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24 !important;
}

.mobile-header-benefits {
    display: none;
}

.header-account-button,
.mobile-nav-account {
    display: none;
}

.header-account-button {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 999px;
    text-decoration: none;
    background: #1c1c1c;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 12px 24px rgba(0, 0, 0, 0.32);
}

.header-account-button .material-symbols-outlined {
    color: #f4f5fb;
    font-size: 34px;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.cart-button {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    text-decoration: none;
    background: #1c1c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 12px 24px rgba(0, 0, 0, 0.32);
}

.cart-icon {
    color: #f4f5fb;
    font-size: 45px;
    line-height: 0.9;
    transform: scale(1);
    transform-origin: center;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
}

.cart-count {
    position: absolute;
    right: -9px;
    top: 1px;
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    padding: 0 8px;
    background: #f359a5;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    width: 58px;
    height: 58px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 22px rgba(0, 0, 0, 0.28);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, rgba(236, 78, 158, 0.26), rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 26px rgba(0, 0, 0, 0.34);
    outline: none;
}

.mobile-menu-toggle:active {
    transform: translateY(1px);
}

.mobile-nav-close,
.mobile-nav-backdrop {
    display: none;
}

.burger-line {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
    transform-origin: center;
    transition: width 180ms ease, transform 230ms ease, opacity 200ms ease, background 180ms ease;
}

.burger-line:nth-child(2) {
    width: 20px;
}

.burger-line:nth-child(3) {
    width: 15px;
}

.mobile-nav-open .burger-line:nth-child(1) {
    width: 27px;
    transform: translateY(10px) rotate(45deg);
}

.mobile-nav-open .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-open .burger-line:nth-child(3) {
    width: 27px;
    transform: translateY(-10px) rotate(-45deg);
}

.primary-nav {
    position: relative;
    z-index: 60;
    margin-top: -8px;
    margin-bottom: -31px;
    background: linear-gradient(to bottom, #020205 0 50%, transparent 50% 100%);
}

@media (min-width: 861px) {
    .primary-nav {
        position: sticky;
        top: 0;
        z-index: 80;
    }

    .primary-nav::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 50%;
        height: 100%;
        transform: translateX(-50%);
        border-radius: 12px;
        background: var(--accent-pink);
        pointer-events: none;
        z-index: 0;
        transition: background ease-in-out 0.3s;
    }

    .nav-is-stuck .primary-nav::before {
        width: 101%;
        border-radius: 0;
        background: var(--ink);
    }

    .nav-is-stuck .nav-shell {
        border-radius: 0;
        background: transparent;
    }

    .nav-is-stuck .primary-nav {
        box-shadow: 0px 5px 7px -3px rgba(0,0,0,0.76)
    }

}

.nav-shell {
    min-height: 62px;
    border-radius: 12px;
    background: var(--nav-grad);
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.nav-inner {
    min-height: 62px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4px;
    padding: 0 2px;
}

.nav-link {
    position: relative;
    appearance: none;
    border: none;
    font-family: inherit;
    line-height: 1;
    background: transparent;
    color: #fefcff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 12px;
    min-height: 58px;
    margin: 2px 0;
    transition: background-color 180ms ease;
}

@media (min-width: 900px) {
    .nav-link {
        font-size: 15px;
    }
}

@media (min-width: 1000px) {
    .nav-link {
        padding: 0 22px;
    }
}

@media (min-width: 1024px) {
    .nav-inner > .nav-link:first-child {
        padding-left: 34px;
    }

    .nav-inner > .nav-link:last-child {
        padding-right: 34px;
    }
}

.nav-link:hover,
.nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.nav-link.is-active {
    background: #b12a6d;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.nav-item {
    position: relative;
}

.nav-item--mega {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    top: calc(100% + 8px);
    width: 1160px;
    max-width: calc(100% - 32px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid #e7e9f0;
    box-shadow: 0 18px 36px rgba(31, 37, 60, 0.2);
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 260ms;
}

.nav-item--mega:focus-within .mega-menu,
.nav-item--mega.is-open .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.mega-col h3 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #18203a;
}

.mega-col a {
    display: block;
    color: #3e4865;
    text-decoration: none;
    font-weight: 500;
    margin: 0 0 10px;
}

.mega-col a:hover {
    color: #11182c;
}

.mega-menu--shop {
    grid-template-columns: minmax(200px, 0.9fr) minmax(360px, 1.6fr) minmax(180px, 0.75fr);
}

.mega-menu--shop .mega-col--products {
    min-width: 0;
}

.mega-link-columns {
    display: grid;
    gap: 0 18px;
}

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

.mega-link-columns a {
    display: block;
    color: #3e4865;
    text-decoration: none;
    font-weight: 500;
    margin: 0 0 10px;
}

.mega-link-columns a:hover {
    color: #11182c;
}

.mega-menu--visual {
    width: 980px;
    grid-template-columns: minmax(0, 1fr) 230px;
    align-items: start;
}

.mega-menu--themes {
    width: 1100px;
    grid-template-columns: minmax(0, 1fr) 220px;
}

.mega-menu--products {
    width: 1160px;
    grid-template-columns: minmax(0, 1fr);
}

.mega-col--visual h3 {
    margin-bottom: 14px;
}

.mega-visual-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.mega-visual-list--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-col a.mega-visual-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    margin: 0;
    padding: 7px 12px 7px 7px;
    border-radius: 10px;
    background: #f7f8fc;
    color: #18203a;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mega-col a.mega-visual-link:hover,
.mega-col a.mega-visual-link:focus-visible {
    color: #b12a6d;
    background: #fff1f8;
    outline: none;
    transform: translateX(2px);
}

.mega-visual-link img,
.mega-visual-link .mega-visual-thumb {
    width: 62px;
    height: 44px;
    border-radius: 7px;
    object-fit: cover;
    background: #eef0f6;
    flex: 0 0 62px;
}

.mega-visual-link span {
    flex: 1 1 auto;
    line-height: 1.25;
}

.hero {
    --hero-slide-bottom-space: 70px;
    position: relative;
    margin-top: 0;
    background: #ffffff;
    overflow: hidden;
    min-height: calc(560px + var(--hero-slide-bottom-space));
}

.hero-slides {
    position: relative;
    min-height: calc(560px + var(--hero-slide-bottom-space));
    touch-action: pan-y;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 340ms ease;
    will-change: transform, opacity;
    background-image: var(--slide-bg-image, none);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.is-preview {
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.hero-style-1 {
    --slide-bg-image: url("../images/_heroimages/hero-bg-pattern-1.webp");
    background-position: top center;
}

.hero-style-2 {
    --slide-bg-image: url("../images/_heroimages/hero-bg-pattern-2.webp");
}

.hero-style-3 {
    --slide-bg-image: url("../images/_heroimages/hero-bg-pattern-3.webp");
}

.hero-style-4 {
    --slide-bg-image: url("../images/_heroimages/hero-bg-pattern-4.webp");
    
}

.hero-style-5 {
    --slide-bg-image: url("../images/_heroimages/hero-bg-pattern-5.webp");
    background-position: top center;
}

.hero-style-6 {
    --slide-bg-image: url("../images/_heroimages/hero-bg-pattern-6.webp");
    background-position: top center;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    min-height: calc(620px + var(--hero-slide-bottom-space));
    padding: 66px 0 calc(78px + var(--hero-slide-bottom-space));
    position: relative;
    padding-top: 60px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    background-color: rgba(255,255,255,1);
    padding: 3ch;
    border-radius: 12px;
}

.hero-kicker {
    color: #ec4e9e;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-kicker strong {
    font-weight: inherit;
}

.hero h1:not(.hero-kicker),
.hero h2 {
    font-size: 62px;
    line-height: 1.03;
    letter-spacing: -0.02em;
}

.hero-script {
    font-family: "Caveat", "Outfit", cursive;
    color: #e84a9a;
    font-size: 78px;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: none;
    line-height: 0.9;
    display: inline-block;
    transform: rotate(-4deg);
    transform-origin: left 70%;
    margin-left: 8px;
}

.hero-sub {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.4;
}

.hero-ctas {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    flex: 0 0 auto;
    min-width: 190px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 220ms var(--button-hover-ease), border-color 220ms var(--button-hover-ease), box-shadow 220ms var(--button-hover-ease), color 220ms var(--button-hover-ease);
}

.hero-btn--primary {
    background-color: var(--ink);
    color: #fff;
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
    background-color: #ec4e9e;
    box-shadow: 0 12px 24px rgba(222, 57, 138, 0.24);
    outline: none;
}

.hero-btn--primary:active {
    background-color: #060609;
    box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.32);
}

.hero-btn--ghost {
    border: 2px solid #ef5ca7;
    color: #e84b9a;
    background-color: rgba(255, 255, 255, 0.95);
}

.hero-btn--ghost:hover,
.hero-btn--ghost:focus-visible {
    border-color: #e84b9a;
    color: #ffffff;
    background-color: #ec4e9e;
    box-shadow: 0 12px 24px rgba(222, 57, 138, 0.2);
    outline: none;
}

.hero-btn--ghost:active {
    border-color: #ca2f7c;
    background-color: #d93689;
    box-shadow: inset 0 2px 6px rgba(104, 16, 63, 0.22);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 100%;
    justify-self: stretch;
    border-radius: 12px;
    border: solid 5px #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(130deg, rgba(35, 31, 67, 0.88) 0%, rgba(76, 98, 201, 0.7) 48%, rgba(236, 79, 158, 0.68) 100%);
}

.hero-visual.has-image {
    background: #18203a;
}

.hero-visual-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-style-4 .hero-visual {
    background-image: url("../images/_heroimages/slide4.webp");
    background-size: cover;
    background-position: center;
}

.hero-style-3 .hero-visual {
    background-image: url("../images/_heroimages/slide3.webp");
    background-size: cover;
    background-position: center;
}

.hero-style-1 .hero-visual {
    background-image: url("../images/_heroimages/slide1.webp");
    background-size: cover;
    background-position: center;
}

.hero-style-2 .hero-visual {
    background-image: url("../images/_heroimages/slide2.webp");
    background-size: cover;
    background-position: center;
}

.hero-style-5 .hero-visual {
    background-image: url("../images/_heroimages/slide5.webp");
    background-size: cover;
    background-position: center;
}

.hero-style-6 .hero-visual {
    background-image: url("../images/_heroimages/slide6.webp");
    background-size: cover;
    background-position: center;
}


.hero-slider-controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
}

.hero-control {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(18, 27, 50, 0.24);
    background: rgba(255, 255, 255, 0.9);
    color: #26314e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(33, 41, 68, 0.26);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 28px;
    background: #fff;
}

.pet-lovers {
    padding: 92px 0 74px;
    background:
        radial-gradient(circle at 16% 28%, rgba(236, 78, 158, 0.12) 0%, rgba(236, 78, 158, 0) 28%),
        radial-gradient(circle at 84% 72%, rgba(244, 141, 192, 0.16) 0%, rgba(244, 141, 192, 0) 32%),
        linear-gradient(180deg, #fff8fc 0%, #fff1f8 100%);
    border-top: 1px solid #f2dce7;
}

.pet-lovers-head {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.pet-lovers-kicker {
    color: #ec4e9e;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.pet-lovers h2 {
    margin-top: 14px;
    color: #121832;
    font-size: 54px;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.pet-lovers h2 span {
    display: inline-block;
    margin-left: 8px;
    color: #e84a9a;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 66px;
    font-weight: 700;
    line-height: 0.82;
    transform: rotate(-3deg);
    transform-origin: left 70%;
    letter-spacing: -0.03em;
}

.pet-lovers-head > p:last-child {
    margin-top: 20px;
    color: #29314a;
    font-size: 20px;
    line-height: 1.45;
}

.pet-lovers-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.pet-lovers-card {
    min-height: 318px;
    padding: 38px 26px 34px;
    border: 1px solid #f5e0eb;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(222, 57, 138, 0.12);
    text-align: center;
    transform-origin: center center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    cursor: default;
}

@media (hover: hover) and (pointer: fine) {
    .pet-lovers-card:hover,
    .pet-lovers-card:focus-within {
        border-color: #efc7db;
        box-shadow: 0 26px 52px rgba(222, 57, 138, 0.2);
        transform: translateY(-8px) scale(1.025);
    }
}

.pet-lovers-card .pet-lovers-icon.material-symbols-outlined {
    width: 106px;
    height: 106px;
    margin: 0 auto 26px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f45aa7 0%, #df2e87 100%);
    box-shadow: 0 10px 22px rgba(222, 57, 138, 0.32), inset 0 0 0 2px rgba(255, 255, 255, 0.28);
    font-size: 54px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 600,
        'GRAD' 0,
        'opsz' 48;
}

.pet-lovers-card h3 {
    color: #121832;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.pet-lovers-card p {
    margin-top: 20px;
    color: #2f3650;
    font-size: 18px;
    line-height: 1.5;
}

.how-it-works {
    padding: 76px 0 68px;
    background-color: #fff6fa;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-top: 1px solid #f2dce7;
}

.how-it-works-head {
    text-align: center;
}

.how-it-works-title {
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: 98px;
    line-height: 0.88;
    letter-spacing: 0;
    color: #121832;
    margin-top: 0;
}

.how-it-works-highlight {
    color: #eb4e9d;
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-it-works-intro {
    margin-top: 8px;
    color: #29314a;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 45px;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.how-it-works-intro span {
    color: #eb4e9d;
}

.how-it-works-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.how-step-card {
    position: relative;
    z-index: 1;
    border: 1px solid #f0d8e3;
    border-radius: 20px;
    padding: 18px 16px 16px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(30, 28, 49, 0.08);
    text-align: center;
    transform-origin: center center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    margin-bottom: 20px;
    cursor: default;
}

.how-step-card:nth-child(1) {
    z-index: 6;
}

.how-step-card:nth-child(2) {
    z-index: 5;
}

.how-step-card:nth-child(3) {
    z-index: 4;
}

.how-step-card:nth-child(4) {
    z-index: 3;
}

.how-step-card:nth-child(5) {
    z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
    .how-step-card:hover,
    .how-step-card:focus-within {
        transform: translateY(-4px) scale(1.02) rotate(-0.6deg);
        border-color: #ebcddd;
        box-shadow: 0 22px 42px rgba(30, 28, 49, 0.16);
    }

    .how-step-card:nth-child(even):hover,
    .how-step-card:nth-child(even):focus-within {
        transform: translateY(-4px) scale(1.02) rotate(0.6deg);
    }
}

.how-step-card::after {
    content: "arrow_forward";
    font-family: "Material Symbols Outlined";
    position: absolute;
    right: -22px;
    top: 46%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f05ba8 0%, #df3d8d 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 12;
    box-shadow: 0 10px 20px rgba(222, 57, 138, 0.32);
}

.how-step-card:last-child::after {
    display: none;
}

.how-step-number {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f05ba8 0%, #de3f8e 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(222, 57, 138, 0.3);
}

.how-step-media {
    border-radius: 14px;
    margin-top: 22px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(130deg, #ffd6ea 0%, #fff4fa 100%);
}

.how-step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-step-icon {
    margin-top: 12px;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: transparent;
    font-size: 40px;
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.how-step-card h3 {
    margin-top: 8px;
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.how-step-card p {
    margin-top: 11px;
    color: #2f3650;
    font-size: 15px;
    line-height: 1.36;
}

.product-showcase {
    position: relative;
    padding: 50px 0 58px;
    background: #fff;
    border-top: 1px solid #f2dce7;
    overflow: hidden;
}

.product-showcase::before,
.product-showcase::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.5),
        0 0 16px rgba(236, 78, 158, 0.58),
        190px 80px 0 1px rgba(255, 255, 255, 0.86),
        760px 28px 0 0 rgba(255, 255, 255, 0.9),
        1020px 190px 0 1px rgba(255, 255, 255, 0.82);
    opacity: 0.9;
    pointer-events: none;
}

.product-showcase::before {
    left: 150px;
    top: 92px;
}

.product-showcase::after {
    right: 180px;
    top: 168px;
}

.product-showcase-inner {
    position: relative;
    z-index: 1;
}

.product-showcase-head {
    text-align: center;
}

.product-showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ec4e9e;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-showcase-kicker::before,
.product-showcase-kicker::after {
    content: "auto_awesome";
    font-family: "Material Symbols Outlined";
    font-size: 18px;
    line-height: 1;
}

.product-showcase h2 {
    margin-top: 6px;
    color: #121832;
    font-size: 56px;
    line-height: 0.98;
    letter-spacing: 0;
}

.product-showcase h2 span {
    display: inline-block;
    color: #ec4e9e;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.84;
    transform: rotate(-4deg);
    transform-origin: center;
    letter-spacing: -0.05em;
    padding-right: 10px;
}

.product-showcase-head > p:last-child {
    margin-top: 12px;
    color: #536078;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.36;
}

.product-tabs {
    margin: 24px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.product-tab {
    appearance: none;
    border: 0;
    font: inherit;
    cursor: pointer;
    min-width: 116px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e34494;
    background: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(76, 48, 73, 0.07);
    transition: background-color 300ms var(--button-hover-ease), box-shadow 300ms var(--button-hover-ease), color 300ms var(--button-hover-ease);
}

.product-tab.is-active {
    color: #ffffff;
    background: linear-gradient(180deg, #ff5fb1 0%, #ed4d9e 58%, #d93b8a 100%);
    box-shadow: 0 14px 26px rgba(222, 57, 138, 0.24);
}

.product-tab:hover,
.product-tab:focus-visible {
    color: #ffffff;
    background-color: #ec4e9e;
    box-shadow: 0 14px 26px rgba(222, 57, 138, 0.28);
    outline: none;
}

.product-tab.is-active:hover,
.product-tab.is-active:focus-visible {
    box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.12), 0 15px 28px rgba(222, 57, 138, 0.34);
}

.product-tab:active {
    background: #d93689;
    box-shadow: inset 0 2px 6px rgba(104, 16, 63, 0.18);
}

.product-tab .material-symbols-outlined {
    color: currentColor;
    font-size: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #f0d7e2;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(41, 31, 52, 0.1);
    transform-origin: center center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card-media {
    position: relative;
    aspect-ratio: 1200 / 1000;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 236, 245, 0.84), rgba(245, 213, 225, 0.84)),
        #ffeaf4;
}

.product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 380ms ease-in-out;
}

/* Hover image sits underneath; default mockup stays on top. */
.product-image--primary {
    z-index: 2;
    opacity: 1;
}

.product-image--secondary {
    z-index: 1;
    opacity: 1;
}

.product-card.is-alt-active .product-image--primary {
    opacity: 0;
}

.product-badge,
.product-burst {
    position: absolute;
    z-index: 3;
    color: #ffffff;
    background: linear-gradient(180deg, #ff5fb1 0%, #ec4397 100%);
    box-shadow: 0 9px 18px rgba(222, 57, 138, 0.28);
    text-transform: uppercase;
    font-weight: 800;
}

.product-badge {
    top: 10px;
    left: 10px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1;
}

.product-badge .material-symbols-outlined {
    color: currentColor;
    font-size: 15px;
}

.product-burst {
    right: 12px;
    bottom: 12px;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    line-height: 1.05;
}

.product-image-toggle {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #ec4e9e;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(35, 31, 52, 0.16);
}

.product-image-toggle .material-symbols-outlined {
    color: currentColor;
    font-size: 22px;
}

.product-card-body {
    padding: 16px 16px 15px;
}

.product-card h3 {
    color: #161b34;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
}

.product-card p {
    margin-top: 8px;
    min-height: calc(1.35em * 2);
    color: #3e4865;
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card strong {
    display: block;
    margin-top: 12px;
    color: #ec4e9e;
    font-size: 14px;
    line-height: 1;
}

.product-card-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
}

.product-primary-action,
.product-detail-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.product-primary-action {
    border-radius: 7px;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    box-shadow: 0 9px 16px rgba(222, 57, 138, 0.22);
    transition: box-shadow 300ms var(--button-hover-ease);
}

.product-primary-action:hover,
.product-primary-action:focus-visible {
    box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.12), 0 11px 20px rgba(222, 57, 138, 0.34);
    outline: none;
}

.product-primary-action:active {
    background: linear-gradient(180deg, #df3d8d 0%, #ca2f7c 100%);
    box-shadow: inset 0 2px 5px rgba(104, 16, 63, 0.22);
}

.product-detail-link {
    gap: 4px;
    justify-content: flex-end;
    color: #151a31;
    white-space: nowrap;
}

.product-detail-link .material-symbols-outlined {
    color: #ec4e9e;
    font-size: 18px;
}

.product-size-guide {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #18203a;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.product-size-guide .material-symbols-outlined {
    color: #ec4e9e;
    font-size: 24px;
}

.product-size-guide a {
    color: #ec4e9e;
}

.theme-showcase {
    position: relative;
    padding: 50px 0 58px;
    background: #fffafc;
    border-top: 1px solid #f2dce7;
    overflow: hidden;
}

.theme-showcase-inner {
    position: relative;
    z-index: 1;
}

.theme-showcase-head {
    text-align: center;
}

.theme-showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ec4e9e;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.theme-showcase-kicker::before,
.theme-showcase-kicker::after {
    content: "auto_awesome";
    font-family: "Material Symbols Outlined";
    font-size: 18px;
    line-height: 1;
}

.theme-showcase h2 {
    margin-top: 6px;
    color: #121832;
    font-size: 56px;
    line-height: 0.98;
    letter-spacing: 0;
}

.theme-showcase h2 span {
    display: inline-block;
    color: #ec4e9e;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.84;
    transform: rotate(-4deg);
    transform-origin: center;
    letter-spacing: -0.05em;
    padding-right: 10px;
}

.theme-showcase-head > p:last-child {
    margin-top: 12px;
    color: #536078;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.36;
}

.theme-species-filter {
    margin: 22px auto 0;
}

.theme-showcase-inner:has(.theme-species-filter) .theme-grid {
    margin-top: 22px;
}

.theme-card[hidden],
.theme-species-empty[hidden] {
    display: none;
}

.theme-species-empty {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    text-align: center;
}

.theme-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.theme-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #f0d7e2;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(41, 31, 52, 0.1);
    text-decoration: none;
    color: inherit;
    transform-origin: center center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.theme-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background:
        linear-gradient(135deg, rgba(255, 236, 245, 0.84), rgba(245, 213, 225, 0.84)),
        #ffeaf4;
}

.theme-card-media picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.theme-card-media .theme-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 380ms ease-in-out;
}

/* Hover image sits underneath; default thumbnail stays on top. */
.theme-card-media .theme-image--primary {
    z-index: 2;
    opacity: 1;
}

.theme-card-media .theme-image--secondary {
    z-index: 1;
    opacity: 1;
}

.theme-card-body {
    padding: 16px 16px 18px;
}

.theme-card h3 {
    color: #161b34;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0;
}

.theme-card p {
    margin-top: 8px;
    min-height: calc(1.35em * 2);
    color: #3e4865;
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (hover: hover) and (pointer: fine) {
    .related-product-card:hover,
    .related-product-card:focus-within,
    .product-card:hover,
    .product-card:focus-within,
    .theme-card:hover,
    .theme-card:focus-visible {
        border-color: #edc9da;
        box-shadow: 0 20px 40px rgba(41, 31, 52, 0.14);
        transform: translateY(-4px) scale(1.01);
    }

    .product-card--has-hover:hover .product-image--primary,
    .product-card--has-hover:focus-within .product-image--primary,
    .theme-card--has-hover:hover .theme-image--primary,
    .theme-card--has-hover:focus-within .theme-image--primary {
        opacity: 0;
    }
}

.customer-reviews {
    padding: 72px 0 70px;
    background:
        radial-gradient(circle at 18% 20%, rgba(236, 78, 158, 0.12) 0%, rgba(236, 78, 158, 0) 28%),
        radial-gradient(circle at 82% 78%, rgba(244, 141, 192, 0.16) 0%, rgba(244, 141, 192, 0) 34%),
        linear-gradient(180deg, #fff8fc 0%, #fff1f8 100%);
    border-top: 1px solid #f2dce7;
}

.customer-reviews-head {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.customer-reviews-kicker {
    color: #ec4e9e;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.customer-reviews h2 {
    margin-top: 14px;
    color: #121832;
    font-size: 52px;
    line-height: 1.02;
    letter-spacing: -0.015em;
}

.customer-reviews h1 {
    margin-top: 14px;
    color: #121832;
    font-size: 52px;
    line-height: 1.02;
    letter-spacing: -0.015em;
}

.customer-reviews-head > p:last-child {
    margin-top: 18px;
    color: #29314a;
    font-size: 20px;
    line-height: 1.45;
}

.customer-rating-pill {
    width: max-content;
    max-width: 100%;
    min-height: 74px;
    margin: 30px auto 28px;
    padding: 0 30px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(222, 57, 138, 0.12);
}

.customer-rating-pill strong {
    color: #121832;
    font-size: 38px;
    line-height: 1;
}

.customer-rating-pill strong span {
    color: #ec4e9e;
}

.customer-rating-stars {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.customer-rating-stars::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 1px;
    height: 34px;
    transform: translateY(-50%);
    background: #e8d5df;
}

.customer-rating-pill p {
    color: #121832;
    font-size: 18px;
    font-weight: 700;
}

.customer-rating-stars .review-star.material-symbols-outlined,
.customer-review-stars .review-star.material-symbols-outlined {
    color: #ec4e9e;
    font-size: 34px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 700,
        'GRAD' 0,
        'opsz' 48;
}

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

.customer-review-card {
    min-height: 324px;
    padding: 28px 30px 26px;
    border: 1px solid #f5e0eb;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 38px rgba(222, 57, 138, 0.12);
}

.customer-review-top {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: center;
    gap: 20px;
}

.customer-review-top img,
.customer-review-photo-fallback {
    width: 90px;
    height: 90px;
    border: 4px solid #ffffff;
    border-radius: 999px;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 0 2px #f2d5e4, 0 12px 22px rgba(41, 31, 52, 0.12);
}

.customer-review-photo-fallback {
    background: #ffe4f2;
}

.customer-review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.customer-review-card > p:not(.customer-review-product) {
    margin-top: 20px;
    color: #202840;
    font-size: 18px;
    line-height: 1.55;
}

.customer-review-card h3 {
    margin-top: 28px;
    color: #121832;
    font-size: 20px;
    line-height: 1.1;
}

.customer-review-product {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #3e4865;
    font-size: 17px;
    line-height: 1;
}

.customer-review-product .review-product-icon.material-symbols-outlined {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    background: #ffe4f2;
    font-size: 20px;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.customer-reviews-button {
    width: max-content;
    max-width: 100%;
    min-height: 56px;
    margin: 34px auto 0;
    padding: 0 30px 0 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #ed4298 56%, #df2f87 100%);
    box-shadow: 0 14px 28px rgba(222, 57, 138, 0.26);
    text-decoration: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.customer-reviews-button .reviews-button-icon.material-symbols-outlined {
    font-size: 28px;
    line-height: 1;
    color: currentColor;
}

.reviews-empty {
    margin: 12px auto 0;
    max-width: 640px;
    text-align: center;
    color: #29314a;
    font-size: 18px;
}

@media (hover: hover) and (pointer: fine) {
    .customer-reviews-button:hover,
    .customer-reviews-button:focus-visible {
        box-shadow: 0 18px 34px rgba(222, 57, 138, 0.34);
        outline: none;
        transform: translateY(-2px);
    }
}

.about-paw-stars {
    scroll-margin-top: 92px;
    padding: 76px 0 84px;
    background:
        radial-gradient(circle at 12% 24%, rgba(236, 78, 158, 0.1) 0%, rgba(236, 78, 158, 0) 32%),
        radial-gradient(circle at 84% 80%, rgba(244, 141, 192, 0.12) 0%, rgba(244, 141, 192, 0) 30%),
        linear-gradient(180deg, #fff9fc 0%, #fff3f9 100%);
    border-top: 1px solid #f2dce7;
}

.about-paw-stars-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}

.about-paw-stars-kicker {
    color: #ec4e9e;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.about-paw-stars h2 {
    max-width: 520px;
    margin-top: 14px;
    color: #121832;
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.about-paw-stars h2 span {
    display: block;
    color: #e84a9a;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 62px;
    font-weight: 700;
    line-height: 0.82;
    transform: rotate(-3deg);
    transform-origin: left center;
}

.about-paw-stars-copy > p:not(.about-paw-stars-kicker) {
    max-width: 560px;
    margin-top: 22px;
    color: #3e4865;
    font-size: 17px;
    line-height: 1.56;
}

.about-feature-list {
    max-width: 548px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-feature-list li {
    min-height: 42px;
    padding: 4px 18px 4px 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #19213b;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(41, 31, 52, 0.08);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.about-feature-icon.material-symbols-outlined {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #e9348d 100%);
    font-size: 21px;
    line-height: 1;
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.about-paw-stars-button {
    width: max-content;
    max-width: 100%;
    min-height: 52px;
    margin-top: 24px;
    padding: 0 26px 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #ed4298 56%, #df2f87 100%);
    box-shadow: 0 14px 28px rgba(222, 57, 138, 0.26);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-paw-stars-button .about-button-icon.material-symbols-outlined {
    color: currentColor;
    font-size: 25px;
    line-height: 1;
}

.about-paw-stars-media {
    position: relative;
    min-height: 598px;
}

.about-main-image {
    width: 100%;
    height: 560px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 48px rgba(41, 31, 52, 0.14);
}

.about-inset-image {
    position: absolute;
    right: -36px;
    bottom: -28px;
    width: min(360px, 56%);
    padding: 9px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(41, 31, 52, 0.18);
}

.about-inset-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    display: block;
    object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
    .about-paw-stars-button:hover,
    .about-paw-stars-button:focus-visible {
        box-shadow: 0 18px 34px rgba(222, 57, 138, 0.34);
        outline: none;
        transform: translateY(-2px);
    }
}

.site-footer {
    padding: 64px 0 52px;
    background:
        radial-gradient(circle at 13% 12%, rgba(236, 78, 158, 0.16) 0%, rgba(236, 78, 158, 0) 30%),
        radial-gradient(circle at 86% 86%, rgba(79, 100, 207, 0.13) 0%, rgba(79, 100, 207, 0) 34%),
        linear-gradient(135deg, #061327 0%, #071528 54%, #061022 100%);
}

.site-footer-shell {
    overflow: hidden;
    color: #f7f8ff;
    background: transparent;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 1.45fr) minmax(150px, 0.85fr) minmax(180px, 0.95fr) minmax(250px, 1.25fr);
    gap: 42px;
    padding: 10px 0px 46px;
}

.footer-brand,
.footer-links,
.footer-contact {
    min-width: 0;
}

.footer-links,
.footer-contact {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 42px;
}

.footer-logo {
    display: block;
    width: min(280px, 100%);
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 100%;
    aspect-ratio: 17 / 10;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 20px;
    color: rgba(247, 248, 255, 0.84);
    font-size: 16px;
    line-height: 1.58;
}

.footer-socials {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    border: 1px solid #ec4e9e;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-socials i {
    font-size: 22px;
    line-height: 1;
}

.footer-links h2,
.footer-contact h2 {
    margin: 0 0 24px;
    color: #ec4e9e;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: rgba(247, 248, 255, 0.88);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    transition: color 220ms ease, transform 220ms ease;
}

.footer-links a::before {
    content: "chevron_right";
    color: #ec4e9e;
    font-family: "Material Symbols Outlined";
    font-size: 19px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 600,
        'GRAD' 0,
        'opsz' 24;
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 26px;
}

.footer-contact-item {
    margin: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 16px;
    color: rgba(247, 248, 255, 0.88);
    text-decoration: none;
}

.footer-contact-icon.material-symbols-outlined {
    width: 46px;
    height: 46px;
    border: 1px solid #ec4e9e;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ec4e9e;
    font-size: 25px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.footer-contact-item strong,
.footer-benefit strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.footer-contact-item small,
.footer-benefit small {
    display: block;
    margin-top: 6px;
    color: rgba(247, 248, 255, 0.68);
    font-size: 14px;
    line-height: 1.28;
}

.footer-benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 26px 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.footer-benefit {
    min-width: 0;
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    gap: 18px;
}

.footer-benefit + .footer-benefit {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 40px;
}

.footer-benefit-icon.material-symbols-outlined {
    color: #ec4e9e;
    font-size: 48px;
    line-height: 1;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
}

.footer-bottom {
    min-height: 88px;
    padding: 20px 56px;
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(230px, 1fr);
    align-items: center;
    gap: 24px;
    color: rgba(247, 248, 255, 0.68);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom p a {
    color: #ec4e9e;
    font-weight: 800;
}

.footer-legal-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-legal-inline a {
    padding: 0 14px;
    line-height: 1.2;
}

.footer-legal-inline a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-payments {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-payments span {
    min-width: 34px;
    min-height: 34px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    line-height: 1;
}

.footer-payments i {
    font-size: 34px;
    line-height: 1;
}

.footer-payment-logo,
.footer-apple-pay-logo {
    display: block;
    width: 34px;
    height: 34px;
}

.footer-payments::after {
    content: "";
    display: inline-block;
    width: 91px;
    height: 22px;
    align-self: center;
    background: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2MtODdiMWRhNzktMCBrbGxTSkwiIHdpZHRoPSI5MSIgaGVpZ2h0PSIyMiIgdmlld0JveD0iMCAwIDkxIDIyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik04Mi4yNzgyIDE3Ljk1NzlDODAuMTY5MyAxNy45NTc5IDc4LjUyNTYgMTYuMjMgNzguNTI1NiAxNC4xMzE4Qzc4LjUyNTYgMTIuMDMzNyA4MC4xNjkzIDEwLjMwNTcgODIuMjc4MiAxMC4zMDU3Qzg0LjM4NzEgMTAuMzA1NyA4Ni4wMzA4IDEyLjAzMzcgODYuMDMwOCAxNC4xMzE4Qzg2LjAzMDggMTYuMjMgODQuMzg3MSAxNy45NTc5IDgyLjI3ODIgMTcuOTU3OVpNODEuMjIzOCAyMkM4My4wMjI1IDIyIDg1LjMxNzYgMjEuMzIxMiA4Ni41ODkxIDE4LjY2NzZMODYuNzEzMSAxOC43MjkzQzg2LjE1NDkgMjAuMTc5NSA4Ni4xNTQ5IDIxLjA0MzUgODYuMTU0OSAyMS4yNTk1VjIxLjU5ODlIOTAuNjgyOFY2LjY2NDhIODYuMTU0OVY3LjAwNDIxQzg2LjE1NDkgNy4yMjAyIDg2LjE1NDkgOC4wODQxNSA4Ni43MTMxIDkuNTM0MzZMODYuNTg5MSA5LjU5NjA3Qzg1LjMxNzYgNi45NDI1IDgzLjAyMjUgNi4yNjM2NyA4MS4yMjM4IDYuMjYzNjdDNzYuOTEyOSA2LjI2MzY3IDczLjg3MzYgOS42NTc3OCA3My44NzM2IDE0LjEzMThDNzMuODczNiAxOC42MDU5IDc2LjkxMjkgMjIgODEuMjIzOCAyMlpNNjUuOTk2MyA2LjI2MzY3QzYzLjk0OTQgNi4yNjM2NyA2Mi4zMzY3IDYuOTczMzUgNjEuMDM0MSA5LjU5NjA3TDYwLjkxMDEgOS41MzQzNkM2MS40NjgzIDguMDg0MTUgNjEuNDY4MyA3LjIyMDIgNjEuNDY4MyA3LjAwNDIxVjYuNjY0OEg1Ni45NDA0VjIxLjU5ODlINjEuNTkyNFYxMy43MzA3QzYxLjU5MjQgMTEuNjYzNCA2Mi44MDE5IDEwLjM2NzUgNjQuNzU1NyAxMC4zNjc1QzY2LjcwOTYgMTAuMzY3NSA2Ny42NzEgMTEuNDc4MyA2Ny42NzEgMTMuNjk5OVYyMS41OTg5SDcyLjMyM1YxMi4wOTU0QzcyLjMyMyA4LjcwMTI2IDY5LjY1NTggNi4yNjM2NyA2NS45OTYzIDYuMjYzNjdaTTUwLjIxMDUgOS41OTYwN0w1MC4wODY0IDkuNTM0MzZDNTAuNjQ0NyA4LjA4NDE1IDUwLjY0NDcgNy4yMjAyIDUwLjY0NDcgNy4wMDQyMVY2LjY2NDhINDYuMTE2OFYyMS41OTg5SDUwLjc2ODdMNTAuNzk5OCAxNC40MDk1QzUwLjc5OTggMTIuMzExNCA1MS45MTYyIDExLjA0NjMgNTMuNzQ2IDExLjA0NjNDNTQuMjQyMiAxMS4wNDYzIDU0LjY0NTQgMTEuMTA4IDU1LjExMDYgMTEuMjMxNFY2LjY2NDhDNTMuMDYzNyA2LjIzMjgyIDUxLjIzMzkgNy4wMDQyMSA1MC4yMTA1IDkuNTk2MDdaTTM1LjQxNzIgMTcuOTU3OUMzMy4zMDgzIDE3Ljk1NzkgMzEuNjY0NiAxNi4yMyAzMS42NjQ2IDE0LjEzMThDMzEuNjY0NiAxMi4wMzM3IDMzLjMwODMgMTAuMzA1NyAzNS40MTcyIDEwLjMwNTdDMzcuNTI2MSAxMC4zMDU3IDM5LjE2OTggMTIuMDMzNyAzOS4xNjk4IDE0LjEzMThDMzkuMTY5OCAxNi4yMyAzNy41MjYxIDE3Ljk1NzkgMzUuNDE3MiAxNy45NTc5Wk0zNC4zNjI3IDIyQzM2LjE2MTUgMjIgMzguNDU2NSAyMS4zMjEyIDM5LjcyOCAxOC42Njc2TDM5Ljg1MjEgMTguNzI5M0MzOS4yOTM4IDIwLjE3OTUgMzkuMjkzOCAyMS4wNDM1IDM5LjI5MzggMjEuMjU5NVYyMS41OTg5SDQzLjgyMThWNi42NjQ4SDM5LjI5MzhWNy4wMDQyMUMzOS4yOTM4IDcuMjIwMiAzOS4yOTM4IDguMDg0MTUgMzkuODUyMSA5LjUzNDM2TDM5LjcyOCA5LjU5NjA3QzM4LjQ1NjUgNi45NDI1IDM2LjE2MTUgNi4yNjM2NyAzNC4zNjI3IDYuMjYzNjdDMzAuMDUxOSA2LjI2MzY3IDI3LjAxMjYgOS42NTc3OCAyNy4wMTI2IDE0LjEzMThDMjcuMDEyNiAxOC42MDU5IDMwLjA1MTkgMjIgMzQuMzYyNyAyMlpNMjAuNTMwOCAyMS41OTg5SDI1LjE4MjhWMEgyMC41MzA4VjIxLjU5ODlaTTE3LjExOTMgMEgxMi4zNzQzQzEyLjM3NDMgMy44NTY5NCA5Ljk4NjI4IDcuMzEyNzYgNi4zNTc3MiA5Ljc4MTIxTDQuOTMxMTEgMTAuNzY4NlYwSDBWMjEuNTk4OUg0LjkzMTExVjEwLjg5MkwxMy4wODc2IDIxLjU5ODlIMTkuMTA0MkwxMS4yNTc4IDExLjM1NDhDMTQuODI0MyA4Ljc5MzgzIDE3LjE1MDMgNC44MTM0NiAxNy4xMTkzIDBaIiBmaWxsPSIjZmZmZmZmIj48L3BhdGg+PC9zdmc+") center / contain no-repeat;
}

@media (hover: hover) and (pointer: fine) {
    .footer-socials a:hover,
    .footer-socials a:focus-visible {
        color: #ffffff;
        background-color: #ec4e9e;
        outline: none;
        transform: translateY(-2px);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-bottom a:hover,
    .footer-bottom a:focus-visible {
        color: #ffffff;
        outline: none;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
        transform: translateX(3px);
    }
}

.material-symbols-outlined:not(.cart-icon):not(.how-step-icon):not(.pet-lovers-icon):not(.review-star):not(.review-product-icon):not(.reviews-button-icon):not(.about-feature-icon):not(.about-button-icon):not(.about-special-icon):not(.about-mission-heart):not(.about-story-badge-icon):not(.footer-contact-icon):not(.footer-benefit-icon):not(.hiw-value__icon):not(.au-icon) {
    font-size: 19px;
    line-height: 1;
    vertical-align: middle;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.hiw-hero__deco .material-symbols-outlined,
.hiw-accent .material-symbols-outlined,
.hiw-tips .material-symbols-outlined,
.hiw-values__title .material-symbols-outlined,
.hiw-value__icon.material-symbols-outlined,
.hiw-cta__button .material-symbols-outlined {
    line-height: 1;
    vertical-align: middle;
}

.topbar-left .material-symbols-outlined,
.topbar-right .material-symbols-outlined {
    font-size: 20px;
}

.nav-link .material-symbols-outlined,
.nav-trigger .material-symbols-outlined {
    font-size: 20px;
}

.order-confirmation-icon .material-symbols-outlined {
    font-size: 36px;
    line-height: 1;
}

.order-address-card address {
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 860px) {
    .order-confirmation-icon .material-symbols-outlined {
        font-size: 34px;
    }
}

@media (max-width: 1120px) {
    .hero h2 {
        font-size: 50px;
    }
}

@media (max-width: 1080px) {
    .topbar .container {
        min-height: 58px;
    }

    .topbar a {
        font-size: 14px;
    }

    .site-header-inner {
        grid-template-columns: minmax(132px, 260px) 1fr auto auto;
        min-height: 164px;
    }

    .header-benefits {
        gap: 14px;
    }

    .header-benefits p {
        font-size: 14px;
        width: auto;
    }

    .header-benefits .material-symbols-outlined {
        font-size: 24px !important;
    }

    .hero-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
        min-height: calc(520px + var(--hero-slide-bottom-space));
        padding: 52px 0 calc(76px + var(--hero-slide-bottom-space));
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero {
        min-height: calc(520px + var(--hero-slide-bottom-space));
    }

    .hero-slides {
        min-height: calc(520px + var(--hero-slide-bottom-space));
    }

    .hero h1:not(.hero-kicker),
    .hero h2 {
        font-size: 50px;
    }

    .hero-sub {
        font-size: 17px;
    }

    .hero-script {
        font-size: 66px;
    }

    .hero-visual {
        display: block;
        max-width: 100%;
        justify-self: stretch;
    }

    .pet-lovers {
        padding: 72px 0 60px;
    }

    .pet-lovers h2 {
        font-size: 48px;
    }

    .pet-lovers h2 span {
        font-size: 58px;
    }

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

    .how-it-works {
        padding: 64px 0 52px;
    }

    .how-it-works-title {
        font-size: 86px;
    }

    .how-it-works-intro {
        font-size: 40px;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .how-step-card:nth-child(3)::after {
        display: none;
    }

    .product-showcase {
        padding: 62px 0 52px;
    }

    .product-showcase h2 {
        font-size: 48px;
    }

    .product-showcase h2 span {
        font-size: 62px;
    }

    .product-grid,
    .theme-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .theme-showcase h2 {
        font-size: 48px;
    }

    .theme-showcase h2 span {
        font-size: 62px;
    }

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

    .product-detail-link {
        justify-content: center;
    }

    .product-image-toggle {
        display: inline-flex;
    }

    .customer-reviews {
        padding: 62px 0 58px;
    }

    .customer-reviews h2,
    .customer-reviews h1 {
        font-size: 46px;
    }

    .customer-review-grid {
        gap: 16px;
    }

    .customer-review-card {
        padding: 24px 22px;
    }

    .customer-review-top {
        grid-template-columns: 84px 1fr;
        gap: 14px;
    }

    .customer-review-top img {
        width: 78px;
        height: 78px;
    }

    .customer-review-stars .review-star.material-symbols-outlined {
        font-size: 28px;
    }

    .site-footer {
        padding: 48px 0 44px;
    }

    .footer-main {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 34px;
        padding: 10px 0px 38px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-links,
    .footer-contact {
        border-left: none;
        padding-left: 0;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding-bottom: 28px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-contact h2 {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .footer-benefits {
        padding: 24px 38px;
        gap: 18px;
    }

    .footer-benefit {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .footer-benefit + .footer-benefit {
        padding-left: 18px;
    }

    .footer-benefit-icon.material-symbols-outlined {
        font-size: 40px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 24px 38px;
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
    }

    .about-paw-stars {
        padding: 64px 0 74px;
    }

    .about-paw-stars-inner {
        gap: 34px;
    }

    .about-paw-stars h2 {
        font-size: 44px;
    }

    .about-paw-stars h2 span {
        font-size: 54px;
    }

    .about-main-image {
        height: 500px;
    }

    .about-paw-stars-media {
        min-height: 536px;
    }

    .about-inset-image {
        right: -18px;
        width: min(320px, 60%);
    }
}

@media (max-width: 900px) {
    .site-header-inner {
        grid-template-columns: minmax(120px, 200px) 1fr auto auto;
        gap: 12px;
    }

    .site-logo-image {
        max-width: 200px;
    }
}


@media (max-width: 860px) {
    .mobile-nav-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky;
        top: env(safe-area-inset-top);
        z-index: 150;
    }

    .topbar {
        display: none;
    }

    .topbar .container {
        flex-wrap: wrap;
        padding: 10px 0;
        row-gap: 10px;
    }

    .topbar-right {
        padding-left: 0;
    }

    .topbar a {
        font-size: 14px;
    }

    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto auto;
        min-height: 96px;
        gap: 8px;
        padding: 0px;
    }

    .site-logo {
        min-width: 0;
    }

    .site-logo-image {
        max-width: min(160px, 100%);
        width: auto;
        height: auto;
        max-height: 80px;
    }

    .header-benefits {
        display: none;
    }

    .header-account-button {
        display: inline-flex;
    }

    .wrapper.mobile-header-benefits,
    .mobile-header-benefits {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
        padding: 8px 16px 11px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        background: var(--ink);
    }

    .mobile-header-benefits p {
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #f6f7fc;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.12;
    }

    .mobile-header-benefits p + p {
        border-left: 1px solid rgba(255, 255, 255, 0.26);
    }

    .mobile-header-benefits .material-symbols-outlined {
        flex: 0 0 auto;
        color: #ef4f9f;
        font-size: 25px !important;
        font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24 !important;
    }

    .mobile-header-benefits span:not(.material-symbols-outlined) {
        min-width: 0;
        max-width: 74px;
    }

    .cart-button {
        width: 58px;
        height: 58px;
    }

    .cart-icon {
        font-size: 52px;
        transform: scale(1);
    }

    .cart-count {
        min-width: 22px;
        height: 22px;
        right: 2px;
        top: 2px;
        font-size: 13px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .primary-nav {
        margin-top: 0;
        margin-bottom: 0;
        position: relative;
        z-index: 140;
    }

    .nav-shell {
        position: fixed;
        top: env(safe-area-inset-top);
        left: 0;
        width: 330px;
        max-width: 86%;
        height: calc(100% - env(safe-area-inset-top));
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 300ms ease;
        box-shadow: none;
        background: linear-gradient(180deg, #f7a6cd 0%, #ef4f9f 54%, #cf2f7c 100%);
        padding-top: 120px;
        overflow-y: auto;
        pointer-events: none;
        z-index: 130;
    }

    .mobile-nav-open .nav-shell {
        transform: translateX(0);
        box-shadow: 18px 0 34px rgba(7, 11, 24, 0.34);
        pointer-events: auto;
    }

    .mobile-nav-close {
        position: absolute;
        top: 14px;
        right: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 38px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.46);
        background: rgba(177, 42, 109, 0.28);
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
    }

    .mobile-nav-close .material-symbols-outlined {
        font-size: 18px;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: none;
        background: rgba(6, 8, 18, 0.42);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
        z-index: 100;
    }

    .mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        padding: 10px;
    }

    .mobile-nav-account {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin: 10px;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .nav-link {
        justify-content: flex-start;
        min-height: 52px;
        width: 100%;
        padding-inline: 14px;
    }

    .nav-item--mega {
        position: relative;
    }

    .nav-item--mega .nav-trigger {
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .nav-item--mega .nav-trigger .material-symbols-outlined {
        transition: transform 200ms ease;
    }

    .nav-item--mega.is-open .nav-trigger {
        background: rgba(177, 42, 109, 0.36);
    }

    .nav-item--mega.is-open .nav-trigger .material-symbols-outlined {
        transform: rotate(180deg);
    }

    .mega-menu {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        display: none;
        grid-template-columns: 1fr;
        margin-top: 8px;
        padding: 14px;
        border-radius: 12px;
        border: 1px solid rgba(24, 22, 39, 0.1);
        box-shadow: 0 8px 18px rgba(26, 19, 43, 0.12);
        background: rgba(255, 255, 255, 0.92);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        overflow: visible;
        max-height: none;
    }

    .mega-menu--visual,
    .mega-menu--shop,
    .mega-menu--themes,
    .mega-menu--products {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .mega-link-columns--2,
    .mega-visual-list--3 {
        grid-template-columns: 1fr;
    }


    .nav-item--mega.is-open .mega-menu {
        display: grid;
    }

    .nav-item--mega:focus-within .mega-menu,
    .nav-item--mega.is-open .mega-menu {
        transform: none;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: none;
    }

    .mega-col + .mega-col {
        margin-top: 8px;
    }

    .mega-col h3 {
        margin-bottom: 8px;
        font-size: 13px;
        color: #4f5670;
    }

    .mega-col a {
        display: block;
        margin: 0 0 6px;
        padding: 8px 10px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.78);
        color: #2e3550;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
    }

    .mega-visual-list {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .mega-col a.mega-visual-link {
        display: flex;
        min-height: 50px;
        gap: 10px;
        margin: 0;
        padding: 6px 8px 6px 6px;
        font-size: 14px;
    }

    .mega-visual-link img,
    .mega-visual-link .mega-visual-thumb {
        width: 54px;
        height: 38px;
        flex: 0 0 54px;
        border-radius: 7px;
    }

    .mega-col a:last-child {
        margin-bottom: 0;
    }

    .hero,
    .hero-slides,
    .hero-content {
        min-height: 0;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        display: none;
        opacity: 1;
        background-image: none;
        background-position: center top;
        padding: 20px 0 50px;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-slide.is-preview {
        display: block;
    }

    .hero-slides.is-dragging {
        position: relative;
        overflow: hidden;
    }

    .hero-slides.is-dragging .hero-slide {
        position: absolute;
        inset: 0;
        display: none;
    }

    .hero-slides.is-dragging .hero-slide.is-active,
    .hero-slides.is-dragging .hero-slide.is-preview {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0px;
    }

    .hero-visual {
        display: block;
        order: 1;
        width: 100%;
        max-width: 100%;
        min-height: 220px;
        aspect-ratio: 4 / 3;
        justify-self: stretch;
    }

    .hero-copy {
        order: 2;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.86);
        border-radius: 12px;
        padding: 18px 16px 20px;
    }

    .hero h1:not(.hero-kicker),
    .hero h2 {
        font-size: 44px;
    }

    .hero-script {
        display: inline;
        margin-left: 4px;
        margin-top: 0;
        font-size: 50px;
        line-height: 1;
        transform: none;
        vertical-align: baseline;
    }

    .hero-sub {
        font-size: 20px;
    }

    .hero-btn {
        min-width: 164px;
    }

    .hero-slider-controls {
        bottom: 18px;
    }

    .pet-lovers {
        padding: 60px 0 48px;
    }

    .pet-lovers h2 {
        font-size: 40px;
    }

    .pet-lovers h2 span {
        margin-left: 4px;
        font-size: 50px;
    }

    .pet-lovers-head > p:last-child {
        font-size: 18px;
    }

    .pet-lovers-grid {
        margin-top: 34px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .pet-lovers-card {
        min-height: 286px;
        padding: 32px 20px 28px;
    }

    .pet-lovers-card .pet-lovers-icon.material-symbols-outlined {
        width: 90px;
        height: 90px;
        margin-bottom: 22px;
        font-size: 46px;
    }

    .pet-lovers-card h3 {
        font-size: 22px;
    }

    .pet-lovers-card p {
        font-size: 17px;
    }

    .how-it-works {
        padding: 56px 0 42px;
    }

    .how-it-works-title {
        font-size: 72px;
    }

    .how-it-works-intro {
        margin-top: 12px;
        font-size: 34px;
    }

    .how-it-works-grid {
        margin-top: 28px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .how-step-card::after,
    .how-step-card:nth-child(3)::after {
        display: none;
    }

    .how-step-card {
        padding: 18px 16px;
        margin-top: 20px;
    }

    .how-step-number {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }

    .how-step-media {
        margin-top: 18px;
    }

    .how-step-card h3 {
        font-size: 20px;
    }

    .how-step-card p {
        font-size: 15px;
    }

    .product-showcase {
        padding: 54px 0 48px;
    }

    .product-showcase h2 {
        font-size: 42px;
    }

    .product-showcase h2 span {
        font-size: 54px;
        transform: none;
    }

    .product-tabs {
        margin-top: 20px;
        gap: 10px;
    }

    .product-tab {
        min-width: 0;
        min-height: 40px;
        padding: 0 16px;
    }

    .product-grid,
    .theme-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .theme-card-media {
        aspect-ratio: 1 / 1;
    }

    .theme-showcase h2 {
        font-size: 40px;
    }

    .theme-showcase h2 span {
        font-size: 52px;
    }

    .product-image-toggle {
        width: 46px;
        height: 46px;
    }

    .customer-reviews {
        padding: 54px 0 50px;
    }

    .customer-reviews h2,
    .customer-reviews h1 {
        font-size: 40px;
    }

    .customer-reviews-head > p:last-child {
        font-size: 18px;
    }

    .customer-rating-pill {
        min-height: 66px;
        margin-top: 24px;
        padding: 0 24px;
        gap: 18px;
    }

    .customer-rating-pill strong {
        font-size: 32px;
    }

    .customer-rating-stars .review-star.material-symbols-outlined {
        font-size: 30px;
    }

    .customer-review-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .customer-review-card {
        min-height: 0;
    }

    .about-paw-stars {
        padding: 56px 0 64px;
    }

    .about-paw-stars-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-paw-stars h2 {
        max-width: none;
        font-size: 40px;
    }

    .about-paw-stars h2 span {
        font-size: 50px;
    }

    .about-paw-stars-copy > p:not(.about-paw-stars-kicker),
    .about-feature-list {
        max-width: none;
    }

    .about-paw-stars-media {
        min-height: 520px;
    }

    .about-main-image {
        height: 480px;
    }

    .about-inset-image {
        right: 18px;
        bottom: -22px;
        width: min(330px, 56%);
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        padding: 10px 0px 30px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding-bottom: 24px;
    }

    .footer-logo {
        width: min(240px, 100%);
    }

    .footer-socials {
        margin-top: 24px;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        gap: 20px;
        border-bottom: none;
    }

    .footer-benefits {
        grid-template-columns: 1fr;
        padding: 24px 0;
        gap: 22px;
    }

    .footer-benefit {
        grid-template-columns: 52px 1fr;
        gap: 16px;
    }

    .footer-benefit + .footer-benefit {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        padding: 22px 0 0;
    }

    .footer-bottom {
        padding: 24px 28px 28px;
    }
}

@media (min-width: 861px) and (max-width: 1020px) {
    .hero h2 {
        font-size: 36px;
    }
    .hero-script {
        font-size: 45px;
        margin-left: 0px;
    }
    .hero-btn {
        min-width: 100px;
        min-height: 35px;
        padding: 0 15px;
        font-size: 14px;
    }
}

@media (min-width: 861px) and (max-width: 1122px) {
    .primary-nav .nav-link--about {
        display: none;
    }
}

@media (max-width: 560px) {
    .wrapper,
    .topbar .container {
        width: 1320px;
        max-width: calc(100% - 32px);
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .topbar-right a + a {
        padding-left: 10px;
    }

    .topbar a {
        font-size: 13px;
    }

    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto auto;
        min-height: 84px;
        gap: 6px;
    }

    .site-logo-image {
        max-width: min(132px, 100%);
        height: auto;
        max-height: 64px;
    }

    .header-account-button,
    .cart-button,
    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .header-account-button .material-symbols-outlined,
    .cart-icon {
        font-size: 28px;
    }

    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
        right: 0;
        top: 0;
    }

    .mobile-header-benefits {
        padding-top: 7px;
        padding-bottom: 9px;
    }

    .mobile-header-benefits p {
        gap: 5px;
        font-size: 10px;
    }

    .mobile-header-benefits .material-symbols-outlined {
        font-size: 21px !important;
    }

    .mobile-header-benefits span:not(.material-symbols-outlined) {
        max-width: 58px;
    }

    .mobile-menu-toggle {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        gap: 6px;
    }

    .burger-line {
        width: 24px;
        height: 3px;
    }

    .burger-line:nth-child(2) {
        width: 19px;
    }

    .burger-line:nth-child(3) {
        width: 14px;
    }

    .mobile-nav-open .burger-line:nth-child(1) {
        width: 25px;
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-nav-open .burger-line:nth-child(3) {
        width: 25px;
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1:not(.hero-kicker),
    .hero h2 {
        max-width: 100%;
        font-size: 45px;
    }

    .hero-sub {
        max-width: 100%;
        font-size: 17px;
    }

    .hero-kicker {
        font-size: 15px;
    }

    .hero-script {
        font-size: 57px;
    }

    .hero-ctas {
        gap: 10px;
    }

    .hero-btn {
        min-width: 0;
        width: 100%;
    }

    .hero-slider-controls {
        gap: 8px;
    }

    .hero-control {
        width: 36px;
        height: 36px;
    }

    .pet-lovers {
        padding: 50px 0 44px;
    }

    .pet-lovers-kicker {
        font-size: 16px;
    }

    .pet-lovers h2 {
        font-size: 34px;
    }

    .pet-lovers h2 span {
        display: block;
        margin: 6px 0 0;
        font-size: 44px;
        transform: none;
    }

    .pet-lovers-head > p:last-child {
        margin-top: 16px;
        font-size: 16px;
    }

    .pet-lovers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pet-lovers-card {
        min-height: 0;
        border-radius: 16px;
    }

    .how-it-works {
        padding: 48px 0 56px;
    }

    .how-it-works-title {
        font-size: 58px;
        line-height: 0.9;
    }

    .how-it-works-intro {
        margin-top: 14px;
        font-size: 28px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .how-step-card {
        border-radius: 16px;
    }

    .how-step-number {
        top: -18px;
        width: 36px;
        height: 36px;
        font-size: 19px;
    }

    .how-step-icon {
        font-size: 34px;
    }

    .how-step-card h3 {
        font-size: 19px;
    }

    .how-step-card p {
        font-size: 15px;
    }

    .product-showcase {
        padding: 46px 0 44px;
    }

    .product-showcase-kicker {
        font-size: 14px;
    }

    .product-showcase h2 {
        font-size: 34px;
    }

    .product-showcase h2 span {
        display: block;
        margin-top: 4px;
        font-size: 48px;
    }

    .product-showcase-head > p:last-child {
        font-size: 16px;
    }

    .product-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-tab {
        flex: 0 0 auto;
    }

    .product-grid,
    .theme-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .theme-showcase {
        padding: 42px 0 48px;
    }

    .theme-showcase h2 {
        font-size: 36px;
    }

    .theme-showcase h2 span {
        font-size: 46px;
    }

    .product-card-media {
        aspect-ratio: 1200 / 1000;
    }

    .theme-card-media {
        aspect-ratio: 1 / 1;
    }

    .product-card-body,
    .theme-card-body {
        padding: 15px;
    }

    .product-card h3,
    .theme-card h3 {
        font-size: 21px;
    }

    .product-card p,
    .theme-card p {
        min-height: 0;
    }

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

    .product-primary-action {
        padding: 0 14px;
    }

    .product-size-guide {
        align-items: flex-start;
        font-size: 15px;
        line-height: 1.3;
    }

    .customer-reviews {
        padding: 46px 0 44px;
    }

    .customer-reviews-kicker {
        font-size: 16px;
    }

    .customer-reviews h2,
    .customer-reviews h1 {
        font-size: 34px;
    }

    .customer-reviews-head > p:last-child {
        font-size: 16px;
    }

    .customer-rating-pill {
        width: 100%;
        min-height: 0;
        padding: 20px 18px;
        flex-direction: column;
        gap: 12px;
    }

    .customer-rating-stars::before {
        display: none;
    }

    .customer-rating-pill p {
        font-size: 16px;
    }

    .customer-review-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .customer-review-top {
        grid-template-columns: 74px 1fr;
        gap: 12px;
    }

    .customer-review-top img {
        width: 68px;
        height: 68px;
    }

    .customer-review-stars .review-star.material-symbols-outlined {
        font-size: 24px;
    }

    .customer-review-card > p:not(.customer-review-product) {
        font-size: 16px;
    }

    .customer-review-card h3 {
        margin-top: 22px;
        font-size: 19px;
    }

    .customer-review-product {
        font-size: 16px;
    }

    .customer-reviews-button {
        width: 100%;
        min-height: 52px;
        padding: 0 22px;
        font-size: 18px;
    }

    .about-paw-stars {
        padding: 48px 0 54px;
    }

    .about-paw-stars-kicker {
        font-size: 15px;
    }

    .about-paw-stars h2 {
        font-size: 34px;
    }

    .about-paw-stars h2 span {
        margin-top: 4px;
        font-size: 44px;
        transform: none;
    }

    .about-paw-stars-copy > p:not(.about-paw-stars-kicker) {
        font-size: 16px;
    }

    .about-feature-list li {
        min-height: 0;
        border-radius: 18px;
        align-items: flex-start;
        padding: 8px 14px 8px 8px;
        font-size: 15px;
    }

    .about-paw-stars-button {
        width: 100%;
        min-height: 52px;
    }

    .about-paw-stars-media {
        min-height: 412px;
    }

    .about-main-image {
        height: 350px;
        border-radius: 16px;
    }

    .about-inset-image {
        right: 12px;
        bottom: -18px;
        width: min(260px, 68%);
        border-radius: 16px;
    }

    .about-inset-image img {
        border-radius: 12px;
    }

    .site-footer {
        padding: 32px 0 34px;
    }

    .site-footer-shell {
        border-radius: 14px;
    }

    .footer-main {
        padding: 10px 0px 24px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-socials {
        gap: 12px;
    }

    .footer-socials a {
        width: 44px;
        height: 44px;
    }

    .footer-links h2,
    .footer-contact h2 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-contact-item {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .footer-contact-icon.material-symbols-outlined {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .footer-benefits {
        padding: 22px 0;
    }

    .footer-benefit {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .footer-benefit-icon.material-symbols-outlined {
        font-size: 36px;
    }

    .footer-bottom {
        padding: 22px 20px 24px;
        gap: 18px;
    }

    .footer-legal-inline {
        gap: 10px 0;
    }

    .footer-legal-inline a {
        padding: 0 10px;
    }

    .footer-payments {
        gap: 10px;
    }

    .footer-payments span {
        min-width: 30px;
        min-height: 30px;
    }

    .footer-payments i {
        font-size: 30px;
    }

    .footer-payment-logo,
    .footer-apple-pay-logo {
        width: 30px;
        height: 30px;
    }

    .footer-payments::after {
        width: 82px;
        height: 20px;
    }
}

.about-page {
    background: #ffffff;
}

.about-hero {
    position: relative;
    padding: 68px 0 52px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 251, 0.94) 44%, rgba(255, 221, 238, 0.78) 100%),
        url("../images/_heroimages/hero-bg-pattern-4.webp") center / cover no-repeat;
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: #f2dce7;
}

.about-hero-inner {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
    align-items: center;
    gap: 36px;
}

.about-hero-copy {
    max-width: 580px;
}

.about-hero-kicker {
    color: #ec4e9e;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.about-hero h1 {
    margin-top: 12px;
    color: #121832;
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.about-hero h1 .hero-script {
    display: inline-block;
    margin-left: 6px;
    font-size: clamp(50px, 6vw, 74px);
    letter-spacing: -0.08em;
}

.about-hero-copy > p {
    max-width: 520px;
    margin-top: 18px;
    color: #3e4865;
    font-size: 16px;
    line-height: 1.55;
}

.about-hero .hero-ctas {
    margin-top: 26px;
    align-items: center;
    gap: 12px;
}

.about-hero-btn {
    min-height: 50px;
    min-width: 172px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 220ms var(--button-hover-ease), border-color 220ms var(--button-hover-ease), box-shadow 220ms var(--button-hover-ease), color 220ms var(--button-hover-ease), transform 220ms var(--button-hover-ease);
}

.about-hero-btn--fill {
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #ed4298 56%, #df2f87 100%);
    box-shadow: 0 12px 24px rgba(222, 57, 138, 0.22);
}

.about-hero-btn--outline {
    border: 2px solid #ef5ca7;
    color: #e84b9a;
    background-color: #ffffff;
}

.about-hero-media {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-hero-image {
    width: min(100%, 460px);
    max-height: 400px;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 22px 44px rgba(41, 31, 52, 0.16));
}

.about-mission {
    padding: 48px 0 72px;
    background: #ffffff;
}

.about-mission-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 44px;
    padding: 44px 48px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 12%, rgba(236, 78, 158, 0.1) 0%, rgba(236, 78, 158, 0) 28%),
        linear-gradient(180deg, #fff4f9 0%, #ffedf5 100%);
    border: 1px solid #f4dce8;
    box-shadow: 0 20px 48px rgba(222, 57, 138, 0.09);
}

.about-mission-collage {
    position: relative;
    min-height: 380px;
}

.about-mission-collage-main {
    width: min(100%, 400px);
    height: 320px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(41, 31, 52, 0.14);
}

.about-mission-collage-accent {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(41, 31, 52, 0.12);
    border: 3px solid #ffffff;
}

.about-mission-collage-accent--1 {
    right: 0;
    top: 12px;
    width: 40%;
    aspect-ratio: 1;
}

.about-mission-collage-accent--2 {
    right: 10%;
    bottom: 0;
    width: 46%;
    aspect-ratio: 4 / 3;
}

.about-mission-content {
    padding-right: 108px;
}

.about-mission-content h2 {
    max-width: 500px;
    margin-top: 12px;
    color: #121832;
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.about-mission-content h2 span {
    display: block;
    color: #e84a9a;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(42px, 4.6vw, 56px);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.08em;
    transform: rotate(-3deg);
    transform-origin: left center;
}

.about-mission-content > p {
    max-width: 500px;
    margin-top: 18px;
    color: #3e4865;
    font-size: 16px;
    line-height: 1.55;
}

.about-mission-heart.material-symbols-outlined {
    position: absolute;
    top: 36px;
    right: 40px;
    z-index: 2;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #e9348d 100%);
    box-shadow: 0 14px 30px rgba(222, 57, 138, 0.24);
    font-size: 52px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 48;
}

.about-special {
    padding: 72px 0 76px;
    background:
        radial-gradient(circle at 16% 28%, rgba(236, 78, 158, 0.1) 0%, rgba(236, 78, 158, 0) 28%),
        radial-gradient(circle at 84% 72%, rgba(244, 141, 192, 0.14) 0%, rgba(244, 141, 192, 0) 32%),
        linear-gradient(180deg, #fff8fc 0%, #fff1f8 100%);
    border-top: 1px solid #f2dce7;
}

.about-special-head {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-special-kicker {
    color: #ec4e9e;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.about-special h2 {
    margin-top: 12px;
    color: #121832;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.about-special h2 span {
    display: inline-block;
    margin-left: 8px;
    color: #e84a9a;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(44px, 5vw, 60px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.08em;
    transform: rotate(-3deg);
    transform-origin: left 70%;
}

.about-special-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.about-special-card {
    padding: 26px 16px 24px;
    border: 1px solid #f5e0eb;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(222, 57, 138, 0.08);
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    cursor: default;
}

.about-special-card .about-special-icon.material-symbols-outlined {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f45aa7 0%, #df2e87 100%);
    box-shadow: 0 8px 18px rgba(222, 57, 138, 0.24), inset 0 0 0 2px rgba(255, 255, 255, 0.28);
    font-size: 34px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 600,
        'GRAD' 0,
        'opsz' 48;
}

.about-special-card h3 {
    color: #121832;
    font-size: 16px;
    line-height: 1.15;
}

.about-special-card p {
    margin-top: 10px;
    color: #4a5270;
    font-size: 13px;
    line-height: 1.45;
}

.about-story {
    padding: 76px 0 84px;
    background:
        radial-gradient(circle at 18% 24%, rgba(236, 78, 158, 0.08) 0%, rgba(236, 78, 158, 0) 30%),
        linear-gradient(180deg, #fff6fa 0%, #fff0f7 100%);
    border-top: 1px solid #f2dce7;
}

.about-story-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
}

.about-story-copy h2 {
    max-width: 540px;
    margin-top: 12px;
    color: #121832;
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.about-story-copy h2 span {
    display: block;
    color: #e84a9a;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(42px, 4.6vw, 56px);
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -0.08em;
    transform: rotate(-3deg);
    transform-origin: left center;
}

.about-story-copy > p {
    max-width: 540px;
    margin-top: 18px;
    color: #3e4865;
    font-size: 16px;
    line-height: 1.55;
}

.about-story-copy .about-paw-stars-button {
    margin-top: 24px;
}

.about-story-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-story-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    box-shadow: 0 14px 32px rgba(41, 31, 52, 0.12);
}

.about-story-badge {
    position: absolute;
    right: -6px;
    bottom: 20px;
    width: 136px;
    height: 136px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 14px;
    color: #ffffff;
    background: linear-gradient(180deg, #f75aae 0%, #df2f87 100%);
    box-shadow: 0 16px 32px rgba(222, 57, 138, 0.28);
    text-align: center;
}

.about-story-badge-ring {
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    pointer-events: none;
}

.about-story-badge p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 88px;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-story-badge-icon.material-symbols-outlined {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 24px;
    line-height: 1;
    font-variation-settings:
        'FILL' 1,
        'wght' 600,
        'GRAD' 0,
        'opsz' 24;
}

@media (hover: hover) and (pointer: fine) {
    .about-hero-btn--fill:hover,
    .about-hero-btn--fill:focus-visible {
        box-shadow: 0 16px 30px rgba(222, 57, 138, 0.32);
        outline: none;
        transform: translateY(-2px);
    }

    .about-hero-btn--outline:hover,
    .about-hero-btn--outline:focus-visible {
        border-color: #e84b9a;
        color: #ffffff;
        background-color: #ec4e9e;
        box-shadow: 0 12px 24px rgba(222, 57, 138, 0.2);
        outline: none;
    }

    .about-special-card:hover,
    .about-special-card:focus-within {
        border-color: #efc7db;
        box-shadow: 0 20px 40px rgba(222, 57, 138, 0.16);
        transform: translateY(-4px);
    }
}

@media (max-width: 1180px) {
    .about-special-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-mission-content {
        padding-right: 96px;
    }

    .about-mission-heart.material-symbols-outlined {
        width: 84px;
        height: 84px;
        font-size: 46px;
    }
}

@media (max-width: 980px) {
    .about-hero-inner,
    .about-mission-card,
    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-hero-media {
        min-height: 280px;
    }

    .about-hero-image {
        max-height: 320px;
    }

    .about-mission-content {
        padding-right: 0;
    }

    .about-mission-heart.material-symbols-outlined {
        top: 24px;
        right: 24px;
    }

    .about-mission-collage {
        min-height: 340px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-story-collage {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .about-special-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .about-hero {
        padding: 48px 0 44px;
    }

    .about-hero-copy {
        max-width: none;
        text-align: center;
    }

    .about-hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero .hero-ctas {
        justify-content: center;
    }

    .about-mission {
        padding-bottom: 56px;
    }

    .about-mission-card {
        padding: 32px 24px 28px;
    }

    .about-special {
        padding: 56px 0 60px;
    }

    .about-story {
        padding: 56px 0 64px;
    }

    .about-story-copy {
        text-align: center;
    }

    .about-story-copy h2,
    .about-story-copy > p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .about-story-copy h2 span {
        transform: none;
    }

    .about-story-copy .about-paw-stars-button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 560px) {
    .about-hero h1 .hero-script {
        display: block;
        margin-left: 0;
        transform: none;
    }

    .about-hero .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-btn {
        width: 100%;
        min-width: 0;
    }

    .about-mission-collage {
        min-height: 300px;
    }

    .about-mission-collage-main {
        width: 100%;
        height: 260px;
    }

    .about-mission-collage-accent--1 {
        width: 44%;
        top: 6px;
    }

    .about-mission-collage-accent--2 {
        width: 50%;
        right: 2%;
    }

    .about-mission-content h2 span,
    .about-special h2 span {
        display: block;
        margin-left: 0;
        transform: none;
    }

    .about-special-grid {
        grid-template-columns: 1fr;
    }

    .about-story-collage {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-story-image {
        aspect-ratio: 4 / 3;
    }

    .about-story-badge {
        right: 10px;
        bottom: 10px;
        width: 112px;
        height: 112px;
    }

    .about-story-badge p {
        font-size: 7px;
    }
}


.account-dashboard {
    width: 100%;
    max-width: 1100px;
    min-width: 0;
    margin: 0 auto 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: 22px;
    box-sizing: border-box;
}

.account-dashboard-flash {
    grid-column: 1 / -1;
}

.account-dashboard-card,
.account-orders-list,
.account-order-card {
    min-width: 0;
    max-width: 100%;
}

.account-dashboard-form {
    max-width: none;
    display: grid;
    gap: 22px;
}

.account-dashboard-form .address-payment-button {
    width: 100%;
}

.account-orders-empty {
    margin: 0;
    color: #536079;
    font-size: 14px;
    line-height: 1.45;
}

.account-orders-empty a {
    color: #ec4e9e;
    font-weight: 600;
    text-decoration: none;
}

.account-orders-list {
    display: grid;
    gap: 14px;
}

.account-order-card {
    border: 1px solid #f1d6e4;
    border-radius: 9px;
    padding: 16px;
    background: #fff8fc;
}

.account-order-top {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.account-order-top h3 {
    color: #121832;
    font-size: 15px;
    line-height: 1.3;
    word-break: break-word;
}

.account-order-card dl {
    margin: 0;
    display: grid;
    gap: 8px;
}

.account-order-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.account-order-actions--single {
    grid-template-columns: 1fr;
}

.account-order-button {
    min-height: 42px;
    border: 1px solid #f1d6e4;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: #121832;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.account-order-button--primary {
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
}

.account-order-button:hover,
.account-order-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.18);
}

.account-order-card dl > div {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    color: #536079;
    font-size: 13px;
    line-height: 1.35;
}

.account-order-card dt {
    color: #697188;
    font-weight: 600;
}

.account-order-card dd {
    margin: 0;
    color: #121832;
    word-break: break-word;
}

@media (max-width: 920px) {
    .account-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .account-order-actions {
        grid-template-columns: 1fr;
    }
}

.account-page {
    background:
        radial-gradient(circle at 20% 18%, rgba(236, 78, 158, 0.14), transparent 28%),
        radial-gradient(circle at 82% 38%, rgba(236, 78, 158, 0.13), transparent 24%),
        #fff8fc;
}

.account-shell {
    min-height: 730px;
    padding: 70px 0 58px;
    display: grid;
    grid-template-columns: minmax(390px, 560px) minmax(0, 1fr);
    align-items: stretch;
    gap: 34px;
}

.account-shell:not(:has(.account-visual)) {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
}

.account-panel {
    min-width: 0;
    border: 1px solid #efd8e4;
    border-radius: 10px;
    padding: 48px 58px 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(18, 24, 50, 0.08);
}

.account-panel--reset {
    justify-content: center;
}

.account-icon {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    box-shadow: 0 12px 26px rgba(236, 78, 158, 0.24);
}

.account-icon .material-symbols-outlined {
    font-size: 40px !important;
    line-height: 1;
}

.account-panel h1 {
    margin-top: 28px;
    color: #121832;
    text-align: center;
    font-size: clamp(30px, 3.5vw, 38px);
    line-height: 1.04;
}

.account-panel > p {
    max-width: 390px;
    margin-top: 12px;
    color: #536079;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
}

.account-form {
    width: 100%;
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.account-form label,
.account-label-row label {
    color: #121832;
    font-size: 13px;
    font-weight: 600;
}

.account-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.account-label-row a,
.account-terms a {
    color: #ec4e9e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.account-input {
    min-width: 0;
    min-height: 52px;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    background: #ffffff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.account-input:focus-within {
    border-color: #ec4e9e;
    box-shadow: 0 0 0 2px rgba(236, 78, 158, 0.16);
}

.account-input > .material-symbols-outlined {
    justify-self: center;
    color: #9aa2b4;
    font-size: 19px;
}

.account-input input {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    border: 0;
    padding: 0 12px 0 0;
    color: #121832;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.account-input input:-webkit-autofill,
.account-input input:-webkit-autofill:hover,
.account-input input:-webkit-autofill:focus,
.account-input input:-webkit-autofill:active,
.address-checkout-form input:-webkit-autofill,
.address-checkout-form input:-webkit-autofill:hover,
.address-checkout-form input:-webkit-autofill:focus,
.address-checkout-form input:-webkit-autofill:active,
.address-checkout-form select:-webkit-autofill,
.address-checkout-form select:-webkit-autofill:hover,
.address-checkout-form select:-webkit-autofill:focus,
.address-checkout-form select:-webkit-autofill:active {
    -webkit-text-fill-color: #121832;
    caret-color: #121832;
    box-shadow: 0 0 0 1000px #ffffff inset;
    transition: background-color 99999s ease-in-out 0s;
}

.account-input input:first-child {
    grid-column: 1 / 3;
    padding-left: 16px;
}

.account-password-toggle {
    width: 42px;
    height: 50px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #778197;
    background: transparent;
    cursor: pointer;
}

.account-password-toggle .material-symbols-outlined {
    color: currentColor;
    font-size: 19px;
}

.account-check {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #536079;
    font-size: 13px;
    font-weight: 700;
}

.account-check input {
    width: 18px;
    height: 18px;
    accent-color: #ec4e9e;
}

.account-recaptcha {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.account-submit,
.account-outline-button {
    min-height: 54px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.account-submit {
    border: 1px solid #ec4e9e;
    color: #ffffff;
    background: linear-gradient(180deg, #f456a8 0%, #e73e94 100%);
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(236, 78, 158, 0.18);
}

.account-outline-button {
    border: 1px solid #ec4e9e;
    color: #ec4e9e;
    background: #ffffff;
}

.account-divider {
    position: relative;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #697188;
    font-size: 12px;
    font-weight: 600;
}

.account-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #f1e0e9;
}

.account-divider span {
    position: relative;
    padding: 0 14px;
    background: #ffffff;
}

.account-terms {
    margin-top: 8px;
    color: #536079;
    text-align: center;
    font-size: 13px;
    line-height: 1.45;
}

.account-visual {
    position: relative;
    min-width: 0;
    min-height: 620px;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

.account-visual img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 920px) {
    .account-shell {
        grid-template-columns: 1fr;
    }

    .account-visual {
        display: none;
    }

    .account-panel {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .account-shell {
        padding: 30px 0 38px;
    }

    .account-panel {
        padding: 30px 20px 28px;
    }

    .account-icon {
        width: 64px;
        height: 64px;
    }

    .account-icon .material-symbols-outlined {
        font-size: 34px !important;
    }

    .account-panel h1 {
        margin-top: 22px;
        font-size: 30px;
    }

    .account-recaptcha {
        justify-content: flex-start;
        transform: scale(0.88);
        transform-origin: left center;
    }
}

/* How It Works page */
.hiw-page {
    --hiw-pink: #ec4e9e;
    --hiw-ink: #121832;
    --hiw-muted: #3d455f;
    --hiw-soft: #fff6fa;
    --hiw-line: #f2dce7;
    background:
        radial-gradient(circle at 10% 6%, rgba(236, 78, 158, 0.1), transparent 30%),
        radial-gradient(circle at 90% 14%, rgba(236, 78, 158, 0.08), transparent 28%),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 38%, #fff6fa 100%);
    overflow: clip;
}

.hiw-pink {
    color: var(--hiw-pink);
}

.hiw-script {
    font-family: "Caveat", "Outfit", cursive;
    color: var(--hiw-pink);
    font-weight: 700;
}

.hiw-sparkle {
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    margin: 0 0.12em;
    vertical-align: 0.18em;
    background: var(--hiw-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: hiw-twinkle 2.8s ease-in-out infinite;
}

.hiw-sparkle:last-child {
    animation-delay: 0.9s;
}

@keyframes hiw-twinkle {
    0%, 100% { opacity: 0.55; transform: scale(0.85) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.08) rotate(12deg); }
}

.hiw-hero {
    position: relative;
    padding: 76px 0 10px;
    text-align: center;
}

.hiw-hero__inner {
    position: relative;
}

.hiw-hero__deco {
    position: absolute;
    color: var(--hiw-pink);
    opacity: 0.55;
    pointer-events: none;
}

.hiw-hero__deco .material-symbols-outlined {
    font-size: 34px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hiw-hero__deco--paw {
    top: 8px;
    left: 4%;
    animation: hiw-float 4.5s ease-in-out infinite;
}

.hiw-hero__deco--heart {
    top: 18px;
    right: 5%;
    animation: hiw-float 5.2s ease-in-out infinite reverse;
}

@keyframes hiw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hiw-hero__title {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--hiw-ink);
    text-transform: uppercase;
}

.hiw-hero__title .hiw-pink {
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hiw-hero__subtitle {
    margin: 14px 0 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(28px, 4vw, 60px);
    line-height: 1;
    color: var(--hiw-ink);
}

.hiw-hero__lead {
    max-width: 620px;
    margin: 16px auto 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--hiw-muted);
}

.hiw-steps {
    padding: 18px 0 10px;
}

.hiw-steps__inner {
    position: relative;
    display: grid;
    gap: 8px;
}

.hiw-path {
    display: none;
}

.hiw-step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.18fr);
    gap: 18px 40px;
    align-items: center;
    padding: 18px 0;
}

.hiw-step--2,
.hiw-step--4 {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.92fr);
}

.hiw-step__copy {
    position: relative;
    padding: 28px 30px;
    border: 1px solid var(--hiw-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(30, 28, 49, 0.07);
}

.hiw-step__copy h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--hiw-ink);
}

.hiw-num {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hiw-pink);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(236, 78, 158, 0.28);
}

.hiw-step__copy > p {
    margin: 14px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--hiw-muted);
}

.hiw-accent {
    color: var(--hiw-pink) !important;
    font-weight: 600;
}

.hiw-accent--script {
    font-family: "Caveat", "Outfit", cursive !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: var(--hiw-pink) !important;
}

.hiw-accent .material-symbols-outlined {
    font-size: 0.85em;
    color: var(--hiw-pink);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hiw-tips {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1.5px solid #f3b0d0;
    border-radius: 18px;
    background: #fff8fb;
}

.hiw-tips h3 {
    margin: 0 0 10px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hiw-pink);
}

.hiw-tips ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hiw-tips li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 15px;
    color: var(--hiw-muted);
}

.hiw-tips .material-symbols-outlined {
    font-size: 18px;
    color: var(--hiw-pink);
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.hiw-step__media {
    position: relative;
    min-width: 0;
    aspect-ratio: 1600 / 1000;
}

.hiw-step__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiw-values {
    padding: 40px 0 18px;
}

.hiw-values__panel {
    border: 1.5px solid #f3b9d4;
    border-radius: 28px;
    padding: 34px 28px 28px;
    background: #fff;
}

.hiw-values__title {
    margin: 0;
    text-align: center;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1;
    color: var(--hiw-ink);
}

.hiw-values__title .material-symbols-outlined {
    font-size: 0.72em;
    color: var(--hiw-pink);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hiw-values__grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hiw-value {
    text-align: center;
    padding: 8px 12px;
}

.hiw-value + .hiw-value {
    border-left: 1px solid #f4d3e3;
}

.hiw-value__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(236, 78, 158, 0.1);
    color: var(--hiw-pink);
    font-size: 28px !important;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.hiw-value h3 {
    margin: 12px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--hiw-ink);
}

.hiw-value p {
    margin: 8px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: var(--hiw-muted);
}

.hiw-cta {
    padding: 34px 0 72px;
    text-align: center;
}

.hiw-cta__inner h2 {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--hiw-ink);
}

.hiw-cta__inner h2 .hiw-pink {
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hiw-cta__lead {
    max-width: 620px;
    margin: 14px auto 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    color: var(--hiw-ink);
}

.hiw-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    min-width: 260px;
    padding: 16px 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 55%, #d73581 100%);
    color: #fff;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(236, 78, 158, 0.32);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.hiw-cta__button:hover,
.hiw-cta__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(236, 78, 158, 0.38);
    color: #fff;
}

.hiw-cta__button .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

@media (min-width: 980px) {
    .hiw-path {
        display: block;
        position: absolute;
        inset: 2% 4% 4%;
        width: auto;
        height: auto;
        z-index: 0;
        pointer-events: none;
        overflow: visible;
    }

    .hiw-path__line {
        fill: none;
        stroke: var(--hiw-pink);
        stroke-width: 3.2;
        stroke-dasharray: 10 9;
        stroke-linecap: round;
        opacity: 0.72;
    }

    .hiw-step--1,
    .hiw-step--3,
    .hiw-step--5 {
        padding-right: 18px;
    }

    .hiw-step--2,
    .hiw-step--4 {
        padding-left: 18px;
    }

    .hiw-step--1 .hiw-step__copy,
    .hiw-step--3 .hiw-step__copy,
    .hiw-step--5 .hiw-step__copy {
        transform: translateX(-6px);
    }

    .hiw-step--2 .hiw-step__copy,
    .hiw-step--4 .hiw-step__copy {
        transform: translateX(6px);
    }
}

@media (max-width: 979px) {
    .hiw-step,
    .hiw-step--2,
    .hiw-step--4 {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 10px 0;
    }

    .hiw-step__copy {
        order: 1;
    }

    .hiw-step__media {
        order: 2;
    }

    .hiw-step__copy {
        padding: 22px 18px;
    }

    .hiw-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 0;
    }

    .hiw-value:nth-child(odd) {
        border-left: 0;
    }

    .hiw-value:nth-child(n + 3) {
        border-top: 1px solid #f4d3e3;
        padding-top: 18px;
    }
}

@media (max-width: 640px) {
    .hiw-hero {
        padding: 36px 0 8px;
    }

    .hiw-hero__deco {
        display: none;
    }

    .hiw-hero__lead {
        font-size: 16px;
    }

    .hiw-num {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .hiw-accent--script {
        font-size: 24px !important;
    }

    .hiw-values__panel {
        padding: 26px 16px 18px;
    }

    .hiw-values__grid {
        grid-template-columns: 1fr;
    }

    .hiw-value,
    .hiw-value + .hiw-value {
        border: 0;
        padding: 12px 0;
    }

    .hiw-value + .hiw-value {
        border-top: 1px solid #f4d3e3;
    }

    .hiw-cta {
        padding-bottom: 56px;
    }
}

/* About Us page */
.au-page {
    --au-pink: #ec4e9e;
    --au-ink: #121832;
    --au-muted: #3d455f;
    --au-line: #f2dce7;
    --au-soft: #fff6fa;
    background:
        radial-gradient(circle at 12% 4%, rgba(236, 78, 158, 0.1), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(236, 78, 158, 0.08), transparent 26%),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 36%, #fff6fa 100%);
    overflow: clip;
}

.au-pink {
    color: var(--au-pink);
}

.au-sparkle,
.au-burst {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin: 0 0.14em;
    vertical-align: 0.2em;
    background: var(--au-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.au-burst {
    width: 0.34em;
    height: 0.34em;
    clip-path: none;
    background: transparent;
    box-shadow:
        -0.28em 0 0 -0.08em var(--au-pink),
        0.28em 0 0 -0.08em var(--au-pink),
        0 -0.22em 0 -0.1em var(--au-pink);
    transform: rotate(18deg);
}

.au-section-title {
    margin: 0;
    text-align: center;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--au-ink);
}

.au-media {
    position: relative;
    aspect-ratio: 1600 / 1000;
    overflow: hidden;
    border-radius: 18px;
}

.au-media--square {
    aspect-ratio: 1;
}

.au-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.au-btn {
    min-height: 50px;
    min-width: 168px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.au-btn--fill {
    color: #fff;
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 55%, #d73581 100%);
    box-shadow: 0 12px 24px rgba(236, 78, 158, 0.28);
}

.au-btn--outline {
    border: 2px solid var(--au-pink);
    color: var(--au-ink);
    background: #fff;
}

.au-btn:hover,
.au-btn:focus-visible {
    transform: translateY(-2px);
    color: inherit;
}

.au-btn--fill:hover,
.au-btn--fill:focus-visible {
    color: #fff;
}

.au-btn .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.au-icon.material-symbols-outlined {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--au-pink);
    color: #fff;
    font-size: 28px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.au-hero {
    padding: 68px 0 28px;
}

.au-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px 40px;
    align-items: center;
}

.au-hero__copy h1 {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--au-ink);
}

.au-hero__copy h1 .au-pink {
    display: block;
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.au-hero__tagline {
    margin: 16px 0 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.1;
    color: var(--au-ink);
}

.au-hero__lead {
    max-width: 520px;
    margin: 14px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--au-muted);
}

.au-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.au-hero__media {
    position: relative;
}

.au-hero__media .au-media,
.au-hero__media img {
    width: 100%;
    border-radius: 22px;
}

.au-hero__media > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1600 / 1000;
    object-fit: cover;
    border-radius: 22px;
}

.au-meet-badge {
    position: absolute;
    top: 4%;
    left: 3%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--au-ink);
    color: #fff;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(18, 24, 50, 0.18);
}

.au-meet-badge span {
    color: var(--au-pink);
}

.au-ribbon {
    position: absolute;
    right: 4%;
    bottom: 8%;
    z-index: 2;
    max-width: 56%;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--au-pink);
    color: #fff;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
    box-shadow: 0 10px 18px rgba(236, 78, 158, 0.28);
}

.au-story {
    padding: 18px 0 10px;
}

.au-story__panel {
    padding: 34px 28px 30px;
    border: 1px solid var(--au-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(30, 28, 49, 0.06);
}

.au-story__sub {
    margin: 18px 0 0;
    text-align: center;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--au-ink);
}

.au-story__text {
    max-width: 860px;
    margin: 16px auto 0;
    text-align: center;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--au-muted);
}

.au-timeline {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.au-timeline__card {
    display: grid;
    gap: 12px;
    padding: 12px 12px 16px;
    border: 1px solid var(--au-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(30, 28, 49, 0.06);
}

.au-timeline__card:nth-child(odd) {
    transform: rotate(-1.4deg);
}

.au-timeline__card:nth-child(even) {
    transform: rotate(1.4deg);
}

.au-timeline__copy {
    order: 2;
    position: relative;
    padding: 16px 4px 0 56px;
}

.au-timeline__copy p {
    margin: 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 24px;
    line-height: 1.15;
    color: var(--au-ink);
}

.au-timeline__card .au-media {
    order: 1;
    border-radius: 14px;
    overflow: visible;
}

.au-star-num {
    position: absolute;
    left: 6px;
    bottom: -18px;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #fff;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    background: var(--au-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    filter: drop-shadow(0 6px 10px rgba(236, 78, 158, 0.35));
}

.au-promise {
    padding: 42px 0 18px;
}

.au-promise__grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.au-promise__card {
    text-align: center;
    padding: 24px 18px;
    border: 1px solid var(--au-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(30, 28, 49, 0.05);
}

.au-promise__card h3 {
    margin: 14px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--au-ink);
}

.au-promise__card p {
    margin: 10px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--au-muted);
}

.au-founder {
    padding: 28px 0 12px;
}

.au-founder__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 0 28px;
    align-items: stretch;
    min-height: 480px;
    padding: 0 32px 0 0;
    border: 2px solid #f4b7d3;
    border-radius: 36px;
    background: #fff5f8;
    overflow: hidden;
}

.au-founder__deco {
    position: absolute;
    z-index: 2;
    color: var(--au-pink);
    opacity: 0.85;
    pointer-events: none;
}

.au-founder__deco .material-symbols-outlined {
    font-size: 30px;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.au-founder__deco--crown {
    top: 14px;
    left: 14px;
}

.au-founder__deco--heart {
    top: 42%;
    left: 12px;
}

.au-founder__deco--paw {
    left: 14px;
    top: 62%;
}

.au-founder__deco--heart-2 {
    top: 28px;
    right: 36px;
}

.au-founder__deco--heart-2 .material-symbols-outlined {
    font-size: 42px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.au-founder__deco--spark {
    top: 48px;
    right: 78px;
    width: 26px;
    height: 26px;
    background: var(--au-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.au-founder__portrait {
    position: relative;
    z-index: 1;
    order: 1;
    align-self: stretch;
    height: auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.au-founder__portrait img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: top center;
    filter: none;
}

.au-founder__copy {
    position: relative;
    z-index: 1;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0 24px;
}

.au-founder__copy h2 {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--au-ink);
}

.au-quote {
    position: relative;
    margin: 16px 0 0;
    padding: 26px 22px 14px 26px;
    border: 1.5px solid var(--au-pink);
    border-radius: 22px;
    background: #ffffff;
}

.au-quote::before {
    content: "“";
    position: absolute;
    top: 0.02em;
    left: 14px;
    color: var(--au-pink);
    font-family: "Caveat", "Outfit", cursive;
    font-size: 64px;
    line-height: 1;
    pointer-events: none;
}

.au-quote p {
    margin: 0;
    padding-top: 8px;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    color: var(--au-ink);
}

.au-signature {
    display: block;
    margin: 10px 0 0;
    color: var(--au-pink);
    font-family: "Caveat", "Outfit", cursive;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-align: right;
}

.au-founder__lower {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 18px;
    align-items: center;
    margin-top: 18px;
}

.au-founder__bio {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--au-ink);
}

.au-looks {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0;
    min-height: 0;
}

.au-looks__shot {
    position: relative;
    width: 108px;
    flex: 0 0 108px;
    aspect-ratio: 1;
    margin-left: -18px;
    padding: 6px 6px 22px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(30, 28, 49, 0.16);
}

.au-looks__shot:first-child {
    margin-left: 0;
}

.au-looks__shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
    background: #f7edf3;
}

.au-looks__shot:nth-child(1) { transform: rotate(-7deg); z-index: 1; }
.au-looks__shot:nth-child(2) { transform: rotate(4deg) translateY(-6px); z-index: 2; }
.au-looks__shot:nth-child(3) { transform: rotate(-3deg); z-index: 3; }

.au-why {
    padding: 40px 0 18px;
}

.au-why__tagline {
    margin: 12px 0 0;
    text-align: center;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    color: var(--au-ink);
}

.au-why__grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.au-why__card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(120px, 0.75fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--au-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(30, 28, 49, 0.05);
}

.au-why__copy .au-icon {
    width: 46px;
    height: 46px;
    font-size: 24px;
}

.au-why__copy h3 {
    margin: 12px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--au-ink);
}

.au-why__copy p {
    margin: 8px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--au-muted);
}

.au-cta {
    padding: 28px 0 72px;
}

.au-cta__panel {
    display: grid;
    grid-template-columns: minmax(200px, 0.75fr) minmax(0, 1.25fr);
    grid-template-rows: 1fr auto;
    gap: 0 28px;
    align-items: stretch;
    padding: 0 28px 0 0;
    border: 1.5px solid #f3b9d4;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
}

.au-cta__mascot {
    position: relative;
    grid-row: 1 / 2;
    align-self: stretch;
    min-height: 280px;
}

.au-cta__mascot img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
}

.au-cta__bubble {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    margin: 0;
    width: max-content;
    max-width: calc(100% - 24px);
    padding: 8px 16px;
    border: 1.5px solid var(--au-pink);
    border-radius: 999px;
    background: #fff;
    font-family: "Caveat", "Outfit", cursive;
    font-size: 22px;
    line-height: 1.1;
    color: var(--au-ink);
    transform: translateX(-50%);
    box-shadow: 0 8px 18px rgba(30, 28, 49, 0.12);
}

.au-cta__copy {
    grid-row: 1 / 2;
    align-self: center;
    padding: 28px 0;
    text-align: center;
}

.au-cta__copy h2 {
    margin: 0;
    font-family: "Koulen", "Outfit", sans-serif;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--au-ink);
}

.au-cta__copy h2 .au-pink {
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 56%, #d73581 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.au-cta__lead {
    margin: 12px 0 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.15;
    color: var(--au-ink);
}

.au-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.au-trust {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    padding: 18px 8px 18px 28px;
    border-top: 1px solid #f4d3e3;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.au-trust li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--au-ink);
    text-align: left;
}

.au-trust .material-symbols-outlined {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(236, 78, 158, 0.12);
    color: var(--au-pink);
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 1099px) {
    .au-timeline,
    .au-promise__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .au-why__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 979px) {
    .au-hero__inner,
    .au-founder__panel,
    .au-why__card,
    .au-cta__panel {
        grid-template-columns: 1fr;
    }

    .au-hero__copy,
    .au-founder__copy,
    .au-why__copy,
    .au-cta__copy {
        order: 1;
    }

    .au-hero__media,
    .au-founder__portrait,
    .au-why__card .au-media,
    .au-cta__mascot {
        order: 2;
    }

    .au-founder__panel {
        align-items: stretch;
        gap: 0;
        min-height: 0;
        padding: 0 0 18px;
    }

    .au-founder__copy {
        order: 1;
        padding: 22px 16px 8px;
    }

    .au-founder__portrait {
        order: 2;
        position: relative;
        min-height: 300px;
        height: 300px;
    }

    .au-founder__lower {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .au-founder__deco--heart,
    .au-founder__deco--heart-2,
    .au-founder__deco--paw,
    .au-founder__deco--spark {
        display: none;
    }

    .au-looks {
        justify-content: center;
    }

    .au-looks__shot {
        width: 100px;
        flex-basis: 100px;
        margin-left: -14px;
    }

    .au-timeline__card {
        transform: none !important;
    }

    .au-timeline__copy {
        order: 2;
        padding-top: 14px;
    }

    .au-timeline__card .au-media {
        order: 1;
    }

    .au-story__panel {
        padding: 24px 20px 22px;
    }

    .au-founder__panel,
    .au-cta__panel {
        padding: 0 0 8px;
    }

    .au-cta__mascot {
        min-height: 240px;
        height: 260px;
    }

    .au-cta__copy {
        padding: 22px 16px 10px;
    }

    .au-trust {
        padding: 16px;
    }

    .au-ribbon {
        max-width: 70%;
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .au-hero {
        padding-top: 34px;
    }

    .au-timeline,
    .au-promise__grid,
    .au-trust {
        grid-template-columns: 1fr;
    }

    .au-looks__shot {
        margin-left: -10px;
        transform: none !important;
    }

    .au-cta {
        padding-bottom: 56px;
    }

    .au-meet-badge {
        font-size: 18px;
    }
}

/* Contact Us page */
.cu-page {
    --cu-pink: #ec4e9e;
    --cu-ink: #121832;
    --cu-muted: #3d455f;
    --cu-line: #f3d7e5;
    --cu-soft: #fff7fb;
    background:
        radial-gradient(circle at 10% 0%, rgba(236, 78, 158, 0.1), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(236, 78, 158, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fff7fb 48%, #fff4f9 100%);
    overflow: clip;
}

.cu-main {
    /* Clear the overlapping primary-nav (margin-bottom: -31px). */
    padding: 72px 0 18px;
}

.cu-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px 48px;
    align-items: start;
}

.cu-hero-copy {
    margin: 0 0 28px;
    padding-top: 8px;
}

.cu-title {
    margin: 0;
    font-family: "Caveat", "Outfit", cursive;
    font-size: clamp(58px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--cu-pink);
    letter-spacing: -0.04em;
}

.cu-title-rule,
.cu-copy-rule {
    display: grid;
    grid-template-columns: minmax(28px, 88px) auto minmax(28px, 88px);
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    margin: 6px 0 0;
    color: var(--cu-pink);
}

.cu-title-rule > span:first-child,
.cu-title-rule > span:last-child,
.cu-copy-rule > span:first-child,
.cu-copy-rule > span:last-child {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cu-pink), transparent);
    opacity: 0.7;
}

.cu-heart {
    font-size: 18px;
    line-height: 1;
}

.cu-lead-title {
    margin: 0 0 10px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--cu-pink);
}

.cu-lead {
    max-width: 420px;
    margin: 0 0 26px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--cu-ink);
}

.cu-methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cu-methods li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid #ece4ea;
}

.cu-methods li:last-child {
    border-bottom: 1px solid #ece4ea;
}

.cu-method-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(236, 78, 158, 0.12);
    color: var(--cu-pink);
    font-size: 26px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.cu-methods h3 {
    margin: 0 0 4px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--cu-pink);
}

.cu-methods a,
.cu-method-primary {
    display: inline-block;
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--cu-ink);
    text-decoration: none;
}

.cu-methods a:hover,
.cu-methods a:focus-visible {
    color: var(--cu-pink);
}

.cu-methods p {
    margin: 4px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: var(--cu-muted);
}

.cu-copy-rule {
    margin-top: 28px;
    justify-content: start;
    grid-template-columns: minmax(40px, 120px) auto minmax(40px, 120px);
}

.cu-side {
    position: relative;
    display: grid;
    gap: 0;
}

.cu-media {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    margin: 0 0 -42px auto;
    pointer-events: none;
}

.cu-media img {
    display: block;
    width: 100%;
    height: auto;
}

.cu-form-card {
    position: relative;
    z-index: 2;
    padding: 28px 26px 22px;
    border: 1px solid var(--cu-line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(41, 31, 52, 0.08);
}

.cu-form {
    display: grid;
    gap: 8px;
}

.cu-form .checkout-flash {
    margin: 0 0 8px;
    margin-bottom: 20px;
}

.cu-form label {
    margin-top: 6px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--cu-ink);
}

.cu-optional {
    font-weight: 600;
    color: #7a8298;
}

.cu-paw {
    margin-left: 2px;
    font-size: 12px;
    color: var(--cu-pink);
}

.cu-form input,
.cu-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #f0c9dc;
    border-radius: 12px;
    background: #fff;
    color: var(--cu-ink);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cu-form textarea {
    min-height: 128px;
    resize: vertical;
}

.cu-form input::placeholder,
.cu-form textarea::placeholder {
    color: #a0a7b8;
}

.cu-form input:focus,
.cu-form textarea:focus {
    border-color: var(--cu-pink);
    box-shadow: 0 0 0 3px rgba(236, 78, 158, 0.14);
}

.cu-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cu-form .account-recaptcha {
    justify-content: flex-start;
    margin-top: 8px;
}

.cu-submit {
    margin-top: 10px;
    min-height: 56px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(180deg, #ff68b2 0%, #ec4e9e 55%, #d73581 100%);
    box-shadow: 0 14px 28px rgba(236, 78, 158, 0.28);
    font-family: "Caveat", "Outfit", cursive;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cu-submit .material-symbols-outlined {
    font-size: 22px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.cu-submit:hover,
.cu-submit:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(236, 78, 158, 0.34);
}

.cu-form-note {
    margin: 12px 0 0;
    text-align: center;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cu-pink);
}

.cu-benefits {
    margin-top: 36px;
    padding: 28px 0 40px;
    background: linear-gradient(180deg, rgba(255, 247, 251, 0.2) 0%, #fff0f7 100%);
    border-top: 1px solid #f3dce8;
}

.cu-benefits__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 22px;
}

.cu-benefits article {
    text-align: center;
}

.cu-benefits .material-symbols-outlined {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: rgba(236, 78, 158, 0.1);
    color: var(--cu-pink);
    font-size: 26px;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.cu-benefits h2 {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--cu-pink);
}

.cu-benefits p {
    margin: 4px 0 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--cu-muted);
}

@media (max-width: 980px) {
    .cu-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cu-media {
        width: min(100%, 360px);
        margin: 0 auto -28px;
    }

    .cu-lead {
        max-width: none;
    }

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

@media (max-width: 640px) {
    .cu-main {
        padding-top: 48px;
    }

    .cu-hero-copy {
        margin-bottom: 22px;
        padding-top: 4px;
    }

    .cu-title {
        font-size: clamp(48px, 14vw, 64px);
    }

    .cu-form-card {
        padding: 22px 16px 18px;
    }

    .cu-benefits__inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
    }

    .cu-form .account-recaptcha {
        transform: scale(0.92);
        transform-origin: left center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cu-submit,
    .cu-methods a {
        transition: none;
    }
}

.legal-page {
    background:
        radial-gradient(circle at 12% 4%, rgba(236, 78, 158, 0.08), transparent 28%),
        linear-gradient(180deg, #fff7fb 0%, #ffffff 42%);
    padding: 48px 0 88px;
    color: #121832;
}

.legal-page__inner {
    max-width: 820px;
}

.legal-page__eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ec4e9e;
}

.legal-page__header h1 {
    margin: 0 0 10px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.legal-page__updated {
    margin: 0 0 28px;
    color: #5f6675;
    font-size: 14px;
}

.legal-page__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 36px;
}

.legal-page__nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f2dce7;
    color: #121832;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.legal-page__nav a:hover,
.legal-page__nav a[aria-current="page"] {
    background: #ec4e9e;
    border-color: #ec4e9e;
    color: #fff;
}

.legal-page__body {
    font-size: 17px;
    line-height: 1.7;
    color: #2f3645;
}

.legal-page__body h2 {
    margin: 32px 0 12px;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #121832;
}

.legal-page__body p,
.legal-page__body ul,
.legal-page__body ol {
    margin: 0 0 16px;
}

.legal-page__body ul,
.legal-page__body ol {
    padding-left: 1.2em;
}

.legal-page__body a {
    color: #ec4e9e;
    font-weight: 600;
}

.legal-page__body a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .legal-page {
        padding: 28px 0 56px;
    }

    .legal-page__body {
        font-size: 16px;
    }
}
