@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap);

:root {
    --bg-canvas: #eae8e4;
    --bg-card: #f4f4f2;
    --bg-white: #ffffff;
    --bg-dark: #0f0f0f;
    --bg-deep: #09090b;
    --bg-primary: #0f0f12;
    --bg-secondary: #16161a;
    --text-main: #111111;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #666666;
    --text-subtle: #888888;
    --accent: #d4d4d8;
    --accent-dim: rgba(212, 212, 216, .12);
    --border: rgba(255, 255, 255, .06);
    --border-light: #d8d8d5;
    --border-subtle: #e5e5e2;
    --border-dark: #111111;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
    opacity: 1
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    z-index: 999999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    will-change: transform, opacity
}

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

button {
    cursor: pointer;
    border: none;
    background: 0 0;
    font-family: inherit;
    color: inherit
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover
}

ol,
ul {
    list-style: none
}

img {
    background: var(--bg-card);
    min-height: 60px
}

.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(15, 15, 18, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background var(--transition), border-color var(--transition)
}

.navbar.scrolled {
    background: rgba(9, 9, 11, .95);
    border-color: rgba(255, 255, 255, .15)
}

.nav-logo {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-primary);
    transition: opacity var(--transition)
}

.nav-logo:hover {
    opacity: .8
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    margin-right: 32px
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition)
}

.nav-link:hover {
    color: var(--text-primary)
}

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

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition)
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, .05)
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-primary);
    opacity: 0;
    transition: opacity 1.2s ease
}

.hero-slide-bg.active {
    opacity: .3
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(9, 9, 11, .97) 0, rgba(9, 9, 11, .9) 35%, rgba(9, 9, 11, .55) 55%, rgba(9, 9, 11, .2) 75%, transparent 100%)
}

.hero-graffiti-text {
    display: none !important
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 140px 60px 80px;
    max-width: 520px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(30px) scale(.98);
    filter: blur(10px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1), filter .8s cubic-bezier(.16, 1, .3, 1)
}

.hero-content.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px)
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 24px
}

.hero-breadcrumb .sep {
    color: var(--text-muted);
    opacity: .5
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 96px);
    line-height: .95;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 36px
}

.hero-title .line {
    display: block
}

.hero-title sup {
    font-size: .35em;
    vertical-align: super;
    margin-left: 2px
}

.hero-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px
}

.option-group {
    display: flex;
    align-items: center;
    gap: 16px
}

.option-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    min-width: 50px
}

.size-btns {
    display: flex;
    gap: 6px
}

.size-btn {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition)
}

.size-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary)
}

.size-btn.active {
    background: var(--text-primary);
    color: var(--bg-deep);
    border-color: var(--text-primary)
}

.color-btns {
    display: flex;
    gap: 16px
}

.color-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color var(--transition)
}

.color-btn.active,
.color-btn:hover {
    color: var(--text-primary)
}

.cdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    flex-shrink: 0
}

.hero-cta {
    margin-top: 8px
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all var(--transition)
}

.cta-btn:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, .04)
}

.cta-circle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    color: var(--bg-deep);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform var(--transition)
}

.cta-btn:hover .cta-circle {
    transform: scale(1.08)
}

.cta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary)
}

.cta-price {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 1px;
    padding-right: 20px
}

.hero-image-wrap {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 600px;
    z-index: 3
}

.hero-img {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .5));
    transition: opacity .5s ease
}

.hero-thumbs {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 6
}

.thumb {
    width: 72px;
    height: 88px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    padding: 0
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%
}

.thumb:hover {
    border-color: var(--border-hover)
}

.thumb.active {
    border-color: var(--text-primary)
}

.hero-slide-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 6
}

.slide-dots {
    display: flex;
    gap: 6px
}

.sdot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--border-hover);
    border-radius: 2px;
    transition: all var(--transition)
}

.sdot.active {
    background: var(--text-primary);
    border-color: var(--text-primary)
}

.slide-arrows {
    display: flex;
    gap: 6px
}

.arrow-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition)
}

.arrow-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, .05)
}

.hero-slide-num {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    font-family: var(--font-heading);
    font-size: 120px;
    color: rgba(255, 255, 255, .03);
    z-index: 1;
    pointer-events: none;
    user-select: none
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .04);
    z-index: 10
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .35))
}

.new-collection {
    position: relative;
    padding: 80px 40px 60px;
    background: var(--bg-primary)
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 2px;
    margin-bottom: 8px
}

.collection-cats {
    display: flex;
    align-items: center;
    gap: 8px
}

.cat-link {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color var(--transition)
}

.cat-link.active,
.cat-link:hover {
    color: var(--text-primary)
}

.cat-sep {
    font-size: 9px;
    color: var(--text-muted);
    opacity: .4
}

.collection-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px
}

.collection-subcats {
    display: flex;
    align-items: center;
    gap: 8px
}

.subcat-link {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color var(--transition)
}

.subcat-link:hover {
    color: var(--text-secondary)
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition)
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, .04)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px
}

.product-card .card-link {
    display: flex;
    flex-direction: column;
    height: 100%
}

.product-card .card-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 16/9
}

.product-card .card-image.digital-asset {
    aspect-ratio: 16/9
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

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

.card-info {
    padding: 14px 2px 4px
}

.product-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 2px
}

.product-desc {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -.01em;
    color: #444;
    margin-bottom: 8px
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px
}

.product-colors {
    display: flex;
    align-items: center;
    gap: 4px
}

.pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    flex-shrink: 0
}

.pcolor-label {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-right: 6px
}

.product-price {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--text-primary)
}

.collection-bottom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.product-card.small .card-image {
    aspect-ratio: 16/9
}

.graffiti-band {
    position: relative;
    padding: 60px 0;
    background: var(--bg-secondary);
    overflow: hidden
}

.graffiti-scroll {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(60px, 10vw, 140px);
    letter-spacing: 12px;
    color: rgba(255, 255, 255, .04);
    animation: scrollGraffiti 20s linear infinite
}

.graffiti-scroll span {
    flex-shrink: 0
}

@keyframes scrollGraffiti {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.story-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.story-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 60%;
    background-color: var(--bg-secondary);
    opacity: .4
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0, rgba(9, 9, 11, .6) 30%, rgba(9, 9, 11, .6) 70%, var(--bg-deep) 100%)
}

.story-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 80px 60px
}

.story-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 2;
    color: var(--text-secondary)
}

.story-meta {
    display: block;
    margin-top: 16px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted)
}

.story-quote {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 2;
    color: var(--text-muted);
    text-align: right
}

.footer-tagline {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}

.tagline-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 70%;
    background-color: var(--bg-secondary);
    opacity: .3
}

.tagline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-deep) 0, rgba(9, 9, 11, .5) 40%, rgba(9, 9, 11, .7) 100%)
}

.tagline-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 80px 60px
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.05;
    letter-spacing: 3px
}

.tagline-text span {
    display: block
}

.tagline-side {
    text-align: right
}

.tagline-small {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    line-height: 1.8;
    color: var(--text-muted)
}

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 30px 40px
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 5px;
    margin-right: 16px
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.footer-copy {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px
}

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

.footer-links a {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--text-secondary)
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(.98);
    filter: blur(8px);
    transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1), filter 1s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px)
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px) scale(.98);
    filter: blur(8px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1), filter .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px)
}

.reveal-stagger.visible>:first-child {
    transition-delay: .05s
}

.reveal-stagger.visible>:nth-child(2) {
    transition-delay: .1s
}

.reveal-stagger.visible>:nth-child(3) {
    transition-delay: .15s
}

.reveal-stagger.visible>:nth-child(4) {
    transition-delay: .2s
}

.reveal-stagger.visible>:nth-child(5) {
    transition-delay: .25s
}

.reveal-stagger.visible>:nth-child(6) {
    transition-delay: .3s
}

.reveal-stagger.visible>:nth-child(7) {
    transition-delay: .35s
}

.reveal-stagger.visible>:nth-child(8) {
    transition-delay: .4s
}

.nav-cart-link {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition)
}

.nav-cart-link.active,
.nav-cart-link:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, .05)
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--text-primary);
    color: var(--bg-deep);
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%
}

.nav-link.active {
    color: var(--text-primary)
}

.nav-link.active::after {
    width: 100%
}

.social-icon.active {
    color: var(--text-primary);
    border-color: var(--border-hover)
}

.product-page {
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 40px
}

.product-breadcrumb a {
    transition: color var(--transition)
}

.product-breadcrumb a:hover {
    color: var(--text-secondary)
}

.product-breadcrumb .sep {
    opacity: .4
}

.product-breadcrumb .current {
    color: var(--text-secondary)
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px
}

.product-gallery {
    position: relative
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 12px
}

.gallery-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
    cursor: zoom-in
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    font-size: 1.25rem;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .95;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease
}

.gallery-main:hover .gallery-nav,
.gallery-nav {
    opacity: 1
}

.gallery-nav:hover {
    background: #eae8e4;
    color: #111;
    border-color: #eae8e4;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .5)
}

.gallery-prev {
    left: 16px
}

.gallery-next {
    right: 16px
}

.gallery-graffiti {
    display: none !important
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: color .3s ease
}

.lightbox-close:hover {
    color: var(--text-secondary)
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 1.4rem;
    font-weight: 700;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
    transition: transform .25s ease, background .25s ease, color .25s ease
}

.lightbox-nav:hover {
    background: #eae8e4;
    color: #111;
    border-color: #eae8e4;
    transform: translateY(-50%) scale(1.1)
}

.lightbox-prev {
    left: 40px
}

.lightbox-next {
    right: 40px
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    object-fit: contain
}

.gallery-thumbs {
    display: flex;
    gap: 10px
}

.gallery-thumb {
    width: 80px;
    height: 96px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
    background: 0 0
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%
}

.gallery-thumb:hover {
    border-color: var(--border-hover)
}

.gallery-thumb.active {
    border-color: var(--text-primary)
}

.product-info {
    padding-top: 20px
}

.product-info-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block
}

.product-info-name {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 60px);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 8px
}

.product-info-desc {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -.01em;
    color: #333;
    margin-bottom: 20px
}

.product-info-price {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 32px
}

.product-option {
    margin-bottom: 24px
}

.product-option-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px
}

.product-sizes {
    display: flex;
    gap: 8px
}

.product-sizes .size-btn {
    padding: 10px 18px;
    font-size: 11px
}

.product-colors-select {
    display: flex;
    gap: 12px
}

.product-colors-select .color-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

.product-colors-select .color-btn:hover {
    border-color: var(--border-hover)
}

.product-colors-select .color-btn.active {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, .05)
}

.product-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 36px;
    border: 1px solid #111;
    border-radius: 999px;
    background: 0 0;
    color: #111;
    font-family: Inter, sans-serif;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: none;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease
}

.product-add-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111
}

.product-add-btn.added-state {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important
}

.check-svg polyline {
    stroke-dasharray: 40;
    stroke-dashoffset: 40
}

.product-added-msg {
    display: none;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6ddf8f;
    padding: 12px;
    margin-bottom: 20px;
    animation: fadeInUp .4s ease
}

.product-added-msg.show {
    display: flex
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

.product-details-section {
    margin-top: 36px;
    border-top: 1px solid var(--border);
    padding-top: 24px
}

.product-tabs {
    position: relative;
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(17, 17, 17, .12);
    padding-bottom: 2px
}

.product-tab {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #888;
    padding-bottom: 10px;
    border: none;
    background: 0 0;
    transition: color .25s ease;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.product-tab.active,
.product-tab:hover {
    color: #111
}

.product-tabs-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background-color: #111;
    z-index: 3;
    width: 0;
    will-change: left, width
}

.product-tab-content {
    display: none;
    opacity: 0
}

.product-tab-content.active {
    display: block;
    opacity: 1
}

.product-tab-content p {
    font-size: .92rem;
    line-height: 1.8;
    color: #222;
    font-weight: 500
}

.product-long-desc p {
    margin-bottom: 1em;
    color: #222;
    font-size: .92rem;
    line-height: 1.8;
    font-weight: 500
}

.product-long-desc ol,
.product-long-desc ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
    font-size: .92rem;
    line-height: 1.8;
    color: #222;
    font-weight: 500
}

.product-long-desc li {
    margin-bottom: .5em;
    color: #222
}

.product-long-desc strong {
    color: #111;
    font-weight: 700
}

.product-long-desc a {
    color: var(--text-primary);
    text-decoration: underline
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    letter-spacing: 1px
}

.size-table th {
    font-weight: 600;
    color: var(--text-muted);
    text-align: left;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border)
}

.size-table td {
    color: var(--text-secondary);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border)
}

.size-table tr:hover td {
    background: rgba(255, 255, 255, .02)
}

.care-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: .5px
}

.care-list li:last-child {
    border-bottom: none
}

.related-section {
    border-top: 1px solid var(--border);
    padding-top: 40px
}

.related-section .section-title {
    margin-bottom: 30px
}

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

.shop-page {
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px
}

.shop-subtitle {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-muted)
}

.shop-header-right {
    display: flex;
    align-items: center;
    gap: 20px
}

.shop-count {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted)
}

.shop-sort {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    cursor: pointer;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none
}

.shop-sort:hover {
    border-color: var(--border-hover)
}

.shop-sort option {
    background: var(--bg-primary);
    color: var(--text-primary)
}

.shop-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap
}

.shop-cat-btn {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    transition: all var(--transition)
}

.shop-cat-btn:hover {
    color: var(--text-secondary);
    border-color: var(--border-hover)
}

.shop-cat-btn.active {
    background: var(--text-primary);
    color: var(--bg-deep);
    border-color: var(--text-primary)
}

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

.shop-grid .product-card .card-image {
    aspect-ratio: 3/4
}

.cart-page {
    padding: 100px 40px 60px;
    max-width: 1200px;
    margin: 0 auto
}

.cart-page .section-title {
    margin-bottom: 40px
}

.cart-empty {
    text-align: center;
    padding: 100px 20px 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.cart-empty-icon {
    color: #111;
    margin-bottom: 24px;
    opacity: .85
}

.cart-empty-text {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: #111;
    margin-bottom: 28px;
    text-transform: uppercase
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid #111;
    border-radius: 0;
    background: #111;
    color: #fff;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    text-decoration: none
}

.cart-empty-btn:hover {
    background: #eae8e4;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25)
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start
}

.cart-items {
    display: flex;
    flex-direction: column;
    width: 100%
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2.5fr 110px 100px 40px;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #d0d0cd;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #666
}

.cart-item {
    display: grid;
    grid-template-columns: 2.5fr 110px 100px 40px;
    gap: 16px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #d0d0cd;
    transition: background .2s ease
}

.cart-item:hover {
    background: rgba(0, 0, 0, .015)
}

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

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #dfdeda;
    flex-shrink: 0
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cart-item-name {
    font-family: Inter, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #111;
    text-transform: uppercase
}

.cart-item-desc {
    font-family: Inter, sans-serif;
    font-size: .78rem;
    font-weight: 400;
    line-height: 1.45;
    color: #666;
    max-width: 320px
}

.cart-item-color,
.cart-item-size {
    display: none
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d0d0cd;
    border-radius: 999px;
    padding: 3px 10px;
    background: #fff;
    width: fit-content
}

.cart-qty-btn {
    background: 0 0;
    border: none;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: opacity .2s ease
}

.cart-qty-btn:hover {
    opacity: .6
}

.cart-qty-val {
    min-width: 24px;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: #111
}

.cart-item-price {
    font-family: Inter, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #111
}

.cart-item-remove {
    background: 0 0;
    border: none;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition: color .2s ease
}

.cart-item-remove:hover {
    color: #111
}

.cart-summary {
    background: #fff;
    border: 1px solid #d0d0cd;
    border-radius: 20px;
    padding: 32px;
    position: sticky;
    top: 100px;
    color: #111
}

.cart-summary-title {
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 24px;
    color: #111
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: Inter, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: #666
}

.cart-summary-row.total {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    padding: 16px 0
}

.cart-shipping {
    color: #111;
    font-weight: 700
}

.cart-summary-divider {
    height: 1px;
    background: #e2e2df;
    margin: 8px 0
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 999px;
    margin-top: 20px;
    transition: all var(--transition)
}

.cart-checkout-btn:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.cart-continue {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 16px;
    transition: color var(--transition)
}

.cart-continue:hover {
    color: var(--text-secondary)
}

.account-page {
    padding: 100px 40px 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.account-container {
    position: relative;
    width: 100%;
    max-width: 440px
}

.account-graffiti {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: var(--font-graffiti);
    font-size: 200px;
    color: rgba(255, 255, 255, .02);
    pointer-events: none;
    user-select: none;
    white-space: nowrap
}

.account-form-wrap .section-title {
    margin-bottom: 4px
}

.account-subtitle {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 36px
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted)
}

.form-input {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    transition: all var(--transition);
    outline: 0
}

.form-input::placeholder {
    color: var(--text-muted)
}

.form-input:focus {
    border-color: var(--border-hover);
    background: var(--bg-card-hover)
}

.account-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--text-primary);
    color: var(--bg-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-top: 8px;
    transition: all var(--transition)
}

.account-submit-btn:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.form-forgot {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: -4px;
    transition: color var(--transition)
}

.form-forgot:hover {
    color: var(--text-secondary)
}

.account-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted)
}

.account-switch-btn {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition)
}

.account-switch-btn:hover {
    opacity: .7
}

@media (max-width:1200px) {
    .hero-image-wrap {
        width: 38%;
        right: 80px
    }

    .hero-thumbs {
        right: 20px
    }

    .collection-top-grid {
        grid-template-columns: 1fr 1fr
    }

    .collection-bottom-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .cart-content {
        grid-template-columns: 1fr 320px
    }
}

@media (max-width:900px) {
    .navbar {
        padding: 16px 24px
    }

    .nav-links {
        gap: 18px
    }

    .nav-link {
        font-size: 10px
    }

    .hero-content {
        padding: 120px 30px 60px;
        max-width: 100%
    }

    .hero-image-wrap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto
    }

    .hero-thumbs {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        padding: 16px 30px
    }

    .hero-slide-nav {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 16px 30px;
        justify-content: flex-end
    }

    .hero-slide-num {
        display: none
    }

    .new-collection {
        padding: 50px 24px 40px
    }

    .collection-top-grid {
        grid-template-columns: 1fr
    }

    .collection-bottom-grid {
        grid-template-columns: 1fr 1fr
    }

    .story-content {
        flex-direction: column;
        gap: 30px;
        padding: 50px 30px
    }

    .story-quote {
        text-align: left
    }

    .tagline-content {
        flex-direction: column;
        gap: 20px;
        padding: 50px 30px
    }

    .tagline-side {
        text-align: left
    }

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

    .product-page {
        padding: 90px 24px 40px
    }

    .related-grid {
        grid-template-columns: 1fr 1fr
    }

    .shop-page {
        padding: 90px 24px 40px
    }

    .shop-grid {
        grid-template-columns: 1fr 1fr
    }

    .cart-page {
        padding: 90px 24px 40px
    }

    .cart-content {
        grid-template-columns: 1fr
    }

    .cart-summary {
        position: static
    }

    .cart-table-header {
        display: none
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .cart-item-product {
        margin-bottom: 8px
    }
}

@media (max-width:600px) {
    .nav-links {
        display: none
    }

    .hero-title {
        font-size: 48px
    }

    .size-btns {
        gap: 4px
    }

    .size-btn {
        padding: 5px 8px;
        font-size: 9px
    }

    .collection-bottom-grid {
        grid-template-columns: 1fr
    }

    .graffiti-scroll {
        font-size: 60px
    }

    .product-info-name {
        font-size: 36px
    }

    .related-grid {
        grid-template-columns: 1fr
    }

    .shop-grid {
        grid-template-columns: 1fr
    }

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

.shop-search-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center
}

.shop-search-input {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border, rgba(255, 255, 255, .1));
    border-radius: var(--radius-sm, 4px);
    color: var(--text-primary, #fafafa);
    padding: 8px 36px 8px 14px;
    font-size: .85rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    outline: 0;
    transition: all .3s ease;
    width: 220px
}

.shop-search-input:focus {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    width: 260px
}

.shop-search-wrapper .search-icon {
    position: absolute;
    right: 12px;
    color: var(--text-secondary, #a1a1aa);
    pointer-events: none
}

.card-badge-category {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    color: var(--text-secondary, #a1a1aa);
    margin-bottom: 8px;
    text-transform: uppercase
}

.price-free {
    color: #4ade80 !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 222, 128, .2)
}

.nav-link.highlight-free {
    color: #4ade80 !important;
    font-weight: 600
}

.ngfx-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1c1c21;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
    backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none
}

.ngfx-toast.show {
    opacity: 1;
    transform: translateY(0)
}

.shop-cat-btn {
    padding: 8px 18px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition)
}

.shop-cat-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover)
}

.shop-cat-btn.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--accent-violet-glow)
}

.discord-section {
    position: relative;
    padding: 80px 5vw;
    margin: 40px auto 80px;
    max-width: 1240px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(88, 101, 242, .12) 0, rgba(139, 92, 246, .08) 100%);
    border: 1px solid rgba(88, 101, 242, .3);
    box-shadow: 0 0 50px rgba(88, 101, 242, .15);
    text-align: center;
    overflow: hidden
}

.discord-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto
}

.discord-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px
}

.discord-sub {
    font-size: .95rem;
    color: var(--text-secondary);
    margin-bottom: 28px
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--accent-discord);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(88, 101, 242, .4);
    transition: all var(--transition)
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, .6)
}

.ngfx-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(20, 20, 32, .95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--accent-violet);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6), 0 0 20px var(--accent-violet-glow);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    pointer-events: none
}

.ngfx-toast.show {
    opacity: 1;
    transform: translateY(0)
}

.site-footer {
    position: relative;
    z-index: 5;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 50px 5vw
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff
}

.footer-copy {
    font-size: .85rem;
    color: var(--text-muted)
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--accent-green)
}

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

.footer-links a {
    font-size: .85rem;
    color: var(--text-secondary)
}

.footer-links a:hover {
    color: #fff
}

@media (max-width:992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px
    }

    .hero-content {
        max-width: 100%
    }

    .hero-stats {
        justify-content: center
    }

    .hero-cta {
        justify-content: center
    }

    .hero-image-wrap {
        margin: 40px auto 0;
        max-width: 360px
    }
}

body.light-theme,
body.page-checkout {
    background-color: var(--bg-canvas, #eae8e4);
    color: var(--text-main, #111);
    font-family: var(--font-body, 'Inter', sans-serif)
}

.nightgfx-header {
    width: 100%;
    background-color: var(--bg-canvas, #eae8e4);
    border-bottom: 1px solid var(--border-light, #d8d8d5);
    padding: 16px 40px;
    position: sticky;
    top: 0;
    z-index: 100
}

.header-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand-logo {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: .1em;
    color: #111;
    text-transform: uppercase;
    text-decoration: none
}

.nightgfx-nav {
    display: flex;
    gap: 32px
}

.nightgfx-nav a {
    font-family: Inter, sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .2s ease
}

.nightgfx-nav a:hover {
    opacity: .6
}

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

.icon-btn {
    background: 0 0;
    border: none;
    cursor: pointer;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;
    transition: opacity .2s ease;
    text-decoration: none
}

.icon-btn:hover {
    opacity: .6
}

.cart-count-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: .65rem;
    font-weight: 700;
    color: #111
}

.checkout-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 40px 80px
}

.checkout-page-title {
    font-family: Inter, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 40px;
    line-height: 1
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start
}

.checkout-section {
    background: 0 0;
    margin-bottom: 48px
}

.checkout-section h2 {
    font-family: Inter, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #111;
    letter-spacing: -.01em;
    margin-bottom: 24px
}

.section-header-flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px
}

.section-header-flex h2 {
    margin-bottom: 0
}

.account-link {
    font-size: .8rem;
    color: #666
}

.account-link a {
    color: #111;
    text-decoration: underline;
    font-weight: 500
}

.subsection-title {
    font-size: .85rem;
    font-weight: 700;
    color: #111;
    margin-top: 20px;
    margin-bottom: 14px;
    letter-spacing: .02em
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px
}

.form-row.two-cols .form-group {
    flex: 1
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    background: #e2e2df;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0 16px;
    font-family: Inter, sans-serif;
    font-size: .85rem;
    color: #111;
    outline: 0;
    transition: background .2s ease, border-color .2s ease
}

.form-group input::placeholder {
    color: #888
}

.form-group input:focus {
    background: #fff;
    border-color: #111
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: .8rem;
    color: #444;
    user-select: none;
    margin-top: 14px
}

.custom-checkbox input {
    display: none
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #111;
    background: 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    flex-shrink: 0
}

.custom-checkbox input:checked+.checkmark {
    background: #111
}

.custom-checkbox input:checked+.checkmark::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px)
}

.custom-checkbox a {
    color: #111;
    text-decoration: underline
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light, #d8d8d5);
    cursor: pointer;
    transition: background .2s ease;
    position: relative
}

.radio-card:hover {
    background: rgba(255, 255, 255, .4)
}

.radio-card input {
    display: none
}

.radio-circle {
    width: 16px;
    height: 16px;
    border: 1px solid #111;
    border-radius: 50%;
    margin-right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.radio-card input:checked~.radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%
}

.radio-details {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.option-name {
    font-size: .85rem;
    font-weight: 600;
    color: #111
}

.option-sub {
    font-size: .75rem;
    color: #777
}

.option-price {
    margin-left: auto;
    font-size: .85rem;
    font-weight: 600;
    color: #111
}

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

.payment-card {
    border-bottom: 1px solid var(--border-light, #d8d8d5);
    padding: 16px 0
}

.payment-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%
}

.payment-label input {
    display: none
}

.payment-label input:checked~.radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%
}

.payment-name {
    font-size: .85rem;
    font-weight: 600;
    color: #111
}

.card-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px
}

.card-badge {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .05em
}

.card-badge.visa {
    color: #1a1f71;
    font-style: italic
}

.card-badge.mastercard {
    display: inline-flex;
    align-items: center
}

.card-badge.mastercard .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block
}

.card-badge.mastercard .circle.red {
    background: #eb001b;
    margin-right: -4px
}

.card-badge.mastercard .circle.yellow {
    background: #f79e1b
}

.paypal-logo {
    margin-left: auto;
    font-weight: 800;
    font-style: italic;
    color: #003087;
    font-size: .85rem
}

.applepay-logo {
    margin-left: auto;
    font-weight: 700;
    color: #111;
    font-size: .85rem
}

.card-form-expand {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.payment-card:not(.active) .card-form-expand {
    display: none
}

.mt-20 {
    margin-top: 20px
}

.pay-submit-btn {
    width: 100%;
    height: 52px;
    background: #111;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 24px;
    transition: background .2s ease, opacity .2s ease
}

.pay-submit-btn:hover {
    background: #000;
    opacity: .9
}

.checkout-right {
    background: 0 0
}

.bag-summary-box {
    width: 100%
}

.bag-title {
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px
}

.bag-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px
}

.bag-item-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light, #d8d8d5);
    align-items: flex-start
}

.bag-item-img {
    width: 80px;
    height: 104px;
    object-fit: cover;
    background: #d8d8d5
}

.bag-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.bag-item-name {
    font-size: .88rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2
}

.bag-item-meta {
    font-size: .75rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px
}

.bag-item-price {
    font-size: .88rem;
    font-weight: 600;
    color: #111;
    text-align: right
}

.promo-row {
    display: flex;
    gap: 12px;
    margin-bottom: 30px
}

.promo-row input {
    flex: 1;
    height: 44px;
    background: #e2e2df;
    border: none;
    padding: 0 14px;
    font-size: .8rem;
    color: #111;
    outline: 0
}

.promo-row input::placeholder {
    color: #888
}

.promo-apply-btn {
    padding: 0 24px;
    height: 44px;
    background: #d8d8d5;
    color: #111;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    border: none;
    cursor: pointer;
    transition: background .2s ease
}

.promo-apply-btn:hover {
    background: #c5c5c0
}

.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-light, #d8d8d5);
    padding-top: 20px
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: #555
}

.summary-total-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light, #d8d8d5)
}

.total-label {
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111
}

.total-amount {
    font-family: Inter, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #111
}

.nightgfx-footer {
    background-color: #0b0b0b;
    color: #fff;
    width: 100%
}

.footer-hero-banner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    padding: 80px 40px;
    border-bottom: 1px solid #222;
    max-width: 1360px;
    margin: 0 auto
}

.banner-title {
    font-family: Inter, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase
}

.banner-sub {
    font-size: .82rem;
    color: #888;
    max-width: 280px;
    line-height: 1.4
}

.banner-giant-text {
    font-family: Inter, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #fff;
    text-align: right
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 5vw 40px;
    width: 100%;
    box-sizing: border-box
}

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

.footer-col:first-child {
    flex: 1
}

.footer-col:not(:first-child) {
    flex: 0 0 auto;
    min-width: 120px;
    margin-left: 60px
}

.footer-col:first-child img,
.footer-logo-img {
    height: 32px;
    width: auto;
    display: block
}

.col-logo {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .08em;
    margin-bottom: 6px
}

.col-heading {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase
}

.footer-col a {
    font-size: .78rem;
    color: #aaa;
    text-decoration: none;
    transition: color .2s ease
}

.footer-col a:hover {
    color: #fff
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #444;
    padding-bottom: 4px;
    margin-top: 4px
}

.newsletter-form input {
    background: 0 0;
    border: none;
    outline: 0;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: .75rem;
    letter-spacing: .05em;
    flex: 1
}

.newsletter-form input::placeholder {
    color: #666
}

.newsletter-form button {
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer
}

.footer-copy-bar {
    width: 100%;
    padding: 24px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    font-size: .72rem;
    color: #666
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .75rem;
    font-weight: 700;
    color: #aaa
}

@media (max-width:1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-hero-banner {
        grid-template-columns: 1fr
    }

    .banner-giant-text {
        text-align: left;
        font-size: 2.6rem
    }

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

@media (max-width:640px) {
    .checkout-wrapper {
        padding: 24px 20px 60px
    }

    .checkout-page-title {
        font-size: 2.5rem
    }

    .nightgfx-header {
        padding: 14px 20px
    }

    .nightgfx-nav {
        display: none
    }

    .form-row {
        flex-direction: column
    }

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

    .footer-copy-bar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start
    }
}

body,
body.light-theme {
    background-color: var(--bg-canvas, #eae8e4);
    color: #111
}

.navbar {
    background: rgba(235, 235, 232, .9);
    border: 1px solid var(--border-light, #d8d8d5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.navbar.scrolled {
    background: rgba(235, 235, 232, .98);
    border-color: #c5c5c0
}

.nav-logo {
    font-family: Inter, sans-serif;
    font-weight: 800;
    letter-spacing: .08em;
    color: #111
}

.nav-link {
    color: #333;
    font-weight: 600
}

.nav-link.active,
.nav-link:hover {
    color: #000
}

.nav-cart-link {
    color: #111
}

.cart-badge {
    background: #111;
    color: #fff
}

.hero {
    background-color: var(--bg-canvas, #eae8e4)
}

.hero-gradient-overlay {
    background: linear-gradient(180deg, rgba(235, 235, 232, .2) 0, rgba(235, 235, 232, .9) 100%)
}

.hero-graffiti-text {
    color: rgba(0, 0, 0, .03)
}

.hero-breadcrumb {
    color: #666;
    font-weight: 600;
    letter-spacing: .08em
}

.hero-title .line {
    font-family: Inter, sans-serif;
    font-size: 4.2rem;
    font-weight: 800;
    color: #111
}

.option-label {
    color: #555;
    font-weight: 700
}

.color-btn,
.size-btn {
    background: #e2e2df;
    color: #111;
    border: 1px solid transparent
}

.color-btn.active,
.size-btn.active {
    background: #111;
    color: #fff
}

.cta-btn {
    background: #111;
    color: #fff;
    border-radius: 0
}

.cta-btn:hover {
    background: #000
}

.cart-page,
.product-page,
.shop-page {
    background-color: var(--bg-canvas, #eae8e4);
    color: #111;
    padding-top: 40px;
    padding-bottom: 120px;
    min-height: calc(100vh - 280px)
}

.product-title,
.section-title,
.shop-title {
    font-family: Inter, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    letter-spacing: .02em
}

.shop-subtitle {
    color: #666;
    font-size: .78rem;
    letter-spacing: .08em
}

.shop-search-input {
    background: #e2e2df;
    border: 1px solid transparent;
    color: #111
}

.shop-search-input:focus {
    background: #fff;
    border-color: #111
}

.shop-sort {
    background: #e2e2df;
    color: #111;
    border: none
}

.shop-cat-btn {
    background: #e2e2df;
    color: #333;
    border: none;
    font-family: Inter, sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 10px 20px;
    border-radius: 0;
    transition: all .2s ease
}

.shop-cat-btn.active,
.shop-cat-btn:hover {
    background: #111;
    color: #fff
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-light, #d8d8d5);
    border-radius: 0;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .06)
}

.card-title,
.product-card-title {
    font-family: Inter, sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #111
}

.card-price,
.product-card-price {
    font-size: .9rem;
    font-weight: 600;
    color: #111
}

.card-category,
.product-card-category {
    font-size: .7rem;
    letter-spacing: .08em;
    color: #888;
    text-transform: uppercase
}

.cart-table-header {
    border-bottom: 1px solid var(--border-light, #d8d8d5);
    color: #666;
    font-weight: 700
}

.cart-item-row {
    border-bottom: 1px solid var(--border-light, #d8d8d5);
    color: #111
}

.cart-summary {
    background: #fff;
    border: 1px solid var(--border-light, #d8d8d5);
    border-radius: 0;
    color: #111
}

.cart-summary-title {
    font-family: Inter, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111
}

.cart-checkout-btn:hover {
    background: #000
}

:root {
    --accent-neon: #111111
}

.sd-catalog-header {
    margin-bottom: 30px
}

.sd-catalog-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.sd-catalog-title {
    font-family: Syne, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
    color: #111;
    letter-spacing: -.01em
}

.sd-count-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #c8c8c5;
    background: 0 0;
    font-family: Inter, sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.sd-filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px
}

.sd-categories-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.sd-cat-pill {
    background: 0 0;
    border: 1px solid #d0d0cd;
    border-radius: 999px;
    padding: 8px 18px;
    font-family: Inter, sans-serif;
    font-size: .78rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all .2s ease;
    text-transform: capitalize
}

.sd-cat-pill.active,
.sd-cat-pill:hover {
    background: #111;
    color: #fff;
    border-color: #111
}

.sd-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(17, 17, 17, .14);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px 18px;
    width: 260px;
    transition: width .35s cubic-bezier(.16, 1, .3, 1), border-color .25s ease, background .25s ease, box-shadow .25s ease;
    position: relative
}

.sd-search-box:focus-within {
    width: 340px;
    border-color: #111;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08)
}

.sd-search-box .search-icon {
    color: #888;
    flex-shrink: 0;
    transition: color .2s ease, transform .2s ease
}

.sd-search-box:focus-within .search-icon {
    color: #111;
    transform: scale(1.1)
}

.sd-search-box input {
    background: 0 0;
    border: none;
    outline: 0;
    font-family: Inter, sans-serif;
    font-size: .8rem;
    font-weight: 500;
    color: #111;
    width: 100%;
    letter-spacing: .01em
}

.sd-search-box input::placeholder {
    color: #888;
    font-size: .8rem;
    font-weight: 400;
    transition: color .2s ease
}

.sd-search-box:focus-within input::placeholder {
    color: #aaa
}

.sd-search-box .search-kbd {
    font-family: Inter, sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #888;
    background: rgba(17, 17, 17, .06);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 6px;
    padding: 2px 7px;
    flex-shrink: 0;
    pointer-events: none;
    transition: opacity .2s ease
}

.sd-search-box:focus-within .search-kbd {
    opacity: .5
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    min-height: 380px
}

.sd-product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #111;
    transition: transform .25s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0)
}

.sd-product-card:hover {
    transform: translateY(-4px)
}

.sd-card-image-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    background: #dfdeda;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden
}

.sd-card-image-wrap img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform .3s ease
}

.sd-product-card:hover .sd-card-image-wrap img {
    transform: scale(1.05)
}

.sd-card-footer {
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.sd-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.sd-card-title {
    font-family: Inter, sans-serif;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #111;
    text-transform: uppercase
}

.sd-card-arrow-btn {
    display: none !important
}

.sd-card-price {
    font-family: Inter, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    color: #666
}

.sd-footer {
    background-color: #0b0b0b;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #fff;
    width: 100%;
    padding-top: 60px
}

.sd-footer-newsletter-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222
}

.sd-newsletter-title {
    font-family: Inter, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .05em
}

.sd-newsletter-form {
    display: flex;
    align-items: center;
    background: #181818;
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    width: 320px
}

.sd-newsletter-form input {
    background: 0 0;
    border: none;
    outline: 0;
    color: #fff;
    font-size: .78rem;
    flex: 1
}

.sd-newsletter-form input::placeholder {
    color: #666
}

.sd-newsletter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.sd-footer-giant-title {
    font-family: Inter, sans-serif;
    font-size: 7.5rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -.03em;
    text-transform: uppercase;
    text-align: center;
    padding: 60px 20px 30px;
    color: #fff;
    line-height: .9;
    width: 100%;
    overflow: hidden
}

@media (max-width:992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sd-catalog-title {
        font-size: 3.5rem
    }

    .sd-footer-giant-title {
        font-size: 4rem
    }
}

@media (max-width:640px) {
    .shop-grid {
        grid-template-columns: 1fr
    }

    .sd-catalog-title {
        font-size: 2.8rem
    }

    .sd-footer-giant-title {
        font-size: 2.8rem
    }
}

.wc-header {
    width: 100%;
    background: rgba(234, 232, 228, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 5vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(17, 17, 17, .06);
    transition: background .3s ease, padding .3s ease
}

.wc-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.wc-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.brand-logo-img {
    height: 38px;
    width: 175px;
    display: block;
    background-color: #111;
    -webkit-mask-image: url('https://cdn.websrc.ch/clients/nightgfx/img/logo.svg');
    mask-image: url('https://cdn.websrc.ch/clients/nightgfx/img/logo.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left center;
    mask-position: left center;
    transition: opacity .2s ease
}

.wc-brand:hover .brand-logo-img {
    opacity: .7
}

.footer-logo-img {
    height: 28px;
    width: auto;
    max-height: 36px;
    object-fit: contain;
    display: block
}

.nightgfx-footer .footer-logo-img {
    filter: invert(1)
}

.wc-nav-links {
    display: flex;
    align-items: center;
    gap: 32px
}

.wc-nav-links a {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color .2s ease, opacity .2s ease
}

.wc-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #111;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease
}

.wc-nav-links a.active::after,
.wc-nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.wc-header-cta {
    display: flex;
    align-items: center;
    gap: 12px
}

.wc-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: 0 0;
    border: 1px solid rgba(17, 17, 17, .15);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease
}

.wc-cart-btn::after {
    display: none !important
}

.wc-cart-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: scale(1.05)
}

.wc-cart-btn svg {
    display: block !important;
    width: 18px;
    height: 18px;
    stroke: currentColor
}

.cart-count-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #111 !important;
    color: #fff !important;
    font-family: Inter, sans-serif !important;
    font-size: .65rem !important;
    font-weight: 800 !important;
    padding: 0 4px !important;
    height: 18px !important;
    min-width: 18px !important;
    border-radius: 999px !important;
    line-height: 1 !important;
    text-align: center !important;
    border: 2px solid #eae8e4 !important;
    transition: background .2s ease, color .2s ease, border-color .2s ease
}

.wc-cart-btn:hover .cart-count-badge {
    background: #fff !important;
    color: #111 !important;
    border-color: #111 !important
}

.wc-hero-section {
    background-color: var(--bg-canvas, #eae8e4);
    padding: 20px 5vw 80px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden
}

.nightgfx-custom-player {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    user-select: none
}

.nightgfx-custom-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer
}

.ngfx-player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0, transparent 45%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    pointer-events: none
}

.nightgfx-custom-player.paused .ngfx-player-overlay,
.nightgfx-custom-player:hover .ngfx-player-overlay {
    opacity: 1
}

.ngfx-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 17, 17, .85);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 8px 18px;
    pointer-events: auto
}

.ngfx-btn {
    background: 0 0;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s ease, transform .2s ease
}

.ngfx-btn:hover {
    opacity: .75;
    transform: scale(1.1)
}

.ngfx-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, .2);
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.ngfx-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 99px;
    transition: width .1s linear
}

.ngfx-big-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(17, 17, 17, .85);
    border: 1.5px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease
}

.nightgfx-custom-player.paused .ngfx-big-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.wc-hero-title {
    font-family: Inter, sans-serif;
    font-size: 8.5rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: #111;
    text-align: center;
    margin-bottom: -110px;
    position: relative;
    z-index: 1;
    line-height: .9;
    text-transform: lowercase
}

.wc-hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr 220px;
    gap: 20px;
    align-items: flex-end;
    position: relative;
    z-index: 2
}

.wc-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px
}

.wc-hero-subtext {
    font-size: .78rem;
    line-height: 1.5;
    color: #444;
    max-width: 240px
}

.wc-explore-btn {
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: Inter, sans-serif;
    font-size: .85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none
}

.wc-hero-center {
    display: flex;
    justify-content: center
}

.wc-hero-center img {
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .15))
}

.wc-hero-right-card {
    border: 2px solid #111;
    border-radius: 20px;
    padding: 16px;
    background: #eae8e4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    transition: transform .2s ease
}

.wc-hero-right-card:hover {
    transform: translateY(-4px)
}

.wc-hero-right-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    background: #dfdeda
}

.wc-hero-right-card span {
    font-size: .82rem;
    font-weight: 700;
    text-transform: lowercase
}

.wc-ticker-banner {
    background: #000;
    color: #fff;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap
}

.wc-ticker-content {
    display: inline-flex;
    gap: 40px;
    font-family: Inter, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: lowercase;
    animation: wcTicker 20s linear infinite
}

@keyframes wcTicker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.wc-star {
    font-size: 1.4rem;
    vertical-align: middle
}

.wc-collection-section {
    background: #0b0b0b;
    color: #fff;
    padding: 100px 5vw
}

.wc-collection-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 60px;
    align-items: center
}

.wc-collection-hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    object-fit: cover
}

.wc-collection-right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.wc-collection-title {
    font-family: Inter, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: -.02em
}

.wc-collection-desc {
    font-size: .82rem;
    line-height: 1.6;
    color: #aaa;
    max-width: 520px
}

.wc-collection-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.wc-preview-card {
    background: #eae8e4;
    border-radius: 16px;
    padding: 16px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center
}

.wc-preview-card img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain
}

.wc-collection-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}

.wc-collection-footer-row p {
    font-size: .8rem;
    color: #888
}

.wc-view-more-btn {
    background: #fff;
    color: #111;
    padding: 10px 24px;
    border-radius: 999px;
    font-family: Inter, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.wc-case-studies {
    background: #eae8e4;
    padding: 100px 5vw
}

.wc-case-studies-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.wc-section-title-large {
    font-family: Inter, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px
}

.wc-case-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.wc-case-item {
    background: 0 0;
    border: 1px solid #d0d0cd;
    border-radius: 999px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: background .2s ease
}

.wc-case-item:hover {
    background: #fff
}

.wc-case-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem
}

.wc-case-img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 4/3;
    object-fit: cover
}

.wc-featured-section {
    background: #eae8e4;
    padding: 0 5vw 100px;
    max-width: 1400px;
    margin: 0 auto
}

.cool-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px
}

.carousel-nav-arrows {
    display: flex;
    align-items: center;
    gap: 12px
}

.carousel-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08)
}

.carousel-arrow-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px)
}

.featured-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 10px;
    padding-bottom: 16px
}

.featured-carousel-viewport::-webkit-scrollbar {
    display: none
}

.featured-carousel-track {
    display: flex;
    gap: 28px;
    width: max-content
}

.featured-carousel-track .sd-product-card {
    width: 380px;
    flex-shrink: 0
}

@media (max-width:768px) {
    .featured-carousel-track .sd-product-card {
        width: 280px
    }
}

.featured-view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 44px
}

.wc-view-all-btn {
    background: #111;
    color: #fff;
    padding: 16px 36px;
    border-radius: 0;
    font-family: Inter, sans-serif;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15)
}

.wc-view-all-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25)
}

.wc-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px
}

.wc-featured-card {
    border: 2px solid #111;
    border-radius: 20px;
    padding: 20px;
    background: #eae8e4;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: #111;
    transition: transform .2s ease
}

.wc-featured-card:hover {
    transform: translateY(-4px)
}

.wc-featured-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #dfdeda;
    padding: 20px
}

.wc-featured-card-title {
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width:1024px) {
    .wc-hero-title {
        font-size: 5rem;
        margin-bottom: -40px
    }

    .wc-hero-grid {
        grid-template-columns: 1fr
    }

    .wc-case-studies-inner,
    .wc-collection-inner {
        grid-template-columns: 1fr
    }

    .wc-featured-grid {
        grid-template-columns: 1fr
    }
}

.hero-vfx-showcase {
    position: relative;
    background: #111;
    color: #fff;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    overflow: hidden;
    margin-top: -80px
}

.hero-vfx-showcase .hero__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero-vfx-showcase .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, .35) 100%);
    z-index: 1;
    pointer-events: none
}

.hero-center-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    pointer-events: none;
    width: 90%;
    max-width: 640px
}

.hero-center-logo {
    width: 100%;
    max-width: 580px;
    height: 120px;
    display: block;
    background-color: #fff;
    -webkit-mask-image: url('https://cdn.websrc.ch/clients/nightgfx/img/nightgfx-shop.png');
    mask-image: url('https://cdn.websrc.ch/clients/nightgfx/img/nightgfx-shop.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center
}

.hero-cta-btn {
    pointer-events: auto;
    background: #eae8e4;
    color: #111;
    padding: 16px 44px;
    border-radius: 0;
    font-family: Inter, sans-serif;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform .25s ease, box-shadow .25s ease;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35)
}

.hero-cta-btn .cta-arrow {
    font-size: 1rem;
    transition: transform .25s ease
}

.hero-cta-btn:hover {
    background: #eae8e4;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.hero-cta-btn:hover .cta-arrow {
    transform: translate(3px, -3px)
}

.hero-vfx-showcase .hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Inter, sans-serif;
    font-size: clamp(64px, 13vw, 180px);
    font-weight: 700;
    letter-spacing: -.04em;
    color: #fff;
    text-transform: lowercase;
    z-index: 2;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .4)
}

.vfx-tracker {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 3px;
    pointer-events: none;
    transition: transform .15s ease-out
}

.vfx-coord {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .9);
    white-space: nowrap
}

.vfx-box {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, .85);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, .3)
}

.vfx-box.small {
    width: 16px;
    height: 16px
}

.vfx-box.tall {
    width: 26px;
    height: 48px
}

.vfx-box.wide {
    width: 86px;
    height: 38px
}

.vfx-cross {
    font-family: 'Roboto Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, .9);
    line-height: 1
}

.hero-vfx-showcase .hero__social {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10
}

.vfx-coord-header {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .9)
}

.hero-vfx-showcase .hero__social a {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hero-vfx-showcase .hero__social a:hover {
    opacity: .7
}

.social-checkbox {
    width: 11px;
    height: 11px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 1px;
    background: 0 0;
    display: inline-block
}

.hero-vfx-showcase .hero__job {
    position: absolute;
    bottom: 48px;
    right: 48px;
    text-align: right;
    z-index: 10
}

.hero-vfx-showcase .hero__job h2 {
    font-family: Inter, sans-serif;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.hero-digital-vault {
    background-color: var(--bg-canvas, #eae8e4);
    padding: 40px 5vw 80px;
    max-width: 1400px;
    margin: 0 auto
}

.vault-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #d0d0cd;
    border-radius: 999px;
    padding: 6px 16px;
    font-family: Inter, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #111;
    margin-bottom: 24px
}

.vault-status-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111
}

.vault-hero-title {
    font-family: Inter, sans-serif;
    font-size: 6.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    text-transform: uppercase;
    color: #111;
    line-height: .95;
    margin-bottom: 40px
}

.vault-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 300px;
    gap: 36px;
    align-items: center
}

.vault-hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.vault-tagline {
    font-size: .9rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500
}

.vault-btn-row {
    display: flex;
    align-items: center;
    gap: 14px
}

.vault-btn-primary {
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: Inter, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, background .2s ease
}

.vault-btn-primary:hover {
    background: #000;
    transform: translateY(-2px)
}

.vault-btn-secondary {
    background: #fff;
    color: #111;
    border: 1px solid #d0d0cd;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: Inter, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease
}

.vault-btn-secondary:hover {
    background: #e2e2df
}

.vault-perks-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.perk-pill {
    font-size: .68rem;
    font-weight: 700;
    color: #666;
    letter-spacing: .08em;
    background: rgba(0, 0, 0, .04);
    padding: 4px 10px;
    border-radius: 4px
}

.vault-center-card {
    background: #fff;
    border: 1px solid #d0d0cd;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
    text-decoration: none;
    color: #111;
    transition: transform .25s ease
}

.vault-center-card:hover {
    transform: translateY(-6px)
}

.vault-badge-neon {
    position: absolute;
    top: 36px;
    right: 36px;
    background: #111;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase
}

.vault-hero-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px
}

.vault-hero-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.vault-hero-card-title {
    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-weight: 800
}

.vault-hero-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111
}

.vault-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.stat-box {
    background: #fff;
    border: 1px solid #d0d0cd;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.stat-num {
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111
}

.stat-lbl {
    font-size: .75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: .05em;
    text-transform: uppercase
}

.cool-categories-section {
    background: #eae8e4;
    padding: 60px 5vw 80px;
    max-width: 1400px;
    margin: 0 auto
}

.cool-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px
}

.cool-section-title {
    font-family: Inter, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111
}

.cool-section-sub {
    font-size: .8rem;
    font-weight: 700;
    color: #777;
    letter-spacing: .08em
}

.category-editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.cat-edit-card {
    background: #fff;
    border: 1px solid #d0d0cd;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    text-decoration: none;
    color: #111;
    transition: transform .2s ease, border-color .2s ease
}

.cat-edit-card:hover {
    transform: translateY(-4px);
    border-color: #111
}

.cat-edit-num {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #888
}

.cat-edit-name {
    font-family: Inter, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 12px
}

.cat-edit-desc {
    font-size: .78rem;
    color: #666;
    margin-top: 6px
}

.cat-edit-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px
}

.cat-arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: background .2s ease
}

.cat-edit-card.featured-free .cat-arrow-circle {
    background: #111;
    color: #fff
}

.creator-perks-section {
    background: #0b0b0b;
    color: #fff;
    padding: 80px 5vw
}

.perks-grid {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.perk-card {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.perk-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #181818;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.perk-title {
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase
}

.perk-sub {
    font-size: .78rem;
    color: #888;
    line-height: 1.5
}

@media (max-width:1100px) {
    .vault-hero-title {
        font-size: 4.5rem
    }

    .vault-hero-grid {
        grid-template-columns: 1fr
    }

    .category-editorial-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

@media (max-width:640px) {
    .vault-hero-title {
        font-size: 3rem
    }

    .category-editorial-grid {
        grid-template-columns: 1fr
    }

    .perks-grid {
        grid-template-columns: 1fr
    }
}

.ngfx-hero-section {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 520px;
    background: #111;
    overflow: hidden
}

.ngfx-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ngfx-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, .7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 48px;
    z-index: 10
}

.ngfx-hero-title {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5)
}

.ngfx-cta-btn {
    display: inline-block;
    background: #eae8e4;
    color: #111;
    padding: 10px 24px;
    font-family: Inter, sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: transform .2s ease, background .2s ease;
    align-self: flex-start
}

.ngfx-cta-btn:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #111
}

.ngfx-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: #111
}

@media (max-width:768px) {
    .ngfx-split-grid {
        grid-template-columns: 1fr
    }
}

.ngfx-split-card {
    position: relative;
    height: 70vh;
    min-height: 440px;
    overflow: hidden;
    display: block;
    text-decoration: none
}

.ngfx-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, 1, .5, 1);
    display: block
}

.ngfx-split-card:hover .ngfx-card-img {
    transform: scale(1.04)
}

.ngfx-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 48px;
    z-index: 5
}

.ngfx-card-title {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #fff;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}
