:root {
    --ink: #171713;
    --paper: #f7f5f0;
    --orange: #ff5c35;
    --line: rgba(23, 23, 19, .11);
    --muted: rgba(23, 23, 19, .56);
    --white: #fff;
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    cursor: pointer;
}

.section-wrap {
    width: min(100% - 40px, 1344px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 245, 240, .92);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(100% - 40px, 1344px);
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 36px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.05em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--orange);
    color: #fff;
    box-shadow: 3px 3px 0 var(--ink);
    transform: rotate(3deg);
    font-weight: 950;
}

.desktop-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 750;
}

.desktop-nav a:hover {
    color: var(--orange);
}

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

.header-search {
    position: relative;
}

.header-search span {
    position: absolute;
    left: 15px;
    top: 7px;
    font-size: 24px;
    color: var(--muted);
}

.header-search input {
    width: 250px;
    height: 44px;
    padding: 0 18px 0 42px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: rgba(255, 255, 255, .72);
    outline: 0;
}

.header-search input:focus {
    border-color: rgba(23, 23, 19, .4);
    background: #fff;
}

.icon-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
}

.cart-button b {
    position: absolute;
    right: -4px;
    top: -5px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
}

.menu-button {
    display: none;
}

.mobile-nav {
    display: none;
}

.flash-message {
    position: fixed;
    right: 22px;
    top: 96px;
    z-index: 80;
    max-width: 360px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    position: relative;
    width: min(100% - 40px, 1344px);
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    padding: 104px 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .75;
}

.hero-blob-one {
    right: -120px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: #ffc6b5;
}

.hero-blob-two {
    left: -100px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: #d9c8ff;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 99px;
    background: #fff;
    box-shadow: 2px 2px 0 var(--ink);
    transform: rotate(-2deg);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow-badge i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-copy h1 {
    margin: 34px 0 0;
    font-size: clamp(52px, 6.2vw, 88px);
    line-height: .93;
    letter-spacing: -.07em;
}

.hero-copy h1 em {
    color: var(--orange);
    font-family: Georgia, serif;
    font-weight: 400;
}

.hero-copy>p {
    max-width: 590px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.hero-cta>span {
    font-size: 13px;
    font-weight: 650;
    color: rgba(23, 23, 19, .43);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 27px;
    border: 0;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 850;
    transition: .2s transform, .2s background;
}

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

.button-dark {
    background: var(--ink);
    color: #fff;
}

.button-dark:hover {
    background: var(--orange);
}

.button-orange {
    background: var(--orange);
    color: #fff;
}

.button-block {
    width: 100%;
}

.hero-art-wrap {
    position: relative;
    max-width: 560px;
    margin-left: auto;
}

.hero-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 48px;
    background: #8b5cf6;
    box-shadow: 14px 16px 0 var(--ink);
    transform: rotate(2deg);
}

.hero-art:before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .4) 0 2px, transparent 3px 25px);
    opacity: .6;
}

.hero-ring {
    position: absolute;
    right: -35px;
    top: 35px;
    width: 260px;
    height: 260px;
    border: 34px solid #ffcf3f;
    border-radius: 50%;
}

.hero-circle {
    position: absolute;
    left: -40px;
    bottom: -65px;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-art-frame {
    position: absolute;
    inset: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 32px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero-art-frame>span {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-art-frame small {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .65;
}

.hero-art-frame strong {
    display: block;
    font-size: clamp(46px, 5vw, 68px);
    line-height: .88;
    letter-spacing: -.07em;
}

.rating-card {
    position: absolute;
    left: -35px;
    bottom: -32px;
    padding: 15px 20px;
    border-radius: 16px;
    background: #ffcf3f;
    box-shadow: 4px 5px 0 var(--ink);
    transform: rotate(-6deg);
}

.rating-card strong, .rating-card span {
    display: block;
}

.rating-card strong {
    font-size: 24px;
}

.rating-card span {
    font-size: 11px;
    font-weight: 750;
    color: rgba(0, 0, 0, .52);
}

.catalog {
    padding-top: 105px;
    padding-bottom: 110px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.kicker {
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .21em;
    text-transform: uppercase;
    color: var(--orange);
}

.section-heading h2, .orange-banner h2 {
    margin: 13px 0 0;
    font-size: clamp(38px, 4.4vw, 57px);
    line-height: 1;
    letter-spacing: -.06em;
}

.mobile-search {
    display: none;
}

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 36px;
    padding-bottom: 4px;
}

.category-tabs a {
    white-space: nowrap;
    padding: 11px 19px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.category-tabs a.active {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    transition: .28s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(29, 28, 22, .12);
}

.product-art {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--accent);
}

.art-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 15%, rgba(255, 255, 255, .85), transparent 35%),
        repeating-linear-gradient(135deg, transparent 0 18px, rgba(0, 0, 0, .19) 19px 20px);
    opacity: .34;
}

.art-frame {
    position: absolute;
    inset: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 20px;
    background: rgba(255, 255, 255, .11);
    color: #fff;
}

.art-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.art-top b {
    padding: 6px 10px;
    border-radius: 99px;
    background: rgba(0, 0, 0, .72);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.art-top strong {
    font-size: 29px;
    opacity: .85;
}

.art-frame small, .art-frame em {
    display: block;
}

.art-frame small {
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
    opacity: .7;
}

.art-frame em {
    max-width: 190px;
    margin-top: 4px;
    font-size: 23px;
    font-style: normal;
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.05em;
}

.featured-pill {
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 7px 11px;
    border-radius: 99px;
    background: var(--paper);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(0, 0, 0, .4);
    font-size: 10px;
}

.product-meta span:first-child {
    font-weight: 950;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.product-title {
    margin-top: 9px;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.product-card-body>p {
    display: -webkit-box;
    overflow: hidden;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price strong {
    font-size: 21px;
}

.price del {
    color: rgba(0, 0, 0, .34);
    font-size: 13px;
}

.add-button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.add-button:hover {
    background: var(--orange);
}

.empty-state {
    margin-top: 42px;
    padding: 54px;
    border: 1px dashed rgba(0, 0, 0, .22);
    border-radius: 30px;
    background: #fff;
    text-align: center;
}

.empty-state h3 {
    margin: 0;
    font-size: 25px;
}

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

.orange-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 65px max(20px, calc((100% - 1344px)/2));
    background: var(--orange);
    color: #fff;
}

.orange-banner>div {
    max-width: 700px;
}

.orange-banner>div>span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .7;
}

.orange-banner dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 0;
    text-align: center;
}

.orange-banner dt {
    font-size: 30px;
    font-weight: 950;
}

.orange-banner dd {
    margin: 2px 0 0;
    font-size: 11px;
    opacity: .65;
}

.product-page {
    padding-top: 45px;
    padding-bottom: 100px;
}

.back-link {
    font-size: 13px;
    font-weight: 750;
    color: var(--muted);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    margin-top: 30px;
}

.detail-art {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 40px;
    background: var(--accent);
    box-shadow: 10px 12px 0 var(--ink);
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.detail-art>div {
    position: absolute;
    inset: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.detail-art>div>span {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.detail-art>div>strong {
    font-size: clamp(45px, 5vw, 74px);
    line-height: .88;
    letter-spacing: -.07em;
}

.category-pill {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 99px;
    background: #ffe1d8;
    color: #d83d16;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.editors-pick {
    margin-left: 12px;
    color: rgba(0, 0, 0, .34);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.detail-copy h1, .page-title-row h1, .page-title, .success-page h1 {
    margin: 22px 0 0;
    font-size: clamp(48px, 5vw, 68px);
    line-height: .93;
    letter-spacing: -.07em;
}

.detail-copy>p {
    margin: 24px 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.detail-copy dl {
    display: flex;
    margin: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.detail-copy dl div {
    padding: 17px 23px 17px 0;
}

.detail-copy dl div+div {
    padding-left: 23px;
    border-left: 1px solid var(--line);
}

.detail-copy dt {
    font-size: 13px;
    font-weight: 800;
}

.detail-copy dd {
    margin: 4px 0 0;
    color: rgba(0, 0, 0, .4);
    font-size: 10px;
}

.buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.price-large strong {
    font-size: 38px;
}

.price-large del {
    font-size: 17px;
}

.trust-note {
    display: block;
    margin-top: 14px;
    color: rgba(0, 0, 0, .39);
}

.related {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}

.related h2 {
    font-size: 31px;
    letter-spacing: -.04em;
}

.narrow-page {
    max-width: 1120px;
    padding-top: 72px;
    padding-bottom: 90px;
}

.page-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.page-title-row>span {
    color: rgba(0, 0, 0, .4);
    font-size: 13px;
    font-weight: 700;
}

.cart-empty {
    margin-top: 38px;
}

.empty-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: auto;
    border-radius: 50%;
    background: var(--paper);
    font-size: 28px;
}

.cart-empty .button {
    margin-top: 10px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 38px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
}

.cart-thumb {
    display: grid;
    flex: 0 0 112px;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 18px;
    background: var(--accent);
    color: #fff;
    font-size: 32px;
    font-weight: 950;
}

.cart-info {
    min-width: 0;
    flex: 1;
}

.cart-info span, .cart-info a, .cart-info small {
    display: block;
}

.cart-info span {
    color: rgba(0, 0, 0, .35);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.cart-info a {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 900;
}

.cart-info small {
    margin-top: 5px;
    color: rgba(0, 0, 0, .43);
}

.cart-controls {
    text-align: right;
}

.cart-controls label {
    color: rgba(0, 0, 0, .43);
    font-size: 11px;
    font-weight: 800;
}

.cart-controls select {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: #fff;
}

.cart-controls>strong {
    display: block;
    margin-top: 8px;
}

.text-button {
    border: 0;
    background: none;
    color: rgba(0, 0, 0, .38);
    font-size: 11px;
    text-decoration: underline;
}

.dark-card {
    border-radius: 28px;
    background: var(--ink);
    color: #fff;
}

.order-summary {
    position: sticky;
    top: 110px;
    align-self: start;
    padding: 25px;
}

.order-summary h2 {
    margin: 0;
}

.order-summary>p {
    display: flex;
    justify-content: space-between;
    margin: 22px 0 0;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.order-summary>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.order-summary>div strong {
    font-size: 28px;
}

.order-summary .button {
    display: flex;
}

.order-summary>small {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-top: 36px;
}

.panel {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
}

.checkout-form {
    padding: 30px;
}

.checkout-form h2, .checkout-summary h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.03em;
}

.checkout-form-section > p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.checkout-form-section + .checkout-form-section {
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.checkout-error-box {
    margin-top: 0;
    margin-bottom: 24px;
}

.checkout-error-box strong {
    display: block;
}

.checkout-error-box ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-weight: 500;
}

.checkout-error-box li + li {
    margin-top: 4px;
}

.payment-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.payment-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.card-brands {
    display: flex;
    gap: 6px;
}

.card-brands span {
    padding: 6px 8px;
    border-radius: 6px;
    background: var(--ink);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.payment-card-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(100%, 390px);
    aspect-ratio: 1.65;
    margin: 24px 0 4px;
    padding: 24px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 20%, rgba(254, 215, 0, .8), transparent 31%),
        linear-gradient(135deg, #242424, #050505);
    color: #fff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.payment-card-preview span {
    font-size: 14px;
    font-weight: 900;
}

.payment-card-preview i {
    width: 42px;
    height: 31px;
    border-radius: 7px;
    background: linear-gradient(135deg, #f6da6c, #b58d1b);
}

.payment-card-preview strong {
    font-size: clamp(17px, 3vw, 24px);
    letter-spacing: .08em;
}

.payment-card-preview small {
    font-size: 8px;
    letter-spacing: .18em;
    opacity: .55;
}

.payment-fields {
    margin-top: 25px;
}

.payment-demo-note {
    margin-bottom: 18px;
}

.error-box {
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    background: #fff0f0;
    color: #b42318;
    font-size: 13px;
    font-weight: 700;
}

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

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

.form-grid label>span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
}

.form-grid label>span em {
    color: rgba(0, 0, 0, .35);
    font-style: normal;
    font-weight: 400;
}

.form-grid input, .admin-input, .admin-select, .admin-textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 13px;
    background: #fff;
    outline: none;
}

.form-grid input:focus, .admin-input:focus, .admin-select:focus, .admin-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 92, 53, .12);
}

.form-grid .field-invalid > span {
    color: #b42318;
}

.form-grid .field-invalid > input {
    border: 2px solid #b42318;
    background: #fff8f7;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, .1);
}

.form-grid .field-invalid > input:focus {
    border-color: #b42318;
    box-shadow: 0 0 0 4px rgba(180, 35, 24, .18);
}

.form-grid label>small {
    display: block;
    margin-top: 6px;
    color: #b42318;
}

.demo-note {
    display: flex;
    gap: 12px;
    margin: 25px 0;
    padding: 17px;
    border: 1px solid #ffd1c4;
    border-radius: 17px;
    background: #fff5f1;
}

.demo-note>b {
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    height: 34px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
}

.demo-note strong {
    font-size: 13px;
}

.demo-note p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.checkout-summary {
    position: sticky;
    top: 110px;
    align-self: start;
    padding: 24px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 17px;
}

.checkout-item>span {
    display: grid;
    flex: 0 0 46px;
    place-items: center;
    height: 46px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
}

.checkout-item>div {
    min-width: 0;
    flex: 1;
}

.checkout-item b, .checkout-item small {
    display: block;
}

.checkout-item b {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-item small {
    margin-top: 3px;
    color: rgba(0, 0, 0, .4);
}

.checkout-item>strong {
    font-size: 12px;
}

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

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

.success-page {
    width: min(100% - 40px, 760px);
    margin: auto;
    padding: 110px 0;
    text-align: center;
}

.success-mark {
    display: grid;
    place-items: center;
    width: 94px;
    height: 94px;
    margin: 0 auto 38px;
    border-radius: 30px;
    background: var(--orange);
    box-shadow: 7px 8px 0 var(--ink);
    transform: rotate(3deg);
    color: #fff;
    font-size: 38px;
}

.payment-processing-page {
    width: min(100% - 40px, 760px);
    margin: auto;
    padding: 110px 0;
    text-align: center;
}

.payment-processing-page h1 {
    margin: 18px 0 12px;
    font-size: clamp(42px, 7vw, 72px);
    letter-spacing: -.06em;
}

.payment-processing-page > p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
}

.payment-processing-mark {
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 30px;
    background: var(--ink);
}

.payment-processing-mark i {
    width: 34px;
    height: 34px;
    border: 4px solid rgba(255, 255, 255, .25);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: payment-spin .8s linear infinite;
}

.payment-processing-failed .payment-processing-mark {
    background: #b42318;
}

.payment-processing-failed .payment-processing-mark i {
    border: 0;
    animation: none;
}

.payment-processing-failed .payment-processing-mark i:after {
    content: '!';
    color: #fff;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
}

.payment-hidden-frame {
    position: absolute;
    width: 1px;
    height: 1px;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.three-ds-challenge {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .65);
}

.three-ds-challenge[hidden] {
    display: none;
}

.three-ds-challenge > div {
    width: min(100%, 540px);
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.three-ds-challenge h2 {
    margin: 0;
    font-size: 24px;
}

.three-ds-challenge p {
    margin: 7px 0 18px;
    color: var(--muted);
    font-size: 12px;
}

.three-ds-challenge iframe {
    display: block;
    width: 100%;
    height: min(600px, 70vh);
    border: 0;
    background: #fff;
}

.payment-processing-back {
    display: inline-block;
    margin-top: 32px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.payment-processing-failed .payment-processing-back {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
}

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

.success-page>p {
    max-width: 620px;
    margin: 22px auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.receipt {
    margin: 34px 0;
    padding: 24px;
    text-align: left;
}

.receipt>div, .receipt>p {
    display: flex;
    justify-content: space-between;
}

.receipt>div {
    padding-bottom: 16px;
}

.receipt>div strong {
    font-size: 23px;
}

.receipt>p {
    margin: 0;
    padding: 6px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.site-footer {
    padding: 60px 0;
    background: var(--ink);
    color: #fff;
}

.footer-grid {
    width: min(100% - 40px, 1344px);
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.brand-light {
    color: #fff;
}

.footer-about p {
    max-width: 460px;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.7;
}

.footer-grid h3 {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .62);
}

/* Admin */.admin-body {
    min-height: 100vh;
    background: #f2f1ec;
}

.admin-shell {
    display: grid;
    grid-template-columns: 255px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 255px;
    padding: 26px 20px;
    background: var(--ink);
    color: #fff;
}

.admin-sidebar .brand {
    padding: 0 8px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 45px;
}

.admin-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 750;
}

.admin-nav a.active, .admin-nav a:hover {
    background: rgba(255, 255, 255, .09);
    color: #fff;
}

.admin-sidebar-footer {
    position: absolute;
    right: 20px;
    bottom: 24px;
    left: 20px;
}

.admin-sidebar-footer p {
    margin: 0 0 12px;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
}

.admin-sidebar-footer button {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: transparent;
    color: #fff;
}

.admin-main {
    grid-column: 2;
    padding: 35px 42px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.admin-topbar h1 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -.045em;
}

.admin-topbar p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.admin-mobile-toggle {
    display: none;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.metric-card, .admin-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.metric-card {
    padding: 21px;
}

.metric-card span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.metric-card strong {
    display: block;
    margin-top: 12px;
    font-size: 29px;
    letter-spacing: -.05em;
}

.metric-card small {
    color: #26875a;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 18px;
    margin-top: 20px;
}

.admin-card {
    padding: 22px;
}

.admin-card-spaced {
    margin-top: 18px;
}

.admin-button-block {
    width: 100%;
    margin-top: 12px;
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.admin-card-header h2 {
    margin: 0;
    font-size: 18px;
}

.admin-card-header a {
    font-size: 12px;
    font-weight: 800;
    color: var(--orange);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.admin-table th {
    padding: 10px;
    text-align: left;
    color: rgba(0, 0, 0, .38);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-table td {
    padding: 13px 10px;
    border-top: 1px solid var(--line);
}

.admin-table a {
    font-weight: 800;
}

.status {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 99px;
    background: #fff0ca;
    color: #876300;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.status-paid, .status-completed {
    background: #dcf6e9;
    color: #147143;
}

.status-cancelled {
    background: #fee4e2;
    color: #b42318;
}

.top-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.top-product:first-of-type {
    border: 0;
}

.top-product i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--accent);
}

.top-product div {
    min-width: 0;
    flex: 1;
}

.top-product b, .top-product small {
    display: block;
}

.top-product b {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-product small {
    color: var(--muted);
    font-size: 10px;
}

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

.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 0;
    border-radius: 11px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.admin-button.orange {
    background: var(--orange);
}

.admin-button.ghost {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.admin-button.danger {
    background: #fee4e2;
    color: #b42318;
}

.admin-filters {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.product-admin-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-admin-name i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent);
}

.product-admin-name img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

.product-admin-name b, .product-admin-name small {
    display: block;
}

.product-admin-name small {
    color: var(--muted);
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pagination a, .pagination span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    font-size: 11px;
}

.admin-form {
    max-width: 850px;
}

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

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

.admin-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 800;
}

.admin-field > small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
}

.admin-image-preview {
    display: block;
    width: min(100%, 320px);
    max-height: 220px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    object-fit: contain;
}

.admin-field .admin-remove-image {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 0;
}

.admin-textarea {
    min-height: 125px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    gap: 25px;
    padding: 14px 0;
}

.checkbox-row label {
    font-size: 12px;
    font-weight: 700;
}

.field-error {
    display: block;
    margin-top: 5px;
    color: #b42318;
    font-size: 10px;
}

.admin-form-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--paper);
}

.login-art {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 55px;
    background: #8b5cf6;
    color: #fff;
}

.login-art:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, #ffcf3f 0 16%, transparent 16.3%),
        radial-gradient(circle at 15% 85%, var(--orange) 0 27%, transparent 27.3%),
        repeating-linear-gradient(135deg, transparent 0 30px, rgba(0, 0, 0, .11) 31px 33px);
}

.login-art>* {
    position: relative;
}

.login-art h1 {
    max-width: 520px;
    margin: 0;
    font-size: 60px;
    line-height: .92;
    letter-spacing: -.07em;
}

.login-art p {
    max-width: 450px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
}

.login-panel {
    display: grid;
    place-items: center;
    padding: 35px;
}

.login-box {
    width: min(100%, 420px);
}

.login-box h2 {
    margin: 25px 0 6px;
    font-size: 37px;
    letter-spacing: -.05em;
}

.login-box>p {
    margin: 0 0 28px;
    color: var(--muted);
}

.login-box label {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 800;
}

.login-box input[type=email], .login-box input[type=password] {
    width: 100%;
    margin-top: 7px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.login-check {
    display: flex!important;
    align-items: center;
    gap: 8px;
}

.login-box .button {
    margin-top: 22px;
}

.login-help {
    margin-top: 20px;
    padding: 14px;
    border-radius: 12px;
    background: #eeece5;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

@media(max-width:1050px) {
    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: grid;
    }

    .mobile-nav.open {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 18px 20px;
        border-top: 1px solid var(--line);
        font-size: 13px;
        font-weight: 800;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 75px 0 100px;
    }

    .hero-art-wrap {
        width: min(90%, 560px);
        margin: 0 auto;
    }

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

    .product-detail {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .cart-layout, .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary, .checkout-summary {
        position: static;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        z-index: 60;
        transform: translateX(-100%);
        transition: .25s;
    }

    .admin-sidebar.open {
        transform: none;
    }

    .admin-main {
        padding: 28px 25px;
    }

    .admin-mobile-toggle {
        display: block;
    }

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

}

@media(max-width:720px) {
    .section-wrap, .header-inner, .footer-grid, .hero-inner {
        width: min(100% - 30px, 1344px);
    }

    .header-search {
        display: none;
    }

    .hero-inner {
        padding-top: 55px;
        gap: 55px;
    }

    .hero-copy h1 {
        font-size: 51px;
    }

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

    .hero-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-art {
        border-radius: 34px;
    }

    .hero-art-frame {
        inset: 22px;
        padding: 20px;
    }

    .rating-card {
        left: -8px;
    }

    .catalog {
        padding-top: 72px;
        padding-bottom: 75px;
    }

    .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .mobile-search {
        display: flex;
    }

    .mobile-search input {
        min-width: 0;
        flex: 1;
        padding: 12px 15px;
        border: 1px solid var(--line);
        border-radius: 99px 0 0 99px;
    }

    .mobile-search button {
        padding: 0 18px;
        border: 0;
        border-radius: 0 99px 99px 0;
        background: var(--ink);
        color: #fff;
    }

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

    .orange-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .orange-banner dl {
        width: 100%;
        gap: 10px;
    }

    .product-detail {
        margin-top: 24px;
    }

    .detail-art {
        border-radius: 27px;
    }

    .detail-art>div {
        inset: 20px;
        padding: 20px;
    }

    .detail-copy h1 {
        font-size: 48px;
    }

    .buy-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .cart-thumb {
        flex-basis: 82px;
    }

    .cart-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }

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

    .form-grid .full {
        grid-column: auto;
    }

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

    .footer-about {
        grid-column: 1/-1;
    }

    .login-page {
        grid-template-columns: 1fr;
    }

    .login-art {
        display: none;
    }

    .login-panel {
        min-height: 100vh;
    }

    .admin-main {
        padding: 24px 16px;
    }

    .metric-grid, .admin-grid, .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-field.full {
        grid-column: auto;
    }

    .admin-topbar {
        align-items: flex-start;
    }

    .admin-topbar h1 {
        font-size: 25px;
    }

    .admin-card {
        padding: 15px;
    }

    .page-title-row h1, .page-title, .success-page h1 {
        font-size: 48px;
    }

}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *:before, *:after {
        transition: none!important;
    }

}

/* Electro-inspired public storefront */ .store-container {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

.store-topbar {
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    color: #6b6b6b;
    font-size: 12px;
}

.store-topbar .store-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.store-topbar p {
    margin: 0;
}

.store-topbar nav {
    display: flex;
    align-items: center;
}

.store-topbar nav>* {
    padding: 0 13px;
    border-left: 1px solid #ddd;
}

.store-header {
    position: relative;
    z-index: 35;
    background: #fff;
}

.store-header-main {
    display: flex;
    align-items: center;
    gap: 45px;
    height: 102px;
}

.electro-brand {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    color: #333;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -3px;
}

.electro-brand-mark {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-right: 2px;
    border-radius: 50%;
    background: #fed700;
    color: #333;
    font-size: 31px;
    font-weight: 950;
    letter-spacing: -2px;
}

.electro-brand strong {
    line-height: 1;
}

.electro-brand i {
    width: 8px;
    height: 8px;
    margin: 0 0 3px 3px;
    border-radius: 50%;
    background: #fed700;
}

.electro-search {
    display: flex;
    min-width: 280px;
    max-width: 650px;
    height: 44px;
    flex: 1;
    overflow: hidden;
    border: 2px solid #fed700;
    border-radius: 24px;
}

.electro-search input {
    min-width: 100px;
    flex: 1;
    padding: 0 22px;
    border: 0;
    outline: 0;
}

.electro-search select {
    width: 155px;
    padding: 0 12px;
    border: 0;
    border-left: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    font-size: 12px;
    outline: 0;
}

.electro-search button {
    width: 58px;
    border: 0;
    background: #fed700;
    font-size: 24px;
}

.store-tools {
    display: flex;
    align-items: center;
    gap: 25px;
}

.store-tools>a>span {
    font-size: 23px;
}

.store-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
}

.store-cart>b {
    position: absolute;
    left: 16px;
    top: 5px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fed700;
    font-size: 10px;
}

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

.store-cart div small {
    color: #888;
    font-size: 10px;
}

.store-cart div strong {
    font-size: 13px;
}

.store-menu-button {
    display: none;
    border: 0;
    background: none;
    font-size: 24px;
}

.store-nav-row {
    display: flex;
    height: 50px;
    align-items: stretch;
}

.departments {
    position: relative;
    width: 270px;
    flex: none;
}

.departments>button {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 9px 9px 0 0;
    background: #fed700;
    text-align: left;
    font-size: 14px;
    font-weight: 800;
}

.departments>button span {
    margin-right: 15px;
}

.departments-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .1);
}

.departments:hover .departments-menu {
    display: flex;
    flex-direction: column;
}

.departments-menu a {
    padding: 9px;
    border-bottom: 1px solid #eee;
    font-size: 12px;
}

.store-main-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    padding-left: 30px;
    font-size: 13px;
    font-weight: 800;
}

.store-main-nav a:first-child, .store-main-nav a:last-child {
    color: #0062bd;
}

.delivery-note {
    margin-left: auto;
    align-self: center;
    font-size: 12px;
}

.electro-mobile-nav {
    border-top: 1px solid #eee;
    background: #fff;
}

.electro-hero {
    background: #f4f4f4;
}

.hero-commerce-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 410px;
}

.hero-categories {
    display: flex;
    flex-direction: column;
    padding: 9px 18px 12px;
    border: 1px solid #e2e2e2;
    border-top: 0;
    background: #fff;
}

.hero-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    border-bottom: 1px solid #e8e8e8;
    color: #555;
    font-size: 12px;
}

.hero-categories a:last-child {
    border-bottom: 0;
}

.hero-categories .featured-category {
    color: #222;
    font-weight: 800;
}

.electro-hero-banner {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 62px 6% 45px 9%;
}

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

.hero-commerce-copy>span {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .08em;
}

.hero-commerce-copy h1 {
    margin: 8px 0 17px;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.04em;
}

.hero-commerce-copy h1 b {
    font-weight: 700;
}

.hero-commerce-copy p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 11px;
}

.hero-commerce-copy p strong {
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
}

.hero-commerce-copy p sup {
    font-size: 22px;
}

.hero-commerce-copy p small {
    font-size: 24px;
    vertical-align: top;
}

.hero-commerce-copy>a {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding: 12px 23px;
    border-radius: 9px;
    background: #fed700;
    font-size: 13px;
    font-weight: 700;
}

.hero-commerce-copy>a i {
    font-size: 20px;
    font-style: normal;
}

.hero-products-visual {
    position: absolute;
    inset: 0 0 0 52%;
}

.hero-disc {
    position: absolute;
    right: -20px;
    top: 35px;
    width: 310px;
    height: 310px;
    border: 55px solid #fed700;
    border-radius: 50%;
    opacity: .9;
}

.floating-box {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: var(--box);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.floating-box i {
    font-size: 70px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    opacity: .3;
}

.floating-box b {
    font-size: 17px;
    letter-spacing: .2em;
}

.floating-box-one {
    --box: #7451c9;
    right: 170px;
    top: 75px;
    width: 175px;
    height: 225px;
    transform: rotate(-8deg);
}

.floating-box-two {
    --box: #ff613c;
    right: 15px;
    top: 115px;
    width: 170px;
    height: 215px;
    transform: rotate(8deg);
}

.promo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 28px;
    padding-bottom: 32px;
}

.promo-row>a {
    display: flex;
    align-items: center;
    min-height: 135px;
    padding: 20px 24px;
    background: #f5f5f5;
}

.promo-icon {
    width: 42%;
    color: #0062bd;
    font-size: 58px;
    text-align: center;
}

.promo-row p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.45;
}

.promo-row p strong {
    font-weight: 800;
}

.promo-row p small {
    display: block;
    margin-top: 13px;
    font-size: 11px;
    font-weight: 800;
}

.offers-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 25px;
    padding: 20px 0 55px;
}

.special-offer {
    padding: 20px;
    border: 2px solid #fed700;
    border-radius: 20px;
    background: #fff;
}

.offer-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.offer-title h2 {
    margin: 6px 0 0;
    font-size: 21px;
    font-weight: 400;
}

.offer-title span {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fed700;
    font-size: 11px;
    text-align: center;
}

.offer-title span b {
    font-size: 17px;
}

.special-product-art {
    position: relative;
    display: grid;
    place-items: center;
    width: 170px;
    height: 185px;
    margin: 4px auto 12px;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent), #000 28%));
    box-shadow: 10px 8px 22px rgba(0, 0, 0, .15);
    color: #fff;
    transform: perspective(500px) rotateY(-8deg);
}

.special-product-art span {
    font-size: 85px;
    font-weight: 900;
    opacity: .35;
}

.special-product-art img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.special-product-art b {
    position: absolute;
    bottom: 18px;
    font-size: 10px;
    letter-spacing: .1em;
}

.special-offer>a {
    display: block;
    color: #0062bd;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.special-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
}

.special-price strong {
    color: #ee0000;
    font-size: 28px;
    font-weight: 400;
}

.special-price del {
    color: #777;
}

.sales-copy {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 10px;
}

.sales-copy b {
    color: #333;
}

.sales-meter {
    height: 8px;
    margin-top: 8px;
    border-radius: 9px;
    background: #eee;
}

.sales-meter i {
    display: block;
    width: 70%;
    height: 100%;
    border-radius: 9px;
    background: #fed700;
}

.special-offer>p {
    margin: 17px 0 8px;
    font-size: 11px;
    text-align: center;
}

.countdown {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.countdown span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown span b {
    display: grid;
    place-items: center;
    width: 40px;
    height: 36px;
    border-radius: 9px;
    background: #e9e9e9;
    font-size: 17px;
    font-weight: 400;
}

.countdown span small {
    margin-top: 5px;
    color: #777;
    font-size: 8px;
}

.countdown>i {
    margin-top: 8px;
    font-style: normal;
}

.electro-section-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 47px;
    border-bottom: 1px solid #ddd;
}

.electro-section-tabs a {
    position: relative;
    padding: 9px 5px;
    font-size: 16px;
}

.electro-section-tabs a.active {
    font-weight: 700;
}

.electro-section-tabs a.active:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: #fed700;
}

.electro-section-tabs a.active:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fed700;
    transform: translateX(-50%) rotate(45deg);
}

.electro-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.electro-products-wide {
    grid-template-columns: repeat(5, 1fr);
}

.electro-product-card {
    position: relative;
    min-width: 0;
    background: #fff;
}

.electro-product-card:after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 80%;
    background: #e7e7e7;
}

.electro-product-inner {
    position: relative;
    margin: 1px;
    padding: 20px 18px 14px;
    transition: .2s;
    z-index: 1;
}

.electro-product-card:hover .electro-product-inner {
    z-index: 3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .18);
    transform: scale(1.02);
}

.electro-category {
    display: block;
    overflow: hidden;
    color: #8b8b8b;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.electro-product-name {
    display: block;
    min-height: 34px;
    margin-top: 5px;
    color: #0062bd;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.electro-product-art {
    position: relative;
    display: grid;
    place-items: center;
    height: 155px;
    margin: 5px 0 10px;
    background: radial-gradient(circle, #fafafa 0, #fff 68%);
}

.electro-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.digital-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100px;
    height: 125px;
    padding: 12px;
    border-radius: 6px;
    background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent), #000 27%));
    box-shadow: 8px 9px 18px rgba(0, 0, 0, .18);
    color: #fff;
    transform: perspective(400px) rotateY(-8deg);
}

.digital-box i {
    font-size: 47px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    opacity: .3;
}

.digital-box b {
    margin-top: auto;
    font-size: 9px;
    line-height: 1.1;
}

.digital-box small {
    margin-top: 4px;
    font-size: 7px;
    opacity: .7;
}

.electro-product-art>em {
    position: absolute;
    right: 10px;
    bottom: 12px;
    padding: 4px 6px;
    border-radius: 3px;
    background: #fed700;
    color: #333;
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.electro-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.electro-price-row>div strong {
    display: block;
    font-size: 17px;
    font-weight: 400;
}

.electro-price-row del {
    color: #888;
    font-size: 10px;
}

.electro-price-row button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #e8e8e8;
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.electro-product-card:hover .electro-price-row button {
    background: #fed700;
    color: #333;
}

.electro-card-links {
    display: flex;
    justify-content: space-between;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 8px;
    opacity: 0;
    transition: .2s;
}

.electro-product-card:hover .electro-card-links {
    max-height: 25px;
    margin-top: 10px;
    padding-top: 8px;
    opacity: 1;
}

.product-section {
    padding-bottom: 55px;
}

.electro-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.electro-section-heading h2 {
    position: relative;
    margin: 0;
    padding: 14px 0;
    font-size: 21px;
    font-weight: 400;
}

.electro-section-heading h2:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 95px;
    height: 2px;
    background: #fed700;
}

.category-quicklinks {
    display: flex;
    gap: 8px;
}

.category-quicklinks a {
    padding: 7px 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    color: #666;
    font-size: 11px;
}

.category-quicklinks a.active {
    border-color: #fed700;
    color: #333;
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.catalog-pagination a, .catalog-pagination span {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 11px;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #555;
    font-size: 12px;
    font-weight: 700;
}

.catalog-pagination a:hover, .catalog-pagination .active {
    border-color: #fed700;
    background: #fed700;
    color: #222;
}

.catalog-pagination .pagination-direction {
    min-width: 84px;
}

.catalog-pagination .disabled, .catalog-pagination .pagination-ellipsis {
    border-color: transparent;
    color: #aaa;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 45px;
    border: 1px solid #ddd;
}

.service-strip>div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 19px;
    border-right: 1px solid #ddd;
}

.service-strip>div:last-child {
    border: 0;
}

.service-strip b {
    color: #fed700;
    font-size: 28px;
}

.service-strip strong, .service-strip small {
    display: block;
}

.service-strip strong {
    font-size: 12px;
}

.service-strip small {
    margin-top: 2px;
    color: #777;
    font-size: 9px;
}

.newsletter {
    background: #fed700;
}

.newsletter>.store-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.newsletter div>div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter span {
    font-size: 30px;
}

.newsletter strong {
    font-size: 18px;
    font-weight: 400;
}

.newsletter p {
    margin: 0;
    color: #555;
    font-size: 12px;
}

.newsletter form {
    display: flex;
    width: 40%;
    height: 40px;
    overflow: hidden;
    border-radius: 22px;
}

.newsletter input {
    min-width: 0;
    flex: 1;
    padding: 0 20px;
    border: 0;
    outline: 0;
}

.newsletter button {
    width: 105px;
    border: 0;
    background: #333;
    color: #fff;
    font-size: 11px;
}

.electro-footer {
    background: #f8f8f8;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.footer-contact p {
    margin: 25px 0 3px;
    color: #777;
    font-size: 11px;
}

.footer-contact>a:not(.electro-brand) {
    font-size: 19px;
}

.footer-contact small {
    display: block;
    margin-top: 25px;
    color: #777;
}

.footer-main>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 11px;
}

.footer-main h3 {
    margin: 7px 0 13px;
    font-size: 14px;
}

.footer-bottom {
    background: #eaeaea;
}

.footer-bottom>.store-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    color: #777;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

@media(max-width:1050px) {
    .store-header-main {
        gap: 24px;
    }

    .electro-brand {
        font-size: 32px;
    }

    .electro-brand-mark {
        width: 37px;
        height: 37px;
        font-size: 26px;
    }

    .store-tools>a:first-child, .store-cart div {
        display: none;
    }

    .departments {
        width: 230px;
    }

    .store-main-nav {
        gap: 17px;
        padding-left: 20px;
    }

    .hero-commerce-grid {
        grid-template-columns: 230px 1fr;
    }

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

    .offers-grid {
        grid-template-columns: 270px 1fr;
    }

    .newsletter p {
        display: none;
    }

}

@media(max-width:780px) {
    .store-container {
        width: min(100% - 28px, 1200px);
    }

    .store-topbar nav>*:not(:last-child), .store-topbar p {
        display: none;
    }

    .store-topbar .store-container {
        justify-content: flex-end;
    }

    .store-header-main {
        height: auto;
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .electro-search {
        order: 3;
        width: 100%;
        max-width: none;
        flex-basis: 100%;
    }

    .electro-search select {
        display: none;
    }

    .store-tools {
        margin-left: auto;
        gap: 13px;
    }

    .store-menu-button {
        display: block;
    }

    .store-nav-row {
        display: none;
    }

    .electro-mobile-nav.open {
        display: flex;
    }

    .hero-commerce-grid {
        display: block;
        min-height: 390px;
    }

    .hero-categories {
        display: none;
    }

    .electro-hero-banner {
        min-height: 390px;
        padding: 50px 25px;
    }

    .hero-commerce-copy h1 {
        font-size: 38px;
    }

    .hero-commerce-copy p strong {
        font-size: 42px;
    }

    .hero-products-visual {
        left: 55%;
        opacity: .55;
    }

    .floating-box-one {
        right: 80px;
    }

    .promo-row {
        grid-template-columns: 1fr;
        padding-top: 18px;
    }

    .promo-row>a {
        min-height: 100px;
    }

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

    .special-offer {
        max-width: 360px;
        margin: auto;
    }

    .electro-products-grid, .electro-products-wide {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-quicklinks {
        max-width: 55%;
        overflow-x: auto;
    }

    .service-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter>.store-container {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
    }

    .newsletter form {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-contact {
        grid-column: 1/-1;
    }

}

@media(max-width:480px) {
    .electro-brand {
        font-size: 28px;
    }

    .electro-brand-mark {
        width: 34px;
        height: 34px;
    }

    .store-tools {
        gap: 8px;
    }

    .hero-commerce-copy h1 {
        font-size: 33px;
    }

    .hero-products-visual {
        left: 60%;
    }

    .floating-box-one {
        right: 55px;
        width: 125px;
        height: 175px;
    }

    .floating-box-two {
        right: -25px;
        width: 125px;
        height: 165px;
    }

    .hero-disc {
        width: 230px;
        height: 230px;
        border-width: 42px;
    }

    .electro-products-grid, .electro-products-wide {
        grid-template-columns: 1fr;
    }

    .electro-product-card:after {
        display: none;
    }

    .electro-product-art {
        height: 200px;
    }

    .digital-box {
        width: 130px;
        height: 165px;
    }

    .service-strip {
        grid-template-columns: 1fr;
    }

    .service-strip>div {
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .category-quicklinks {
        display: none;
    }

    .catalog-pagination {
        gap: 5px;
    }

    .pagination-pages {
        max-width: 170px;
        overflow-x: auto;
    }

    .catalog-pagination .pagination-direction {
        min-width: 68px;
        padding: 0 8px;
    }

    .footer-bottom>.store-container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

}
