/* CSS Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #e8e8e8;
    --color-border: #2a2a2a;
    --accent-color: #ff6f61;
    --white-70: rgba(255, 255, 255, 0.7);
    --black-50: rgba(0, 0, 0, 0.5);
    --font-primary: 'Category Regular', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-bold: 'Category Bold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Font Faces */
@font-face {
    font-family: 'Category Regular';
    src: url('fonts/category-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Category Bold';
    src: url('fonts/category-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Right Grotesk';
    src: url('fonts/RightGrotesk-TightBlack.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

/* Fixed Sticker Background */
.sticker-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: url('images/halftone3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.sticker-image {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 1;
}

/* Ensure all sections are above the sticker */
.navbar,
.section {
    position: relative;
    z-index: 1;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: var(--transition-smooth);
    font-family: var(--font-bold);
    pointer-events: none;
}

.nav-background {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    mix-blend-mode: plus-lighter;
    border-radius: 25px;
    filter: blur(4px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 999;
    height: 50px;
    top: 5px;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: fit-content;
    pointer-events: auto;
}

.menu-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    background: none;
    border: none;
    color: var(--color-bg);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 12px 24px;
    opacity: 1;
    pointer-events: auto;
    white-space: nowrap;
    line-height: 1;
}

.nav-links {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 48px;
    padding: 10px 24px;
    margin: 0;
    background-color: transparent;
    pointer-events: none;
    white-space: nowrap;
    width: 60px;
}

.nav-links li {
    opacity: 0;
    filter: blur(2px);
}

.nav-links a {
    color: var(--color-bg);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    display: block;
    white-space: nowrap;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

/* Landing Section */
.landing {
    position: relative;
    justify-content: center;
    text-align: center;
    background: none;
}

.landing-content {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.landing-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 200;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.landing-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: 0.1em;
    margin-bottom: 80px;
}

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}


/* Intro Section */
.intro {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.7) 25%,
        rgba(0, 0, 0, 0.7) 75%,
        rgba(0, 0, 0, 0) 100%
    );
}

.intro-content {
    padding: 20px;
}

.intro-text.large {
    font-size: 6.5vw;
    color: var(--color-text);
    font-family: var(--font-bold);
    font-weight: bold;
    line-height: .9;
    display: flex;
    flex-direction: column;
    gap:0px;
}

.intro-line {
    display: block;
    transition: filter 0.3s ease;
}

/* Features Section */
.features {
    padding: 0;
    min-height: auto;
    flex-direction: column;
}
p.section-subtitle {
    background: var(--accent-color);
    padding: 20px 40px;
    border-radius: 28px;
    box-shadow: -1px 1px 2px 0px var(--color-bg);
    transform: rotate(5deg);
    background-image: url(images/sticker-overlay1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sticky_section_base {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sticky_section_base .section-subtitle {
    font-size: 3rem;
    font-weight: 300;
    margin: 0;
    text-align: center;
}

/* Sticker flip container */
.sticker-flip-container {
    position: relative;
    visibility: hidden;
    padding: 2em 3em;
}

.sticker-flip-container .section-subtitle {
    position: relative;
    z-index: 1;
}

.features-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px; 
    display: flex;
    flex-direction: column;
    gap: 250px;
    padding-bottom: 200px;
}

.feature-item {
    justify-content: space-between;
    align-items: stretch;
    height: calc(100vh - 200px);
    min-height: 750px;
    display: flex;
    position: sticky;
    top: 50px;
    padding: 20px;
    background-image: url('images/stickerbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px -2px var(--black-50);
    overflow: hidden;
}


.feature-column {
        grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    display: flex;
    position: relative;
    z-index: 2;
    pointer-events: none;
        mix-blend-mode: plus-lighter;
}

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    font-size: 0.75rem;
     filter: blur(1px);
}

.feature-title {
    font-size: 19em;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    line-height: .7;
    text-transform: uppercase;
    filter: blur(3px);
    opacity: 0.9;
    z-index: 10;
    pointer-events: none;
    color: var(--accent-color);
}
.feature_image {
    position: absolute;
    right: 2em;
    top: 2em;
    cursor: pointer;
}

.feature_image img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature_image .primary {
    position: relative;
    z-index: 2;
}

.feature_image .on_hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1.7;
    max-width: 600px;
       filter: blur(1px);
}
.feature-top {
    max-width: 50%;
}

/* Purchase Section */
.purchase-wrapper {
    height: 200vh;
    position: relative;
}

.purchase {
    padding: 0;
    min-height: 100vh;
    position: sticky;
    top: 0;
}

.purchase-sticker {
    position: absolute;
    z-index: 0;
    visibility: hidden;
    pointer-events: none;
}

.purchase-sticker img {
    width: auto;
    height: auto;
    display: block;
}

.purchase-sticker-top {
    top: 10px;
    right: 0px;
    transform: rotate(-13deg);
}

.purchase-sticker-bottom {
    bottom: 40px;
    left: 35%;
    transform: rotate(10deg);
}
.purchase-sticker img {
    max-width: 200px;
}
.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0px;
    padding: 100px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.purchase-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 60px;
    align-self: flex-start;
    height: fit-content;
    max-width: 370px;
}
.purchase-right {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-bottom: 100px;
}

.purchase-right-column-main {
    flex: 0 0 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-right-column-side {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-silo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.side-silo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.color-overlay-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    mask-image: url('images/side-silo.png');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('images/side-silo.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.color-overlay-side[data-color="charcoal"] {
    background-image: url('images/charcoal-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay-side[data-color="gray"] {
    background-image: url('images/gray-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay-side[data-color="forest"] {
    background-image: url('images/forest-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay-side[data-color="burgundy"] {
    background-image: url('images/burgandy-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay-side[data-color="tan"] {
    background-color: #d2b48c;
    mix-blend-mode: color;
}

.sweater-base-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sweater-base-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    mask-image: url('images/sweater-silo.png');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('images/sweater-silo.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.color-overlay[data-color="charcoal"] {
    background-image: url('images/charcoal-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay[data-color="gray"] {
    background-image: url('images/gray-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay[data-color="forest"] {
    background-image: url('images/forest-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay[data-color="burgundy"] {
    background-image: url('images/burgandy-swatch.png');
    background-repeat: repeat;
    background-size: auto;
}

.color-overlay[data-color="tan"] {
    background-color: #d2b48c;
    mix-blend-mode: color;
}

.purchase-right-column-side img,
.purchase-right-column-side img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.purchase-image-item {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.purchase-content {
    max-width: 100%;
    background-image: url('images/greybg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: -1px 1px 2px 0px var(--color-bg);
    z-index: 0;
}
.purchase-left .section-subtitle {
    margin-bottom: -40px;
    z-index: 1;
}
.tape-holder {
    position: absolute;
    bottom: -100px;
    left: -100px;
}

.price-tag {
   margin-bottom: 20px;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    line-height: .7;
    text-transform: uppercase;
    filter: blur(3px);
    opacity: 0.9;
    text-align: right;
    mix-blend-mode: plus-lighter;
    pointer-events: none;
}

.price {
    display: block;
    font-size: 10rem;
}


.product-options {
    margin-bottom: 48px;
}

.option-group {
    margin-bottom: 32px;
    position: relative;
    z-index: 100;
    background-image: url(images/greybg.webp);
    background-size: cover;
    background-position: center;
}
.option-group select {
    width: 100%;
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.option-group select:focus {
    outline: none;
    border-color: var(--color-text);
}

/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.select-selected {
    padding: 16px 20px;
    background-color: transparent;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-smooth);
}

.select-selected:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-text-muted);
    transition: var(--transition-smooth);
}

.select-selected.select-arrow-active:after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: var(--color-text);
}

.select-selected:hover {
    border-color: var(--color-text);
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    margin-top: -1px;
    background-image: url(images/greybg.webp);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--color-bg-alt);
}

.select-items div {
    padding: 16px 20px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--color-border);
}

.select-items div:last-child {
    border-bottom: none;
}

.select-items div:hover {
    background-color: var(--black-50);
}

.select-items div.same-as-selected {
    background-color: var(--black-50);
    color: var(--accent-color);
}

.select-hide {
    display: none;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    align-items: end;
}
.color-options label {
    font-size: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    mix-blend-mode: overlay;
    filter: blur(1px);
    line-height: 1.1;
}
.color-btn {
    width: 100%;
    border: 2px solid var(--color-bg);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    mix-blend-mode: soft-light;
     filter: blur(1px);
}

.color-abbr {
    position: absolute;
    top: -30px;
    left: 5px;
    font-size: 4em;
    font-weight: 900;
    font-family: 'Right Grotesk', var(--font-bold);
    color: var(--color-text);
    z-index: 2;
    text-transform: uppercase;
    mix-blend-mode: overlay;
    filter: blur(1px);
}

.color-swatch {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    max-width: 100px;
    margin: 3px;
}

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

.color-name {
    width: 100%;
    padding: 0px 5px;
    font-size: 1.5rem;
    color: var(--color-text);
    text-transform: uppercase;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    letter-spacing: 2px;
    text-align: left;
    background: var(--color-bg);
    transition: var(--transition-smooth);
}

.color-btn.active,
.color-btn:hover {
    mix-blend-mode: normal;
     filter: blur(0px);
    transition: var(--transition-smooth);
}

.btn-purchase {
    width: 100%;
    padding: 10px;
    background-color: var(--white-70);
    color: var(--color-accent);
    border: none;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    mix-blend-mode: overlay;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-bg);
    border-bottom: 1px solid var(--color-bg);
    font-size: 2em;
    line-height: .9;
    padding-bottom: 15px;
    -webkit-text-stroke: 1px var(--color-bg);
    text-stroke: 1px var(--color-bg);
}
.btn-purchase:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    filter: blur(0px);
}

.purchase-details {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.purchase-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

/* Footer */
.footer {
    height: 100vh;
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    mix-blend-mode: plus-lighter;
}

.footer-sticker-container {
    position: absolute;
    top: 50%;
    left: 74%;
    transform: translate(-50%, -50%) rotate(12deg);
    visibility: hidden;
    z-index: 1;
}

.footer-sticker-container img {
    width: auto;
    height: auto;
    max-width: 400px;
    display: block;
}

.footer-text {
    font-size:2.5em;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight:900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1ch;
    width: 100%;
    text-align: center;
    filter: blur(1px);
}

.footer-brand h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 24px;
}

.footer-links-bottom a {
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-smooth);
     color: var(--color-text);
}

.footer-links-bottom a:hover {
    color: var(--color-text);
    text-decoration: underline;
}
.cart_wrapper {
    --cart-drawer-height: 70vh;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    align-items: center;
    mix-blend-mode: plus-lighter;
    max-width: 100vw;
    overflow: hidden;
}
.cart_wrapper .cart-link {
    display: inline-flex;
    align-items: baseline;
    padding: 1rem;
    font-size: 2em;
    gap: .2em;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    z-index: 10;
}
.cart_wrapper:hover .cart-link {
    letter-spacing: 1px;
}

/* Cart label — blurred by default, clear on hover */
.cart-label,
.cart-count {
    filter: blur(1px);
    transition: filter 0.4s ease;
}
.cart_wrapper:hover .cart-label,
.cart_wrapper:hover .cart-count {
    filter: blur(0px);
}

/* Hidden part — invisible by default, keeps blur on hover */
.hidden_part {
    display: inline-flex;
    overflow: hidden;
    max-width: 0;
    filter: blur(1px);
    transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hidden_part .h-letter {
    display: inline-block;
    opacity: 0;
    transform: translateX(0.5em);
}

/* Fly-to-cart clone element */
.fly-to-cart-clone {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    will-change: transform, opacity;
}

.fly-to-cart-clone img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* Cart Drawer */
.cart-drawer {
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: url('images/greybg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
    will-change: height;
}

.cart-drawer-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.cart-drawer-title {
    --title-open-top: 5px;
    letter-spacing: 2px;
    color: var(--color-text);
    font-size: 19em;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    line-height: .7;
    text-transform: uppercase;
    filter: blur(3px);
    opacity: 0.65;
    mix-blend-mode: plus-lighter;
    position: absolute;
    left: 0;
    pointer-events: none;
    top: 50px;
    z-index: 10;
}

.cart-drawer-close {
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}
.cart-drawer-close:hover {
    transform: rotate(10deg);
}
.cart-drawer-close img {
    max-width: 120px;
}
/* Cart Items List */
.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 40px;
}

.cart-empty-message {
    color: var(--color-text-muted);
    font-size: 1rem;
    text-align: center;
    padding: 60px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Individual Cart Item Row */
.cart-item-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}
.cart-item-actions img {
    max-width: 200px;
}
.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: var(--color-bg-alt);
}

.cart-item-details {
    display: flex;
    gap: 4px;
    background-image: url('images/item_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 10px 40px;
    align-items: center;
    justify-content: space-between;
}
.cart-inner-group {
    display: flex;
    align-items: baseline;
    gap: 2em;
}
.cart-item-name {
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    font-size: 7em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-border);
    mix-blend-mode: difference;
    line-height: 1;
    margin-top: -20px;
}

.cart-item-color,
.cart-item-size {
     font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    font-size: 5em;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: .9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    mix-blend-mode: overlay;
}

.cart-item-label {
    font-size: 1rem;
    font-weight: normal;
    text-transform: lowercase;
    position: absolute;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-price {
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--color-text);
    min-width: 60px;
    text-align: right;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
    padding: 4px 0;
}

.cart-item-remove:hover {
    color: var(--accent-color);
}

/* Cart Drawer Footer */
.cart-drawer-footer {
    border-top: 2px dashed var(--color-border);
    flex-shrink: 0;
}
.cart-drawer-footer:hover {
    mix-blend-mode: plus-lighter;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
span.checkout-text {
    margin-left: 1rem;
    padding-bottom: 5px;
}


.cart-checkout-btn {
    width: 100%;
    padding: 1rem 1rem;
    border: none;
    font-family: 'Right Grotesk', var(--font-bold);
    font-weight: 900;
    font-size: 5em;
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding-bottom: 1.5rem;
    color: var(--color-bg);
    text-decoration: none;;
}

.cart-checkout-btn:hover {
    background-color: var(--accent-color);
    color: var(--color-bg);
}
.checkout-container {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.checkout-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.checkout-tile:hover {
    transform: scale(1.02);
    z-index: 10;
}

.checkout-tile-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.checkout-tile-sticker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 290px;
    z-index: 1;
}

.checkout-tile-sticker img {
    width: 100%;
    height: auto;
    display: block;
}

.rotate-2 {
    transform: translate(-50%, -50%) rotate(2deg);
}

.rotate-5 {
    transform: translate(-50%, -50%) rotate(5deg);
    max-width: 360px;
}

.rotate-8 {
    transform: translate(-50%, -50%) rotate(8deg);
}

.rotate-12 {
    transform: translate(-50%, -50%) rotate(12deg);
}
