:root {
    --blue: #1769e0;
    --blue-dark: #0d4fb3;
    --blue-soft: #eaf2ff;
    --black: #111318;
    --black-soft: #1d2027;
    --white: #ffffff;
    --background: #f7f8fa;
    --surface: #ffffff;
    --text: #17191e;
    --text-soft: #687080;
    --text-muted: #969dab;
    --line: #e2e5ea;
    --success: #168b52;
    --danger: #d74242;
    --container: 1380px;
    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;
    --shadow: 0 24px 60px rgba(20, 35, 60, 0.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark-mode {
    --background: #111318;
    --surface: #1a1d23;
    --text: #f5f7fa;
    --text-soft: #abb2bf;
    --text-muted: #7e8795;
    --line: #2a2e36;
    --blue-soft: #172b49;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

button {
    cursor: pointer;
}

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

.store-container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.store-section {
    padding: 105px 0;
}

/* Top bars */

.demo-bar {
    background: #080a0d;
    color: rgba(255, 255, 255, 0.64);
}

.demo-bar-inner,
.announcement-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
}

.demo-bar a {
    color: #8bb9ff;
    display: inline-flex;
    gap: 8px;
    font-weight: 700;
}

.announcement-bar {
    background: var(--blue);
    color: var(--white);
}

.announcement-inner {
    min-height: 34px;
    justify-content: center;
    gap: 70px;
    font-size: 9px;
}

/* Header */

.store-header {
    position: relative;
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.store-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 12px 35px rgba(20, 35, 60, 0.11);
}

.header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 42px;
}

.store-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.logo-mark {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
}

.store-logo > span:last-child {
    display: flex;
    flex-direction: column;
}

.store-logo strong {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1;
}

.store-logo small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 7px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-search {
    position: relative;
    height: 48px;
    display: flex;
}

.header-search input {
    width: 100%;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 12px 0 0 12px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.header-search input:focus {
    border-color: var(--blue);
}

.header-search > button {
    min-width: 100px;
    border: none;
    border-radius: 0 12px 12px 0;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.live-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1200;
    max-height: 390px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: none;
}

.live-search-results.open {
    display: block;
}

.live-search-item {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 12px;
}

.live-search-item img {
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
}

.live-search-item strong {
    font-size: 11px;
}

.live-search-item span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

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

.header-icon-button {
    position: relative;
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: transparent;
    color: var(--text);
    display: grid;
    place-items: center;
    font-size: 11px;
}

.header-icon-button span {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    border-radius: 20px;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 8px;
}

.mobile-menu-button {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

/* Navigation */

.store-navigation-wrapper {
    border-top: 1px solid var(--line);
}

.store-navigation {
    position: relative;
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.category-menu-button {
    min-height: 56px;
    min-width: 195px;
    padding: 0 17px;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-navigation a {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 600;
}

.main-navigation a.active,
.main-navigation a:hover {
    color: var(--blue);
}

.support-link {
    margin-left: auto;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1100;
    width: 760px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mega-menu.open {
    display: grid;
}

.mega-menu a {
    padding: 10px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.mega-menu a:hover {
    background: var(--background);
}

.mega-menu img {
    width: 52px;
    height: 52px;
    border-radius: 9px;
    object-fit: cover;
}

.mega-menu span {
    font-size: 10px;
    font-weight: 700;
}

/* Hero */

.commerce-hero {
    padding: 28px 0;
}

.commerce-hero-grid {
    display: grid;
    grid-template-columns: 1.65fr 0.75fr;
    gap: 18px;
}

.hero-main-card,
.hero-side-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.hero-main-card {
    min-height: 620px;
    color: var(--white);
}

.hero-main-card > img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.hero-image-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 18, 0.93),
            rgba(8, 12, 18, 0.55) 56%,
            rgba(8, 12, 18, 0.10)
        );
}

.hero-main-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 95px 75px;
}

.hero-eyebrow {
    color: #a9c9ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hero-main-content h1 {
    margin-top: 22px;
    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 90px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-main-content p {
    max-width: 550px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}

.store-primary-button,
.store-secondary-button {
    min-height: 52px;
    padding: 0 19px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 11px;
    font-weight: 700;
}

.store-primary-button {
    background: var(--blue);
    color: var(--white);
}

.store-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.31);
    color: var(--white);
}

.hero-side-column {
    display: grid;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 18px;
}

.hero-side-card {
    min-height: 260px;
    padding: 35px;
}

.dark-card {
    background: var(--black);
    color: var(--white);
}

.dark-card > div {
    position: relative;
    z-index: 2;
    max-width: 230px;
}

.dark-card img {
    position: absolute;
    right: -60px;
    bottom: -30px;
    width: 75%;
    height: 90%;
    object-fit: contain;
}

.hero-side-card > div > span,
.blue-card > span {
    color: #9dc3ff;
    font-size: 8px;
    text-transform: uppercase;
}

.hero-side-card h2 {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1.03;
}

.hero-side-card a {
    margin-top: 27px;
    display: inline-flex;
    gap: 18px;
    font-size: 10px;
    font-weight: 700;
}

.blue-card {
    background: var(--blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
}

.blue-card strong {
    align-self: flex-end;
    font-family: var(--font-heading);
    font-size: 70px;
    line-height: 0.8;
}

/* Benefits */

.store-benefits {
    padding: 22px 0;
}

.benefits-grid {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefits-grid article {
    padding: 25px;
    border-right: 1px solid var(--line);
    display: flex;
    gap: 13px;
}

.benefits-grid article:last-child {
    border-right: none;
}

.benefits-grid > article > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
}

.benefits-grid strong {
    display: block;
    font-size: 11px;
}

.benefits-grid p {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 9px;
}

/* Shared section heading */

.store-section-heading {
    margin-bottom: 43px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.store-section-heading > div > span,
.brand-heading > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.store-section-heading h2,
.brand-heading h2,
.newsletter-card h2 {
    max-width: 740px;
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 54px);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.store-section-heading > a {
    display: inline-flex;
    gap: 18px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

/* Categories */

.category-section {
    background: var(--surface);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-card {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--surface);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-image {
    height: 170px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--background);
}

.category-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card strong {
    display: block;
    margin-top: 13px;
    font-size: 11px;
}

.category-card > span {
    color: var(--text-muted);
    font-size: 8px;
}

/* Products */

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

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f0f2f5;
}

.product-card-image > a,
.product-card-image img {
    height: 100%;
}

.product-card-image img {
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.045);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 20px;
    background: var(--black);
    color: var(--white);
    font-size: 7px;
    font-weight: 800;
}

.product-card-tools {
    position: absolute;
    top: 13px;
    right: 13px;
    display: grid;
    gap: 7px;
    opacity: 0;
    transform: translateX(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.product-card:hover .product-card-tools {
    opacity: 1;
    transform: translateX(0);
}

.icon-button {
    width: 37px;
    height: 37px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--black);
    box-shadow: 0 8px 20px rgba(20, 30, 45, 0.12);
    display: grid;
    place-items: center;
}

.icon-button.active {
    background: var(--blue);
    color: var(--white);
}

.product-card-content {
    padding: 18px;
}

.product-category {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 42px;
    margin-top: 7px;
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 1.35;
}

.product-rating {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating > span {
    color: #f3a617;
    font-size: 8px;
}

.product-rating small {
    color: var(--text-muted);
    font-size: 8px;
}

.product-price-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-price strong {
    display: block;
    color: var(--blue);
    font-size: 14px;
}

.product-price del {
    display: block;
    color: var(--text-muted);
    font-size: 8px;
}

.add-to-cart-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 600;
}

.add-to-cart-button:hover {
    background: var(--blue);
    color: var(--white);
}

/* Promotions */

.promotion-section {
    padding: 30px 0 105px;
}

.promotion-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 18px;
}

.promotion-large,
.promotion-small {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border-radius: 23px;
}

.promotion-large {
    color: var(--white);
}

.promotion-large img,
.promotion-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.promotion-overlay {
    background: linear-gradient(
        90deg,
        rgba(10, 14, 20, 0.9),
        rgba(10, 14, 20, 0.28)
    );
}

.promotion-large > div:last-child {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 75px 65px;
}

.promotion-large span,
.promotion-small > span {
    color: #a8c7f7;
    font-size: 8px;
    text-transform: uppercase;
}

.promotion-large h2 {
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 49px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.promotion-large a,
.promotion-small a {
    margin-top: 30px;
    display: inline-flex;
    gap: 22px;
    font-size: 10px;
    font-weight: 700;
}

.promotion-small {
    padding: 50px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.promotion-small strong {
    margin-top: auto;
    font-family: var(--font-heading);
    font-size: 53px;
}

.promotion-small p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

/* Brands */

.brand-section {
    background: var(--black);
    color: var(--white);
}

.brand-heading > span {
    color: #8bb8ff;
}

.brand-heading h2 {
    color: var(--white);
}

.brand-list {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.brand-list span {
    min-height: 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--font-heading);
    font-size: 19px;
}

/* Testimonials */

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

.testimonial-grid article {
    min-height: 275px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f3a617;
    font-size: 10px;
}

.testimonial-grid article > p {
    margin-top: 27px;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.55;
}

.testimonial-grid article > div {
    margin-top: auto;
}

.testimonial-grid strong,
.testimonial-grid small {
    display: block;
}

.testimonial-grid strong {
    font-size: 10px;
}

.testimonial-grid small {
    color: var(--text-muted);
    font-size: 8px;
}

/* Newsletter */

.newsletter-section {
    padding: 30px 0 100px;
}

.newsletter-card {
    padding: 58px;
    border-radius: 24px;
    background: var(--blue);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 70px;
}

.newsletter-card > div > span {
    color: #c0d7ff;
    font-size: 8px;
    text-transform: uppercase;
}

.newsletter-card h2 {
    color: var(--white);
    font-size: 39px;
}

.newsletter-card form {
    height: 54px;
    display: flex;
}

.newsletter-card input {
    width: 100%;
    padding: 0 16px;
    border: none;
    border-radius: 11px 0 0 11px;
    outline: none;
}

.newsletter-card button {
    min-width: 115px;
    border: none;
    border-radius: 0 11px 11px 0;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
}

/* Footer */

.store-footer {
    padding: 75px 0 24px;
    background: #080a0d;
    color: var(--white);
}

.footer-grid {
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}

.footer-about p {
    max-width: 370px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: #9fc4ff;
    font-size: 11px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.47);
    font-size: 10px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
}

.footer-bottom > div {
    display: flex;
    gap: 17px;
}

/* Toasts */

.toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    display: grid;
    gap: 10px;
}

.store-toast {
    min-width: 280px;
    padding: 15px 17px;
    border-radius: 12px;
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow);
    font-size: 10px;
    animation: toastIn 0.25s ease;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick view */

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

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 13, 0.78);
    backdrop-filter: blur(8px);
}

.quick-view-card {
    position: relative;
    z-index: 2;
    width: min(100%, 920px);
    min-height: 520px;
    padding: 30px;
    border-radius: 22px;
    background: var(--surface);
}

.quick-view-close {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 20px;
}

.quick-view-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.quick-view-layout > img {
    height: 460px;
    border-radius: 16px;
    object-fit: cover;
}

.quick-view-details {
    padding: 35px 0;
}

.quick-view-details > span {
    color: var(--blue);
    font-size: 8px;
    text-transform: uppercase;
}

.quick-view-details h2 {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: 1.1;
}

.quick-view-details p {
    margin-top: 17px;
    color: var(--text-soft);
    font-size: 11px;
}

.quick-view-price {
    margin-top: 25px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 24px;
}

.quick-view-actions {
    margin-top: 28px;
    display: flex;
    gap: 10px;
}

.quick-view-actions button,
.quick-view-actions a {
    min-height: 50px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.quick-view-actions button {
    background: var(--blue);
    color: var(--white);
}

.quick-view-actions a {
    border: 1px solid var(--line);
}
/* Shop page */

.shop-page-hero {
    padding: 95px 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(23, 105, 224, 0.16),
            transparent 32%
        ),
        var(--black);
    color: var(--white);
}

.shop-page-hero-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 80px;
}

.shop-page-hero span {
    color: #9fc4ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.shop-page-hero h1 {
    max-width: 850px;
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: clamp(50px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.shop-page-hero p {
    max-width: 600px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.58);
}

.shop-hero-summary {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.shop-hero-summary strong {
    font-family: var(--font-heading);
    font-size: 55px;
}

.shop-section {
    padding: 65px 0 115px;
}

.shop-toolbar {
    margin-bottom: 28px;
    padding: 17px 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.shop-results-summary {
    display: flex;
    flex-direction: column;
}

.shop-results-summary strong {
    font-size: 12px;
}

.shop-results-summary span {
    color: var(--text-muted);
    font-size: 9px;
}

.shop-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-toolbar-actions label {
    color: var(--text-muted);
    font-size: 9px;
}

.shop-toolbar-actions select {
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--background);
    color: var(--text);
}

.shop-layout {
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 35px;
}

.shop-sidebar {
    align-self: start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--surface);
}

.shop-sidebar-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
}

.shop-sidebar-header span,
.shop-sidebar-header strong {
    display: block;
}

.shop-sidebar-header span {
    color: var(--blue);
    font-size: 8px;
    text-transform: uppercase;
}

.shop-sidebar-header strong {
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 17px;
}

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

.filter-group {
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.filter-group > label,
.filter-group-heading strong {
    display: block;
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
}

.filter-group-heading {
    margin-bottom: 13px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.filter-group-heading span {
    color: var(--blue);
    font-size: 8px;
}

.sidebar-search {
    margin-top: 10px;
    height: 43px;
    display: flex;
}

.sidebar-search input {
    width: 100%;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    background: var(--background);
    color: var(--text);
    font-size: 10px;
}

.sidebar-search button {
    width: 45px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: var(--blue);
    color: var(--white);
}

.filter-options {
    display: grid;
    gap: 10px;
}

.filter-option {
    cursor: pointer;
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 7px;
}

.filter-option input {
    accent-color: var(--blue);
}

.filter-option span {
    color: var(--text-soft);
    font-size: 10px;
}

.filter-option small {
    color: var(--text-muted);
    font-size: 8px;
}

#priceFilter {
    width: 100%;
    accent-color: var(--blue);
}

.price-range-labels {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 8px;
}

#ratingFilter {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--background);
    color: var(--text);
}

.stock-filter-option {
    cursor: pointer;
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
}

.stock-filter-option input {
    margin-top: 3px;
    accent-color: var(--blue);
}

.stock-filter-option span {
    color: var(--text-soft);
    font-size: 9px;
}

.clear-filters-button {
    width: 100%;
    min-height: 44px;
    margin-top: 22px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
}

.active-filter-tags {
    min-height: 34px;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-tag {
    min-height: 32px;
    padding: 0 11px;
    border: none;
    border-radius: 20px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 8px;
    font-weight: 700;
}

.active-filter-tag span {
    margin-left: 6px;
}

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

.shop-product-wrapper .product-card {
    height: 100%;
}

.shop-empty-state {
    padding: 100px 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    text-align: center;
}

.shop-empty-state > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-empty-state h2 {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 34px;
}

.shop-empty-state p {
    margin-top: 10px;
    color: var(--text-soft);
}

.shop-empty-state button {
    min-height: 45px;
    margin-top: 25px;
    padding: 0 18px;
    border: none;
    border-radius: 9px;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
}

.shop-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.shop-pagination button {
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
    color: var(--text);
}

.shop-pagination button.active {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.shop-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
/* Product details page */

.product-breadcrumb-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-muted);
    font-size: 9px;
}

.product-breadcrumb a:hover {
    color: var(--blue);
}

.product-breadcrumb strong {
    color: var(--text);
}

.product-details-section {
    padding: 55px 0 100px;
}

.product-details-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 65px;
}

.product-gallery {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
}

.product-thumbnails {
    display: grid;
    align-content: start;
    gap: 11px;
}

.product-thumbnail {
    height: 90px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f2f5;
}

.product-thumbnail.active {
    border-color: var(--blue);
}

.product-thumbnail img {
    height: 100%;
    object-fit: cover;
}

.product-main-image {
    position: sticky;
    top: 125px;
    min-height: 680px;
    border-radius: 22px;
    overflow: hidden;
    background: #eef0f3;
}

.product-main-image > img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.product-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 30px;
    background: var(--black);
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
}

.product-detail-wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    font-size: 20px;
}

.product-detail-wishlist.active {
    background: var(--blue);
    color: var(--white);
}

.image-zoom-button {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 2;
    min-height: 42px;
    padding: 0 16px;
    border: none;
    border-radius: 30px;
    background: rgba(17, 19, 24, 0.88);
    color: var(--white);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
}

.product-detail-category {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-details-content h1 {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.product-detail-rating {
    margin-top: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail-rating > span {
    color: #f3a617;
    font-size: 11px;
}

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

.product-detail-rating a {
    padding-left: 10px;
    border-left: 1px solid var(--line);
    color: var(--blue);
    font-size: 9px;
}

.product-detail-price {
    margin-top: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.product-detail-price strong {
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 31px;
}

.product-detail-price del {
    color: var(--text-muted);
    font-size: 14px;
}

.product-detail-price span {
    padding: 6px 9px;
    border-radius: 20px;
    background: #e5f7ed;
    color: var(--success);
    font-size: 8px;
    font-weight: 800;
}

.product-short-description {
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 13px;
}

.stock-status {
    margin-top: 23px;
    padding: 13px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 9px;
    font-weight: 700;
}

.stock-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stock-status.in-stock {
    background: #e6f7ed;
    color: var(--success);
}

.stock-status.in-stock span {
    background: var(--success);
}

.stock-status.out-of-stock {
    background: #faeaea;
    color: var(--danger);
}

.stock-status.out-of-stock span {
    background: var(--danger);
}

.product-options-form {
    margin-top: 28px;
}

.product-option-group {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.product-option-heading {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-option-heading strong {
    font-size: 11px;
}

.product-option-heading span,
.product-option-heading button {
    color: var(--text-muted);
    font-size: 9px;
}

.product-option-heading button {
    border: none;
    background: transparent;
    text-decoration: underline;
}

.product-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.product-option-button {
    cursor: pointer;
}

.product-option-button input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-option-button span {
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 9px;
}

.product-option-button input:checked + span {
    border-color: var(--blue);
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 700;
}

.size-buttons .product-option-button span {
    min-width: 47px;
}

.quantity-and-actions {
    padding-top: 25px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
}

.quantity-selector {
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
}

.quantity-selector button {
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 18px;
}

.quantity-selector input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    text-align: center;
    appearance: textfield;
}

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

.product-add-cart-button,
.buy-now-button {
    min-height: 54px;
    border: none;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
}

.product-add-cart-button {
    background: var(--blue);
    color: var(--white);
}

.buy-now-button {
    width: 100%;
    margin-top: 11px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.product-add-cart-button:disabled,
.buy-now-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.product-support-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.product-support-actions a,
.product-support-actions button {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
}

.product-service-information {
    margin-top: 30px;
    border-top: 1px solid var(--line);
}

.product-service-information article {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
}

.product-service-information article > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-service-information strong {
    display: block;
    font-size: 10px;
}

.product-service-information p {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 8px;
}

/* Product information tabs */

.product-information-section {
    padding: 85px 0;
    background: var(--surface);
}

.product-tabs {
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 35px;
    overflow-x: auto;
}

.product-tab-button {
    min-height: 52px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--text-muted);
    white-space: nowrap;
    font-size: 10px;
    font-weight: 700;
}

.product-tab-button.active {
    border-bottom-color: var(--blue);
    color: var(--blue);
}

.product-tab-panel {
    padding-top: 50px;
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.product-tab-panel[data-product-panel="description"] {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.product-tab-panel[data-product-panel="description"].active {
    display: grid;
}

.product-tab-panel > div:first-child > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-tab-panel h2 {
    max-width: 600px;
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.08;
}

.product-tab-panel[data-product-panel="description"] p {
    margin-bottom: 18px;
    color: var(--text-soft);
}

.specification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}

.specification-grid article {
    padding: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.specification-grid span,
.specification-grid strong {
    display: block;
}

.specification-grid span {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.specification-grid strong {
    margin-top: 8px;
    font-size: 12px;
}

.delivery-information-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.delivery-information-grid article {
    min-height: 220px;
    padding: 28px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 16px;
}

.delivery-information-grid article > span {
    color: var(--blue);
    font-size: 9px;
}

.delivery-information-grid h3 {
    font-family: var(--font-heading);
    font-size: 22px;
}

.delivery-information-grid p {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 10px;
}

.review-summary {
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
}

.review-summary > div:first-child {
    display: flex;
    flex-direction: column;
}

.review-summary > div:first-child > strong {
    font-family: var(--font-heading);
    font-size: 65px;
    line-height: 1;
}

.review-summary > div:first-child > span {
    margin-top: 10px;
    color: #f3a617;
}

.review-summary > div:first-child > small {
    margin-top: 7px;
    color: var(--text-muted);
}

.review-bars {
    display: grid;
    gap: 10px;
}

.review-bars article {
    display: grid;
    grid-template-columns: 55px 1fr 35px;
    align-items: center;
    gap: 12px;
    font-size: 8px;
}

.review-bars article > div {
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--line);
}

.review-bars i {
    display: block;
    height: 100%;
    background: #f3a617;
}

.review-list article {
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.review-list article > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-list article > div span {
    color: #f3a617;
}

.review-list p {
    margin-top: 10px;
    color: var(--text-soft);
}

.review-list small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
}

/* Product modal */

.product-image-modal,
.size-guide-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: grid;
    place-items: center;
    padding: 20px;
}

.product-image-modal[hidden],
.size-guide-modal[hidden] {
    display: none;
}

.product-image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 13, 0.86);
    backdrop-filter: blur(8px);
}

.product-image-modal-card,
.size-guide-card {
    position: relative;
    z-index: 2;
    width: min(100%, 950px);
    max-height: 90vh;
    padding: 24px;
    border-radius: 20px;
    overflow: auto;
    background: var(--surface);
}

.product-image-modal-card > button,
.size-guide-card > button {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 21px;
}

.product-image-modal-card img {
    max-height: calc(90vh - 48px);
    border-radius: 14px;
    object-fit: contain;
}

.size-guide-card {
    width: min(100%, 620px);
    padding: 40px;
}

.size-guide-card > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.size-guide-card h2 {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 35px;
}

.size-guide-table {
    margin-top: 30px;
    border-top: 1px solid var(--line);
}

.size-guide-table > div {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Product not found */

.product-not-found {
    padding: 150px 0;
    text-align: center;
}

.product-not-found span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.product-not-found h1 {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 56px;
}

.product-not-found p {
    margin: 15px auto 30px;
    max-width: 500px;
    color: var(--text-soft);
}

.product-not-found .store-primary-button {
    color: var(--white);
}
/* Cart page */

.cart-page-hero {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(23, 105, 224, 0.18),
            transparent 30%
        ),
        var(--black);
    color: var(--white);
}

.cart-page-hero-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 70px;
}

.cart-page-hero-layout > div:first-child > span {
    color: #9fc5ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cart-page-hero h1 {
    max-width: 780px;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 75px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.cart-page-hero p {
    max-width: 570px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.56);
}

.cart-step-indicator {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cart-step-indicator > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.cart-step-indicator > div.active {
    color: var(--white);
}

.cart-step-indicator div > span {
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 8px;
}

.cart-step-indicator .active > span {
    border-color: var(--blue);
    background: var(--blue);
}

.cart-step-indicator strong {
    font-size: 9px;
}

.cart-step-indicator i {
    width: 35px;
    height: 1px;
    background: rgba(255, 255, 255, 0.17);
}

.cart-page-section {
    padding: 65px 0 110px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: start;
    gap: 35px;
}

.cart-products-column {
    min-width: 0;
}

.cart-products-heading {
    min-height: 72px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-products-heading span,
.cart-products-heading strong {
    display: block;
}

.cart-products-heading span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-products-heading strong {
    margin-top: 3px;
    font-size: 11px;
}

.cart-products-heading button {
    border: none;
    background: transparent;
    color: var(--danger);
    font-size: 9px;
    font-weight: 700;
}

.cart-item-list {
    margin-top: 15px;
    display: grid;
    gap: 13px;
}

.cart-product-item {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--surface);
    display: grid;
    grid-template-columns: 120px 1fr 110px 145px 120px;
    align-items: center;
    gap: 18px;
}

.cart-product-image {
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
    background: #eef0f3;
}

.cart-product-image img {
    height: 100%;
    object-fit: cover;
}

.cart-product-information > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-product-information h3 {
    margin-top: 5px;
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.3;
}

.cart-product-information small {
    display: block;
    margin-top: 7px;
    color: var(--success);
    font-size: 8px;
}

.cart-remove-button {
    margin-top: 10px;
    border: none;
    background: transparent;
    color: var(--danger);
    font-size: 8px;
    font-weight: 700;
}

.cart-product-price span,
.cart-product-quantity > span,
.cart-product-total span {
    display: block;
    margin-bottom: 7px;
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.cart-product-price strong,
.cart-product-total strong {
    font-size: 11px;
}

.cart-product-total strong {
    color: var(--blue);
}

.cart-product-quantity > div {
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 9px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
}

.cart-product-quantity button {
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 16px;
}

.cart-product-quantity input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    text-align: center;
    appearance: textfield;
}

.cart-product-quantity input::-webkit-inner-spin-button,
.cart-product-quantity input::-webkit-outer-spin-button {
    appearance: none;
}

.cart-support-row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.cart-support-row a {
    color: var(--blue);
    display: inline-flex;
    gap: 12px;
    font-size: 9px;
    font-weight: 700;
}

.cart-summary-card {
    position: sticky;
    top: 120px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 22px 50px rgba(22, 35, 60, 0.07);
}

.cart-summary-label {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cart-summary-card h2 {
    margin-top: 7px;
    font-family: var(--font-heading);
    font-size: 29px;
}

.cart-summary-lines {
    margin-top: 25px;
}

.cart-summary-lines > div {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cart-summary-lines span {
    color: var(--text-soft);
    font-size: 9px;
}

.cart-summary-lines strong {
    font-size: 10px;
}

.cart-total-line {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total-line span {
    font-size: 11px;
    font-weight: 700;
}

.cart-total-line strong {
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 25px;
}

.coupon-section,
.delivery-estimator {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.coupon-section > label,
.delivery-estimator > label {
    display: block;
    margin-bottom: 9px;
    font-size: 9px;
    font-weight: 700;
}

.coupon-section > div {
    height: 44px;
    display: flex;
}

.coupon-section input {
    width: 100%;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 9px 0 0 9px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.coupon-section button {
    min-width: 75px;
    border: none;
    border-radius: 0 9px 9px 0;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
}

.coupon-section p {
    min-height: 18px;
    margin-top: 7px;
    font-size: 8px;
}

.coupon-section p.success {
    color: var(--success);
}

.coupon-section p.error {
    color: var(--danger);
}

.delivery-estimator select {
    width: 100%;
    height: 44px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--background);
    color: var(--text);
}

.delivery-estimator small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 8px;
}

.cart-checkout-button {
    width: 100%;
    min-height: 55px;
    border-radius: 11px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 10px;
    font-weight: 800;
}

.cart-checkout-button.disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.secure-checkout-note {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    background: var(--blue-soft);
}

.secure-checkout-note strong {
    color: var(--blue);
    font-size: 9px;
}

.secure-checkout-note p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 8px;
}

.cart-empty-state {
    padding: 110px 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    text-align: center;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}

.cart-empty-state > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-empty-state h2 {
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 35px;
}

.cart-empty-state p {
    max-width: 480px;
    margin: 10px auto 28px;
    color: var(--text-soft);
}

.cart-empty-state .store-primary-button {
    color: var(--white);
}

/* Clear cart confirmation */

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

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

.cart-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 13, 0.82);
    backdrop-filter: blur(7px);
}

.cart-confirm-card {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    padding: 35px;
    border-radius: 18px;
    background: var(--surface);
}

.cart-confirm-card > span {
    color: var(--danger);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-confirm-card h2 {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 31px;
}

.cart-confirm-card p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 10px;
}

.cart-confirm-card > div {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cart-confirm-card button {
    min-height: 47px;
    border-radius: 9px;
    font-size: 9px;
    font-weight: 700;
}

.cancel-clear-cart {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.confirm-clear-cart {
    border: none;
    background: var(--danger);
    color: var(--white);
}
/* Checkout page */

.checkout-page-hero {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(23, 105, 224, 0.2),
            transparent 32%
        ),
        var(--black);
    color: var(--white);
}

.checkout-page-hero-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 70px;
}

.checkout-page-hero-layout > div:first-child > span {
    color: #9fc4ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.checkout-page-hero h1 {
    max-width: 800px;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 75px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.checkout-page-hero p {
    max-width: 570px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.56);
}

.checkout-steps .completed {
    color: var(--white);
}

.checkout-steps .completed > span {
    border-color: var(--success);
    background: var(--success);
}

.checkout-page-section {
    padding: 65px 0 115px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 405px;
    align-items: start;
    gap: 35px;
}

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

.checkout-form-section {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.checkout-section-heading {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 15px;
}

.checkout-section-heading > span {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
}

.checkout-section-heading strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 17px;
}

.checkout-section-heading p {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 9px;
}

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

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

.checkout-field label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
}

.checkout-field label span {
    color: var(--text-muted);
    font-weight: 400;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.checkout-field input,
.checkout-field select {
    height: 49px;
    padding: 0 13px;
}

.checkout-field textarea {
    min-height: 105px;
    padding: 13px;
    resize: vertical;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    border-color: var(--blue);
}

.checkout-field > small {
    display: block;
    min-height: 16px;
    margin-top: 5px;
    color: var(--danger);
    font-size: 8px;
}

.checkout-field.invalid input,
.checkout-field.invalid select {
    border-color: var(--danger);
}

.checkout-choice-list {
    display: grid;
    gap: 11px;
}

.checkout-choice-card {
    position: relative;
    cursor: pointer;
    min-height: 94px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 13px;
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 15px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.checkout-choice-card:has(input:checked) {
    border-color: var(--blue);
    background: var(--blue-soft);
}

.checkout-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-selector {
    width: 19px;
    height: 19px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
}

.checkout-choice-card input:checked + .choice-selector {
    border: 5px solid var(--blue);
}

.checkout-choice-card strong {
    display: block;
    font-size: 10px;
}

.checkout-choice-card p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 9px;
}

.checkout-choice-card > small {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
}

.checkout-agreement {
    cursor: pointer;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 9px;
}

.checkout-agreement input {
    margin-top: 3px;
    accent-color: var(--blue);
}

.place-order-button {
    width: 100%;
    min-height: 59px;
    border: none;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 11px;
    font-weight: 800;
}

.checkout-form-message {
    min-height: 20px;
    text-align: center;
    font-size: 9px;
}

.checkout-form-message.error {
    color: var(--danger);
}

.checkout-summary-card {
    position: sticky;
    top: 120px;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 22px 55px rgba(22, 35, 60, 0.08);
}

.checkout-summary-heading {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout-summary-heading span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-summary-heading h2 {
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 25px;
}

.checkout-summary-heading a {
    color: var(--blue);
    font-size: 8px;
    font-weight: 700;
}

.checkout-product-list {
    max-height: 390px;
    overflow-y: auto;
}

.checkout-product-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 65px 1fr auto;
    align-items: center;
    gap: 12px;
}

.checkout-product-image {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    overflow: visible;
    background: #eef0f3;
}

.checkout-product-image img {
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.checkout-product-image span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 8px;
}

.checkout-product-item > div:nth-child(2) strong,
.checkout-product-item > div:nth-child(2) small {
    display: block;
}

.checkout-product-item > div:nth-child(2) strong {
    font-size: 9px;
}

.checkout-product-item > div:nth-child(2) small {
    color: var(--text-muted);
    font-size: 8px;
}

.checkout-product-item > strong {
    color: var(--blue);
    font-size: 9px;
}

.checkout-summary-values {
    padding: 18px 0;
}

.checkout-summary-values > div {
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout-summary-values span {
    color: var(--text-soft);
    font-size: 9px;
}

.checkout-summary-values strong {
    font-size: 9px;
}

.checkout-total-value {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-total-value span {
    font-size: 11px;
    font-weight: 700;
}

.checkout-total-value strong {
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 25px;
}

.checkout-security-note {
    padding: 16px;
    border-radius: 11px;
    background: var(--blue-soft);
}

.checkout-security-note strong {
    color: var(--blue);
    font-size: 9px;
}

.checkout-security-note p {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 8px;
}

.checkout-empty-state,
.order-success-section {
    padding: 110px 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    text-align: center;
}

.checkout-empty-state > span,
.order-success-section > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-empty-state h2,
.order-success-section h2 {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 37px;
}

.checkout-empty-state p,
.order-success-section > p {
    max-width: 560px;
    margin: 10px auto 28px;
    color: var(--text-soft);
}

.checkout-empty-state .store-primary-button {
    color: var(--white);
}

.order-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #e4f7ec;
    color: var(--success);
    display: grid;
    place-items: center;
    font-size: 27px;
    font-weight: 800;
}

.order-success-details {
    width: min(100%, 600px);
    margin: 35px auto;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.order-success-details > div {
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.order-success-details > div:first-child {
    border-right: 1px solid var(--line);
}

.order-success-details span,
.order-success-details strong {
    display: block;
}

.order-success-details span {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.order-success-details strong {
    margin-top: 6px;
    font-size: 13px;
}

.order-success-actions {
    display: flex;
    justify-content: center;
    gap: 11px;
}

.order-success-actions .store-primary-button {
    color: var(--white);
}

.store-outline-button {
    min-height: 52px;
    padding: 0 19px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
/* Customer account */

.account-page-hero {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 86% 15%,
            rgba(23, 105, 224, 0.2),
            transparent 31%
        ),
        var(--black);
    color: var(--white);
}

.account-page-hero-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 70px;
}

.account-page-hero-layout > div:first-child > span {
    color: #9fc4ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.account-page-hero h1 {
    max-width: 850px;
    margin-top: 13px;
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 75px);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.account-page-hero p {
    max-width: 600px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.56);
}

.account-profile-summary {
    padding-left: 35px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    gap: 13px;
}

.account-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
}

.account-profile-summary small,
.account-profile-summary strong {
    display: block;
}

.account-profile-summary small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 8px;
    text-transform: uppercase;
}

.account-profile-summary strong {
    margin-top: 4px;
    font-size: 11px;
}

.account-page-section {
    padding: 65px 0 115px;
}

.account-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: start;
    gap: 35px;
}

.account-sidebar {
    position: sticky;
    top: 120px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.account-sidebar-profile {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-sidebar-profile .account-avatar {
    width: 48px;
    height: 48px;
    font-size: 13px;
}

.account-sidebar-profile strong,
.account-sidebar-profile small {
    display: block;
}

.account-sidebar-profile strong {
    font-size: 10px;
}

.account-sidebar-profile small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 8px;
}

.account-navigation {
    margin-top: 17px;
    display: grid;
}

.account-navigation-button {
    position: relative;
    min-height: 50px;
    padding: 0 10px;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--text-soft);
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    text-align: left;
    font-size: 9px;
    font-weight: 700;
}

.account-navigation-button > span {
    color: var(--text-muted);
    font-size: 8px;
}

.account-navigation-button > small {
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--background);
    display: grid;
    place-items: center;
    font-size: 7px;
}

.account-navigation-button.active {
    color: var(--blue);
}

.account-navigation-button.active > span {
    color: var(--blue);
}

.account-support-link {
    margin-top: 25px;
    padding: 18px;
    border-radius: 12px;
    background: var(--blue-soft);
    display: block;
}

.account-support-link span,
.account-support-link strong,
.account-support-link small {
    display: block;
}

.account-support-link span {
    color: var(--blue);
    font-size: 8px;
    text-transform: uppercase;
}

.account-support-link strong {
    margin-top: 5px;
    font-size: 10px;
}

.account-support-link small {
    margin-top: 12px;
    color: var(--blue);
    font-size: 8px;
}

.account-panel {
    display: none;
}

.account-panel.active {
    display: block;
}

.account-panel-heading {
    margin-bottom: 27px;
    min-height: 90px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.account-panel-heading > div > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-panel-heading h2 {
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 26px;
}

.account-panel-heading > a,
.account-panel-heading > button {
    border: none;
    background: transparent;
    color: var(--blue);
    display: inline-flex;
    gap: 14px;
    font-size: 9px;
    font-weight: 700;
}

.account-panel-heading select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--background);
    color: var(--text);
}

.account-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.account-stat-grid article {
    min-height: 145px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
}

.account-stat-grid span,
.account-stat-grid strong,
.account-stat-grid small {
    display: block;
}

.account-stat-grid span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-stat-grid strong {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 29px;
}

.account-stat-grid small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 8px;
}

.account-overview-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.account-overview-card {
    min-height: 380px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--surface);
}

.overview-card-heading {
    padding-bottom: 19px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.overview-card-heading span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.overview-card-heading h3 {
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 18px;
}

.overview-card-heading button {
    border: none;
    background: transparent;
    color: var(--blue);
    font-size: 8px;
    font-weight: 700;
}

.overview-order-list article {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    align-items: center;
    gap: 12px;
}

.overview-order-list article div strong,
.overview-order-list article div small {
    display: block;
}

.overview-order-list article div strong {
    font-size: 9px;
}

.overview-order-list article div small {
    color: var(--text-muted);
    font-size: 8px;
}

.overview-order-list article > span {
    color: var(--success);
    font-size: 8px;
}

.overview-order-list article > strong {
    color: var(--blue);
    font-size: 9px;
    text-align: right;
}

.overview-wishlist-list article {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 12px;
}

.overview-wishlist-list img {
    width: 55px;
    height: 55px;
    border-radius: 9px;
    object-fit: cover;
}

.overview-wishlist-list strong,
.overview-wishlist-list small {
    display: block;
}

.overview-wishlist-list strong {
    font-size: 9px;
}

.overview-wishlist-list small {
    margin-top: 4px;
    color: var(--blue);
    font-size: 8px;
}

.overview-empty-state {
    padding: 70px 10px;
    text-align: center;
}

.overview-empty-state p {
    color: var(--text-soft);
    font-size: 10px;
}

.overview-empty-state a {
    display: inline-block;
    margin-top: 15px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

/* Orders */

.account-order-list {
    display: grid;
    gap: 12px;
}

.account-order-card {
    min-height: 112px;
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--surface);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr 120px;
    align-items: center;
    gap: 18px;
}

.account-order-card span,
.account-order-card strong,
.account-order-card small {
    display: block;
}

.account-order-card div > span {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.account-order-card div > strong {
    margin-top: 5px;
    font-size: 10px;
}

.account-order-main small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 8px;
}

.order-status-badge {
    color: var(--success);
}

.account-order-card > button {
    min-height: 41px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 700;
}

/* Wishlist */

.account-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.account-wishlist-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}

.account-wishlist-image {
    height: 270px;
    overflow: hidden;
    display: block;
}

.account-wishlist-image img {
    height: 100%;
    object-fit: cover;
}

.account-wishlist-card > div {
    padding: 18px;
}

.account-wishlist-card > div > span {
    color: var(--blue);
    font-size: 8px;
    text-transform: uppercase;
}

.account-wishlist-card h3 {
    min-height: 43px;
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
}

.account-wishlist-card > div > strong {
    display: block;
    margin-top: 13px;
    color: var(--blue);
    font-size: 13px;
}

.account-wishlist-card > div > div {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.account-wishlist-card button {
    min-height: 41px;
    border-radius: 9px;
    font-size: 8px;
    font-weight: 700;
}

.account-wishlist-card button:first-child {
    border: none;
    background: var(--blue);
    color: var(--white);
}

.account-wishlist-card button:last-child {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--danger);
}

/* Addresses */

.account-address-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.account-address-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
}

.address-card-heading {
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.address-card-heading > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-card-heading span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.address-card-heading small {
    padding: 4px 7px;
    border-radius: 20px;
    background: #e4f7ec;
    color: var(--success);
    font-size: 7px;
}

.address-card-heading button {
    border: none;
    background: transparent;
    color: var(--danger);
    font-size: 8px;
}

.account-address-card > strong {
    display: block;
    margin-top: 20px;
    font-size: 11px;
}

.account-address-card > p {
    margin-top: 9px;
    color: var(--text-soft);
    font-size: 10px;
}

.account-address-card > small {
    display: block;
    margin-top: 11px;
    color: var(--text-muted);
}

.make-default-address {
    margin-top: 20px;
    border: none;
    background: transparent;
    color: var(--blue);
    font-size: 8px;
    font-weight: 700;
}

/* Settings */

.account-settings-form {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.account-settings-avatar {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 15px;
}

.account-settings-avatar strong,
.account-settings-avatar p {
    display: block;
}

.account-settings-avatar strong {
    font-size: 10px;
}

.account-settings-avatar p {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 8px;
}

.account-form-grid {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
}

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

.account-form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
}

.account-form-field input,
.account-form-field select {
    width: 100%;
    height: 49px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.account-form-field input:focus,
.account-form-field select:focus {
    border-color: var(--blue);
}

.account-setting-checkbox {
    margin-top: 20px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 9px;
}

.account-setting-checkbox input {
    margin-top: 3px;
    accent-color: var(--blue);
}

.account-settings-form > button,
.account-modal-card form > button {
    min-height: 53px;
    margin-top: 24px;
    padding: 0 19px;
    border: none;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 9px;
    font-weight: 800;
}

.account-settings-message {
    min-height: 18px;
    margin-top: 10px;
    color: var(--success);
    font-size: 8px;
}

.account-danger-zone {
    margin-top: 20px;
    padding: 26px;
    border: 1px solid rgba(215, 66, 66, 0.3);
    border-radius: 16px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.account-danger-zone span {
    color: var(--danger);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-danger-zone h3 {
    margin-top: 5px;
    font-family: var(--font-heading);
    font-size: 19px;
}

.account-danger-zone p {
    margin-top: 6px;
    max-width: 650px;
    color: var(--text-soft);
    font-size: 9px;
}

.account-danger-zone button {
    min-height: 43px;
    padding: 0 15px;
    border: none;
    border-radius: 9px;
    background: var(--danger);
    color: var(--white);
    white-space: nowrap;
    font-size: 8px;
    font-weight: 700;
}

/* Empty account panels */

.account-empty-panel {
    padding: 100px 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    text-align: center;
}

.account-empty-panel > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-empty-panel h3 {
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 30px;
}

.account-empty-panel p {
    margin: 9px auto 23px;
    max-width: 480px;
    color: var(--text-soft);
}

.account-empty-panel a,
.account-empty-panel button {
    min-height: 45px;
    padding: 0 17px;
    border: none;
    border-radius: 9px;
    background: var(--blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 9px;
    font-weight: 700;
}

/* Account modals */

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

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

.account-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 13, 0.84);
    backdrop-filter: blur(8px);
}

.account-modal-card,
.account-confirm-card {
    position: relative;
    z-index: 2;
    width: min(100%, 690px);
    max-height: 90vh;
    padding: 35px;
    border-radius: 18px;
    overflow-y: auto;
    background: var(--surface);
}

.account-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 20px;
}

.account-modal-card > span,
.account-confirm-card > span,
#orderDetailsContent > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-modal-card > h2,
.account-confirm-card > h2,
#orderDetailsContent > h2 {
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 31px;
}

.order-details-modal-card {
    width: min(100%, 790px);
}

.order-modal-summary {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.order-modal-summary article {
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.order-modal-summary span,
.order-modal-summary strong {
    display: block;
}

.order-modal-summary span {
    color: var(--text-muted);
    font-size: 8px;
    text-transform: uppercase;
}

.order-modal-summary strong {
    margin-top: 6px;
    font-size: 9px;
}

.order-modal-products {
    margin-top: 25px;
}

.order-modal-products article {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 13px;
}

.order-modal-products img {
    width: 60px;
    height: 60px;
    border-radius: 9px;
    object-fit: cover;
}

.order-modal-products div strong,
.order-modal-products div small {
    display: block;
}

.order-modal-products div strong {
    font-size: 9px;
}

.order-modal-products div small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 8px;
}

.order-modal-products > article > strong {
    color: var(--blue);
    font-size: 9px;
}

.account-confirm-card {
    width: min(100%, 490px);
}

.account-confirm-card > p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 10px;
}

.account-confirm-card > div {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.account-confirm-card button {
    min-height: 46px;
    border-radius: 9px;
    font-size: 9px;
    font-weight: 700;
}

.account-confirm-card button:first-child {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.account-confirm-card button:last-child {
    border: none;
    background: var(--danger);
    color: var(--white);
}
/* Simple pages */

.simple-page-hero {
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(23, 105, 224, 0.2),
            transparent 32%
        ),
        var(--black);
    color: var(--white);
}

.simple-page-hero-content > span,
.simple-section-label {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.simple-page-hero-content > span {
    color: #9fc4ff;
}

.simple-page-hero h1 {
    max-width: 900px;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.simple-page-hero p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
}

.simple-section-heading {
    margin-bottom: 45px;
}

.simple-section-heading h2,
.about-introduction-heading h2,
.about-shopping-content h2,
.about-contact-card h2 {
    max-width: 760px;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

/* About page */

.about-introduction-section {
    padding: 110px 0;
}

.about-introduction-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
}

.about-introduction-copy p {
    margin-bottom: 22px;
    color: var(--text-soft);
    font-size: 14px;
}

.about-image-section {
    padding-bottom: 110px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
}

.about-main-image {
    min-height: 600px;
}

.about-main-image img {
    height: 100%;
    object-fit: cover;
}

.about-statistics {
    padding: 55px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-statistics article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-statistics strong,
.about-statistics span {
    display: block;
}

.about-statistics strong {
    font-family: var(--font-heading);
    font-size: 42px;
}

.about-statistics span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 9px;
}

.about-values-section {
    padding: 110px 0;
    background: var(--surface);
}

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

.about-values-grid article {
    min-height: 290px;
    padding: 28px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.about-values-grid article > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
}

.about-values-grid h3 {
    margin-top: 65px;
    font-family: var(--font-heading);
    font-size: 24px;
}

.about-values-grid p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 10px;
}

.about-shopping-section {
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.about-shopping-image img {
    height: 100%;
    object-fit: cover;
}

.about-shopping-content {
    padding: 90px 7vw;
    background: var(--blue-soft);
}

.about-shopping-content > p {
    margin-top: 20px;
    color: var(--text-soft);
}

.about-shopping-points {
    margin: 35px 0;
}

.about-shopping-points article {
    padding: 17px 0;
    border-top: 1px solid var(--line);
}

.about-shopping-points strong,
.about-shopping-points span {
    display: block;
}

.about-shopping-points strong {
    font-size: 10px;
}

.about-shopping-points span {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 9px;
}

.about-shopping-content .store-primary-button {
    color: var(--white);
}

.about-contact-section {
    padding: 100px 0;
}

.about-contact-card {
    padding: 55px;
    border-radius: 22px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-contact-card > div > span {
    color: #9fc4ff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-contact-card h2 {
    color: var(--white);
    font-size: 43px;
}

.about-contact-card p {
    max-width: 620px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.about-contact-card .store-primary-button {
    flex-shrink: 0;
    color: var(--white);
}
/* Contact page */

.contact-main-section {
    padding: 110px 0;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 90px;
}

.contact-information-column h2,
.contact-form-heading h2,
.contact-faq-layout h2,
.contact-final-card h2 {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.contact-information-column > p {
    margin-top: 20px;
    color: var(--text-soft);
}

.contact-detail-list {
    margin-top: 38px;
    border-top: 1px solid var(--line);
}

.contact-detail-list article {
    padding: 21px 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail-list article > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-detail-list strong,
.contact-detail-list p {
    display: block;
    margin-top: 6px;
}

.contact-detail-list strong {
    font-size: 12px;
}

.contact-detail-list p {
    color: var(--text-soft);
    font-size: 9px;
}

.contact-detail-list a {
    margin-top: 11px;
    display: inline-flex;
    gap: 15px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
}

.contact-form-card {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}

.contact-form-heading > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    font-size: 40px;
}

.contact-form-heading p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 10px;
}

.contact-form-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
}

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

.contact-form-field label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: 9px;
    font-weight: 700;
}

.contact-form-field label span {
    color: var(--text-muted);
    font-weight: 400;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.contact-form-field input,
.contact-form-field select {
    height: 49px;
    padding: 0 13px;
}

.contact-form-field textarea {
    min-height: 145px;
    padding: 13px;
    resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
    border-color: var(--blue);
}

.contact-form-card > button {
    width: 100%;
    min-height: 56px;
    margin-top: 24px;
    border: none;
    border-radius: 11px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    font-size: 10px;
    font-weight: 800;
}

.contact-form-message {
    min-height: 18px;
    margin-top: 10px;
    text-align: center;
    font-size: 8px;
}

.contact-form-message.error {
    color: var(--danger);
}

.contact-form-message.success {
    color: var(--success);
}

.contact-support-options {
    padding: 110px 0;
    background: var(--surface);
}

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

.contact-support-grid > a {
    min-height: 315px;
    padding: 28px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.contact-support-grid > a > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
}

.contact-support-grid h3 {
    margin-top: 60px;
    font-family: var(--font-heading);
    font-size: 23px;
}

.contact-support-grid p {
    margin-top: 9px;
    color: var(--text-soft);
    font-size: 10px;
}

.contact-support-grid strong {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 9px;
}

.contact-faq-section {
    padding: 110px 0;
}

.contact-faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

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

.contact-faq-list article {
    border-bottom: 1px solid var(--line);
}

.contact-faq-button {
    width: 100%;
    min-height: 76px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
}

.contact-faq-button strong {
    color: var(--blue);
    font-size: 20px;
}

.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.25s ease,
        padding 0.25s ease;
}

.contact-faq-answer p {
    padding-right: 45px;
    color: var(--text-soft);
    font-size: 10px;
}

.contact-faq-list article.open .contact-faq-answer {
    max-height: 180px;
    padding-bottom: 24px;
}

.contact-final-section {
    padding: 30px 0 100px;
}

.contact-final-card {
    padding: 55px;
    border-radius: 22px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-final-card > div > span {
    color: #9fc4ff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-final-card h2 {
    max-width: 750px;
    color: var(--white);
    font-size: 43px;
}

.contact-final-card .store-primary-button {
    flex-shrink: 0;
    color: var(--white);
}
