@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #111315;
    --bg2: #1d1f21;
    --bg3: #272727;
    --text: #ffffff;
    --muted: #9e9e9e;
    --border: #2a2c2e;
    --accent: #10b3ef;
    --badge: #ef1010;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #3c3e40 var(--bg2);
    scrollbar-width: thin;
}

/* ── GLOBAL SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: #3c3e40; border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: #52555a; }
::-webkit-scrollbar-corner { background: var(--bg2); }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Geist', 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer
}

img {
    display: block;
    max-width: 100%
}


.nav {
    position: sticky;
    top: 0;
    z-index: 300;
    background: var(--bg);
    display: flex;
    align-items: center;
    padding: 12px;
    transition: box-shadow .3s;
}

.nav.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .7)
}

.nav-inner {
    width: 100%;
    background: var(--bg2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 60px;
    border-radius: 10px;
}

.nav-logo {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
    user-select: none;
    min-width: 110px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
}

.nav-links li {
    display: flex;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
}


.nav-links .text {
    display: block;
    height: 1.2em;
    overflow: hidden;
    position: relative;
}


.nav-links .text span {
    display: block;
    transition: transform 0.3s ease;
}


.nav-links .text span:last-child {
    transform: translateY(-200%);
    border-bottom: 1px solid var(--text);
}


.nav-links a:hover .text span:first-child {
    transform: translateY(100%);
    
}

.nav-links a:hover .text span:last-child {
    transform: translateY(-103%);
    
}


.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--text);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 110px;
    justify-content: flex-end
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: opacity .2s;
    position: relative;
}

.nav-btn:hover {
    background: #fff;
    color: var(--bg);
    border-radius: 50%;
    opacity: 1;
}

.nav-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--badge);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}


.nav-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
    z-index: 290;
    overflow: hidden;
    padding: 0 12px 12px;
}

.mega-content {
    display: flex;
    padding: 24px;
    background: var(--bg2);
    border-radius: 12px;
    width: 100%;
}

.nav-mega.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mega-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    margin: 20px 0;
}

.mega-item {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.18;
    transition: opacity .18s ease, transform .2s ease;
    display: block;
    position: relative;
    display: flex;
    overflow: hidden;
    text-decoration: none;
}


.mega-item .mega-item-text {
    display: block;
    height: 1.2em;
    overflow: hidden;
}


.mega-item .mega-item-text span {
    display: block;
    transition: transform 0.3s ease;
}


.mega-item .mega-item-text span:last-child {
    transform: translateY(-200%);
}


.mega-item:hover .mega-item-text span:first-child {
    transform: translateY(100%);
    
}

.mega-item:hover .mega-item-text span:last-child {
    transform: translateY(-100%);
    
    border-bottom: 1px solid var(--text);
}


.mega-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.3s ease;
}

.mega-item:hover::after {
    width: 100%;
}

/* .mega-items:hover .mega-item {
    opacity: .28;
}

.mega-items:hover .mega-item:hover {
    opacity: 1;
    transform: translateX(10px);
} */

.mega-banner {
    width: 540px;
    flex-shrink: 0;
    display: flex;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.mega-fest-year {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
}

.mega-fest-name {
    font-size: 80px;
    font-weight: 900;
    line-height: .88;
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: -.01em;
}


.hero {
    overflow: hidden;
    position: relative;
    background: #0a0c0e;
    height: 640px;
    margin: 12px 36px 40px;
}

.hero-track {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.06);
    transition: transform 12s ease-out, filter .8s;
    filter: brightness(.68);
}

.hero-slide.active img {
    transform: scale(1.0);
    filter: brightness(.72)
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .5) 100%);
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    font-size: 50px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    text-shadow: 0 4px 48px rgba(0, 0, 0, .6);
    transition: opacity .7s ease .15s, transform .7s cubic-bezier(.16, 1, .3, 1) .15s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translate(-50%, -50%)
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, .35);
    transition: width .35s cubic-bezier(.4, 0, .2, 1), background .35s;
    cursor: pointer;
}

.hero-dot.active {
    width: 28px;
    background: #fff
}

.section {
    padding: 40px 36px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
    gap: 20px;
    background: var(--bg);
}

.artist-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg2);
    aspect-ratio: 353/442;
    border-radius: 12px;
    transition: transform .35s ease;
}

.artist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #06C3FD 0%, #151515 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.82);
    transition: transform .6s cubic-bezier(.25, .46, .45, .94), filter .5s;
}

.artist-card:hover img {
    transform: scale(1.13) rotate(-4deg);
    filter: brightness(1.0);
}

.artist-card.artist-card--tilt-left:hover img {
    transform: scale(1.13) rotate(-4deg);
}

.artist-card.artist-card--tilt-right:hover img {
    transform: scale(1.13) rotate(4deg);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, .4) 0%, transparent 19%);
}

.artist-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.25;
    z-index: 3;
    text-align: center;
}


.see-all-wrap {
    margin-top: 40px;
}

.btn-see-all {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 2px;
    transition: border-color .25s, background .25s, color .25s;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.btn-see-all:hover {
    border-color: var(--accent);
    color: var(--bg2);
    background: var(--accent);
}


.lang-wrap {
    position: relative;
}

.lang-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 6px;
}

.lang-wrap:hover .lang-btn {
    background: #fff;
    color: var(--bg);
    border-radius: 50%;
    opacity: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg3);
    border-radius: 12px;
    overflow: hidden;
    min-width: 162px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
}

.lang-wrap:hover .lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .18s, background .18s;
    cursor: pointer;
}

.lang-item:last-child {
    border-bottom: none;
}

.lang-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.lang-item--active {
    color: #fff;
}

.lang-flag {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    background: var(--bg);
}

.product-card {
    cursor: pointer;
    overflow: hidden;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1), box-shadow .38s;
}

.product-card-media {
    position: relative;
    aspect-ratio: 447/560;
    background: var(--bg2);
    overflow: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.product-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    transition: opacity .35s ease-out;
}

.product-card-media .front {
    opacity: 1;
    z-index: 2;
}

.product-card-media .back {
    opacity: 0;
    z-index: 1;
}

.product-card:hover .product-card-media .front {
    opacity: 0;
}

.product-card:hover .product-card-media .back {
    opacity: 1;
}

.product-card-info {
    padding: 12px 0 18px;
}

.product-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--text)
}


footer {
    margin-top: 70px;
    background: var(--bg);
    padding: 12px;
}

.footer-inner {
    background: var(--bg2);
    border-radius: 6px;
    padding: 36px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 530px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-list a,
.footer-list span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text);
    transition: color .2s;
}

.footer-list a:hover {
    color: var(--muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
}

.pay-icons {
    display: flex;
    align-items: center;
    gap: 10px
}


.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 640px;
    max-width: 100vw;
    background: var(--bg2);
    z-index: 401;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.cart-panel.open { transform: none; }

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 84px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
}
.cart-head-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.cart-close-btn {
    background: none;
    border: none;
    color: var(--text);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: .7;
    transition: opacity .2s;
}
.cart-close-btn:hover { opacity: 1; }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    scrollbar-color: #3c3e40 var(--bg2);
    scrollbar-width: thin;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: var(--bg2); }
.cart-body::-webkit-scrollbar-thumb { background: #3c3e40; border-radius: 100px; }
.cart-body::-webkit-scrollbar-thumb:hover { background: #52555a; }
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-item {
    background: var(--bg3);
    border-radius: 12px;
    padding: 12px 24px 12px 12px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.cart-item-img {
    width: 102px;
    height: 128px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg2);
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}
.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-item-size {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
}
.cart-item-meta-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
    justify-content: space-between;
}
.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 4px;
}
.qty-btn {
    background: var(--bg2);
    border: none;
    color: var(--text);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: .2s all;
    flex-shrink: 0;
}
.qty-btn:hover {background: var(--accent);color: var(--bg);}
.qty-val {
    font-size: 16px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}
.cart-remove {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    background: none;
    border: none;
    padding: 0;
    transition: color .2s;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cart-remove:hover {text-decoration: none;}

.cart-suggestions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-suggestions-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}
.cart-sugg-item {
    background: var(--bg3);
    border-radius: 12px;
    padding: 12px 24px 12px 12px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.cart-sugg-img {
    width: 102px;
    height: 128px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg2);
    flex-shrink: 0;
}
.cart-sugg-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-sugg-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cart-sugg-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}
.cart-sugg-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.cart-sugg-add {
    background: var(--text);
    border: none;
    color: var(--bg2);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 100px;
    align-self: center;
    flex-shrink: 0;
    transition: .2s all;
}
.cart-sugg-add:hover {background: var(--accent);}

.cart-foot {
    padding: 30px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-subtotal-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.cart-subtotal-val {
    font-size: 18px;
    font-weight: 600;
}
.btn-checkout {
    display: block;
    width: 100%;
    padding: 17px;
    background: var(--accent);
    border: none;
    color: var(--bg2);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    transition: .2s all;
    text-transform: uppercase;
}
.btn-checkout:hover {background: #10EFD5;}

.btn-checkout:active {
    transform: none
}


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s, transform .6s
}

.reveal.visible {
    opacity: 1;
    transform: none
}


.nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    padding: 0
}

.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all
}

.mob-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 501;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1)
}

.mob-menu.open {
    transform: none
}

.mob-menu-head {
    display: flex;
    align-items: center;
    margin: 6px;
    height: 44px;
    flex-shrink: 0;
    gap: 2px;
    justify-content: space-between;
    background-color: var(--border);
    border-radius: 10px;
    background: var(--bg2);
    padding: 0 10px;
}

.mob-close {
    background: none;
    border: none;
    color: var(--text);
    width: 38px;
    height: 38px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: .7;
    cursor: pointer
}

.mob-close:hover {
    opacity: 1
}

.mob-menu-logo {
    flex: 1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center
}

.mob-head-actions {
    display: flex;
    align-items: center;
    gap: 0
}

.mob-banner {
    margin: 0 16px 4px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #c93bb0 0%, #e8318a 55%, #d040c8 100%);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mob-banner-inner {
    text-align: center;
    line-height: 1
}

.mob-fest-year {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 4px
}

.mob-fest-name {
    display: block;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: .04em;
    color: #fff;
    text-transform: uppercase;
    line-height: .88
}


.mob-content-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
}

.mob-main-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(0);
    transition: transform .34s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
    overflow-y: auto;
}

.mob-content-wrap.in-sub .mob-main-panel {
    transform: translateX(-40%);
    opacity: 0;
    pointer-events: none;
}

.mob-sub-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.mob-content-wrap.in-sub .mob-sub-panel {
    transform: translateX(0);
}

.mob-sub-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 24px;
    border: none;
    background: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: color .18s;
}

.mob-sub-back:hover {
    color: var(--text);
}

.mob-sub-links {
    flex: 1;
}

.mob-sub-link {
    display: block;
    padding: 20px 28px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--text);
    transition: opacity .18s;
}

.mob-sub-link:hover {
    opacity: .55;
}

.mob-nav-links {
    flex: 1;
    padding: 4px 0
}

.mob-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
    background: none;
    transition: opacity .2s;
    cursor: pointer;
    border: none;
}

.mob-nav-link span {}

.mob-nav-link:hover {
    opacity: .6
}

.mob-social {
    display: flex;
    gap: 28px;
    padding: 24px 28px;
    flex-shrink: 0;
    justify-content: center;
}

.mob-social a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
    transition: color .2s
}

.mob-social a:hover {
    color: #fff
}

.mega-banner-img {
    max-width: 100%;
}


.cat-section {
    padding-top: 80px;
}

.cat-header {}

.cat-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 40px;
}

.cat-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.cat-bar-left {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.cat-pills-scroll {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.cat-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cat-count {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}


.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: none;
    color: var(--muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: color .18s, background .18s, border-color .18s;
    background-color: var(--bg2);
    height: 36px;
}

.filter-pill:hover {
    color: var(--text);
}


.filter-cat:hover {
    background-color: var(--accent);
}

.filter-pill.active {
    color: var(--text);
}


.filter-pill--outlined {
    border-color: var(--border);
    color: var(--text);
    min-width: 148px;
    justify-content: space-between;
    padding: 0 20px;
}

.filter-pill--outlined:hover {
    border-color: var(--accent);
}

.filter-pill--outlined.filter-pill--selected:hover {
    color: var(--bg);
}


.filter-cat {
    border: none;
    background: none;
    position: relative;
    background-color: var(--bg2);
    border: 1px solid var(--bg3);
    padding: 0 20px;
    height: 36px;
}

.filter-cat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transition: transform .2s ease;
}

.filter-cat.active {
    color: var(--text);
    background-color: var(--accent);
}

.filter-cat.active::after {}


.filter-drop-wrap {
    position: relative;
}

.filter-drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 160px;
    background: var(--bg3);
    border-radius: 10px;
    overflow: hidden;
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .22s cubic-bezier(.16, 1, .3, 1);
}

.filter-drop-wrap.is-open .filter-drop {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.filter-drop-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    transition: color .15s, background .15s;
}

.filter-drop-item:last-child {
    border-bottom: none;
}

.filter-drop-item:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .05);
}

.filter-drop-item.active {
    color: var(--text);
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: transform .2s;
    flex-shrink: 0;
}

.filter-drop-wrap.is-open .chevron-icon {
    transform: rotate(180deg);
}

.filter-pill--selected {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card.hidden {
    display: none;
}

.product-card.visible-anim {
    animation: fadeIn .25s ease both;
}


.oc-section {
    min-height: calc(100vh - 84px);
    padding: 80px 36px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.oc-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.oc-search-wrap {
    width: 100%;
    max-width: 914px;
}

.oc-search-bar {
    display: flex;
    align-items: center;
    background: rgba(29, 31, 33, 1);
    border-radius: 100px;
    padding: 18px 20px 18px 28px;
    gap: 12px;
    transition: border-color .25s;
}

.oc-search-bar:focus-within {
    border-color: rgba(255, 255, 255, .25);
}

.oc-search-icon {
    color: var(--muted);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.oc-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    min-width: 0;
}

.oc-search-input::placeholder {
    color: var(--muted);
}

.oc-search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--accent);
    border: none;
    border-radius: 100px;
    color: rgba(29, 31, 33, 1);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: .2s all;
    height: 44px;
    text-transform: uppercase;
}

.oc-search-btn svg path {
    fill: rgba(29, 31, 33, 1);
}

.oc-search-btn:hover {
    background: var(--text);
}

.oc-search-btn:active {
    transform: scale(.97);
}


.oc-card {
    width: 100%;
    max-width: 914px;
    background: rgba(29, 31, 33, 1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
    margin-top: 30px;
}

.oc-card.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.oc-card-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}

.oc-products {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.oc-product-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    max-width: 192px;
    width: 100%;
}

.oc-product-img {
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 19, 21, 1);
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.oc-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.oc-product-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.oc-product-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.2;
}

.oc-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

.oc-product-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.oc-info-table {
    border-top: 1px solid rgba(52, 54, 56, 1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.oc-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    gap: 16px;
}

.oc-info-label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
}

.oc-info-value {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}

.oc-status-badge {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}

.btn-track {
    display: block;
    width: 100%;
    padding: 13px 26px;
    background: var(--text);
    border: none;
    border-radius: 100px;
    color: rgba(29, 31, 33, 1);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
}

.btn-track:hover {
    background: var(--accent);
}

.btn-track:active {
    transform: translateY(0);
}


.breadcrumb-bar {
    padding: 16px 36px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.breadcrumb-bar a {
    transition: color .2s;
}

.breadcrumb-bar a:hover {
    color: var(--text);
}

.breadcrumb-sep {
    opacity: .35;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    padding: 14px 36px 0;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 660px;
}

.gallery-track {
    display: flex;
    gap: 12px;
    height: 100%;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.gallery-slide {
    min-width: calc(40% - 6px);
    height: 100%;
    background: var(--bg2);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    border: none;
    color: var(--bg);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background .2s, color .2s, transform .2s;
    z-index: 10;
    cursor: pointer;
}

.gallery-arrow:hover {
    background: var(--accent);
    color: var(--text);
}

.gallery-arrow.prev {
    left: 16px;
}

.gallery-arrow.next {
    right: 16px;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumb.active {
    border-color: var(--accent);
}

.product-details {
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.artist-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
    align-self: flex-start;
    text-decoration: none;
    width: 100%;
    height: 60px;
    position: relative;
}

.artist-badge:hover {
    background: var(--text);
    border-color: var(--text);
}

.artist-badge-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--border);
    flex-shrink: 0;
}

.artist-badge-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.artist-badge-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: .2s all;
}

.artist-badge:hover .artist-badge-name {
    color: var(--bg);
}

.product-title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 8px;
}

.product-price-lg {
    font-size: 24px;
    font-weight: 500;
}

.product-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.size-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.size-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    background: var(--bg);
    border: 1px solid #343638;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    height: 40px;
    border-radius: 40px;
    transition: border-color .2s, background .2s, transform .15s;
    min-width: 98px;
}

.size-btn:hover:not(.unavailable) {
    border-color: var(--accent);
}

.size-btn.active {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}

.size-btn.unavailable {
    cursor: not-allowed;
    background-color: var(--bg2);
    border-color: var(--bg2);
    color: var(--muted);
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 100px;
    gap: 10px;
    transition: 500ms all;
    height: 55px;
}

.btn-add-cart:hover {
    background-color: #10EFD5;
    color: var(--bg);
}

.btn-add-cart:active {
    transform: translateY(0);
    box-shadow: none;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    transition: opacity .2s;
    height: 64px;
}

.accordion-btn:hover {
    opacity: .65;
}

.accordion-arrow {
    transition: transform .3s;
    opacity: .6;
    flex-shrink: 0;
}

.accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
}

.accordion-item.open .accordion-body {
    max-height: 400px;
}

.accordion-body-inner {
    padding: 0 0 16px;
}

.accordion-body-inner p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
}

.related-section {
    padding: 52px 36px 0;
}

.artist-badge-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    transition: .2s all;
}

.artist-badge:hover .artist-badge-arrow {
    background: var(--bg);
}

.accordion-btn-icon {
    color: var(--text);
    font-size: 20px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    font-weight: 300;
    transition: .2s all;
}

.accordion-item.open .accordion-btn-icon {
    rotate: 45deg;
}

.pp-section {
    padding: 80px 36px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pp-inner {
    width: 100%;
    max-width: 914px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pp-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pp-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--text);
}

.pp-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pp-heading {
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}

.pp-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
}

.pp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.pp-list-item {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pp-list-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}

.pp-ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.pp-ol-item {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pp-ol-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    min-width: 20px;
}



.nav-inner { position: relative; }

.nav-search-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(.82);
    width: 680px;
    max-width: calc(100% - 280px);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity .35s cubic-bezier(.4,0,.2,1),
                transform .35s cubic-bezier(.4,0,.2,1);
}
.nav.search-open .nav-search-bar {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scaleX(1);
}
.nav.search-open .nav-links {
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
}
.nav-search-inner {
    display: flex;
    align-items: center;
    height: 48px;
    background: rgba(39,39,39,1);
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 0 10px 0 20px;
    gap: 12px;
    transition: border-color .25s;
}
.nav-search-inner:focus-within {
    border-color: var(--accent);
}
.nav-search-icon {
    color: var(--muted);
    flex-shrink: 0;
    display: flex;
}
.nav-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    min-width: 0;
}
.nav-search-input::placeholder { color: var(--muted); }
.nav-search-x {
    background: none;
    border: none;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background .2s, color .2s;
    cursor: pointer;
}
.nav-search-x:hover { background: rgba(255,255,255,.1); color: var(--text); }

.co-mob-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 60px;
    background: var(--bg);
}

.co-mob-summary {
    display: none;
    flex-direction: column;
    background: var(--bg2);
}

.co-mob-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    height: 60px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.co-mob-arrow {
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.co-mob-arrow.open {
    transform: rotate(180deg);
}

.co-mob-body {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.co-mob-body.open {
    display: flex;
}

.co-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.co-left {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 40px 60px 40px 20px;
}

.co-right {
    background: var(--bg2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 20px 100px 60px;
}

.co-inner {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 30px;
    left: 0;
}

.co-mini-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    margin-bottom: 60px;
}

.co-logo {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
}

.co-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg2);
    border: none;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.co-form-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.co-section-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
}

.co-fields {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.co-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.co-input {
    width: 100%;
    height: 58px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 20px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .2s;
}

.co-input::placeholder {
    color: var(--muted);
}

.co-input:focus {
    border-color: rgba(100, 100, 100, 1);
}

select.co-input {
    color: var(--muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239e9e9e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 44px;
    cursor: pointer;
}

select.co-input.has-value {
    color: var(--text);
}

select.co-input option {
    color: var(--text);
    background: var(--bg2);
}

.co-pay-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.co-pay-opt {
    background: var(--bg2);
}

.co-pay-opt+.co-pay-opt {
    border-top: 1px solid var(--border);
}

.co-pay-opt--on {
    background: var(--bg3);
}

.co-pay-opt-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
}

.co-pay-opt-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-pay-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg2);
    border: 2px solid rgba(75, 77, 79, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .2s;
}

.co-pay-radio--on {
    border-color: var(--accent);
}

.co-pay-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    display: none;
}

.co-pay-radio--on::after {
    display: block;
}

.co-pay-label {
    font-size: 16px;
    font-weight: 400;
    color: rgba(246, 246, 246, 1);
}

.co-pay-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.co-card-fields {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-card-fields .co-input {
    background: var(--bg2);
}

.co-btn-pay {
    width: 100%;
    height: 55px;
    background: var(--accent);
    border: none;
    border-radius: 100px;
    color: var(--bg2);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    transition: opacity .2s, transform .15s;
}

.co-btn-pay:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.co-btn-pay:active {
    transform: translateY(0);
}

.co-btn-pay:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.co-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.co-alert--warning {
    background: rgba(250, 204, 21, .1);
    border: 1px solid rgba(250, 204, 21, .25);
    color: #fbbf24;
}

.co-alert--error {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #f87171;
}

.co-alert svg {
    flex-shrink: 0;
}

.co-spinner {
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(255, 255, 255, .25);
    border-top-color: var(--bg2, #0d0f11);
    border-radius: 50%;
    animation: co-spin .65s linear infinite;
}

@keyframes co-spin {
    to { transform: rotate(360deg); }
}

.co-pay-info {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.co-pay-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.co-pay-note {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.co-pay-desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 10px;
}

.co-pay-stripe-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
}

.co-pay-stripe-note svg {
    flex-shrink: 0;
    opacity: .6;
}

.co-success-wrap {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.co-success-icon {
    margin-bottom: 24px;
}

.co-success-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--text);
    margin-bottom: 12px;
}

.co-success-subtitle {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}

.co-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.co-cart-item {
    display: flex;
    gap: 16px;
    background: var(--bg3);
    border-radius: 12px;
    padding: 12px;
}

.co-cart-img {
    width: 102px;
    aspect-ratio: 4 / 5;
    background: var(--bg2);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.co-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.co-cart-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 2px 0;
}

.co-cart-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px;
}

.co-cart-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-cart-size {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
}

.co-cart-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.co-cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.co-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg2);
    border: none;
    color: var(--text);
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-qty-num {
    font-size: 16px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.co-remove-btn {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    background: none;
    border: none;
    padding: 0;
    transition: color .2s;
}

.co-remove-btn:hover {
    color: var(--text);
}

.co-totals {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.co-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.co-total-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
}

.co-total-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
}

.co-grand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 14px;
}

.co-grand-label,
.co-grand-val {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
}

@media(min-width: 1500px) {
    .artists-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 1200px) {
    .cat-bar {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .cat-bar-left {
        flex-wrap: nowrap;
        overflow: visible;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
    }

    .cat-pills-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-right: 16px;
    }

    .cat-pills-scroll::-webkit-scrollbar {
        display: none;
    }

    .filter-pill--outlined {
        min-width: 150px;
        flex-shrink: 0;
    }

    .cat-bar-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
    }
}

@media(max-width: 1024px) {
    .gallery-main {
        height: 400px;
    }

    .product-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .co-left {
        padding-right: 20px;
    }

    .co-right {
        padding-left: 20px;
    }
}


@media(max-width:768px) {
    .nav {
        padding: 6px;
    }

    .nav-inner {
        padding: 0 10px;
        height: 44px;
        border-radius: 8px;
    }

    .nav-burger {
        display: flex
    }

    .nav-links {
        display: none
    }

    .nav-logo {
        min-width: auto;
        font-size: 11px
    }

    .nav-btn {
        width: 34px;
        height: 34px
    }

    .nav-badge {
        width: 14px;
        height: 14px;
        font-size: 7px;
        top: 3px;
        right: 3px
    }

    .hero {
        height: 480px;
        margin: 12px 16px 30px;
        border-radius: 12px;
    }

    .hero-title {
        font-size: 46px;
        white-space: normal;
        padding: 0 20px;
        width: 100%;
    }

    .section {
        padding: 30px 16px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .artists-grid {
        grid-template-columns: repeat(10, 58vw);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 2px;
    }

    .artists-grid::-webkit-scrollbar {
        display: none
    }

    .artist-card {
        scroll-snap-align: start;
        min-height: 400px;
        aspect-ratio: initial;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-info {
        padding: 16px 0 16px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 15px;
    }

    .see-all-wrap {
        margin-top: 30px;
    }

    footer {
        margin-top: 48px;
        padding: 0 12px 20px
    }

    .footer-inner {
        padding: 32px 20px 20px;
        border-radius: 4px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }

    .footer-col-title {
        font-size: 12px;
        margin-bottom: 14px
    }

    .footer-list a,
    .footer-list span {
        font-size: 12px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .cart-panel {
        width: 100%;
        max-width: 100vw;
        border-radius: 0;
    }
    .cart-head {
        height: 52px;
        padding: 0 16px;
    }
    .cart-head-title { font-size: 15px; }
    .cart-body { padding: 16px; gap: 30px; }
    .cart-item { padding: 12px 20px 12px 12px; gap: 16px; }
    .cart-item-img { width: 80px; height: 100px; border-radius: 10px; }
    .cart-item-name { font-size: 13px; }
    .cart-item-size,
    .cart-item-meta-price { font-size: 12px; }
    .qty-btn { width: 24px; height: 24px; font-size: 13px; }
    .qty-val { font-size: 14px; min-width: 32px; }
    .cart-remove { font-size: 10px; }
    .cart-suggestions { gap: 16px; }
    .cart-suggestions-title { font-size: 15px; }
    .cart-sugg-item { padding: 12px 20px 12px 12px; gap: 16px; }
    .cart-sugg-img { width: 80px; height: 100px; border-radius: 10px; }
    .cart-sugg-name { font-size: 13px; }
    .cart-sugg-price { font-size: 12px; }
    .cart-sugg-add { font-size: 13px; padding: 8px 16px; }
    .cart-foot { padding: 16px; gap: 16px; }
    .cart-subtotal-label,
    .cart-subtotal-val { font-size: 15px; }

    .hero-dots {
        bottom: 20px;
    }

    .hero-slide,
    .hero-grad {
        border-radius: 12px;
        overflow: hidden;
    }

    .artist-name {
        font-size: 24px;
    }

    .nav__left {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .cat-header {
        padding-top: 24px;
    }

    .cat-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .filter-drop-wrap#sortWrap .filter-drop {
        min-width: 180px;
    }

    
    .breadcrumb-bar {
        padding: 12px 16px 0;
    }

    .product-layout {
        grid-template-columns: 1fr;
        padding: 8px 16px;
    }

    .gallery-main {
        height: 436px;
        border-radius: 0;
    }

    .gallery-slide {
        min-width: calc(45% - 6px);
        border-radius: 8px;
        padding: 0 24px;
    }

    .gallery-thumbs {
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }

    .gallery-thumbs::-webkit-scrollbar {
        display: none;
    }

    .gallery-thumb {
        width: 64px;
        height: 64px;
        border-radius: 6px;
    }

    .product-details {
        padding: 30px 0 0;
        gap: 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-price-lg {
        font-size: 18px;
    }

    .related-section {
        padding: 36px 16px 0;
    }

    /* .related-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    } */

    .gallery-slide {
        min-width: 100%;
        padding: 0;
    }

    .oc-section {
        padding: 60px 16px 60px;
        gap: 20px;
    }

    .oc-title {
        font-size: 26px;
    }

    .oc-search-bar {
        padding: 14px 14px 14px 22px;
        gap: 8px;
        height: 60px;
    }

    .oc-search-btn span {
        display: none;
    }

    .oc-search-btn {
        padding: 8px 15px;
        height: 32px;
    }

    .oc-card {
        padding: 20px;
        gap: 16px;
    }

    .oc-card-label {
        font-size: 14px;
    }

    .oc-product-name {
        font-size: 13px;
    }

    .oc-product-meta,
    .oc-product-price {
        font-size: 12px;
    }

    .oc-info-label,
    .oc-info-value,
    .oc-status-badge {
        font-size: 13px;
    }

    
    .oc-products {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        margin: 0 0px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .oc-products::-webkit-scrollbar {
        display: none;
    }

    .oc-product-item {
        flex: 0 0 176px;
        min-width: 176px;
        max-width: 176px;
        scroll-snap-align: start;
    }

    
    .pp-section {
        padding: 60px 16px 60px;
    }

    .pp-title {
        font-size: 26px;
    }

    .pp-heading {
        font-size: 20px;
    }

    
    
    .nav-search-bar {
        width: calc(100% - 20px);
        max-width: none;
        transform: translate(-50%, -50%) scaleX(.9);
    }
    .nav.search-open .nav-search-bar {
        transform: translate(-50%, -50%) scaleX(1);
    }
    .nav-search-inner { height: 36px; padding: 0 8px 0 14px; gap: 8px; }
    .nav-search-input { font-size: 14px; }
    .nav.search-open .nav__left,
    .nav.search-open .nav-actions {
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s;
    }

    .co-mob-nav {
        display: flex;
    }

    .co-mob-summary {
        display: flex;
        margin-top: 40px;
    }

    .co-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .co-right {
        display: none;
    }

    .co-left {
        padding: 40px 16px 30px;
        align-items: center;
    }

    .co-mini-nav {
        display: none;
    }

    .co-section-label {
        font-size: 15px;
    }

    .co-input {
        height: 48px;
        font-size: 14px;
        padding: 0 16px;
    }

    select.co-input {
        background-position: right 16px center;
        padding-right: 36px;
    }

    .co-pay-label {
        font-size: 14px;
    }

    .co-pay-opt-head {
        padding: 16px;
    }

    .co-card-fields {
        padding: 0 16px 16px;
    }

    .co-btn-pay {
        font-size: 15px;
    }

    .co-cart-img {
        width: 80px;
    }

    .co-cart-name {
        font-size: 13px;
    }

    .co-cart-size,
    .co-cart-price {
        font-size: 12px;
    }

    .co-qty-btn {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .co-qty-num {
        font-size: 14px;
    }

    .co-remove-btn {
        font-size: 10px;
    }

    .co-total-label,
    .co-total-val {
        font-size: 13px;
    }

    .co-grand-label,
    .co-grand-val {
        font-size: 15px;
    }
}
/* Variant Selection Extensions */
.variant-section {
    margin-top: 24px;
}

.variant-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.color-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px var(--bg);
}

.color-btn:hover:not(.unavailable) {
    transform: scale(1.1);
    border-color: var(--accent);
}

.color-btn.active {
    transform: scale(1.1);
    border-color: var(--text);
    box-shadow: inset 0 0 0 2px var(--bg), 0 0 0 2px var(--text);
}

.color-btn.unavailable {
    cursor: not-allowed;
    opacity: 0.4;
}

.color-btn.unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
}

/* ── PROMO CODE STYLES ── */
.co-promo-wrap {
    margin: 20px 0;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.co-promo-input-group {
    display: flex;
    gap: 10px;
}

.co-promo-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.25s ease;
}

.co-promo-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.co-promo-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.co-promo-btn {
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.co-promo-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.co-promo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.co-promo-message {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.co-promo-message--error {
    color: #ff5252;
}

.co-promo-message--success {
    color: #4caf50;
}

.co-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 6px 14px;
    margin-top: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: coFadeIn 0.3s ease;
}

.co-promo-tag-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease;
}

.co-promo-tag-remove:hover {
    color: #ff5252;
}

@keyframes coFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

