:root {
    --bg: #121212;
    --muted: #1b1b1b;
    --text: #e9e9e9;
    --accent: #7b3cff;
    --accent-2: #1ea7ff;
    --card: #171717;
    --accent-green: #2bf19a;
}


.site-header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.logo .site-logo,
.site-logo {
    height: 140px !important;
    max-height: 140px !important;
}

.site-header .logo {

    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-right: auto;
}

.main-nav .nav-link {
    font-size: 18px !important;
    padding: 10px 14px !important;
    border-radius: 12px;
    text-decoration: none;
    color: #e9e9e9;
    font-weight: 700;
}

.checkout-steps {
    position: relative;
    padding: 18px 0 8px;
    margin-bottom: 12px;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-50%);
    border-radius: 4px;
}

.checkout-steps .step {
    display: inline-block;
    width: calc(33.333% - 12px);
    text-align: center;
    position: relative;
    z-index: 2
}

.checkout-steps .circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 800;
    border: 2px solid rgba(0, 0, 0, 0.35)
}

.checkout-steps .step.active .circle {
    background: #ffd400;
    color: #111;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45)
}

.checkout-steps .step.completed .circle {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.checkout-steps .label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #dcdcdc;
    font-weight: 700
}

.panel {
    margin-top: 12px;
    background: linear-gradient(180deg, #3b0f60, #2b0e5a);
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(155, 89, 255, 0.14)
}

.final-box {
    margin-top: 6px;
    background: linear-gradient(180deg, #58105a, #310e2f);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: #e6f7ea
}

.final-box h1 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #dfffcf
}

.label-left {
    color: #d9f2d7;
    font-weight: 700
}

.value-right {
    color: #e9f7e6
}

.final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02)
}

.final-row.no-border {
    border-bottom: none
}

.items .item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.03)
}

.total-value {
    font-weight: 800;
    color: #fff
}

.btn-confirm {
    background: linear-gradient(90deg, #8a4bff, #ff74d0);
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer
}

.btn-done {
    background: linear-gradient(90deg, #7ef2a6, #5ee0c0);
    color: #06231a;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer
}

.note {
    margin-top: 12px;
    color: #e6dffb
}

.empty {
    text-align: center;
    padding: 30px 0;
    color: #ffb3d6
}

/* Items scrollbar */
.items {
    margin-top: 10px;
    max-height: 300px;
    overflow: auto;
    padding-right: 6px
}

.items {
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 75, 255, 0.9) rgba(255, 255, 255, 0.02)
}

.items::-webkit-scrollbar {
    width: 10px
}

.items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px
}

.items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a4bff, #ff74d0);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.08)
}


.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.overlay.show {
    display: flex
}

.overlay .modal {
    background: linear-gradient(180deg, #0b3a29, #08321b);
    color: #e6ffea;
    padding: 28px 30px;
    border-radius: 12px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    max-width: 520px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .28s ease, transform .28s ease
}

.overlay.show .modal {
    opacity: 1;
    transform: translateY(0)
}

.overlay .modal h3 {
    margin: 0 0 8px;
    font-size: 20px
}

.overlay .modal p {
    margin: 0;
    color: rgba(230, 255, 234, 0.85)
}




* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased
}

.empty-hero p {
    color: var(--muted);
    margin: 0 0 10px;
}

.empty-hero .cta {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 28px;
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.empty-hero .cta:hover {
    background: rgba(123, 60, 255, 0.06);
}

.shop-page .small-hero {
    height: 40vh;
    min-height: 300px
}

.shop-page .small-hero .hero-content {
    padding-left: 18px;
    padding-right: 18px
}

.lang-switcher {
    position: absolute;
    right: 120px;
    top: 25px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.lang-btn {
    background: transparent;
    color: #e9e9e9;
    border: 0;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    min-width: 36px;
    text-align: center;
}

.lang-btn.active {
    background: linear-gradient(90deg, #8a4bff, #ff74d0);
    color: #fff;
    box-shadow: 0 6px 18px rgba(138, 75, 255, 0.18);
}

.lang-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff
}


@media (max-width:520px) {
    .lang-btn {
        padding: 4px 6px;
        font-size: 11px
    }
}


@media (max-width:1200px) {

    .logo .site-logo,
    .site-logo {
        height: 120px !important;
        max-height: 120px !important;
    }
}

@media (max-width:880px) {

    .logo .site-logo,
    .site-logo {
        height: 110px !important;
        max-height: 110px !important;
    }
}

@media (max-width:520px) {

    .logo .site-logo,
    .site-logo {
        height: 64px !important;
        max-height: 64px !important;
    }
}

.cart {
    position: relative
}

.cart-btn {
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 8px;
    cursor: pointer;
    position: relative
}

.cart-btn .cart-icon {
    width: 20px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width:880px) {
    .cart-btn .cart-icon {
        width: 16px
    }
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 0;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.cart-dropdown {
    position: absolute;
    right: 0;
    top: 48px;
    width: 320px;
    background: linear-gradient(180deg, rgba(59, 15, 96, 0.96), rgba(43, 14, 90, 0.96));
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 12px 48px rgba(59, 15, 96, 0.45), 0 6px 20px rgba(0, 0, 0, 0.6);
    display: none
}

.cart:hover .cart-dropdown,
.cart:focus-within .cart-dropdown {
    display: block
}

.cart.open .cart-dropdown {
    display: block
}

.cart-items {
    max-height: 260px;
    overflow: auto
}

.cart-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

.cart-item img {
    width: 48px;
    height: 40px;
    background: linear-gradient(180deg, rgba(123, 60, 255, 0.14), rgba(30, 167, 255, 0.04));
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(59, 15, 96, 0.25);
}

.empty-box {
    padding: 0 32px;
    text-align: center;
    color: #cfcfcf;
    border-radius: 12px;
    background: linear-gradient(180deg, #0f0f11, #0b0b0d);
    border: 1px solid rgba(255, 255, 255, 0.02);
    height: 100vh;
    overflow: hidden;
    overscroll-behavior: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.empty-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 56px 24px;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.empty-hero-img {
    width: 180px;
    height: 180px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.6);
}

.empty-hero h2 {
    font-size: 36px;
    margin: 6px 0;
    color: #ffffff;
}

.empty-hero p {
    color: var(--muted);
    margin: 0 0 10px;
}

.empty-hero .cta {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 28px;
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.empty-hero .cta:hover {
    background: rgba(123, 60, 255, 0.06);
}

.cart-item .meta {
    flex: 1
}

.cart-item .price {
    font-weight: 700
}

.cart-footer {
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.04);
    margin-top: 8px;
}

.cart-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.btn {
    border: 0;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer
}

.btn-ghost {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    font-weight: 700
}

.btn[disabled],
.btn.disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-discord {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #6d29ff);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none
}

.hero {
    height: 68vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 20%, rgba(123, 60, 255, .08), transparent 15%), radial-gradient(ellipse at 90% 80%, rgba(30, 167, 255, .05), transparent 15%);
    mix-blend-mode: overlay
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .6));
    backdrop-filter: blur(2px)
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 20px
}

.hero h1 {
    font-size: 40px;
    margin: 0 0 12px
}

.hero .lead {
    opacity: .85;
    margin-bottom: 18px
}

.cta {
    background: linear-gradient(90deg, var(--accent), #9d5bff);
    color: #fff;
    border: 0;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(123, 60, 255, .14);
    animation: pulse 2.6s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }

    100% {
        transform: scale(1)
    }
}

.trust-bar {
    background: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02)
}

.trust-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 10px 0
}

.trust-item {
    opacity: .92
}

.categories {
    padding: 28px 0
}

.section-title {
    color: var(--text);
    margin: 2px 0 18px;
    font-size: 20px
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: stretch
}

.category-card {
    background: linear-gradient(180deg, #151515, #0f0f0f);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    flex: 1 1 calc(25% - 18px);
    min-width: 200px
}

.category-card {
    transition: transform .22s ease, box-shadow .22s ease;
    position: relative;
    overflow: hidden
}

.site-toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    top: 18px;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.98), rgba(157, 91, 255, 0.98));
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), opacity .2s ease;
    font-weight: 700;
    display: inline-block;
}

.site-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}


.site-toast.top-right {
    left: auto;
    right: 18px;
    transform: translateY(-12px);
}

.site-toast.top-right.show {
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(123, 60, 255, 0.06), 0 6px 20px rgba(0, 0, 0, 0.6)
}

.category-card::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.12), rgba(30, 167, 255, 0.06));
    filter: blur(14px);
    opacity: 0;
    transform: scale(.98);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none
}

.category-card:hover::before {
    opacity: 1;
    transform: scale(1.02)
}

.category-card::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease
}

.category-card:hover::after {
    opacity: 1;
    box-shadow: 0 28px 72px rgba(123, 60, 255, 0.06)
}

.cat-thumb {
    width: 160px;
    height: 100px;
    background: #0b0b0b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #777;
    font-size: 20px
}


.featured {
    padding: 6px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    grid-auto-rows: minmax(120px, auto);
    margin-top: 6px;
}

@media (max-width:1080px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.featured-card {
    transition: transform .12s ease, box-shadow .12s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2px 4px;
    border-radius: 8px;
    background: linear-gradient(180deg, #0f0f10, #0b0b0b);
    border: 1px solid rgba(123, 60, 255, 0.03);
    min-height: 110px;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(123, 60, 255, 0.08), 0 6px 18px rgba(0, 0, 0, 0.45);
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.12), rgba(30, 167, 255, 0.06));
    filter: blur(8px);
    opacity: 0;
    transform: scale(.995);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.featured-card:hover::before {
    opacity: 1;
    transform: scale(1.02)
}

.featured-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}

.featured-card:hover::after {
    opacity: 1;
    box-shadow: 0 12px 30px rgba(123, 60, 255, 0.05);
}

.featured-card .add {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .12s ease, box-shadow .12s ease, background .12s;
}

.featured-card .add:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(123, 60, 255, 0.18);
    background: linear-gradient(90deg, var(--accent), #9a4bff)
}

.card {
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(123, 60, 255, 0.06), 0 8px 26px rgba(0, 0, 0, 0.6);
}

.card::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.08), rgba(30, 167, 255, 0.05));
    filter: blur(14px);
    opacity: 0;
    transform: scale(.98);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
    transform: scale(1.02)
}

.card::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease
}

.card:hover::after {
    opacity: 1;
    box-shadow: 0 30px 80px rgba(123, 60, 255, 0.06)
}

.card .add {
    transition: transform .16s ease, box-shadow .16s ease
}


.product-link,
.card h4 a,
.featured-card h4 a,
.r-title,
.r-title a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.product-link:hover,
.card h4 a:hover,
.featured-card h4 a:hover,
.r-title a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.card .add:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(123, 60, 255, 0.14)
}

.card .add,
.shop .card .add,
.featured-card .add {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: 0;
    background-clip: padding-box;
}

.card .add::before,
.card .add::after,
.shop .card .add::before,
.shop .card .add::after,
.featured-card .add::before,
.featured-card .add::after {
    display: none !important;
    content: none !important;
}

.card:hover::before {
    opacity: 1;
    transform: scale(1.02)
}

.card::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease
}

.card:hover::after {
    opacity: 1;
    box-shadow: 0 30px 80px rgba(123, 60, 255, 0.06)
}

.card .add {
    transition: transform .16s ease, box-shadow .16s ease
}

.card .add:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(123, 60, 255, 0.14)
}

.featured-card .thumb {
    height: 320px;
    background: linear-gradient(180deg, #0b0b0b, #070707);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f6f6f;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 8px;
}

.featured-card .meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.featured-card h4 {
    margin: 6px 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.featured-card .price {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    text-shadow: 0 4px 14px rgba(123, 60, 255, 0.08);
}

.featured-card .badges {
    display: flex;
    gap: 8px;
    margin-bottom: 8px
}

.featured-card .add {
    position: absolute;
    right: 8px;
    bottom: 8px;
    top: auto;
    transform: none;
    margin: 0;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 6px;
}

.featured-card .add {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700
}

@media (max-width:1080px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(180px, auto);
    }
}

@media (max-width:720px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-card .thumb {
        width: 100%;
        height: 100px;
    }
}

.category-card.large {
    flex: 2 1 calc(50% - 18px);
    padding: 26px
}

.category-card.wide {
    flex: 1 1 calc(66% - 18px)
}

.category-card.tall {
    flex: 1 1 calc(33% - 18px);
    min-height: 140px
}

.category-card .cat-meta strong {
    font-size: 20px
}

.category-card .cat-meta span {
    font-size: 14px
}

.cat-meta strong {
    display: block;
    font-size: 18px
}

.cat-meta span {
    display: block;
    color: #aaa;
    font-size: 13px
}

.filters {
    width: 250px;
    background: transparent;
    padding: 12px;
    border-radius: 8px
}

.promo-banner {
    background: linear-gradient(90deg, #16a34a, #10b981);
    color: #06220a;
    padding: 10px 0;
}

.promo-banner .container {
    display: flex;
    justify-content: center
}

.promo-banner .code {
    background: rgba(255, 255, 255, 0.92);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800
}

.filter-search {
    margin-bottom: 12px
}

.filter-search input[type=search] {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: #0d0d0d;
    color: var(--text)
}

.shop-search {
    width: 100%;
    margin-bottom: 18px;
    display: flex;
    justify-content: center
}

.shop-search input[type=search] {
    width: 860px;
    max-width: 96%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, #0b0b0b, #070707);
    color: var(--text);
    font-size: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6)
}

.shop-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    width: 100%
}


.shop-main {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.shop-main.three-col {
    grid-template-columns: auto 1fr
}

.shop .filters {
    flex: 0 0 300px;
    max-width: 300px
}

.shop .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 940px
}


.shop-hero {
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(123, 60, 255, 0.04), rgba(0, 0, 0, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.02);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdbdbd;
    font-weight: 700;
}

.shop-hero::before {
    content: 'Loc pentru imagine promoțională';
    opacity: 0.6
}

.filter-group {
    margin-bottom: 16px
}

.filter-group label {
    display: block;
    margin-bottom: 6px;
    color: #bbb
}

.filter-group select {
    width: 100%;
    background: linear-gradient(180deg, #0b0b0b, #070707);
    border-radius: 8px;
    padding: 8px 36px 8px 12px;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.04);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12' fill='none' stroke='%23bdbdbd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}


.filter-group select option {
    background: linear-gradient(180deg, #0b0b0b, #070707);
    color: var(--text);
}

.filter-group select::-ms-expand {
    display: none;
}


.custom-select {
    position: relative;
    width: 100%;
    font-size: 14px;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #0b0b0b, #070707);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.custom-select__trigger:focus {
    outline: none;
    box-shadow: 0 8px 28px rgba(123, 60, 255, 0.08);
}

.custom-select__value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select__arrow {
    width: 12px;
    height: 12px;
    opacity: 0.9;
}

.custom-select__options {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: linear-gradient(180deg, #0b0b0b, #050505);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    max-height: 220px;
    overflow: auto;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    padding: 6px 6px;
    display: none;
}

.custom-select.open .custom-select__options {
    display: block;
}

.custom-select__option {
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
}

.custom-select__option:hover,
.custom-select__option[aria-selected="true"] {
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.12), rgba(30, 167, 255, 0.04));
}

.custom-select__option[aria-disabled="true"] {
    opacity: 0.5;
    cursor: default;
}


.custom-select__options::-webkit-scrollbar {
    width: 10px
}

.custom-select__options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px
}

.custom-select__options::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a4bff, #ff74d0);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.06)
}


.ai-chat-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(90deg, #8a4bff, #ff74d0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 99999;
}

.ai-chat-panel {
    position: fixed;
    right: 20px;
    bottom: 86px;
    width: 320px;
    max-height: 480px;
    background: linear-gradient(180deg, #0b0b0b, #050505);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
}

.ai-chat-header {
    padding: 12px 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.06), rgba(0, 0, 0, 0));
}

.ai-chat-messages {
    padding: 10px;
    flex: 1 1 auto;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-chat-message {
    max-width: 86%;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.2
}

.ai-chat-message.user {
    align-self: flex-end;
    background: linear-gradient(90deg, #222, #1b1b1b);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.ai-chat-message.bot {
    align-self: flex-start;
    background: linear-gradient(90deg, rgba(138, 75, 255, 0.12), rgba(255, 116, 208, 0.06));
    color: #fff;
    border: 1px solid rgba(138, 75, 255, 0.08)
}

.ai-chat-input-wrap {
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.02));
}

.ai-chat-input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    background: #0b0b0b;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.03);
    outline: none
}

.ai-chat-send {
    background: linear-gradient(90deg, #8a4bff, #ff74d0);
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer
}

.ai-chat-empty {
    padding: 16px;
    color: #bdbdbd;
    text-align: center;
    font-size: 13px
}


body,
.ai-chat-messages,
.cart-items,
.items,
.custom-select__options {
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 75, 255, 0.95) rgba(255, 255, 255, 0.02);
}


body::-webkit-scrollbar {
    width: 12px;
    height: 12px
}

body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a4bff, #ff74d0);
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.08)
}

/* Product page: keep image as a compact left column on small screens
   so the layout matches the desktop/card look (image left, details right)
   instead of the image becoming oversized and pushing content down. */
@media (max-width:520px) {
    .product-page .wrap {
        margin: 20px auto;
        padding: 12px;
        max-width: 920px;
    }

    .product-page .compact-grid {
        grid-template-columns: 140px 1fr;
        gap: 12px;
        align-items: start;
    }

    .product-page .prod-img img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
    }

    .product-page .card {
        padding: 14px;
        border-radius: 12px;
    }
}


.ai-chat-messages::-webkit-scrollbar {
    width: 10px
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a4bff, #ff74d0);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.06)
}


.custom-select__options::-webkit-scrollbar {
    width: 10px
}

.custom-select__options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px
}

.custom-select__options::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a4bff, #ff74d0);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.06)
}

.cart-items::-webkit-scrollbar {
    width: 10px
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px
}

.cart-items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8a4bff, #ff74d0);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.06)
}


input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 12px;
    padding: 0;
    margin: 6px 0;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.86) 50%, rgba(255, 255, 255, 0.06) 50%);
    border-radius: 999px;
    outline: none;
    transition: box-shadow .12s ease;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 12px;
    padding: 0;
    margin: 6px 0;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.86) 50%, rgba(255, 255, 255, 0.06) 50%);
    border-radius: 999px;
    outline: none;
    transition: box-shadow .12s ease;
}

input[type="range"]:focus {
    box-shadow: 0 0 0 6px rgba(123, 60, 255, 0.06)
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
    background: transparent;
    border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent), #9a4bff);
    box-shadow: 0 6px 18px rgba(123, 60, 255, 0.22);
    margin-top: -3px;
    border: 3px solid rgba(0, 0, 0, 0.35);
}

input[type="range"]::-moz-range-track {
    height: 12px;
    background: transparent;
    border-radius: 999px
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid rgba(0, 0, 0, 0.35)
}

input[type="range"]::-ms-track {
    height: 12px;
    background: transparent;
    border-color: transparent;
}

.price-val {
    color: #bfbfbf;
    font-size: 13px;
    margin-top: 8px
}

.price-val {
    margin-top: 6px;
    color: #aaa;
    font-size: 14px
}

.products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px
}

.products-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
}

@media (max-width:1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:1000px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:720px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:420px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


.card {
    background: linear-gradient(180deg, #0f0f10, #0b0b0b);
    border-radius: 14px;
    overflow: hidden;
    padding: 14px;
    position: relative;
    border: 1px solid rgba(123, 60, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card .thumb {
    height: 160px;
    background: linear-gradient(180deg, #0b0b0b, #090909);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 800;
    font-size: 20px;
}


.card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.featured-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.card h4 {
    margin: 10px 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.badge {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--accent);
    color: #fff;
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 12px
}

.badges {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    gap: 6px
}

.price {
    font-weight: 900;
    font-size: 18px;
    color: var(--accent);
    margin-top: 8px;
    text-shadow: 0 6px 18px rgba(123, 60, 255, 0.06);
}

.card .add {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: var(--accent);
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(123, 60, 255, 0.12);
    border: none;
    background-image: none;
}

.card .add .icon {
    display: none;
}


.shop .card .add {
    font-size: 12px;
    padding: 6px 10px;
}


.shop .card .add .icon {
    display: none;
}


.shop .card .add {
    bottom: 8px;
}


.shop-main .products-grid .card .add,
.shop-main .content .products-grid .card .add {
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 8px;
    min-width: 0;
    height: auto;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(123, 60, 255, 0.12);
}

@media (max-width:720px) {
    .shop-main .products-grid .card .add {
        padding: 6px 8px;
        font-size: 12px
    }
}

.info-inner {
    padding: 60px 0;
    text-align: center
}

.terms {
    margin-top: 22px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

.center {
    text-align: center
}


@media (max-width:880px) {
    .container {
        padding: 0 12px
    }

    .main-nav {
        display: none
    }

    .shop-inner {
        flex-direction: column
    }

    .filters {
        width: 100%
    }
}


@media (max-width:880px) {
    .logo .site-logo {
        height: 24px
    }
}


.shop-top .shop-search-row,
.filter-bar .filter-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 0;
}

.shop-top .search-wrap {
    flex: 1 1 520px;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, #0b0b0b, #070707);
    color: var(--text);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: box-shadow .18s ease, transform .12s ease, border-color .12s;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: rgba(123, 60, 255, 0.9);
    box-shadow: 0 10px 40px rgba(123, 60, 255, 0.12), 0 0 0 6px rgba(123, 60, 255, 0.06);
    transform: translateY(-1px);
}

/* Compact search when placed inside the filters sidebar */
.filters .search-wrap {
    flex: 1 1 auto;
}
.filters .search-input {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: none;
    background: linear-gradient(180deg, #0b0b0b, #070707);
    border: 1px solid rgba(255,255,255,0.03);
}

@media (max-width:880px) {
    .filters .search-input {
        padding: 8px 10px;
        font-size: 13px;
    }
}

.shop-controls {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.popular-tags {
    color: #d7d7d7;
    font-size: 14px
}

.popular-tags .tag {
    display: inline-block;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: background .12s, transform .12s
}

.popular-tags .tag:hover {
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.14), rgba(30, 167, 255, 0.06));
    transform: translateY(-2px)
}

.sort-row {
    color: #dcdcdc;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px
}

.sort-row label {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer
}

.sort-row input[type=radio] {
    width: 14px;
    height: 14px;
    accent-color: var(--accent)
}

.results-meta {
    color: #dcdcdc;
    margin: 12px 0 18px;
    font-size: 15px
}

@media (max-width:900px) {
    .shop-top .shop-search-row {
        flex-direction: column;
        gap: 12px
    }

    .shop-controls {
        flex-direction: column;
        align-items: flex-start
    }
}


.results-meta strong {
    color: var(--accent);
    font-weight: 800
}


.shop-main .content {
    padding-top: 8px
}




.small-hero {
    min-height: 240px;
    height: 28vh;
    display: flex;
    align-items: center;
    position: relative
}

.small-hero .hero-content {
    text-align: left;
    padding: 36px 16px
}

.small-hero h1 {
    font-size: 28px;
    margin: 0 0 6px;
    color: var(--text)
}

.small-hero .lead {
    color: #cfcfcf;
    margin-bottom: 4px
}

.contact-section {
    padding: 36px 0 64px
}



.info-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 32px 0;
    justify-content: center;
}

.info-main {
    flex: 1 1 560px;
    min-width: 320px;
    max-width: 740px;
    text-align: left;
}


.info-page .info-main {
    font-size: 18px !important;
    line-height: 1.65 !important;
}

.info-page .info-main p,
.info-page .info-main li {
    font-size: 18px !important;
    color: #dcdcdc !important;
}

.info-page .info-main h2,
.info-page .info-main h3 {
    font-size: 20px !important;
}

.info-aside {
    width: 320px;
    min-width: 260px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: #0c0c0c;
    color: var(--text);
    margin-top: 6px;
}

.form-actions {
    margin-top: 10px;
}

.info-aside ul {
    padding-left: 16px;
    margin-top: 8px
}

.info-aside ul li {
    margin-bottom: 8px
}

.info-aside a {
    color: var(--accent);
    text-decoration: none
}

.info-aside .faq-wrap {
    margin-top: 18px
}

@media (max-width:880px) {
    .info-grid {
        padding: 18px 0;
        gap: 18px
    }

    .info-main {
        max-width: 100%;
    }

    .info-aside {
        width: 100%;
        min-width: 100%;
    }
}

.contact-section h2,
.contact-section h3 {
    color: var(--text);
    margin-top: 0
}

.contact-section p {
    color: #cfcfcf
}

.contact-section form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6)
}

.contact-section label {
    display: block;
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 10px
}

.contact-section input[type=text],
.contact-section input[type=email],
.contact-section textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: #0c0c0c;
    color: var(--text);
    margin-top: 6px
}

.contact-section textarea {
    resize: vertical
}

.contact-section .btn-primary {
    background: linear-gradient(90deg, var(--accent), #9a4bff);
    box-shadow: 0 10px 30px rgba(123, 60, 255, 0.12)
}

.resurse-aside {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.04));
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02)
}

.resurse-aside h3 {
    margin-top: 0
}

.resurse-aside ul {
    padding-left: 16px;
    color: #d0d0d0
}

.faq-item {
    margin-bottom: 12px
}

.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--text);
    font-weight: 700;
    padding: 10px 8px;
    cursor: pointer;
    border-radius: 8px
}

.faq-q:hover {
    color: var(--accent);
}

.faq-a {
    display: none;
    color: #cfcfcf;
    padding: 8px 8px 0 8px
}

.team {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px
}

.team .member {
    background: linear-gradient(180deg, #0f0f10, #0b0b0b);
    padding: 12px;
    border-radius: 12px;
    width: calc(50% - 6px);
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.member .name {
    font-weight: 800;
    color: var(--text)
}

.member .role {
    color: #bfbfbf;
    font-size: 13px;
    margin-top: 6px
}


@media (max-width:880px) {
    .contact-section {
        padding: 24px 12px
    }

    .team .member {
        width: 100%
    }

    .small-hero .hero-content {
        padding: 18px 12px
    }
}


.contact-section::before {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(123, 60, 255, 0.12), rgba(30, 167, 255, 0.06));
    margin-bottom: 18px;
    border-radius: 2px
}


.main-nav .nav-link.active {
    color: #fff !important;
    background: linear-gradient(90deg, var(--accent), #ff74d0);
    box-shadow: 0 8px 30px rgba(123, 60, 255, 0.12);
    font-weight: 800;
}


.logo .site-logo {
    height: 64px !important;
    max-height: 64px !important;
}

.site-header .header-inner,
.site-header .container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.header-inner {
    padding: 20px 0 !important;
}

.main-nav .nav-link {
    font-size: 18px !important;
    padding: 10px 14px !important;
}

.cart-btn .cart-icon {
    width: 24px !important;
}

.hero {
    height: 56vh !important;
    min-height: 360px !important
}

.hero h1 {
    font-size: 32px !important
}

.cta {
    padding: 10px 18px !important;
    border-radius: 10px !important
}

.empty-box {
    height: 100vh !important;
    padding: 0 20px !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    font-size: 17px !important;
}

.empty-hero {
    gap: 14px !important;
    padding: 36px 16px !important;
    max-width: 800px
}

.empty-hero-img {
    width: 120px !important;
    height: 120px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45) !important
}

.empty-hero h2 {
    font-size: 28px !important
}


.site-header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.site-header .container,
.site-header .header-inner {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.logo .site-logo,
.site-logo {
    height: 64px !important;
    max-height: 64px !important;
}

.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.main-nav .nav-link {
    padding: 10px 14px !important;
}


.main-nav .nav-link,
.main-nav .nav-link:visited,
.main-nav .nav-link:focus,
.main-nav .nav-link:hover {
    text-decoration: none !important;
}

.main-nav .nav-link:focus {
    outline: 2px solid rgba(123, 60, 255, 0.12);
    outline-offset: 4px;
}

.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.cart-count {
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    font-size: 12px;
}

@media (max-width:880px) {
    .logo .site-logo {

        height: 36px !important
    }

    .hero {
        height: 40vh !important;
        min-height: 260px !important
    }

    .hero h1 {
        font-size: 22px !important
    }

    .empty-box {
        height: 100vh !important;
        padding: 0 12px !important;
        overflow: hidden !important;
        overscroll-behavior: none !important;
    }

    .empty-hero-img {
        width: 88px !important;
        height: 88px !important
    }

    .main-nav .nav-link {
        font-size: 14px !important;
        padding: 6px 8px !important;
    }

    .cart-btn .cart-icon {
        width: 20px !important;
    }

    .header-right {
        gap: 10px !important;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
}


.hero .hero-content,
.small-hero .hero-content {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 980px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.hero .hero-content .cta,
.small-hero .hero-content .cta {
    display: inline-block;
    margin: 0 auto
}


.site-header .header-inner {
    position: relative;
    justify-content: center !important;
}

.site-header .logo {
    position: absolute;
    left: 140px;
    top: 50%;
    transform: translateY(-50%);
}

.site-header .main-nav {
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.site-header .header-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:880px) {
    .site-header .logo {
        position: static;
        transform: none;
    }

    .site-header .header-right {
        position: static;
        transform: none;
        margin-left: 8px
    }
}


@media (max-width:880px) {

    .site-header,
    .site-header .header-inner,
    .site-header .container,
    .header-inner {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;

    background: rgba(11, 11, 11, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.35);
    background: rgba(11, 11, 11, 0.9);
}


.shop-page .site-header {
    background: rgba(11, 11, 11, 0.55) !important;
    backdrop-filter: blur(6px) !important;
}


.info-page .site-header {
    background: rgba(11, 11, 11, 0.55) !important;
    backdrop-filter: blur(6px) !important;
}


.home-page .site-header,
.shop-page .site-header {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.home-page .logo .site-logo {
    height: 260px !important;
    max-height: 260px !important;
}

.shop-page .logo .site-logo {
    height: 260px !important;
    max-height: 260px !important;
}

.home-page .main-nav .nav-link,
.shop-page .main-nav .nav-link {
    font-size: 16px !important;
    padding: 8px 12px !important;
}

.info-page .site-header {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.info-page .logo .site-logo {
    height: 240px !important;
    max-height: 240px !important;
}

.info-page .main-nav .nav-link {
    font-size: 20px !important;
    padding: 12px 16px !important;
}

.info-page .header-right {
    gap: 18px !important;
}

.info-page .cart-btn .cart-icon {
    width: 34px !important;
}

.info-page .cart-count {
    width: 22px !important;
    height: 22px !important;
    font-size: 13px !important;
}





.site-header .header-inner {
    position: relative;
}

.product-card .rarity {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.out-of-stock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    z-index: 30;
    font-size: 14px;
}


.product-card .add[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}


.logo .site-logo,
.site-logo {
    height: 260px !important;
    max-height: 260px !important;
}

@media (max-width:1400px) {

    .logo .site-logo,
    .site-logo {
        height: 260px !important;
        max-height: 260px !important;
    }
}

@media (max-width:1000px) {

    .logo .site-logo,
    .site-logo {
        height: 260px !important;
        max-height: 260px !important;
    }
}

@media (max-width:520px) {

    .logo .site-logo,
    .site-logo {
        height: 260px !important;
        max-height: 260px !important;
    }
}

.snowflake {
        position: fixed;
        top: -10vh;
        left: 0;
        color: #ffffff;
        pointer-events: none;
        z-index: 9999;
        user-select: none;
        opacity: 0.9;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        will-change: transform, opacity;
}

.snowflake.small { opacity: 0.7; font-size: 10px }

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.95;
    }
    100% {
        transform: translateY(110vh) translateX(var(--sway, 20px)) rotate(180deg);
        opacity: 0.45;
    }
}

/* Make header significantly smaller on phones */
@media (max-width:520px) {
    .site-header,
    .site-header .header-inner,
    .site-header .container,
    .header-inner {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    /* smaller logo for phone */
    .logo .site-logo,
    .site-logo,
    .home-page .logo .site-logo,
    .shop-page .logo .site-logo,
    .info-page .logo .site-logo {
        height: 48px !important;
        max-height: 48px !important;
    }

    /* tighter nav links */
    .main-nav .nav-link {
        font-size: 12px !important;
        padding: 6px 8px !important;
    }

    .main-nav {
        gap: 8px !important;
    }

    .site-header .logo {
        left: auto !important;
        position: static !important;
        transform: none !important;
    }

    .site-header .header-right {
        position: static !important;
        transform: none !important;
        margin-left: 6px !important;
    }
}

/* Make info page hero smaller on phones so content is visible below header */
@media (max-width:520px) {
    .info-page .small-hero {
        height: 200px !important;
        min-height: 140px !important;
    }

    .info-page .hero h1,
    .info-page .hero .lead {
        font-size: 18px !important;
    }
}