:root {
    --bg: #f7f6f2;
    --surface: #fffefa;
    --ink: #101111;
    --muted: #686962;
    --line: #d9d8d2;
    --lime: #d8f43e;
    --violet: #7463fa;
    --orange: #f26237;
    --dark: #121313;
    --success: #1e7544;
    --success-surface: #e9f7ee;
    --warning: #9a5d00;
    --warning-surface: #fff3df;
    --error: #ad2748;
    --error-surface: #fdecef;
    --info: #087c85;
    --info-surface: #e7f8f8;
    --neutral: #535968;
    --neutral-surface: #f0f1f4;
    --focus-ring: color-mix(in srgb, var(--violet) 25%, transparent);
    --shadow-lift: 0 12px 28px rgba(16, 17, 17, 0.07);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --mono: "DM Mono", monospace;
}
body.dark {
    --bg: #111211;
    --surface: #191a19;
    --ink: #f4f1e9;
    --muted: #a2a49c;
    --line: #393a37;
    --dark: #060706;
    --success: #4ade80;
    --success-surface: #14352a;
    --warning: #fbbf24;
    --warning-surface: #3d2e0a;
    --error: #f87171;
    --error-surface: #3b1520;
    --info: #22d3ee;
    --info-surface: #0e3538;
    --neutral: #a1a5b0;
    --neutral-surface: #2a2b30;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    transition:
        background 0.3s,
        color 0.3s;
}
button,
input,
select {
    font: inherit;
}
button {
    cursor: pointer;
}
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
*:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 2px;
}
.vera-card {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
}
.vera-badge {
    align-items: center;
    border-radius: 50rem;
    display: inline-flex;
    font: 10px var(--mono);
    letter-spacing: 0.08em;
    padding: 0.55rem 0.75rem;
    text-transform: uppercase;
}
.vera-badge--success {
    background: var(--success-surface);
    color: var(--success);
}
.vera-badge--warning {
    background: var(--warning-surface);
    color: var(--warning);
}
.vera-badge--error {
    background: var(--error-surface);
    color: var(--error);
}
.vera-badge--info {
    background: var(--info-surface);
    color: var(--info);
}
.vera-badge--neutral {
    background: var(--neutral-surface);
    color: var(--neutral);
}
.vera-btn {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    color: var(--bg);
    display: inline-flex;
    font: 600 11px var(--mono);
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 44px;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.vera-btn:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
    transform: translateY(-1px);
}
.vera-btn--outline {
    background: transparent;
    color: var(--ink);
}
.vera-btn--outline:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
}
.vera-btn--icon {
    border-radius: 50%;
    min-width: 44px;
    padding: 0;
}
.vera-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--ink);
    --bs-table-border-color: var(--line);
}
.vera-input {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    min-height: 44px;
    padding: 0.75rem 1rem;
}
.vera-input:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px var(--focus-ring);
    outline: 0;
}
.announcement {
    position: relative;
    background: #101111;
    color: #f5f3ed;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    font: 10px var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.announcement-dot {
    color: var(--lime);
    font-size: 12px;
}
.announcement-close {
    color: #fff;
    background: none;
    border: 0;
    position: absolute;
    right: 20px;
    font-size: 17px;
    line-height: 1;
}
.site-header {
    height: 77px;
    padding: 0 clamp(20px, 3vw, 52px);
    display: flex;
    align-items: center;
    gap: 45px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}
.brand {
    font: bold 26px var(--sans);
    letter-spacing: -0.18em;
    white-space: nowrap;
}
.brand span {
    letter-spacing: -0.26em;
}
.brand i {
    color: var(--violet);
    font-style: normal;
    font-size: 32px;
    line-height: 0;
}
.desktop-nav {
    display: flex;
    gap: 27px;
    align-items: center;
    flex: 1;
}
.desktop-nav a {
    font-weight: 600;
    font-size: 12px;
    transition: opacity 0.2s;
}
.desktop-nav a:hover {
    opacity: 0.55;
}
.header-tools {
    display: flex;
    align-items: center;
    gap: 7px;
}
.icon-button {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 24px;
    position: relative;
    display: inline-grid;
    place-items: center;
}
.icon-button b,
.bag-button b {
    position: absolute;
    right: -2px;
    top: -1px;
    background: var(--violet);
    color: white;
    border-radius: 99px;
    min-width: 15px;
    height: 15px;
    font: 9px/15px var(--mono);
    text-align: center;
}
.bag-button {
    position: relative;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bag-button b {
    right: -3px;
    top: -5px;
    background: var(--orange);
}
.mobile-only {
    display: none;
}
.vera-page-header {
    background: var(--bg);
}
.vera-page-header__eyebrow {
    color: var(--muted);
    font: 10px var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.vera-page-header__title {
    color: var(--ink);
    font: 500 clamp(2rem, 4vw, 3.5rem)/1 var(--serif);
}
.page {
    display: none;
}
.page.active {
    display: block;
    animation: pageIn 0.45s ease both;
}
@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.hero {
    min-height: min(770px, calc(100vh - 111px));
    height: calc(100vh - 111px);
    position: relative;
    background: #171b20;
    overflow: hidden;
    color: white;
}
.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: saturate(0.7) contrast(1.1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 9, 10, 0.76),
            rgba(8, 10, 11, 0.15) 65%,
            rgba(7, 9, 10, 0.2)
        ),
        linear-gradient(0deg, rgba(2, 3, 3, 0.35), transparent 35%);
}
.hero-label {
    position: absolute;
    top: 30px;
    left: clamp(20px, 3vw, 52px);
    right: clamp(20px, 3vw, 52px);
    display: flex;
    justify-content: space-between;
    font: 10px var(--mono);
    letter-spacing: 0.08em;
}
.hero-content {
    position: absolute;
    left: clamp(20px, 9vw, 160px);
    bottom: 15%;
    max-width: 590px;
}
.eyebrow {
    margin: 0 0 16px;
    color: var(--muted);
    font: 10px var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.eyebrow.light {
    color: #e9ece6;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2 {
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.99;
}
h1 {
    font-size: clamp(52px, 7.1vw, 112px);
}
h2 {
    font-size: clamp(39px, 4.4vw, 70px);
}
h1 em,
h2 em,
blockquote em {
    font-family: var(--serif);
    font-weight: 500;
}
.hero h1 {
    margin: 0 0 22px;
}
.hero-copy {
    font-size: 15px;
    line-height: 1.7;
    max-width: 350px;
    color: #e5e5e0;
    margin-bottom: 29px;
}
.button {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    padding: 15px 19px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-width: 165px;
    transition:
        transform 0.2s,
        background 0.2s;
}
.button:hover {
    transform: translateY(-2px);
    background: var(--violet);
    border-color: var(--violet);
}
.button span {
    margin-left: 20px;
    font-size: 16px;
}
.button-light {
    background: #f7f6f2;
    color: #151515;
    border-color: #f7f6f2;
}
.button.small {
    padding: 11px 13px;
    min-width: 0;
    font-size: 9px;
}
.hero-controls {
    position: absolute;
    bottom: 29px;
    left: clamp(20px, 3vw, 52px);
    right: clamp(20px, 3vw, 52px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-controls button {
    color: white;
    border: 0;
    background: none;
    font: 10px var(--mono);
    letter-spacing: 0.1em;
}
.hero-controls #video-toggle {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 13px;
}
.hero-next span {
    margin-left: 8px;
    font-size: 18px;
}
.marquee {
    height: 57px;
    overflow: hidden;
    background: var(--lime);
    display: flex;
    align-items: center;
}
.marquee div {
    display: flex;
    gap: 30px;
    align-items: center;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    font: bold 12px var(--mono);
    letter-spacing: 0.08em;
}
.marquee i {
    font-size: 18px;
    font-style: normal;
}
@keyframes scroll {
    to {
        transform: translateX(-40%);
    }
}
.section {
    padding: clamp(65px, 10vw, 155px) clamp(20px, 7.5vw, 126px);
}
.intro-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
}
.intro-section h2 {
    margin: 0;
}
.section-lead {
    color: var(--muted);
    line-height: 1.7;
    max-width: 360px;
    font-size: 15px;
    margin: 0 9% 6px 0;
}
.category-grid {
    padding: 0 clamp(20px, 3vw, 52px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    gap: 12px;
}
.category-card {
    min-height: 470px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: #30353a;
    cursor: pointer;
}
.category-card:nth-child(2) {
    min-height: 400px;
    background: #9b938b;
}
.category-card:nth-child(3) {
    background: #334137;
}
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--image) center/cover;
    opacity: 0.72;
    transition: transform 0.6s;
}
.category-card:hover::before {
    transform: scale(1.06);
}
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.68));
}
.category-card > * {
    position: relative;
    z-index: 1;
}
.category-card span {
    font: 10px var(--mono);
    letter-spacing: 0.09em;
}
.category-card h3 {
    font-weight: 500;
    font-size: 31px;
    letter-spacing: -0.05em;
    margin: 6px 0 0;
}
.category-card h3 em {
    font-family: var(--serif);
    font-weight: 500;
}
.category-card .arrow {
    position: absolute;
    right: 23px;
    bottom: 23px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    font-size: 19px;
}
.product-rail-section {
    overflow: hidden;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 39px;
}
.section-heading h2 {
    margin: 0;
}
.rail-controls {
    display: flex;
    gap: 8px;
}
.round-button {
    height: 42px;
    width: 42px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    font-size: 18px;
}
.round-button:hover {
    background: var(--ink);
    color: var(--bg);
}
.product-rail {
    display: flex;
    gap: 16px;
    overflow: auto;
    padding: 0 1px 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.product-rail::-webkit-scrollbar {
    display: none;
}
.product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 244px;
    position: relative;
    cursor: pointer;
}
.product-image {
    height: clamp(290px, 32vw, 430px);
    overflow: hidden;
    position: relative;
    background: #e6e4df;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover img {
    transform: scale(1.04);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lime);
    color: #151515;
    padding: 6px 8px;
    font: 9px var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.product-badge.sale {
    background: var(--orange);
    color: white;
}
.wishlist-action {
    position: absolute;
    right: 11px;
    top: 9px;
    border: 0;
    background: rgba(255, 255, 255, 0.78);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    font-size: 21px;
    color: #161616;
}
.wishlist-action.saved {
    color: var(--orange);
}
.quick-add {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: var(--surface);
    border: 0;
    padding: 13px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(7px);
    transition: 0.25s;
}
.product-card:hover .quick-add,
.product-card:focus-within .quick-add {
    opacity: 1;
    transform: none;
}
.product-info {
    padding: 13px 2px;
}
.product-info .category-name {
    color: var(--muted);
    font: 9px var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.product-info h3 {
    font-size: 13px;
    margin: 6px 0 8px;
    font-weight: 700;
}
.product-price {
    font: 12px var(--mono);
}
.product-price s {
    margin-right: 6px;
    color: var(--muted);
}
.product-price strong {
    color: var(--orange);
    font-weight: 500;
}
.text-link {
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 0;
    font: 700 11px var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.text-link span {
    font-size: 17px;
    margin-left: 7px;
}
.text-link.light {
    color: white;
}
.centre-link {
    display: block;
    margin: 38px auto 0;
}
.campaign-grid {
    padding: 0 clamp(20px, 3vw, 52px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.campaign-card {
    height: 550px;
    position: relative;
    padding: clamp(25px, 4vw, 60px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.campaign-card h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 4.6vw, 72px);
}
.campaign-dark {
    background: #151b24;
    color: white;
}
.campaign-sand {
    background: #c9bdb0;
}
.campaign-number {
    position: absolute;
    right: 26px;
    top: 23px;
    font: 10px var(--mono);
}
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.orb-blue {
    width: 400px;
    height: 400px;
    right: -75px;
    top: 70px;
    background: radial-gradient(
        circle at 37% 35%,
        #c9f7ff,
        #5c77de 35%,
        #1c2968 68%
    );
    box-shadow: 0 0 100px #5370d3;
}
.mini-product {
    font-size: 180px;
    position: absolute;
    right: 12%;
    top: 16%;
    filter: drop-shadow(0 30px 15px rgba(0, 0, 0, 0.25));
    transform: rotate(-15deg);
}
.sale-block {
    background: var(--lime);
    margin-top: clamp(70px, 10vw, 150px);
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 8vw, 125px);
}
.sale-art {
    height: 430px;
    position: relative;
}
.sale-disc {
    height: 390px;
    width: 390px;
    border-radius: 50%;
    background: conic-gradient(#141516, #555, #121213, #777, #171718);
    position: absolute;
    left: 8%;
    top: 10px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.22);
}
.sale-disc::after {
    content: "";
    position: absolute;
    inset: 42%;
    background: #c2d931;
    border-radius: 50%;
    border: 14px solid #161818;
}
.sale-headphones {
    position: absolute;
    z-index: 1;
    font-size: 290px;
    right: 4%;
    top: 20px;
    color: #171919;
    transform: rotate(-35deg);
}
.sale-copy {
    max-width: 440px;
    position: relative;
    z-index: 2;
}
.sale-copy h2 {
    font-size: clamp(48px, 5.5vw, 83px);
    margin: 0 0 24px;
}
.sale-copy p:not(.eyebrow) {
    max-width: 370px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.sale-sticker {
    position: absolute;
    right: 7%;
    top: 12%;
    height: 105px;
    width: 105px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: grid;
    place-content: center;
    text-align: center;
    line-height: 1.05;
    font: 9px var(--mono);
    letter-spacing: 0.1em;
    transform: rotate(12deg);
}
.sale-sticker b {
    font: 35px var(--sans);
    letter-spacing: -0.1em;
}
.quote-section {
    padding: clamp(90px, 13vw, 185px) 20px;
    text-align: center;
    background: var(--surface);
}
.quote-section blockquote {
    max-width: 880px;
    font-size: clamp(32px, 4.4vw, 63px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.12;
    margin: 0 auto 36px;
}
.quote-person {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: left;
}
.quote-person span {
    font-size: 13px;
    letter-spacing: 2px;
}
.quote-person p {
    font: 9px/1.7 var(--mono);
    letter-spacing: 0.05em;
    margin: 0;
}
.vera-home__reviews {
    display: flex;
    margin-inline: auto;
    max-width: 960px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}
.vera-home__reviews::-webkit-scrollbar {
    display: none;
}
.vera-home__review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}
.vera-home__review-card .quote-person a {
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}
.journal-preview {
    padding: clamp(70px, 10vw, 140px) clamp(20px, 7.5vw, 126px);
}
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}
.journal-image {
    height: 350px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    overflow: hidden;
    font-size: 110px;
    color: white;
}
.j1 {
    background: linear-gradient(145deg, #997a61, #222a2d);
}
.j2 {
    background: linear-gradient(145deg, #252c3c, #ea9478);
}
.j3 {
    background: linear-gradient(145deg, #b6d3c9, #36594f);
}
.journal-image span {
    transition: transform 0.4s;
}
.journal-grid article:hover .journal-image span {
    transform: scale(1.3) rotate(20deg);
}
.journal-grid h3 {
    font-size: 20px;
    letter-spacing: -0.04em;
    line-height: 1.26;
    margin: 0 0 18px;
}
.journal-grid a {
    font: bold 10px var(--mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
}
footer {
    background: var(--dark);
    color: #f2f1ea;
}
.newsletter {
    min-height: 357px;
    padding: 55px clamp(20px, 7.5vw, 126px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #3b3c39;
}
.newsletter h2 {
    margin: 0;
    font-size: clamp(37px, 4vw, 60px);
}
.newsletter form {
    width: min(400px, 100%);
    font-size: 10px;
    font-family: var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.newsletter label {
    display: none;
}
.newsletter form > div {
    display: flex;
    border-bottom: 1px solid #aaa;
    margin-bottom: 12px;
}
.newsletter input {
    flex: 1;
    background: none;
    border: 0;
    color: white;
    padding: 12px 0;
    outline: 0;
}
.newsletter button {
    background: none;
    color: white;
    border: 0;
    font-size: 25px;
}
.newsletter small {
    color: #aaa;
    font-size: 8px;
    letter-spacing: 0;
}
.footer-links {
    padding: 57px clamp(20px, 7.5vw, 126px);
    display: grid;
    grid-template-columns: 3fr repeat(3, 1fr);
    gap: 30px;
}
.footer-links .brand {
    font-size: 31px;
}
.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 11px;
}
.footer-links b {
    color: #999;
    font: 9px var(--mono);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.copyright {
    padding: 18px clamp(20px, 7.5vw, 126px);
    border-top: 1px solid #3b3c39;
    display: flex;
    justify-content: space-between;
    color: #999;
    font: 9px var(--mono);
    letter-spacing: 0.07em;
}
.listing-page,
.categories-page,
.journal-page {
    padding-bottom: 110px;
}
.page-hero {
    padding: clamp(70px, 10vw, 145px) clamp(20px, 7.5vw, 126px)
        clamp(44px, 7vw, 90px);
    text-align: center;
}
.page-hero h1 {
    margin: 0 0 19px;
}
.page-hero > p:last-child {
    color: var(--muted);
    font-size: 15px;
    max-width: 430px;
    line-height: 1.6;
    margin: auto;
}
.new-hero {
    background: linear-gradient(135deg, #30234e, #8e8ad8 55%, #d4f0eb);
    color: white;
}
.new-hero .eyebrow,
.new-hero p:last-child {
    color: white;
}
.catalogue-toolbar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 70px;
    padding: 0 clamp(20px, 3vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.filter-chips {
    display: flex;
    gap: 6px;
    overflow: auto;
    scrollbar-width: none;
}
.filter-chips button {
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    padding: 9px 12px;
    color: var(--muted);
    font: 10px var(--mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.filter-chips button.active,
.filter-chips button:hover {
    border-color: var(--ink);
    color: var(--ink);
    border-radius: 18px;
}
.sort-select {
    font: 10px var(--mono);
    color: var(--muted);
    white-space: nowrap;
}
.sort-select select {
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: bold;
    outline: 0;
}
.product-count {
    padding: 20px clamp(20px, 3vw, 52px);
    margin: 0;
    color: var(--muted);
    font: 10px var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.catalogue-grid {
    padding: 0 clamp(20px, 3vw, 52px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 15px;
}
.catalogue-grid .product-card {
    min-width: 0;
}
.catalogue-grid .product-image {
    height: clamp(240px, 29vw, 410px);
}
.deals-hero {
    min-height: 450px;
    padding: 70px clamp(20px, 10vw, 160px);
    background: #ff633e;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}
.deals-hero h1 {
    margin: 0 0 17px;
}
.deals-hero p:not(.eyebrow) {
    line-height: 1.6;
    max-width: 360px;
}
.deal-shape {
    position: absolute;
    right: 10%;
    font: bold clamp(300px, 48vw, 690px)/0.7 var(--serif);
    color: #151515;
    opacity: 0.9;
    transform: rotate(-11deg);
}
.countdown {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
.countdown span {
    display: flex;
    flex-direction: column;
    font: 8px var(--mono);
    letter-spacing: 0.07em;
}
.countdown b {
    font: 27px var(--sans);
    letter-spacing: -0.1em;
}
.countdown i {
    font-style: normal;
    font-size: 20px;
}
.all-categories {
    padding: 0 clamp(20px, 7.5vw, 126px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.all-categories .category-card {
    min-height: 400px;
}
.feature-story {
    margin: 0 clamp(20px, 7.5vw, 126px) 90px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(30px, 7vw, 110px);
}
.feature-image {
    min-height: 470px;
    background: linear-gradient(140deg, #392f4b, #e8cc99);
    display: grid;
    place-items: center;
    font-size: 170px;
    color: white;
}
.feature-story h2 {
    font-size: clamp(32px, 3.4vw, 51px);
    margin: 0 0 20px;
}
.feature-story p:not(.eyebrow) {
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 25px;
}
.journal-list {
    padding: 0 clamp(20px, 7.5vw, 126px);
}
.scrim {
    background: rgba(0, 0, 0, 0.44);
    position: fixed;
    inset: 0;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}
.scrim.show {
    opacity: 1;
    visibility: visible;
}
.drawer,
.mobile-menu {
    position: fixed;
    z-index: 40;
    background: var(--surface);
    color: var(--ink);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.right-drawer {
    height: 100vh;
    width: min(470px, 100vw);
    right: 0;
    top: 0;
    transform: translateX(104%);
}
.right-drawer.open {
    transform: none;
}
.drawer-top {
    height: 80px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 13px var(--mono);
    letter-spacing: 0.04em;
}
.drawer-content {
    padding: 20px 24px;
    overflow: auto;
    flex: 1;
}
.drawer-bottom {
    padding: 20px 24px;
    border-top: 1px solid var(--line);
}
.cart-line,
.wishlist-line {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.cart-line img,
.wishlist-line img {
    height: 105px;
    width: 82px;
    object-fit: cover;
    background: #eee;
}
.drawer-item-title {
    font-size: 12px;
    font-weight: 800;
    max-width: 210px;
    margin: 3px 0 5px;
}
.drawer-item-price {
    font: 11px var(--mono);
}
.line-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.quantity {
    display: flex;
    border: 1px solid var(--line);
    width: max-content;
}
.quantity button {
    height: 25px;
    width: 25px;
    border: 0;
    background: transparent;
    color: var(--ink);
}
.quantity span {
    min-width: 25px;
    text-align: center;
    font: 10px/25px var(--mono);
}
.remove-line {
    border: 0;
    background: transparent;
    text-decoration: underline;
    font: 9px var(--mono);
    letter-spacing: 0.04em;
    color: var(--muted);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font: 13px var(--mono);
    margin-bottom: 9px;
}
.summary-row.total {
    font-weight: bold;
    font-size: 15px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 14px;
}
.shipping-note {
    font-size: 10px;
    line-height: 1.5;
    color: var(--muted);
    margin: 16px 0;
}
.drawer-bottom .button {
    width: 100%;
}
.empty-drawer {
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--muted);
}
.empty-drawer h3 {
    color: var(--ink);
    font-size: 20px;
    margin: 7px;
}
.mobile-menu {
    top: 0;
    left: 0;
    height: 100%;
    width: min(390px, 100%);
    padding: 0 27px;
    transform: translateX(-104%);
}
.mobile-menu.open {
    transform: none;
}
.mobile-menu .drawer-top {
    padding: 0;
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 30px;
}
.mobile-menu nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 27px;
    letter-spacing: -0.05em;
}
.mobile-menu nav small {
    float: right;
    font: 9px var(--mono);
    color: var(--muted);
}
.drawer-footer {
    padding: 25px 0;
    font-size: 12px;
}
.drawer-footer a {
    display: block;
    font-weight: 700;
    margin-top: 7px;
}
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(10, 11, 10, 0.94);
    color: #fff;
    padding: clamp(28px, 8vw, 100px);
    display: none;
}
.search-overlay.open {
    display: block;
    animation: fade 0.25s ease;
}
.search-panel {
    max-width: 820px;
    margin: auto;
    position: relative;
}
.search-close {
    color: white;
    position: absolute;
    right: 0;
    top: -8px;
}
.search-input-wrap {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #aaa;
    margin: 34px 0 25px;
}
.search-input-wrap span {
    font-size: 35px;
    margin-right: 14px;
}
.search-input-wrap input {
    font-size: clamp(25px, 4vw, 47px);
    letter-spacing: -0.06em;
    background: none;
    color: white;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 12px 0;
}
.search-input-wrap input::placeholder {
    color: #777;
}
.search-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid #3b3b3b;
    cursor: pointer;
}
.search-result img {
    height: 55px;
    width: 50px;
    object-fit: cover;
}
.search-result b {
    font-size: 13px;
    display: block;
}
.search-result span {
    color: #aaa;
    font: 10px var(--mono);
}
.search-hint {
    margin-top: 23px;
    color: #aaa;
    font: 10px var(--mono);
    letter-spacing: 0.07em;
}
.search-hint button {
    color: white;
    background: none;
    border: 0;
    font: inherit;
    margin-left: 12px;
    border-bottom: 1px solid #777;
    padding: 0 0 3px;
}
.quick-view-modal {
    max-width: 900px;
    width: calc(100% - 36px);
    padding: 0;
    border: 0;
    background: var(--surface);
    color: var(--ink);
    overflow: visible;
}
.quick-view-modal::backdrop {
    background: rgba(0, 0, 0, 0.65);
}
.modal-close {
    position: absolute;
    right: -14px;
    top: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--ink);
    color: var(--bg);
    font-size: 20px;
    z-index: 2;
}
.quick-view {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}
.quick-view img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    background: #eee;
}
.quick-details {
    padding: clamp(25px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.quick-details h2 {
    font: 500 clamp(30px, 3vw, 44px)/1 var(--sans);
    margin: 4px 0 12px;
}
.quick-details > p {
    line-height: 1.7;
    color: var(--muted);
    margin: 23px 0;
}
.quick-price {
    font: 14px var(--mono);
}
.swatches {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}
.swatch {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 2px solid var(--surface);
    outline: 1px solid var(--ink);
}
.size-label {
    font: 10px var(--mono);
    letter-spacing: 0.07em;
    margin: 10px 0;
}
.sizes {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
}
.sizes button {
    height: 34px;
    min-width: 38px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 11px;
}
.sizes button.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--bg);
}
.quick-details .button {
    width: 100%;
    margin-top: auto;
}
.checkout-overlay {
    position: fixed;
    z-index: 70;
    inset: 0;
    background: var(--bg);
    display: none;
    overflow: auto;
}
.checkout-overlay.open {
    display: block;
    animation: fade 0.25s;
}
.checkout {
    max-width: 1200px;
    margin: auto;
    padding: 0 32px;
}
.checkout header {
    height: 82px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout header span {
    color: var(--muted);
    font: 10px var(--mono);
}
.checkout-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    padding: 55px 0;
}
.checkout h2 {
    font-size: 30px;
    margin: 0 0 25px;
}
.checkout-step {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}
.checkout-step label {
    font-size: 10px;
    font-family: var(--mono);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 7px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.form-row.three {
    grid-template-columns: 2fr 1fr 1fr;
}
.checkout input,
.checkout select {
    width: 100%;
    border: 1px solid var(--line);
    color: var(--ink);
    background: transparent;
    padding: 14px;
    margin-bottom: 10px;
    outline-color: var(--violet);
}
.payment-option {
    border: 1px solid var(--ink);
    padding: 13px;
    margin-bottom: 11px;
    font-size: 12px;
    display: flex;
    gap: 8px;
}
.order-box {
    background: var(--surface);
    padding: 27px;
    align-self: start;
}
.checkout-lines {
    max-height: 260px;
    overflow: auto;
}
.checkout-line {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
}
.checkout-line img {
    width: 50px;
    height: 60px;
    object-fit: cover;
}
.checkout-line b {
    display: block;
    margin-bottom: 4px;
}
.checkout-line span {
    color: var(--muted);
    font: 10px var(--mono);
}
.checkout-line > strong {
    margin-left: auto;
    font: 11px var(--mono);
}
.confirmation {
    min-height: 70vh;
    display: grid;
    place-content: center;
    text-align: center;
    max-width: 520px;
    margin: auto;
}
.confirmation .confirmation-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lime);
    font-size: 29px;
    margin: 0 auto 25px;
}
.confirmation h1 {
    font-size: 55px;
    margin: 0 0 16px;
}
.confirmation p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 25px;
}
.toast {
    position: fixed;
    z-index: 100;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 120px);
    background: var(--ink);
    color: var(--bg);
    padding: 13px 20px;
    font: 11px var(--mono);
    letter-spacing: 0.03em;
    transition: transform 0.3s;
}
.toast.show {
    transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.cookie-card {
    position: fixed;
    z-index: 25;
    bottom: 19px;
    left: 19px;
    width: min(365px, calc(100vw - 38px));
    background: var(--surface);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.17);
    padding: 19px;
    display: flex;
    gap: 14px;
    transition: 0.25s;
}
.cookie-card.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.cookie-icon {
    color: var(--orange);
    font-size: 25px;
}
.cookie-card b {
    font-size: 12px;
}
.cookie-card p {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
    margin: 5px 0 13px;
}
.cookie-close {
    position: absolute;
    right: 8px;
    top: 5px;
    background: none;
    border: 0;
    color: var(--muted);
    font-size: 16px;
}
.cookie-settings {
    border: 0;
    background: transparent;
    text-decoration: underline;
    color: var(--muted);
    font: 9px var(--mono);
    margin-left: 8px;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media (max-width: 780px) {
    .announcement span:nth-of-type(2),
    .announcement-dot {
        display: none;
    }
    .site-header {
        height: 62px;
        gap: 12px;
        padding: 0 14px;
    }
    .mobile-only {
        display: grid;
    }
    .desktop-nav {
        display: none;
    }
    .brand {
        font-size: 22px;
    }
    .header-tools {
        margin-left: auto;
        gap: 0;
    }
    .header-tools .icon-button:nth-child(2) {
        display: none;
    }
    .header-tools .icon-button {
        width: 31px;
    }
    .bag-button {
        padding: 9px 11px;
        font-size: 9px;
    }
    .hero {
        height: 590px;
        min-height: 0;
    }
    .hero-content {
        left: 24px;
        bottom: 95px;
    }
    .hero h1 {
        font-size: 56px;
    }
    .hero-copy {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .section {
        padding: 72px 20px;
    }
    .intro-section {
        display: block;
    }
    .intro-section h2 {
        font-size: 46px;
    }
    .section-lead {
        margin: 22px 0 0;
        font-size: 13px;
    }
    .category-grid {
        padding: 0 12px;
        display: flex;
        overflow: auto;
        scroll-snap-type: x mandatory;
    }
    .category-card {
        min-width: 79vw;
        min-height: 420px;
        scroll-snap-align: start;
    }
    .category-card:nth-child(2) {
        min-height: 420px;
    }
    .section-heading {
        margin-bottom: 25px;
    }
    .section-heading h2 {
        font-size: 44px;
    }
    .product-rail {
        margin-right: -20px;
    }
    .product-card {
        flex-basis: 68vw;
        min-width: 0;
    }
    .product-image {
        height: 320px;
    }
    .quick-add {
        opacity: 1;
        transform: none;
    }
    .campaign-grid {
        padding: 0 12px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .campaign-card {
        height: 450px;
        padding: 28px;
    }
    .campaign-card h2 {
        font-size: 50px;
    }
    .sale-block {
        margin-top: 70px;
        min-height: 650px;
        display: block;
        padding: 55px 25px;
    }
    .sale-art {
        height: 280px;
    }
    .sale-disc {
        width: 270px;
        height: 270px;
        left: -10px;
    }
    .sale-headphones {
        font-size: 205px;
        right: 0;
        top: 28px;
    }
    .sale-copy h2 {
        font-size: 54px;
    }
    .sale-sticker {
        top: 28px;
        right: 22px;
        width: 83px;
        height: 83px;
    }
    .quote-section {
        padding: 85px 20px;
    }
    .quote-section blockquote {
        font-size: 34px;
    }
    .journal-preview {
        padding: 75px 20px;
    }
    .journal-preview .section-heading .text-link {
        display: none;
    }
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .journal-grid article:not(:first-child) {
        display: none;
    }
    .journal-image {
        height: 360px;
    }
    .newsletter {
        padding: 52px 20px;
        display: block;
        min-height: 0;
    }
    .newsletter h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .footer-links {
        padding: 40px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 38px 20px;
    }
    .footer-links .brand {
        grid-column: 1/-1;
    }
    .copyright {
        padding: 17px 20px;
        font-size: 7px;
    }
    .copyright span:nth-child(2) {
        display: none;
    }
    .page-hero {
        padding: 75px 20px 50px;
    }
    .page-hero h1 {
        font-size: 54px;
    }
    .catalogue-toolbar {
        padding: 10px 14px;
        min-height: 56px;
    }
    .sort-select {
        display: none;
    }
    .catalogue-grid {
        padding: 0 12px;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 9px;
    }
    .catalogue-grid .product-image {
        height: 220px;
    }
    .catalogue-grid .product-info h3 {
        min-height: 33px;
        line-height: 1.25;
    }
    .catalogue-grid .quick-add {
        display: none;
    }
    .deals-hero {
        min-height: 420px;
        padding: 50px 25px;
    }
    .deal-shape {
        right: -8%;
        bottom: 0;
        font-size: 380px;
    }
    .all-categories {
        padding: 0 12px;
        grid-template-columns: 1fr;
    }
    .all-categories .category-card {
        min-height: 300px;
    }
    .feature-story {
        margin: 0 20px 60px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .feature-image {
        min-height: 300px;
    }
    .feature-story h2 {
        font-size: 35px;
    }
    .journal-list {
        padding: 0 20px;
    }
    .right-drawer {
        width: 100%;
    }
    .quick-view {
        grid-template-columns: 1fr;
    }
    .quick-view img {
        height: 310px;
    }
    .quick-details {
        min-height: 390px;
    }
    .checkout {
        padding: 0 18px;
    }
    .checkout header .brand {
        font-size: 20px;
    }
    .checkout header span {
        display: none;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
        padding: 35px 0;
        gap: 15px;
    }
    .order-box {
        order: -1;
    }
    .form-row,
    .form-row.three {
        grid-template-columns: 1fr;
    }
    .cookie-card {
        bottom: 12px;
        left: 12px;
        width: calc(100vw - 24px);
    }
}
/* Product Details Styles */
.swatch:has(input:checked) {
    box-shadow:
        0 0 0 2px var(--bg),
        0 0 0 4px var(--ink);
}
.option-pills input:checked + span {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

/* Hide scrollbars for sliders */
.reviews-slider::-webkit-scrollbar,
.product-thumbnails::-webkit-scrollbar {
    display: none;
}
.reviews-slider,
.product-thumbnails {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.profile-sidebar-avatar.avatar {
    --size: 2.1875rem;
    background-color: var(--input-bg, var(--surface));
    border: 0 !important;
    border-radius: 50% !important;
    box-sizing: border-box;
    display: grid;
    flex: 0 0 100px;
    height: 100px;
    inline-size: 100px;
    min-inline-size: var(--size);
    overflow: visible;
    padding: 0 !important;
    place-items: center;
    width: 100px;
}

/* Account order history */
.vera-orders__panel {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(16, 17, 17, 0.05);
}
.vera-orders__heading {
    color: var(--ink);
    font: 500 clamp(1.75rem, 3vw, 2.5rem) / 1 var(--serif);
    letter-spacing: -0.04em;
    margin: 0;
}
.vera-orders__sort {
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    font: 11px var(--mono);
    letter-spacing: 0.06em;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
}
.vera-orders__table {
    border-collapse: separate;
    border-spacing: 0 0.75rem;
    margin: -0.75rem 0 0;
}
.vera-orders__table thead th {
    border: 0;
    color: var(--muted);
    font: 10px var(--mono);
    letter-spacing: 0.12em;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    white-space: nowrap;
}
.vera-orders__table tbody td {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-inline-width: 0;
    padding: 1.25rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    vertical-align: middle;
}
.vera-orders__table tbody td:first-child {
    border-inline-start-width: 1px;
}
.vera-orders__table tbody td:last-child {
    border-inline-end-width: 1px;
}
.vera-orders__table tbody tr:hover td {
    border-color: var(--violet);
    box-shadow: 0 12px 28px rgba(16, 17, 17, 0.07);
    transform: translateY(-2px);
}
.vera-orders__table tbody tr:focus-within td {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--violet) 18%, transparent);
}
.vera-orders__index,
.vera-orders__label {
    color: var(--muted);
    font: 10px var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.vera-orders__label {
    display: block;
    margin-bottom: 0.45rem;
}
.vera-orders__identity {
    align-items: center;
    display: flex;
    gap: 1rem;
    min-width: 0;
}
.vera-orders__thumbnail {
    background: var(--surface);
    border: 1px solid var(--line);
    flex: 0 0 3.75rem;
    height: 3.75rem;
    overflow: hidden;
    width: 3.75rem;
}
.vera-orders__thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.vera-orders__number {
    color: var(--ink);
    display: inline-block;
    font: 600 clamp(1.1rem, 2vw, 1.3rem) / 1.15 var(--serif);
    text-decoration: none;
}
.vera-orders__number:hover {
    color: var(--violet);
}
.vera-orders__meta {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}
.vera-orders__amount {
    color: var(--ink);
    font: 600 1rem / 1.2 var(--sans);
    white-space: nowrap;
}
.vera-orders__actions {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.vera-orders__action {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    display: inline-flex;
    height: 2.5rem;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    width: 2.5rem;
}
.vera-orders__action:hover {
    transform: translateY(-2px);
}
.vera-orders__action--view:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
}
.vera-orders__action--invoice {
    color: var(--violet);
}
.vera-orders__action--invoice:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
}
.vera-orders__action--cancel {
    color: var(--error);
}
.vera-orders__action--cancel:hover {
    background: var(--error);
    border-color: var(--error);
    color: #fff;
}
@media (max-width: 767.98px) {
    .vera-orders__table {
        min-width: 760px;
    }
}
.profile-sidebar-avatar > img {
    border-radius: inherit;
    display: block;
    height: 100px;
    object-fit: cover;
    width: 100px;
}
.profile-avatar-edit {
    align-items: center;
    background: #000;
    border: 2px solid #250d0d !important;
    border-radius: 50% !important;
    bottom: -8px;
    color: #fff;
    display: flex;
    height: 34px;
    inset-inline-end: auto;
    justify-content: center;
    line-height: 1 !important;
    min-height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    position: absolute;
    right: -24px;
    transform: translateX(-50%);
    width: 34px;
}
.profile-avatar-edit i {
    font-size: 14px;
    line-height: 1;
}
.profile-menu li :is(a, button) i {
    align-items: center !important;
    display: inline-flex !important;
    font-size: 20px !important;
    justify-content: center !important;
    text-align: center !important;
    width: 24px !important;
}
.vera-profile-menu {
    gap: 14px !important;
}
@media (max-width: 575.98px) {
    .profile-sidebar-avatar {
        flex-basis: 80px;
        height: 80px;
        width: 80px;
    }
    .profile-sidebar-avatar > img {
        height: 80px;
        width: 80px;
    }
}
body {
    overflow-x: hidden;
}
