@font-face {
    font-family: 'FiveByFive';
    src: url('../font/FiveByFive.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minecraftia';
    src: url('../font/Minecraftia.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Skala projektu: 1 jednostka = 1vw do szerokości 1920px (Full HD).
   Powyżej 1920px skala zostaje zamrożona (1vw @ 1920px = 19.2px),
   a strona trzyma max-width 1920px i rosną boczne marginesy. */
:root {
    --vw: 1vw;
    /* poziomy padding navbara — nav jest full-width (tło na 100% szerokości),
       a ten padding trzyma jego content w wycentrowanym obszarze 1920px */
    --nav-pad-x: calc(15.5 * var(--vw));
}

@media (min-width: 1920px) {
    :root {
        --vw: 19.2px;
        /* (100% - 1920px) / 2 = lewy margines wycentrowanego body; 297.6px = 15.5 * 19.2px */
        --nav-pad-x: calc((100% - 1920px) / 2 + 297.6px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
}

/* tło na html (nie na body), żeby na ekranach szerszych niż 1920px
   wypełniało też marginesy poza wycentrowanym body */
html {
    background-image: url('bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 9px;
}

body::-webkit-scrollbar-track {
    background: #E4E4E4;
}

body::-webkit-scrollbar-thumb {
    background: #FFA600;
}

a {
    text-decoration: none;
}

/* ================================================================== */
/* ============================= MARQUEE ============================ */
/* ================================================================== */

.marquee {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(2.5 * var(--vw));
    overflow: hidden;
    background: #009C8A;
    border-bottom: 2px solid #4A4A4A;
    color: white;
    white-space: nowrap;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee__item {
    flex-shrink: 0;
    margin-right: calc(3 * var(--vw));
    text-transform: uppercase;
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    letter-spacing: 0.5px;

    font-family: 'FiveByFive', sans-serif;
}

/* ================================================================== */
/* ============================= NAVBAR ============================= */
/* ================================================================== */

nav {
    width: 100%;
    height: calc(2.5 * var(--vw));

    z-index: 100;

    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: calc(6 * var(--vw)) var(--nav-pad-x);

    transition: 0.3s;
}

.nav-left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(2.5 * var(--vw));

    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-left:hover {
    transform: scale(1.02);
}

.nav-left img {
    width: calc(6 * var(--vw));
    height: auto;
}

.nav-left h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.2 * var(--vw));
    font-weight: 300;
    color: #383838;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.nav-left-text {
    display: flex;
    flex-direction: column;
    gap: calc(0.2 * var(--vw));
}

.nav-left-text-online {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(0.5 * var(--vw));
}

.nav-dot {
    width: calc(0.55 * var(--vw));
    height: calc(0.55 * var(--vw));
    background: #00C700;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-dot::after {
    content: "";
    width: calc(0.9 * var(--vw));
    height: calc(0.9 * var(--vw));
    position: absolute;
    background: rgb(0, 199, 0, 0.24);
}

.nav-left-text-online p {
    font-size: calc(0.7 * var(--vw));
    font-weight: 600;
    color: #383838;
}

.nav-left-text-online p span {
    font-size: calc(0.7 * var(--vw));
    font-weight: 800;
    color: #1FCE1F;
}

.nav-right {
    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
}

.nav-right ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(3 * var(--vw));
    list-style-type: none;
}

.nav-right ul li a {
    position: relative;
    display: inline-block;

    font-family: 'Rubik', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 700;
    color: #383838;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-right ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-0.35 * var(--vw));
    width: 100%;
    height: calc(0.18 * var(--vw));
    background: #FFA600;
    border-radius: calc(1 * var(--vw));

    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-right ul li a:hover {
    color: #FFA600;
    text-shadow: none;
    transform: translateY(calc(-0.15 * var(--vw)));
}

.nav-right ul li a:hover::after {
    transform: scaleX(1);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(0.5 * var(--vw));
}

.nav-buttons li:nth-of-type(1) button {
    position: relative;
    overflow: hidden;

    width: calc(13 * var(--vw));
    height: calc(2.7 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: center;

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.nav-buttons li:nth-of-type(2) button {
    position: relative;

    width: calc(2.7 * var(--vw));
    height: calc(2.7 * var(--vw));

    background: #1FCE1F;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.nav-buttons li:nth-of-type(2) button img {
    width: calc(1.4 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.nav-buttons li:nth-of-type(2) button:hover {
    background: #2CE02C;
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.nav-buttons li:nth-of-type(2) button:hover img {
    transform: scale(1.15) rotate(-8deg);
}

.nav-buttons li:nth-of-type(2) button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.cart-badge {
    position: absolute;
    top: calc(-0.7 * var(--vw));
    right: calc(-0.4 * var(--vw));

    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.2 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.nav-buttons li:nth-of-type(1) button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-22deg);
    pointer-events: none;

    transition: left 0.6s ease;
}

.nav-buttons li:nth-of-type(1) button:hover {
    background: #FFB733;
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.nav-buttons li:nth-of-type(1) button:hover::before {
    left: 135%;
}

.nav-buttons li:nth-of-type(1) button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.nav-ham {
    display: none;
}

/* ================================================================== */
/* ================================ ASIDE =========================== */
/* ================================================================== */

.mobile-panel {
    width: calc(100 * var(--vw));
    height: 100vh;

    background: white;

    transform: translate(100%);
    z-index: 1001;

    position: fixed;
    right: 0;
    top: 0;

    display: none;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

    padding: calc(8 * var(--vw)) calc(8 * var(--vw));

    transition: 0.5s;
}

.mobile-panel-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.mobile-panel-top img {
    width: calc(18 * var(--vw));
    height: auto;
}

.mobile-panel-top svg {
    width: calc(8 * var(--vw));
    height: auto;
}

.mobile-panel-top-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.mobile-panel-top-text h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(5 * var(--vw));
    font-weight: 400;
    color: #383838;
}

.mobile-panel-menu {
    width: 100%;
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(11 * var(--vw));
}

.mobile-panel-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    list-style-type: none;
    gap: calc(7 * var(--vw));
}

.mobile-panel-menu ul li a {
    font-size: calc(5.5 * var(--vw));
    font-weight: 150;
    color: #383838;
    font-family: 'FiveByFive', sans-serif;
}

.mobile-panel-buttons {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(4 * var(--vw));
}

.mobile-panel-buttons button {
    position: relative;

    width: 80%;
    height: calc(15 * var(--vw));

    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(3 * var(--vw));

    font-family: 'Rubik One', sans-serif;
    font-size: calc(5 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.6 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.6 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.5 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.mobile-panel-buttons button:active {
    transform: translateY(calc(0.4 * var(--vw)));
    box-shadow: 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
}

.mobile-koszyk-btn {
    background: #1FCE1F;
}

.mobile-koszyk-btn img {
    width: calc(7 * var(--vw));
    height: auto;
}

.mobile-koszyk-btn .cart-badge {
    top: calc(-3 * var(--vw));
    right: calc(-1.5 * var(--vw));

    font-size: calc(6 * var(--vw));
    -webkit-text-stroke: calc(0.8 * var(--vw)) #4A4A4A;
    text-shadow: 0 calc(0.5 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.mobile-sklep-btn {
    background: #FFA600;
}

.mobile-voucher-btn {
    background: transparent;
    overflow: hidden;
}

.mobile-voucher-btn:hover .voucher-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.mobile-panel-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: calc(6 * var(--vw));
}

.mobile-panel-socials {
    width: 60%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-panel-socials img {
    width: calc(8 * var(--vw));
    height: auto;
}

.mobile-panel-button button {
    width: calc(90 * var(--vw));
    height: calc(15 * var(--vw));

    background: none;
    border: none;
    outline: none;

    position: relative;
}

.mobile-panel-button img {
    width: calc(90 * var(--vw));
    height: calc(15 * var(--vw));
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.mobile-panel-button p {
    font-size: calc(5 * var(--vw));
    font-weight: 150;
    color: #FFFFFF;
}

/* ================================================================== */
/* =============================== HOME ============================= */
/* ================================================================== */

.home {
    width: 100%;
    height: auto;

    padding: calc(12.5 * var(--vw)) calc(15.5 * var(--vw)) calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: calc(9.95 * var(--vw)) calc(9.95 * var(--vw));
    gap: calc(1.2 * var(--vw));
}

.home-card {
    width: 100%;
    height: 100%;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

    padding: calc(1.5 * var(--vw));

    box-shadow: 0 calc(0.05 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-card:hover {
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.home-card:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.home-card-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-card:hover .home-card-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.home-card-render {
    position: absolute;
    line-height: 0;
}

.home-card-render img, .home-card-render video {
    display: block;
}

.home-card-text {
    display: flex;
    flex-direction: column;
}

.home-card--main {
    grid-column: 1;
    grid-row: 1;
}

.home-card--main .home-card-render  {
    left: -10%;
    bottom: 0;
    transform: translateX(calc(-2 * var(--vw)));
}

.home-card--main .home-card-render img, .home-card--main .home-card-render video {
    width: calc(16 * var(--vw));
    height: auto;
}

.home-card--main .home-card-text {
    padding: 0 calc(0.5 * var(--vw)) 0 calc(7 * var(--vw));
}

.home-card-text p {
    font-size: calc(0.8 * var(--vw));
    font-weight: 700;
    color: rgb(255, 255, 255, 0.9);
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
    transform: translateY(calc(0.3 * var(--vw)));
}

.home-card--main .home-card-text p span {
    font-weight: 800;
}

.home-card-text h2 {
    font-family: 'FiveByFive', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 calc(0.25 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.home-card--main .home-card-text h2 {
    font-size: calc(2.5 * var(--vw));
    line-height: 100%;
}

.home-card-text button {
    background: #FFFFFF;
    outline: none;
    border: 2px solid #434343;
    cursor: pointer;

    font-size: calc(0.85 * var(--vw));
    font-weight: 700;
    color: #434343;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 calc(1.5 * var(--vw));

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #434343;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.home-card-text button svg {
    width: calc(1.1 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.home-card-text button img {
    width: calc(1.3 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.home-card-text button:hover {
    background: #F2F2F2;
    transform: translateY(calc(-0.2 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #434343;
}

.home-card-text button:hover svg,
.home-card-text button:hover img {
    transform: translateX(calc(0.4 * var(--vw)));
}

.home-card-text button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #434343;
}

.home-card--main .home-card-text button {
    width: calc(10.4 * var(--vw));
    height: calc(2.5 * var(--vw));
    margin-top: calc(1 * var(--vw));
}

.copy-ip-btn,
.copy-ip-btn svg path {
    transition: background 0.25s ease, border-color 0.25s ease,
                color 0.25s ease, stroke 0.25s ease, box-shadow 0.25s ease,
                width 0.25s ease;
}

.copy-ip-btn .ip-text {
    display: inline-block;
    transition: opacity 0.16s ease, transform 0.16s ease, color 0.25s ease;
    will-change: opacity, transform;
}

.copy-ip-btn .ip-text.is-leaving {
    opacity: 0;
    transform: translateY(calc(-0.55 * var(--vw)));
}

.copy-ip-btn .ip-text.is-entering {
    opacity: 0;
    transform: translateY(calc(0.55 * var(--vw)));
}

.home-card-text button.copy-ip-btn.is-copied,
.home-card-text button.copy-ip-btn.is-copied:hover {
    background: #3FBF46;
    border-color: #2C8A31;
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #2C8A31;
    width: calc(11 * var(--vw));
}

.copy-ip-btn.is-copied .ip-text {
    color: #FFFFFF;
}

.copy-ip-btn.is-copied svg path {
    stroke: #FFFFFF;
}

.home-card--discord {
    grid-column: 1;
    grid-row: 2;
}

.home-card--discord .home-card-render  {
    right: -5%;
    bottom: 0;
}

.home-card--discord .home-card-render img, .home-card--discord .home-card-render video {
    width: calc(12 * var(--vw));
    height: auto;
}

.home-card--discord .home-card-text {
    padding: 0 calc(11 * var(--vw)) 0 calc(0.5 * var(--vw));
}

.home-card--discord .home-card-text h2 {
    font-size: calc(2.1 * var(--vw));
    line-height: 111%;
}

.home-card--discord .home-card-text button {
    width: calc(16 * var(--vw));
    height: calc(2.5 * var(--vw));
    margin-top: calc(1 * var(--vw));
}

.home-card--shop {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.home-card--shop .home-card-render  {
    right: -20%;
    bottom: calc(-2.7 * var(--vw));
    transform: translateX(0);
}

.home-card--shop .home-card-render img, .home-card--shop .home-card-render video {
    width: calc(26.4 * var(--vw));
    height: auto;
    clip-path: inset(0 0 10% 0);
}

.home-card--shop .home-card-text {
    padding: 0 calc(16 * var(--vw)) 0 calc(0.5 * var(--vw));
}

.home-card--shop .home-card-text h2 {
    font-size: calc(3 * var(--vw));
    line-height: 111%;
}

.home-card--shop .home-card-text p {
    margin-top: calc(1 * var(--vw));
    transform: translateY(calc(0 * var(--vw)));
}

.home-card--shop .home-card-text button {
    width: calc(13 * var(--vw));
    height: calc(4.5 * var(--vw));
    margin-top: calc(3 * var(--vw));
}

.arrow-scrolldown {
    width: 100%;

    padding: calc(4 * var(--vw)) 0 0 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.7 * var(--vw));

    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arrow-scrolldown img {
    width: calc(2 * var(--vw));
    height: auto;

    image-rendering: pixelated;
    transform-origin: center bottom;
    animation: scroll-hop 2.8s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.arrow-scrolldown:hover {
    transform: scale(1.25);
}

.arrow-scrolldown.--noanimation img {
    animation: none !important;
    transform: none !important;
}

@keyframes scroll-hop {
    0%   { transform: translateY(0)      scale(1, 1); }
    6%   { transform: translateY(0)      scale(1.25, 0.75); }
    18%  { transform: translateY(calc(-0.9 * var(--vw))) scale(0.85, 1.15); }
    28%  { transform: translateY(calc(-1 * var(--vw)))   scale(0.95, 1.05); }
    38%  { transform: translateY(0)      scale(1.2, 0.8); }
    44%  { transform: translateY(0)      scale(0.95, 1.05); }
    50%  { transform: translateY(0)      scale(1, 1); }
    100% { transform: translateY(0)      scale(1, 1); }
}

/* ================================================================== */
/* ============================ FEATURED =========================== */
/* ================================================================== */

.featured {
    width: 100%;
    height: auto;

    padding: calc(1 * var(--vw)) calc(15.5 * var(--vw));
}

.featured-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1.5 * var(--vw));
}

.featured-headline-line {
    width: 30%;
    border: 1px solid #3F3F3F;
}

.featured-headline h1 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.4 * var(--vw));
    font-weight: 500;
    color: #303030;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.featured-tiles {
    margin-top: calc(3 * var(--vw));

    width: 100%;
    height: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: calc(3.35 * var(--vw));
}

.featured-tile {
    width: calc(14.6 * var(--vw));
    min-height: calc(23.6 * var(--vw));

    display: flex;
    flex-direction: column;

    border: 2px solid #464646;

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-tile:hover {
    transform: translateY(calc(-0.5 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #464646;
}

.featured-tile-top {
    width: 100%;
    height: calc(8.3 * var(--vw));
    flex-shrink: 0;

    position: relative;
}

.featured-tile-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-tile-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-tile:hover .featured-tile-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.featured-tile-render {
    width: 100%;
    height: 100%;

    position: absolute;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.featured-tile-render img {
    display: block;
    width: calc(10 * var(--vw));
    height: auto;
}

.featured-tile-name {
    width: 100%;
    height: auto;

    padding: calc(1.4 * var(--vw)) calc(1 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-tile-name h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.9 * var(--vw));
    font-weight: 500;
    color: #464646;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
    text-align: center;
}

.featured-tile-set {
    width: 100%;
    height: auto;

    background: #FFBE31;
    border-top: 2px solid #464646;
    border-bottom: 2px solid #464646;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: calc(0.7 * var(--vw)) calc(1 * var(--vw));
}

.featured-tile-set h5 {
    font-size: calc(0.7 * var(--vw));
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.featured-tile-desc {
    width: 100%;
    flex: 1 1 auto;

    padding: calc(0.8 * var(--vw)) calc(0.9 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.featured-tile-desc ul {
    list-style-type: none;

    height: calc(1.8 * var(--vw));
    overflow: auto;

    display: flex;
    flex-direction: column;

    padding: 0 calc(1 * var(--vw));
}

.featured-tile-desc ul::-webkit-scrollbar {
    width: 5px;
}

.featured-tile-desc ul::-webkit-scrollbar-track {
    background: #E4E4E4;
}

.featured-tile-desc ul::-webkit-scrollbar-thumb {
    background: #FFA600;
}

.featured-tile-desc ul li p {
    font-size: calc(0.7 * var(--vw));
    font-weight: 600;
    color: rgb(70, 70, 70, 0.83);
}

.featured-tile-price {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-tile-price h2 {
    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.8 * var(--vw));
    font-weight: 400;
    color: #FFA600;

    line-height: 115%;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #464646;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.featured-tile-buy {
    margin-top: calc(0.75 * var(--vw));
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-tile-buy button {
    position: relative;
    overflow: hidden;

    width: 90%;
    height: auto;

    background: #FFA600;
    outline: none;
    border: 2px solid #464646;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    padding: calc(1 * var(--vw)) 0;

    box-shadow: 0 calc(0.05 * var(--vw)) 0 #464646;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.featured-tile-buy button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-22deg);
    pointer-events: none;

    transition: left 0.6s ease;
}

.featured-tile-buy button:hover {
    background: #FFB733;
    transform: translateY(calc(-0.2 * var(--vw)));
    box-shadow: 0 calc(0.4 * var(--vw)) 0 #464646;
}

.featured-tile-buy button:hover::before {
    left: 135%;
}

.featured-tile-buy button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
}

/* ================================================================== */
/* ============================ SEE MORE ============================ */
/* ================================================================== */

.more {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: calc(0.3 * var(--vw));
}

.more h1 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    line-height: 110%;
    margin-top: calc(3 * var(--vw));
}

.more p {
    font-size: calc(0.8 * var(--vw));
    font-weight: 700;
    color: #3F3F3F;
}

.more button {
    margin-top: calc(1 * var(--vw));
    position: relative;
    overflow: hidden;

    width: calc(13 * var(--vw));
    height: auto;

    background: #FFA600;
    outline: none;
    border: 2px solid #464646;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    padding: calc(1 * var(--vw)) 0;

    box-shadow: 0 calc(0.05 * var(--vw)) 0 #464646;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.more button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-22deg);
    pointer-events: none;

    transition: left 0.6s ease;
}

.more button:hover {
    background: #FFB733;
    transform: translateY(calc(-0.2 * var(--vw)));
    box-shadow: 0 calc(0.4 * var(--vw)) 0 #464646;
}

.more button:hover::before {
    left: 135%;
}

.more button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
}

/* ================================================================== */
/* ============================= SOCIALS ============================ */
/* ================================================================== */

.socials {
    width: 100%;
    height: auto;

    padding: calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.socials-headline {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials-headline-left {
    display: flex;
    flex-direction: column;
}

.socials-headline-left h1 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.1 * var(--vw));
    font-weight: 500;
    color: #303030;
}

.socials-headline-left-buttons {
    margin-top: calc(0.5 * var(--vw));
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(0.6 * var(--vw));
}

.socials-headline-left-buttons button {
    width: auto;
    height: calc(3 * var(--vw));

    outline: none;
    border: 2px solid #464646;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    cursor: pointer;
    opacity: 0.6;

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background 0.25s ease, opacity 0.25s ease;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(1 * var(--vw));

    padding: calc(0.5 * var(--vw)) calc(2 * var(--vw));
}

.socials-headline-left-buttons button:nth-of-type(1) {
    background: #FF40E5;
}

.socials-headline-left-buttons button:nth-of-type(2) {
    background: #FF5151;
}

.socials-headline-left-buttons button:nth-of-type(1) img {
    width: calc(1.4 * var(--vw));
    height: auto;
}

.socials-headline-left-buttons button:nth-of-type(2) img {
    width: calc(2 * var(--vw));
    height: auto;
}

.socials-headline-left-buttons button.is-active {
    opacity: 1;
}

.socials-headline-left-buttons button:hover {
    transform: translateY(calc(-0.18 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.socials-headline-left-buttons button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.socials-headline-right {
    width: calc(21.25 * var(--vw));
    height: calc(6.6 * var(--vw));

    border: 2px solid #464646;

    position: relative;

    padding: calc(1 * var(--vw)) calc(2 * var(--vw));
}

.socials-headline-right-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.socials-headline-right-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.socials-headline-right:hover .socials-headline-right-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.socials-headline-right-decoration img {
    width: calc(7 * var(--vw));
    height: auto;
    position: absolute;
}

.socials-headline-right-decoration img:nth-of-type(1) {
    bottom: -40%;
    left: -18%;
}

.socials-headline-right-decoration img:nth-of-type(2) {
    top: -50%;
    right: -10%;
}

.socials-headline-text {
    display: flex;
    flex-direction: column;
    gap: calc(0.5 * var(--vw));
}

.socials-headline-text h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.5 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.socials-headline-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(1 * var(--vw));
}

.socials-headline-links img {
    width: calc(2.1 * var(--vw));
    height: auto;
    opacity: 0.9;

    transition: 0.3s;
}

.socials-headline-links img:hover {
    opacity: 1;
    scale: 1.05;
}

.socials-container {
    margin-top: calc(3 * var(--vw));
}

.socials-panel {
    display: none;
    position: relative;
}

.socials-panel.is-active {
    display: block;
    animation: socials-fade 0.45s ease;
}

@keyframes socials-fade {
    from { opacity: 0; transform: translateY(calc(0.8 * var(--vw))); }
    to   { opacity: 1; transform: translateY(0); }
}

.socials-arrow {
    position: absolute;
    top: calc(50% - calc(1.4 * var(--vw)));
    z-index: 5;

    width: calc(2.8 * var(--vw));
    height: calc(2.8 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #464646;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #464646;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.socials-arrow[data-dir="prev"] { left: calc(-4 * var(--vw)); }
.socials-arrow[data-dir="next"] { right: calc(-4 * var(--vw)); }

.socials-arrow img {
    width: calc(1 * var(--vw));
    height: auto;
    image-rendering: pixelated;
}

.socials-arrow[data-dir="prev"] img { transform: rotate(90deg); }
.socials-arrow[data-dir="next"] img { transform: rotate(-90deg); }

.socials-arrow:hover {
    background: #FFB733;
    transform: translateY(calc(-0.18 * var(--vw)));
    box-shadow: 0 calc(0.35 * var(--vw)) 0 #464646;
}

.socials-arrow:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
}

.socials-track {
    width: 100%;

    display: flex;
    gap: calc(1.2 * var(--vw));

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding: calc(0.6 * var(--vw)) 0 calc(0.8 * var(--vw)) 0;

    scrollbar-width: none;
}

.socials-track::-webkit-scrollbar {
    display: none;
}

.social-card {
    flex-shrink: 0;
    scroll-snap-align: start;

    display: flex;
    flex-direction: column;
    gap: calc(0.5 * var(--vw));
}

.socials-panel--tiktok .social-card { width: calc((100% - 4 * calc(1.2 * var(--vw))) / 5); }
.socials-panel--youtube .social-card { width: calc((100% - 2 * calc(1.2 * var(--vw))) / 3); }

.social-card-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;

    border: 2px solid #464646;
    box-shadow: 0 calc(0.15 * var(--vw)) 0 #464646;
}

.socials-panel--tiktok .social-card-thumb { aspect-ratio: 9 / 16; }
.socials-panel--youtube .social-card-thumb { aspect-ratio: 16 / 9; }

.social-card-thumb iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.social-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card {
    transition: transform 0.25s ease;
}

.social-card:hover {
    transform: translateY(calc(-0.4 * var(--vw)));
}

.social-card:hover .social-card-thumb img {
    transform: scale(1.06);
}

.social-card-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.3s ease;
}

.social-card:hover .social-card-thumb::after {
    background: rgba(0, 0, 0, 0.25);
}

.social-card-badge {
    position: absolute;
    top: calc(0.5 * var(--vw));
    left: calc(0.5 * var(--vw));
    z-index: 2;
    pointer-events: none;

    padding: calc(0.15 * var(--vw)) calc(0.5 * var(--vw));

    background: #FF40E5;
    border: 2px solid #464646;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.6 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.socials-panel--youtube .social-card-badge {
    background: #FF5151;
}

.social-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    pointer-events: none;

    width: calc(3 * var(--vw));
    height: calc(3 * var(--vw));
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);
    border: 2px solid #464646;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.social-card-play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: calc(0.25 * var(--vw));

    border-left: calc(1 * var(--vw)) solid #464646;
    border-top: calc(0.6 * var(--vw)) solid transparent;
    border-bottom: calc(0.6 * var(--vw)) solid transparent;
}

.social-card:hover .social-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.social-card-meta {
    display: flex;
    flex-direction: column;
    gap: calc(0.1 * var(--vw));
    padding: 0 calc(0.2 * var(--vw));
}

.social-card-title {
    font-size: calc(0.85 * var(--vw));
    font-weight: 700;
    color: #303030;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-card-sub {
    font-size: calc(0.7 * var(--vw));
    font-weight: 600;
    color: rgba(70, 70, 70, 0.7);
}

/* ================================================================== */
/* ============================== FOOTER ============================ */
/* ================================================================== */

footer {
    width: 100%;
    height: auto;

    padding: 0 calc(15.5 * var(--vw)) calc(1 * var(--vw)) calc(15.5 * var(--vw));
}

.footer-top {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(2 * var(--vw));
}

.footer-top-left {
    width: 70%;
    height: calc(12.8 * var(--vw));

    border: 2px solid #464646;

    position: relative;
}

.footer-top-left-decorations {
    position: absolute;
    right: -4%;
    bottom: -2%;
    pointer-events: none;
}

.footer-top-left-decorations img, .footer-top-left-decorations video {
    width: calc(19 * var(--vw));
    height: auto;
    transform: translateX(calc(3 * var(--vw)));
}

.footer-top-left-cont {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(2 * var(--vw));

    padding: calc(2 * var(--vw)) calc(2 * var(--vw));
}

.footer-top-left-cont img {
    width: calc(9 * var(--vw));
    height: auto;
}

.footer-top-left-text {
    display: flex;
    flex-direction: column;
    gap: calc(0.8 * var(--vw));
}

.footer-top-left-text h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 calc(0.25 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.footer-top-left-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(1 * var(--vw));
}

.footer-top-left-bottom button {
    width: calc(10.4 * var(--vw));
    height: calc(2.5 * var(--vw));

    background: #FFFFFF;
    outline: none;
    border: 2px solid #434343;
    cursor: pointer;

    font-size: calc(0.85 * var(--vw));
    font-weight: 700;
    color: #434343;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 calc(1.5 * var(--vw));

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #434343;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.footer-top-left-bottom button svg {
    width: calc(1.1 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.footer-top-left-bottom button img {
    width: calc(1.3 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.footer-top-left-bottom button:hover {
    background: #F2F2F2;
    transform: translateY(calc(-0.2 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #434343;
}

.footer-top-left-bottom button:hover svg,
.footer-top-left-bottom button:hover img {
    transform: translateX(calc(0.4 * var(--vw)));
}

.footer-top-left-bottom button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #434343;
}

.footer-top-left-bottom a svg {
    filter: drop-shadow(0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25));
}
.footer-top-left-bottom a:nth-of-type(1) img {
    width: calc(2 * var(--vw));
    height: auto;
}
.footer-top-left-bottom a:nth-of-type(2) img {
    width: calc(2 * var(--vw));
    height: auto;
}
.footer-top-left-bottom a:nth-of-type(3) img {
    width: calc(1.7 * var(--vw));
    height: auto;
}

.footer-top-right {
    width: 30%;
    height: calc(12.8 * var(--vw));

    border: 2px solid #464646;

    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--vw));

    position: relative;

    padding: calc(0.5 * var(--vw)) calc(1.5 * var(--vw));
}

.footer-top-left-background,
.footer-top-right-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-top-left-background img,
.footer-top-right-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-top-left:hover .footer-top-left-background img,
.footer-top-right:hover .footer-top-right-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.footer-top-right-decorations {
    position: absolute;
    right: -13%;
    bottom: -2%;
    z-index: 1;
}

.footer-top-right-decorations img {
    width: calc(11 * var(--vw));
    height: auto;
}

.footer-top-right h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 calc(0.25 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.footer-top-right button {
    width: calc(9.5 * var(--vw));
    height: calc(2.5 * var(--vw));

    background: #FFFFFF;
    outline: none;
    border: 2px solid #434343;
    cursor: pointer;

    font-size: calc(0.85 * var(--vw));
    font-weight: 700;
    color: #434343;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 calc(1.5 * var(--vw));

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #434343;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.footer-top-right button svg {
    width: calc(1.1 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.footer-top-right button img {
    width: calc(1.3 * var(--vw));
    height: auto;
    transition: transform 0.25s ease;
}

.footer-top-right button:hover {
    background: #F2F2F2;
    transform: translateY(calc(-0.2 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #434343;
}

.footer-top-right button:hover svg,
.footer-top-right button:hover img {
    transform: translateX(calc(0.4 * var(--vw)));
}

.footer-top-right button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #434343;
}

.footer-top-right a svg {
    filter: drop-shadow(0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25));
}

.footer-copyright {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: calc(1 * var(--vw)) 0;
}

.footer-copyright p:nth-of-type(2) {
    text-align: right;
}

.footer-copyright p {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.7 * var(--vw));
    font-weight: 500;
    color: #464646;
}

.footer-copyright p a {
    font-family: 'FiveByFive', sans-serif;
    font-weight: 500;
    color: #F9A947;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(0.8 * var(--vw));
    width: fit-content;
    max-width: 92%;
    margin: calc(1.4 * var(--vw)) auto calc(0.8 * var(--vw));
    padding: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 12.5px;
    color: #383838;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: calc(0.5 * var(--vw)) calc(1.15 * var(--vw));
    background: #FFF8EC;
    border: 2px solid #4A4A4A;
    box-shadow: 0 3px 0 rgba(74, 74, 74, 0.28);
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, color 0.14s ease;
}

.footer-links a:hover {
    background: #FFA600;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 0 rgba(74, 74, 74, 0.32);
    text-decoration: none;
}

.footer-links a:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(74, 74, 74, 0.3);
}

.gratis-hint {
    width: fit-content;
    max-width: 94%;
    margin: calc(0.4 * var(--vw)) auto 0;
    padding: calc(0.3 * var(--vw)) calc(0.75 * var(--vw));
    background: #FFF3D6;
    border: 2px solid #4A4A4A;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: calc(0.62 * var(--vw));
    color: #B26A00;
    text-align: center;
    line-height: 1.25;
}

@media (max-width: 500px) {
    .gratis-hint { font-size: 2.7vw; border-width: 0.5vw; padding: 1vw 2vw; }
}

.promo-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.2 * var(--vw));
    margin-top: calc(0.25 * var(--vw));
}

.promo-pct {
    background: #FE4545;
    border: 2px solid #4A4A4A;
    color: #FFFFFF;
    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.6 * var(--vw));
    padding: 1px calc(0.5 * var(--vw));
    line-height: 1.3;
}

.promo-omnibus {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: calc(0.5 * var(--vw));
    color: #9a9a9a;
    text-align: center;
    line-height: 1.2;
    max-width: 94%;
}

@media (max-width: 500px) {
    .promo-pct { font-size: 2.8vw; border-width: 0.5vw; }
    .promo-omnibus { font-size: 2.3vw; }
}

.cart-item-promo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(0.4 * var(--vw));
    margin-top: calc(0.3 * var(--vw));
}

.cart-item-promo-old {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: calc(0.7 * var(--vw));
    color: #9a9a9a;
    text-decoration: line-through;
}

.cart-item-promo-pct {
    background: #FE4545;
    border: 2px solid #4A4A4A;
    color: #FFFFFF;
    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.55 * var(--vw));
    padding: 0 calc(0.4 * var(--vw));
    line-height: 1.4;
}

.cart-item-promo-omni {
    flex-basis: 100%;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: calc(0.55 * var(--vw));
    color: #9a9a9a;
    line-height: 1.2;
}

@media (max-width: 500px) {
    .cart-item-promo-old { font-size: 3.2vw; }
    .cart-item-promo-pct { font-size: 2.6vw; border-width: 0.5vw; }
    .cart-item-promo-omni { font-size: 2.6vw; }
}

.cart-pack-details {
    margin-top: calc(0.4 * var(--vw));
    display: flex;
    flex-direction: column;
    gap: calc(0.3 * var(--vw));
}

.cart-pack-set {
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: calc(0.72 * var(--vw));
    color: #B26A00;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cart-pack-els {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: calc(0.15 * var(--vw));
}

.cart-pack-els li {
    position: relative;
    padding-left: calc(0.9 * var(--vw));
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: calc(0.7 * var(--vw));
    color: #5a5a5a;
    line-height: 1.3;
}

.cart-pack-els li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFA600;
    font-weight: 900;
}

@media (max-width: 500px) {
    .cart-pack-set { font-size: 3vw; }
    .cart-pack-els li { font-size: 2.9vw; padding-left: 3.5vw; }
}

/* ================================================================== */
/* =============================== SHOP ============================= */
/* ================================================================== */

.shop {
    width: 100%;
    height: auto;

    padding: calc(12.5 * var(--vw)) calc(15.5 * var(--vw)) calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.shop-headline {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));
}

.shop-headline-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-headline-top h1, .shop-headline-top h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #303030;
}

.shop-headline-top-line {
    width: 82%;
    border: 1px solid #3F3F3F;
}

.shop-headline-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-headline-left-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(0.5 * var(--vw));
}

.shop-headline-left-buttons button {
    position: relative;
    overflow: hidden;

    width: calc(12 * var(--vw));
    height: calc(2.5 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: center;

    background: #FFFFFF;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.shop-headline-left-buttons button.is-active {
    background: #FFA600;
}

.shop-headline-left-buttons button.is-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-22deg);
    pointer-events: none;

    transition: left 0.6s ease;
}

.shop-headline-left-buttons button:hover {
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.shop-headline-left-buttons button.is-active:hover {
    background: #FFB733;
}

.shop-headline-left-buttons button.is-active:hover::before {
    left: 135%;
}

.shop-headline-left-buttons button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.shop-headline-buttons > button {
    position: relative;
    overflow: hidden;

    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    width: calc(13 * var(--vw));
    height: calc(3.2 * var(--vw));

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.shop-headline-buttons > button:hover {
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.shop-headline-buttons > button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.voucher-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.voucher-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-headline-buttons > button:hover .voucher-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.shop-panel {
    display: none;
}

.shop-panel.is-active {
    display: block;
    animation: shop-fade 0.4s ease;
}

@keyframes shop-fade {
    from { opacity: 0; transform: translateY(calc(0.8 * var(--vw))); }
    to   { opacity: 1; transform: translateY(0); }
}

.shop-section-headline {
    display: flex;
    align-items: center;
    gap: calc(1 * var(--vw));

    margin: calc(2.5 * var(--vw)) 0 calc(1.5 * var(--vw)) 0;
}

.shop-section-headline h3 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.3 * var(--vw));
    font-weight: 500;
    color: #303030;
    white-space: nowrap;
}

.shop-section-line {
    flex: 1;
    height: 2px;
    background: #3F3F3F;
}

.shop-ph {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 2px dashed #B0B0B0;
    color: #B0B0B0;
    font-size: calc(0.7 * var(--vw));
    font-weight: 700;
    text-align: center;
}

.ranks-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    align-items: stretch;
    column-gap: calc(1 * var(--vw));
}

.rank-card {
    border: 2px solid #464646;
    align-self: end;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: calc(1 * var(--vw));
}

.rank-card:not(.rank-card--promo) {
    align-self: stretch;
    gap: calc(0.8 * var(--vw));
    padding: 0 0 calc(0.8 * var(--vw)) 0;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #464646;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card:not(.rank-card--promo):hover {
    transform: translateY(calc(-0.5 * var(--vw)));
    box-shadow: 0 calc(0.65 * var(--vw)) 0 #464646;
}

.rank-card-box {
    position: relative;
    width: 100%;
    height: calc(7.5 * var(--vw));
}

.rank-card--elita {
    border: none;
    background: rgba(155, 60, 230, 0.10);
    box-shadow: none;
}

.rank-card--elita:hover {
    transform: none;
    box-shadow: none;
}

.rank-card--elita .rank-card-box {
    height: calc(8.8 * var(--vw));
}

.rank-card-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rank-card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rank-card:hover .rank-card-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.rank-card-render {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;

    transform: translate(-50%, calc(0 * var(--vw)));
}

.rank-card--elita .rank-card-render img, .rank-card--elita .rank-card-render video {
    display: block;
    width: calc(13 * var(--vw));
    height: auto;
}

.rank-card-render img, .rank-card-render video {
    display: block;
    width: calc(11 * var(--vw));
    height: auto;
}

.rank-card:not(.rank-card--promo) .rank-btn {
    width: calc(100% - calc(1.6 * var(--vw)));
}

.rank-card--promo {
    border: none;
    position: relative;
    padding: 0;
}

.rank-card-promo-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rank-card-promo-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rank-card--promo:hover .rank-card-promo-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.rank-card-promo {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: calc(7.2 * var(--vw));

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(0.6 * var(--vw));

    border: 2px solid #464646;

    padding: calc(1 * var(--vw)) calc(2 * var(--vw));
}

.rank-card-promo-render {
    transform: translateY(calc(0.3 * var(--vw)));
}

.rank-card-promo-render img, .rank-card-promo-render video {
    width: calc(14.5 * var(--vw));
    height: auto;
}

.ranks-upgrade-empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(1 * var(--vw));
    padding: calc(2.5 * var(--vw)) 0 calc(1 * var(--vw));
}

.ranks-upgrade-empty .ranks-empty-note {
    text-align: left;
    padding-left: calc(0.4 * var(--vw));
}

.ranks-upgrade-empty .rank-card--promo {
    width: calc(22 * var(--vw));
    max-width: 92vw;
}

@media (max-width: 900px) {
    .ranks-upgrade-empty .rank-card--promo {
        width: 72vw;
    }
    .ranks-upgrade-empty .rank-card-promo {
        height: auto;
        min-height: 190px;
        padding: 18px 22px;
    }
}

.rank-card .shop-ph {
    height: calc(7 * var(--vw));
}

.rank-card h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.5 * var(--vw));
    font-weight: 500;
    color: #464646;
    text-align: center;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.rank-card:not(.rank-card--promo) .rank-btn {
    margin-top: auto;
}

.rank-card.rank-card--promo h4 {
    color: #FFFFFF;
}

.rank-btn {
    width: 100%;
    height: calc(2.5 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #464646;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.rank-btn:hover {
    background: #FFB733;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #464646;
}

.rank-btn:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
}

.rank-card-features,
.rank-elita-stars {
    display: none;
}

.ranks-body {
    display: flex;
    flex-direction: column;

    margin-top: calc(1 * var(--vw));
}

.ranks-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    column-gap: calc(1 * var(--vw));

    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ranks-row:nth-child(even) {
    background: rgba(0, 0, 0, 0.035);
}

.ranks-row:hover {
    background: rgba(46, 155, 255, 0.10);
    box-shadow: inset calc(0.25 * var(--vw)) 0 0 #2E9BFF;
}

.ranks-label,
.ranks-cell {
    padding: calc(0.8 * var(--vw)) calc(1 * var(--vw));

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.85 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;

    display: flex;
    align-items: center;
}

.ranks-label {
    justify-content: flex-start;
    font-weight: 700;
    color: #303030;
}

.ranks-cell {
    justify-content: center;
    text-align: center;
}

.ranks-cell--elita {
    background: rgba(155, 60, 230, 0.10);
}

.ranks-icon {
    width: calc(1.1 * var(--vw));
    height: calc(1.1 * var(--vw));
    object-fit: contain;
    display: block;
}

.ranks-table {
    position: relative;
}

.ranks-elita-band {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc((100% - calc(3 * var(--vw))) / 4.4);
    z-index: 3;
    pointer-events: none;

    border-left: 2px solid #9B3CE6;
    border-right: 2px solid #9B3CE6;
    border-bottom: 2px solid #9B3CE6;
}

.ranks-elita-stars {
    width: 120%;
    height: 110%;

    position: relative;

    left: -10%;
    bottom: 5%;
}

.ranks-star {
    position: absolute;
    width: calc(2 * var(--vw));

    animation: star-float 3.2s ease-in-out infinite;
}

.ranks-star:nth-child(3n) {
    width: calc(1.6 * var(--vw));
    animation-duration: 4.2s;
    animation-delay: -1.1s;
}

.ranks-star:nth-child(3n+1) {
    width: calc(2.5 * var(--vw));
    animation-duration: 4.8s;
    animation-delay: -2.3s;
}

.ranks-star img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes star-float {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50%      { transform: translateY(calc(-0.6 * var(--vw))) rotate(8deg); }
}

.shop-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(1.5 * var(--vw));
}

.shop-product-mini {
    flex: 0 0 calc((100% - 4.5 * var(--vw)) / 4);
    box-sizing: border-box;
    border: 2px solid #464646;

    display: flex;
    flex-direction: column;

    box-shadow: 0 calc(0.05 * var(--vw)) 0 #464646;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-product-mini:hover {
    transform: translateY(calc(-0.4 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #464646;
}

.shop-product-mini-top {
    position: relative;
    width: 100%;
    height: calc(8.3 * var(--vw));
}

.shop-product-mini-background {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shop-product-mini-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-product-mini:hover .shop-product-mini-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.shop-product-mini-render {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 0;
}

.shop-product-mini-render img {
    display: block;
    width: calc(9 * var(--vw));
    height: auto;
}

.shop-product-mini-buy {
    margin-top: auto;
    display: flex;
    gap: calc(0.4 * var(--vw));

    padding: calc(0.7 * var(--vw)) calc(0.5 * var(--vw)) calc(0.7 * var(--vw)) calc(0.5 * var(--vw));
}

.shop-mini-price {
    flex: 1;
    height: calc(2.3 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #464646;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.85 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.shop-mini-info {
    width: calc(2.3 * var(--vw));
    height: calc(2.3 * var(--vw));

    background: #5182FF;
    outline: none;
    border: 2px solid #464646;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.shop-mini-info svg {
    width: calc(0.95 * var(--vw));
    height: auto;
    filter: drop-shadow(0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25));
}

.shop-mini-price:hover { background: #FFB733; transform: translateY(calc(-0.15 * var(--vw))); box-shadow: 0 calc(0.3 * var(--vw)) 0 #464646; }
.shop-mini-price:active { transform: translateY(calc(0.1 * var(--vw))); box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646; }

.shop-mini-info:hover { background: #4DABFF; transform: translateY(calc(-0.15 * var(--vw))); box-shadow: 0 calc(0.3 * var(--vw)) 0 #464646; }
.shop-mini-info:active { transform: translateY(calc(0.1 * var(--vw))); box-shadow: 0 calc(0.1 * var(--vw)) 0 #464646; }

/* ================================================================== */
/* ========================= MODAL VOUCHER ========================= */
/* ================================================================== */

.voucher-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.voucher-modal.open {
    opacity: 1;
    visibility: visible;
}

.voucher-box {
    position: relative;
    width: calc(34 * var(--vw));
    overflow: hidden;

    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: calc(2.2 * var(--vw)) calc(2.5 * var(--vw)) calc(2.2 * var(--vw)) calc(2.5 * var(--vw));

    transform: translateY(calc(1.5 * var(--vw))) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voucher-modal.open .voucher-box {
    transform: translateY(0) scale(1);
}

.voucher-close {
    position: absolute;
    top: calc(1 * var(--vw));
    right: calc(1.2 * var(--vw));

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.6 * var(--vw));
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease;
}

.voucher-close:hover {
    transform: scale(1.15);
}

.voucher-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    line-height: 105%;
}

.voucher-notification {
    display: none;
    width: 100%;
    margin-top: calc(1.2 * var(--vw));

    padding: calc(0.6 * var(--vw)) calc(0.8 * var(--vw));
    border: 2px solid #E04B4B;
    background: rgba(224, 75, 75, 0.10);

    font-size: calc(0.75 * var(--vw));
    font-weight: 700;
    color: #C23A3A;
    text-align: center;
}

.voucher-notification.show {
    display: block;
}

.voucher-notification.warn {
    border-color: #FFA600;
    background: rgba(255, 166, 0, 0.12);
    color: #C77F00;
}

.voucher-notification.success {
    border-color: #2FB344;
    background: rgba(47, 179, 68, 0.12);
    color: #1E8A30;
}

.voucher-fields {
    width: 100%;
    margin-top: calc(1.4 * var(--vw));

    display: flex;
    gap: calc(1 * var(--vw));
}

.voucher-field {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: calc(0.4 * var(--vw));
}

.voucher-field label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    color: #3F3F3F;
}

.voucher-input {
    display: flex;
    align-items: center;
    gap: calc(0.6 * var(--vw));

    height: calc(3 * var(--vw));
    padding: 0 calc(0.8 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;
}

.voucher-input img {
    object-fit: contain;
    flex-shrink: 0;
}

.voucher-field:nth-child(1) .voucher-input img {
    width: calc(2 * var(--vw));
    height: calc(2 * var(--vw));
}

.voucher-field:nth-child(2) .voucher-input img {
    width: calc(1.8 * var(--vw));
    height: calc(1.8 * var(--vw));
}

.voucher-input input {
    flex: 1;
    min-width: 0;

    border: none;
    outline: none;
    background: transparent;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.8 * var(--vw));
    color: #4A4A4A;
}

.voucher-input input::placeholder {
    color: #4A4A4A;
    opacity: 0.45;
}

.voucher-activate {
    margin-top: calc(1.4 * var(--vw));

    width: calc(14 * var(--vw));
    height: calc(2.7 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.voucher-activate:hover {
    background: #FFB733;
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.voucher-activate:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.voucher-render {
    margin-top: calc(1.4 * var(--vw));
    line-height: 0;
}

.voucher-render img {
    width: calc(22.2 * var(--vw));
    height: auto;
    display: block;
}

.voucher-page {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(9 * var(--vw)) calc(1.5 * var(--vw)) calc(5 * var(--vw));
}

.voucher-page .voucher-box {
    transform: none;
    width: calc(40 * var(--vw));
    max-width: 94vw;
    border: 3px solid #4A4A4A;
    box-shadow: 0 calc(0.55 * var(--vw)) 0 rgba(74, 74, 74, 0.28);
    padding: calc(2.8 * var(--vw)) calc(2.8 * var(--vw));
}

.voucher-page .voucher-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(0.6 * var(--vw));
    background: #FFA600;
}

.voucher-page .voucher-title {
    font-size: calc(3 * var(--vw));
    margin-top: calc(0.4 * var(--vw));
}

.voucher-page .voucher-subtitle {
    margin: calc(0.7 * var(--vw)) auto 0;
    max-width: calc(28 * var(--vw));
    font-size: calc(0.82 * var(--vw));
    font-weight: 700;
    line-height: 1.5;
    color: #6A6A6A;
    text-align: center;
}

.voucher-page .voucher-activate {
    width: 100%;
    height: calc(3 * var(--vw));
    margin-top: calc(1.6 * var(--vw));
    font-size: calc(0.95 * var(--vw));
}

@media (max-width: 900px) {
    .voucher-page .voucher-box {
        width: 92vw;
        padding: 26px 22px;
    }
    .voucher-page .voucher-fields {
        flex-direction: column;
    }
    .voucher-page .voucher-title {
        font-size: 34px;
    }
    .voucher-page .voucher-subtitle {
        max-width: 90%;
        font-size: 13px;
    }
    .voucher-page .voucher-activate {
        height: 46px;
        font-size: 15px;
    }
}

/* ================================================================== */
/* ==================== MODAL DODAJ DO KOSZYKA ===================== */
/* ================================================================== */

.addcart-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.addcart-modal.open {
    opacity: 1;
    visibility: visible;
}

.addcart-box {
    position: relative;
    width: calc(42 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;

    padding: calc(2 * var(--vw)) calc(2.5 * var(--vw)) calc(2.5 * var(--vw)) calc(2.5 * var(--vw));

    max-height: 90vh;
    overflow-y: auto;

    transform: translateY(calc(1.5 * var(--vw))) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.addcart-modal.open .addcart-box {
    transform: translateY(0) scale(1);
}

.addcart-close {
    position: absolute;
    top: calc(1 * var(--vw));
    right: calc(1.2 * var(--vw));

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.6 * var(--vw));
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease;
}

.addcart-close:hover {
    transform: scale(1.15);
}

.addcart-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    margin-bottom: calc(1.8 * var(--vw));
}

.addcart-body {
    display: flex;
    align-items: stretch;
    gap: calc(2 * var(--vw));
}

.addcart-product {
    flex: 0 0 34%;
    min-height: calc(13 * var(--vw));

    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
}

.addcart-render {
    position: relative;

    width: 100%;
    flex: 1;
    min-height: 0;
}

.addcart-render-bg {
    position: absolute;
    inset: 0;
}

.addcart-render-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.addcart-render > img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    height: calc(7.5 * var(--vw));
    width: auto;
    display: block;
}

.addcart-name {
    width: 100%;
    flex-shrink: 0;

    background: #FFFFFF;
    height: calc(3.5 * var(--vw));
    padding: 0 calc(1 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: center;
}

.addcart-name h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    line-height: 120%;
}

.addcart-controls {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: calc(1.5 * var(--vw));
}

.addcart-qty-block {
    border: 2px solid #4A4A4A;
    display: flex;
    flex-direction: column;
    gap: calc(0.9 * var(--vw));

    padding: calc(1 * var(--vw));
}

.addcart-label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    color: #3F3F3F;
}

.addcart-qty {
    display: flex;
    align-items: center;
    gap: calc(0.7 * var(--vw));
}

.addcart-qty-btn {
    width: calc(2.4 * var(--vw));
    height: calc(2.4 * var(--vw));
    flex-shrink: 0;

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.2 * var(--vw));
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.25s ease;
}

.addcart-qty-btn:hover {
    background: #FFB733;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.addcart-qty-btn:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.addcart-qty-val {
    width: calc(3 * var(--vw));
    height: calc(2.4 * var(--vw));
    flex-shrink: 0;

    border: 2px solid #4A4A4A;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    color: #3F3F3F;
}

.addcart-slider {
    flex: 1;
    min-width: 0;
    height: calc(0.6 * var(--vw));

    -webkit-appearance: none;
    appearance: none;
    background: #D9D9D9;
    border: 2px solid #4A4A4A;
    outline: none;
    cursor: pointer;
}

.addcart-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: calc(1.5 * var(--vw));
    height: calc(1.5 * var(--vw));
    background: #18EB00;
    border: 2px solid #4A4A4A;
    cursor: pointer;
}

.addcart-slider::-moz-range-thumb {
    width: calc(1.5 * var(--vw));
    height: calc(1.5 * var(--vw));
    background: #18EB00;
    border: 2px solid #4A4A4A;
    border-radius: 0;
    cursor: pointer;
}

.addcart-buy {
    border: 2px solid #4A4A4A;
    padding: calc(1 * var(--vw)) calc(1.2 * var(--vw));

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1 * var(--vw));
}

.addcart-price {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.6 * var(--vw));
    color: #3F3F3F;
    white-space: nowrap;
}

.addcart-add {
    height: calc(2.7 * var(--vw));
    padding: 0 calc(2 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.9 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.addcart-add:hover {
    background: #FFB733;
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.addcart-add:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

/* ================================================================== */
/* ===================== MODAL INFORMACJE (GUI) =================== */
/* ================================================================== */

.info-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.info-modal.open {
    opacity: 1;
    visibility: visible;
}

.info-box {
    position: relative;
    width: calc(40 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: calc(2 * var(--vw)) calc(2.5 * var(--vw)) calc(2.5 * var(--vw)) calc(2.5 * var(--vw));

    transform: translateY(calc(1.5 * var(--vw))) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-modal.open .info-box {
    transform: translateY(0) scale(1);
}

.info-close {
    position: absolute;
    top: calc(1 * var(--vw));
    right: calc(1.2 * var(--vw));

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.6 * var(--vw));
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease;
}

.info-close:hover {
    transform: scale(1.15);
}

.info-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
}

.info-desc {
    max-width: calc(26 * var(--vw));
    margin: calc(1 * var(--vw)) 0 calc(1.8 * var(--vw)) 0;

    font-family: 'Rubik', sans-serif;
    font-size: calc(0.85 * var(--vw));
    font-weight: 600;
    color: #6A6A6A;
    text-align: center;
    line-height: 140%;
}

.info-gui {
    width: calc(29 * var(--vw));

    display: flex;
    flex-direction: column;
    position: relative;

    padding: calc(0.6 * var(--vw)) calc(0.78 * var(--vw));

    background-color: #c6c6c6;
    box-shadow: calc(0.41 * var(--vw)) 0 0 0 #555555,
        0 calc(0.41 * var(--vw)) 0 0 #555555,
        calc(0.208 * var(--vw)) calc(0.208 * var(--vw)) 0 0 #555555,
        calc(-0.41 * var(--vw)) 0 0 0 #e8e8e8,
        0 calc(-0.41 * var(--vw)) 0 0 #e8e8e8,
        calc(-0.208 * var(--vw)) calc(-0.208 * var(--vw)) 0 0 #e8e8e8,
        0 0 0 calc(0.208 * var(--vw)) #b5b4b5,
        calc(0.208 * var(--vw)) calc(0.41 * var(--vw)) 0 0 #555,
        calc(0.41 * var(--vw)) calc(0.208 * var(--vw)) 0 0 #555,
        calc(-0.208 * var(--vw)) calc(-0.41 * var(--vw)) 0 0 #e8e8e8,
        calc(-0.41 * var(--vw)) calc(-0.208 * var(--vw)) 0 0 #e8e8e8,
        calc(0.41 * var(--vw)) calc(-0.208 * var(--vw)) 0 0 #000,
        calc(0.208 * var(--vw)) calc(-0.41 * var(--vw)) 0 0 #000,
        calc(-0.41 * var(--vw)) calc(0.208 * var(--vw)) 0 0 #000,
        calc(-0.208 * var(--vw)) calc(0.41 * var(--vw)) 0 0 #000,
        calc(-0.41 * var(--vw)) calc(-0.41 * var(--vw)) 0 0 #000,
        calc(0.41 * var(--vw)) calc(0.41 * var(--vw)) 0 0 #000,
        calc(-0.625 * var(--vw)) 0 0 0 #000,
        calc(-0.625 * var(--vw)) calc(-0.208 * var(--vw)) 0 0 #000,
        calc(0.625 * var(--vw)) 0 0 0 #000,
        calc(0.625 * var(--vw)) calc(0.208 * var(--vw)) 0 0 #000,
        0 calc(-0.625 * var(--vw)) 0 0 #000,
        calc(-0.208 * var(--vw)) calc(-0.625 * var(--vw)) 0 0 #000,
        0 calc(0.625 * var(--vw)) 0 0 #000,
        calc(0.208 * var(--vw)) calc(0.625 * var(--vw)) 0 0 #000;
    z-index: 1;
}

.info-gui-title {
    font-family: 'Minecraftia', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #555;
    display: inline-block;
    width: 100%;
    padding-left: calc(0.3125 * var(--vw));
    padding-bottom: calc(.4604 * var(--vw));
    font-size: calc(1.4 * var(--vw));
    line-height: calc(2 * var(--vw));
    margin-top: 0;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(9, calc(calc(2.601 * var(--vw)) + calc(0.41 * var(--vw))));
    grid-auto-rows: calc(calc(2.601 * var(--vw)) + calc(0.41 * var(--vw)));
}

.info-slot {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    height: calc(2.604 * var(--vw));
    width: calc(2.604 * var(--vw));

    background-color: #919191;
    box-shadow: calc(0.10 * var(--vw)) calc(0.10 * var(--vw)) 0 calc(0.10 * var(--vw)) #e8e8e8,
        calc(-0.10 * var(--vw)) calc(-0.10 * var(--vw)) 0 2px #555,
        0 0 0 calc(0.208 * var(--vw)) #8b8b8b;

    cursor: pointer;
}

.info-slot:hover {
    background-color: #c3c3c3;
}

.info-item {
    width: calc(2 * var(--vw));
    height: auto;
}

.info-tooltip {
    position: absolute;
    left: 0;
    bottom: calc(100% + calc(0.3 * var(--vw)));
    z-index: 5;

    min-width: calc(9 * var(--vw));
    height: calc(2.4 * var(--vw));

    display: none;
    justify-content: flex-start;
    align-items: center;

    padding: 0 calc(1 * var(--vw));
}

.info-slot:hover .info-tooltip {
    display: flex;
}

.info-tooltip img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;

    width: 100%;
    height: 100%;
}

.info-tooltip h5 {
    position: relative;
    z-index: 6;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.75 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
}

.info-box .shop-mini-price {
    flex: none;
    width: calc(13 * var(--vw));
    margin-top: calc(1.5 * var(--vw));
}

/* ================================================================== */
/* ======================= PRZYCISK MONET (toggle) ================== */
/* ================================================================== */

.coin-toggle {
    position: fixed;
    bottom: calc(1.5 * var(--vw));
    left: calc(1.5 * var(--vw));
    z-index: 99998;

    width: calc(2.4 * var(--vw));
    height: calc(2.4 * var(--vw));

    background: #FFFFFF;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.coin-toggle img {
    width: calc(1.4 * var(--vw));
    height: auto;
    display: block;
    transition: filter 0.2s ease;
}

.coin-toggle:hover {
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.35 * var(--vw)) 0 #4A4A4A;
}

.coin-toggle:active {
    transform: translateY(calc(0.05 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.coin-toggle.off {
    opacity: 0.5;
}

.coin-toggle.off img {
    filter: grayscale(1);
}

/* ================================================================== */
/* ========================= COOKIE CONSENT ======================== */
/* ================================================================== */

.cookie-banner {
    position: fixed;
    left: calc(1.5 * var(--vw));
    bottom: calc(1.5 * var(--vw));
    z-index: 99999;

    width: calc(30 * var(--vw));
    max-width: 480px;

    background: #FFFFFF;
    border: 3px solid #4A4A4A;
    box-shadow: 0 calc(0.4 * var(--vw)) 0 #4A4A4A;

    padding: calc(1.4 * var(--vw)) calc(1.6 * var(--vw));

    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));

    animation: cookieIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cookieIn {
    from { transform: translateY(calc(1 * var(--vw))); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-head {
    display: flex;
    align-items: center;
    gap: calc(0.8 * var(--vw));
}

.cookie-banner-icon {
    font-size: calc(1.4 * var(--vw));
    line-height: 1;
}

.cookie-banner-head h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #3F3F3F;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cookie-banner-text {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.6 * var(--vw));
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.7;
    text-transform: uppercase;
}

.cookie-banner-text a {
    color: #3F3F3F;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: calc(0.8 * var(--vw));

    margin-top: calc(0.3 * var(--vw));
}

.cookie-btn-close {
    width: calc(3 * var(--vw));
    height: calc(3 * var(--vw));
    flex: 0 0 auto;

    background: #E04B4B;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.1 * var(--vw));
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.18 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.cookie-btn-close:hover {
    background: #C23A3A;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.35 * var(--vw)) 0 #4A4A4A;
}

.cookie-btn-close:active {
    transform: translateY(calc(0.05 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.cookie-btn-accept {
    height: calc(3 * var(--vw));
    flex: 1;

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;
    padding: 0 calc(1.5 * var(--vw));

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.9 * var(--vw));
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.18 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
    white-space: nowrap;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.cookie-btn-accept:hover {
    background: #FFB733;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.35 * var(--vw)) 0 #4A4A4A;
}

.cookie-btn-accept:active {
    transform: translateY(calc(0.05 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

/* ================================================================== */
/* ============================= KOSZYK ============================= */
/* ================================================================== */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2001;

    width: calc(30 * var(--vw));
    height: 100vh;

    background: #F9F9F9;
    border-left: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-header {
    position: relative;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(1 * var(--vw));

    padding: calc(1.8 * var(--vw)) calc(2 * var(--vw)) calc(1 * var(--vw)) calc(2 * var(--vw));
}

.cart-header-line {
    flex: 1;
    height: 2px;
    background: #4A4A4A;
}

.cart-title {
    flex-shrink: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.4 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    letter-spacing: calc(0.05 * var(--vw));
}

.cart-close {
    position: absolute;
    top: calc(0.8 * var(--vw));
    right: calc(1.2 * var(--vw));

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.3 * var(--vw));
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease;
}

.cart-close:hover {
    transform: scale(1.15);
}

.cart-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));

    padding: calc(0.4 * var(--vw)) calc(1.4 * var(--vw)) calc(1.4 * var(--vw)) calc(1.4 * var(--vw));
}

.cart-body::-webkit-scrollbar {
    width: 5px;
}

.cart-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-body::-webkit-scrollbar-thumb {
    background: #FFA600;
}

.cart-box {
    background: #FFFFFF;
    border: 2px solid #4A4A4A;
    padding: calc(1 * var(--vw));
}

.cart-rewards {
    display: flex;
    flex-direction: column;
    gap: calc(0.8 * var(--vw));
}

.cart-reward {
    border: 2px solid #4A4A4A;
    padding: calc(0.65 * var(--vw)) calc(0.85 * var(--vw)) calc(0.75 * var(--vw)) calc(0.85 * var(--vw));
}

.cart-reward-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(0.6 * var(--vw));
    margin-bottom: calc(0.55 * var(--vw));
}

.cart-reward-info span {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.72 * var(--vw));
    color: #4A4A4A;
    letter-spacing: calc(0.03 * var(--vw));
    white-space: nowrap;
}

.cart-reward-info span:last-child {
    color: #727272;
}

.cart-reward-bar {
    width: 100%;
    height: calc(0.22 * var(--vw));
    background: #DADADA;
}

.cart-reward-fill {
    height: 100%;
    background: #1FCE1F;
    transition: width 0.4s ease;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: calc(0.85 * var(--vw));
}

.cart-items .cart-item:not(:last-child) {
    padding-bottom: calc(1 * var(--vw));
    border-bottom: 2px solid #ECECEC;
}

.cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'Rubik', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 700;
    color: #FFA600;
    line-height: 1;

    transition: transform 0.18s ease, color 0.18s ease;
}

.cart-item-remove:hover {
    color: #E04B4B;
    transform: scale(1.2) rotate(90deg);
}

.cart-item-thumb {
    position: relative;
    width: calc(3 * var(--vw));
    height: calc(3 * var(--vw));

    border: 2px solid #4A4A4A;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cart-item-thumb img {
    position: relative;
    width: 125%;
    height: auto;
}

.cart-item-thumb--red    { background: url('/images/shop/product-background-red.png')    center / cover; }
.cart-item-thumb--green  { background: url('/images/shop/product-background-green.png')  center / cover; }
.cart-item-thumb--yellow { background: url('/images/shop/product-background-yellow.png') center / cover; }
.cart-item-thumb--blue   { background: url('/images/shop/product-background-blue.png')   center / cover; }

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: calc(0.5 * var(--vw));
}

.cart-item-info h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.78 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
    letter-spacing: calc(0.03 * var(--vw));
}

.cart-item-price {
    font-family: 'Rubik', sans-serif;
    font-size: calc(0.9 * var(--vw));
    font-weight: 700;
    color: #3F3F3F;
    white-space: nowrap;
}

.cart-qty {
    display: flex;
    align-items: stretch;
    width: max-content;
    border: 2px solid #4A4A4A;
}

.cart-qty-btn {
    width: calc(1.7 * var(--vw));
    height: calc(1.7 * var(--vw));

    background: #FFA600;
    border: none;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(1 * var(--vw));
    color: #FFFFFF;
    line-height: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: background 0.18s ease;
}

.cart-qty-btn:hover {
    background: #FFB733;
}

.cart-qty-btn:active {
    background: #E89500;
}

.cart-qty-val {
    min-width: calc(2 * var(--vw));
    height: calc(1.7 * var(--vw));

    background: #FFFFFF;
    border-left: 2px solid #4A4A4A;
    border-right: 2px solid #4A4A4A;

    font-family: 'Rubik', sans-serif;
    font-size: calc(0.85 * var(--vw));
    font-weight: 700;
    color: #3F3F3F;

    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-free-btn,
.cart-add-btn {
    width: max-content;
    padding: calc(0.4 * var(--vw)) calc(1.1 * var(--vw));

    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.78 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.12 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.cart-free-btn {
    background: #1FCE1F;
}

.cart-add-btn {
    background: #FFA600;
}

.cart-free-btn:hover {
    background: #2CE02C;
    transform: translateY(calc(-0.18 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.cart-add-btn:hover {
    background: #FFB733;
    transform: translateY(calc(-0.18 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.cart-free-btn:active,
.cart-add-btn:active {
    transform: translateY(calc(0.06 * var(--vw)));
    box-shadow: 0 calc(0.06 * var(--vw)) 0 #4A4A4A;
}

.cart-item--added { opacity: 0.6; }
.cart-add-btn--added { background: #1FCE1F; }
.cart-add-btn--added:hover { background: #2CE02C; }

.cart-upsell {
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));
}

.cart-upsell-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    letter-spacing: calc(0.04 * var(--vw));
}

.cart-footer {
    flex-shrink: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1 * var(--vw));

    padding: calc(1.1 * var(--vw)) calc(1.4 * var(--vw));
    border-top: 2px solid #4A4A4A;
    background: #FFFFFF;
}

.cart-total {
    display: flex;
    flex-direction: column;
    gap: calc(0.15 * var(--vw));
}

.cart-total-label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    color: #3F3F3F;
    letter-spacing: calc(0.04 * var(--vw));
    white-space: nowrap;
}

.cart-total-value {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    color: #FFA600;
    letter-spacing: calc(0.04 * var(--vw));
    white-space: nowrap;
}

.cart-checkout {
    flex: 1;
    max-width: calc(12 * var(--vw));
    height: calc(2.9 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.82 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.12 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.cart-checkout:hover {
    background: #FFB733;
    transform: translateY(calc(-0.2 * var(--vw)));
    box-shadow: 0 calc(0.32 * var(--vw)) 0 #4A4A4A;
}

.cart-checkout:active {
    transform: translateY(calc(0.08 * var(--vw)));
    box-shadow: 0 calc(0.08 * var(--vw)) 0 #4A4A4A;
}

/* ================================================================== */
/* ============================== RULES ============================= */
/* ================================================================== */

.rules {
    width: 100%;
    height: auto;

    padding: calc(12.5 * var(--vw)) calc(15.5 * var(--vw)) calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.rules-headline {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: calc(2 * var(--vw));
}

.rules-headline-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1.5 * var(--vw));
}

.rules-headline h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #303030;
    white-space: nowrap;
}

.rules-headline-line {
    width: 100%;
    border: 1px solid #3F3F3F;
}

.rules-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(0.5 * var(--vw));
}

.rules-buttons button {
    position: relative;
    overflow: hidden;

    width: calc(12 * var(--vw));
    height: calc(2.5 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: center;

    background: #FFFFFF;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.rules-buttons button.is-active {
    background: #FFA600;
}

.rules-buttons button.is-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-22deg);
    pointer-events: none;

    transition: left 0.6s ease;
}

.rules-buttons button:hover {
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.rules-buttons button.is-active:hover {
    background: #FFB733;
}

.rules-buttons button.is-active:hover::before {
    left: 135%;
}

.rules-buttons button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

.rules-container {
    width: 100%;
    margin-top: calc(3 * var(--vw));
    border: 2px solid #4A4A4A;

    padding: calc(2 * var(--vw)) calc(3 * var(--vw));
}

.rules-tile {
    width: 100%;
    height: auto;

    display: none;
    flex-direction: column;
    gap: calc(1.2 * var(--vw));
}

.rules-tile.is-active {
    display: flex;
    animation: rules-appear 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes rules-appear {
    from {
        transform: translateY(calc(1.6 * var(--vw)));
    }
    to {
        transform: translateY(0);
    }
}

.rules-tile ul h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.5 * var(--vw));
    font-weight: 500;
    color: #2B2B2B;
    padding-bottom: calc(1 * var(--vw));
}

.rules-tile ul {
    list-style-type: decimal;
}

.rules-tile ul li {
    margin-left: calc(1.6 * var(--vw));
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    color: #2B2B2B;
}

.rules-contact {
    margin-top: calc(2 * var(--vw));
    position: relative;
    overflow: hidden;

    width: 100%;
    height: calc(8 * var(--vw));

    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: calc(0.4 * var(--vw));

    padding: 0 calc(3 * var(--vw));
}

.rules-contact-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rules-contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rules-contact:hover .rules-contact-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.rules-contact h5 {
    font-family: 'Rubik One', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

/* ================================================================== */
/* =============================== CART ============================= */
/* ================================================================== */

.cart {
    width: 100%;
    height: auto;

    padding: calc(12.5 * var(--vw)) calc(15.5 * var(--vw)) calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.cart-headline {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1.5 * var(--vw));
}

.cart-headline h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #303030;
}

.cart-headline-line {
    width: 100%;
    border: 1px solid #3F3F3F;
}

.cart-share-top {
    display: flex;
    justify-content: flex-end;
    margin-top: calc(1 * var(--vw));
}

.cart-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 3px solid #4A4A4A;
    background: #FFFFFF;
    color: #383838;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 3px 0 #4A4A4A;
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, color 0.14s ease;
}

.cart-share-btn svg {
    color: #FFA600;
    font-size: 17px;
    transition: color 0.14s ease;
}

.cart-share-btn:hover {
    background: #FFA600;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #4A4A4A;
}

.cart-share-btn:hover svg {
    color: #FFFFFF;
}

.cart-share-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #4A4A4A;
}

.cart-container {
    width: 100%;
    margin-top: calc(3 * var(--vw));

    display: flex;
    align-items: flex-start;
    gap: calc(1.5 * var(--vw));
}

.cart-col-left {
    flex: 65;
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));
}

.cart-col-right {
    flex: 35;
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));
}

.cart-rewards-row {
    display: flex;
    gap: calc(1.5 * var(--vw));
}

.cart-rewards-row .cart-reward {
    flex: 1;
    height: calc(4 * var(--vw));

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-rewards-row .cart-reward-bar {
    height: calc(0.7 * var(--vw));
}

.cart-personal {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: calc(10.6 * var(--vw));

    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(1.2 * var(--vw));

    padding: 0 calc(2 * var(--vw));
}

.cart-personal-bg {
    position: absolute;
    inset: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cart-personal-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-personal:hover .cart-personal-bg img {
    transform: scale(1.1) translate(3%, -3%);
}

.cart-personal-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.7 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: calc(0.05 * var(--vw));
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.2);
}

.cart-fields {
    display: flex;
    gap: calc(1.5 * var(--vw));
}

.cart-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: calc(0.6 * var(--vw));
}

.cart-field label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    color: #FFFFFF;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.2);
}

.cart-input {
    display: flex;
    align-items: center;
    gap: calc(0.6 * var(--vw));

    height: calc(2.7 * var(--vw));
    padding: 0 calc(0.8 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;
}

.cart-input img {
    width: calc(1.4 * var(--vw));
    height: calc(1.4 * var(--vw));
}

.cart-input input {
    width: 100%;
    background: none;
    border: none;
    outline: none;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 600;
    color: #4A4A4A;
    text-transform: uppercase;
}

.cart-input input::placeholder {
    color: #9A9A9A;
}

.cart-payment {
    width: 100%;

    border: 2px solid #4A4A4A;
    background: #FFFFFF;

    padding: calc(2 * var(--vw));
}

.cart-payment-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.4 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    margin-bottom: calc(1.3 * var(--vw));
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: calc(0.5 * var(--vw));
}

.payment-method {
    position: relative;
    overflow: hidden;

    width: calc(50% - calc(0.25 * var(--vw)));
    height: calc(3.5 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 calc(1 * var(--vw));

    transition: transform 0.18s ease;
}

.payment-method-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.payment-method-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: filter 0.25s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-method:hover .payment-method-bg img {
    transform: scale(1.1) translate(3%, -3%);
}

.payment-method:not(.is-active) .payment-method-bg img {
    filter: saturate(0.08) brightness(1.18);
    opacity: 0.5;
}

.payment-method-name {
    width: calc(10 * var(--vw));
    position: relative;
    z-index: 1;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    text-align: left;
}

.payment-method-logo {
    position: relative;
    z-index: 1;

    height: calc(1.1 * var(--vw));
    width: auto;
}

.payment-method[data-method="przelew"] .payment-method-logo {
    height: calc(1.21 * var(--vw));
}

.payment-method[data-method="terbex"] .payment-method-logo {
    height: calc(1.452 * var(--vw));
}

.payment-method[data-method="twisto"] .payment-method-logo {
    height: calc(1.584 * var(--vw));
}

.payment-method[data-method="sms"] .payment-method-logo {
    height: calc(1.331 * var(--vw));
}

.payment-method:hover {
    transform: translateY(calc(-0.15 * var(--vw)));
}

.cart-promo {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: calc(0.7 * var(--vw));
}

.cart-promo-row {
    display: flex;
    gap: calc(0.5 * var(--vw));
}

.cart-promo-input {
    flex: 1;
    min-width: 0;
    height: calc(2.7 * var(--vw));
    padding: 0 calc(0.95 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;
    box-shadow: 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
    outline: none;

    font-family: 'Rubik', sans-serif;
    font-size: calc(0.85 * var(--vw));
    font-weight: 700;
    color: #383838;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cart-promo-input::placeholder {
    color: #b3b3b3;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
}

.cart-promo-input:focus {
    border-color: #FFA600;
    box-shadow: 0 0 0 calc(0.16 * var(--vw)) rgba(255, 166, 0, 0.35), 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
}

.cart-promo-btn {
    flex: 0 0 auto;
    min-width: calc(8.5 * var(--vw));
    height: calc(2.7 * var(--vw));
    padding: 0 calc(1.1 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.72 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.06 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-transform: uppercase;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.cart-promo-btn:hover {
    background: #FFB733;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.cart-promo-btn:active {
    transform: translateY(calc(0.05 * var(--vw)));
    box-shadow: 0 calc(0.08 * var(--vw)) 0 #4A4A4A;
}

.cart-promo-btn:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
    box-shadow: 0 calc(0.08 * var(--vw)) 0 #4A4A4A;
}

.cart-terms {
    width: 100%;
    margin-top: calc(0.4 * var(--vw));
    padding: calc(1 * var(--vw)) 0 0;
    border-top: 2px solid #ECECEC;

    display: flex;
    flex-direction: column;
    gap: calc(0.75 * var(--vw));
}

.cart-check--all {
    padding-bottom: calc(0.75 * var(--vw));
    border-bottom: 2px solid #ECECEC;
}

.cart-check.cart-check--all input {
    width: calc(1.25 * var(--vw));
    height: calc(1.25 * var(--vw));
}

.cart-terms .cart-check.cart-check--all span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #383838;
}

.cart-terms-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.4 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    margin-bottom: calc(0.3 * var(--vw));
}

.cart-check {
    display: flex;
    align-items: center;
    gap: calc(0.7 * var(--vw));
    cursor: pointer;
}

.cart-check input {
    appearance: none;
    -webkit-appearance: none;

    flex-shrink: 0;
    width: calc(1.1 * var(--vw));
    height: calc(1.1 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    transition: background 0.18s ease;
}

.cart-check input:checked {
    background: #FFA600 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M4 12.5l5 5L20 6'/%3E%3C/svg%3E") center / 68% no-repeat;
}

.cart-check span {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-shadow: 0 calc(0.05 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.cart-terms .cart-check span {
    font-family: 'Rubik', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-shadow: none;
}

.cart-summary-box,
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--vw));
}

.cart-box-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    letter-spacing: calc(0.03 * var(--vw));
}

.cart-item-thumb--elita {
    background: url('/images/ranks/elita-background.png') center / cover;
}

.cart-col-right .cart-item {
    align-items: center;
}

.cart-col-right .cart-item-thumb {
    width: calc(4.2 * var(--vw));
    height: calc(4.2 * var(--vw));
}

.cart-col-right .cart-item-thumb img {
    width: 110%;
}

.cart-col-right .cart-item-info {
    justify-content: center;
}

.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: calc(0.7 * var(--vw));
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-row span {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.9 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
}

.cart-summary-row span:last-child {
    font-family: 'Rubik', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 500;
    color: #464646;
}

.cart-summary-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1 * var(--vw));

    padding-top: calc(1.2 * var(--vw));
    border-top: 2px solid #ECECEC;
}

.cart-summary-total {
    display: flex;
    flex-direction: column;
    gap: calc(0.15 * var(--vw));
}

.cart-summary-total-label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.5 * var(--vw));
    color: #3F3F3F;
    white-space: nowrap;
}

.cart-summary-total-value {
    font-family: 'Rubik', sans-serif;
    font-size: calc(1.5 * var(--vw));
    font-weight: 800;
    color: #FFA600;
    white-space: nowrap;
}

.cart-summary-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.5 * var(--vw));
}

.cart-summary-action .cart-checkout {
    flex: none;
    max-width: none;
    width: calc(10 * var(--vw));
    height: calc(3 * var(--vw));
    font-size: calc(0.78 * var(--vw));
    line-height: 1;
}

.cart-summary-vat {
    font-family: 'Rubik', sans-serif;
    font-size: calc(0.62 * var(--vw));
    font-weight: 500;
    color: #9A9A9A;
    text-align: center;
}

/* ================================================================== */
/* ============================= RANKINGS =========================== */
/* ================================================================== */

.rankings {
    width: 100%;
    height: auto;

    padding: calc(12.5 * var(--vw)) calc(15.5 * var(--vw)) calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.rankings-headline {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1.5 * var(--vw));
}

.rankings-headline h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #303030;
}

.rankings-headline-line {
    width: 100%;
    border: 1px solid #3F3F3F;
}

.rankings-container {
    width: 100%;
    margin-top: calc(3 * var(--vw));

    display: flex;
    align-items: flex-start;
    gap: calc(1 * var(--vw));
}

.rankings-server {
    width: 100%;
    height: auto;
}

.rankings-server-headline {
    display: flex;
    align-items: center;
    gap: calc(1 * var(--vw));

    margin: calc(0.5 * var(--vw)) 0 calc(1.5 * var(--vw)) 0;
}

.rankings-server-headline h3 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.3 * var(--vw));
    font-weight: 500;
    color: #303030;
    white-space: nowrap;
}

.rankings-server-line {
    flex: 1;
    height: 2px;
    background: #3F3F3F;
}

.ranking-server-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: calc(1.5 * var(--vw));

    padding: 0 0 calc(3 * var(--vw)) 0;
}

.cp-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(1 * var(--vw));
    padding: calc(3.5 * var(--vw)) 0;
    width: 100%;
}

.cp-loader-ring {
    width: calc(3 * var(--vw));
    height: calc(3 * var(--vw));
    min-width: 34px;
    min-height: 34px;
    border: calc(0.35 * var(--vw)) solid rgba(74, 74, 74, 0.18);
    border-top-color: #FFA600;
    border-radius: 50%;
    animation: cp-spin 0.8s linear infinite;
}

.cp-loader-text {
    font-weight: 800;
    color: #6a6a6a;
    letter-spacing: 0.5px;
}

@keyframes cp-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes freeShine {
    0% { transform: translateX(-160%); }
    55%, 100% { transform: translateX(320%); }
}
.free-shine { overflow: hidden; }
.free-shine::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
    transform: translateX(-160%);
    animation: freeShine 2.4s ease-in-out infinite;
}
@keyframes freeGlow {
    0%, 100% { box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.85), 0 0 10px 1px rgba(249, 115, 22, 0.30); }
    50% { box-shadow: 0 0 0 2px rgba(249, 115, 22, 1), 0 0 18px 4px rgba(249, 115, 22, 0.50); }
}
.free-glow { animation: freeGlow 1.5s ease-in-out infinite; }
@keyframes freePop {
    0% { transform: scale(0.7); }
    60% { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.free-pop { animation: freePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@media (prefers-reduced-motion: reduce) {
    .free-shine::after,
    .free-glow,
    .free-pop { animation: none; }
}

.ranking-server-tile {
    position: relative;

    width: calc(16 * var(--vw));
    height: calc(6.1 * var(--vw));

    border: 2px solid #464646;
    cursor: pointer;

    transition: transform 0.3s ease;
}

.ranking-server-tile-cont {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;

    padding: 0 calc(1 * var(--vw)) 0 0;
}

.ranking-server-tile-render img {
    width: calc(5.5 * var(--vw));
    height: auto;
    object-fit: contain;
}

.ranking-server-tile-text {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
}

.ranking-server-tile-text h5 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
    letter-spacing: calc(0.1 * var(--vw));
}

.ranking-server-tile-text span {
    font-size: calc(1.1 * var(--vw));
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
    letter-spacing: calc(0.1 * var(--vw));
    width: max-content;
}

.ranking-server-tile {
    animation: cp-fade-in 0.4s ease both;
}

@keyframes cp-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ranking-server-tile:hover {
    transform: translateY(calc(-0.5 * var(--vw)));
}

.ranking-server-tile-background {
    position: absolute;
    inset: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ranking-server-tile-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ranking-server-tile:hover .ranking-server-tile-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.ranking-players-tiles,
.ranking-guilds-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(1.8 * var(--vw));

    padding-bottom: calc(2 * var(--vw));
}

.ranking-players-col {
    display: flex;
    flex-direction: column;
}

.ranking-players-col-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    font-weight: 500;
    color: #303030;
    margin-bottom: calc(1 * var(--vw));
}

.ranking-players-list {
    display: flex;
    flex-direction: column;
    gap: calc(0.6 * var(--vw));
}

.ranking-player-tile {
    display: none;
    align-items: center;
    gap: calc(1 * var(--vw));

    padding: calc(0.7 * var(--vw)) calc(0.9 * var(--vw));
    border: 2px solid #3F3F3F;
}

.ranking-player-tile.is-visible {
    display: flex;
    animation: ranking-tile-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ranking-tile-in {
    from {
        opacity: 0;
        transform: translateY(calc(-0.9 * var(--vw)));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ranking-player-tile.is-visible.is-leaving {
    animation: ranking-tile-out 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ranking-tile-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(calc(-0.9 * var(--vw)));
    }
}

.ranking-player-rank {
    width: calc(2.6 * var(--vw));
    flex-shrink: 0;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.5 * var(--vw));
    font-weight: 400;
    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.ranking-players-list .ranking-player-tile:nth-child(1) .ranking-player-rank {
    color: #FFA600;
}

.ranking-players-list .ranking-player-tile:nth-child(2) .ranking-player-rank {
    color: #B367FF;
}

.ranking-players-list .ranking-player-tile:nth-child(3) .ranking-player-rank {
    color: #25C6D9;
}

.ranking-players-list .ranking-player-tile:nth-child(n+4) .ranking-player-rank {
    color: #B8B8B8;
}

.ranking-player-head {
    width: calc(2 * var(--vw));
    height: calc(2 * var(--vw));
    flex-shrink: 0;
}

.ranking-player-name {
    flex: 1;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
}

.ranking-player-points {
    flex-shrink: 0;
    white-space: nowrap;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
}

.ranking-player-points .rp-num {
    font-family: 'Rubik', sans-serif;
    font-size: calc(1 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
}

.ranking-btns {
    display: flex;
    justify-content: flex-end;
    gap: calc(0.6 * var(--vw));
    margin-top: calc(1 * var(--vw));
}

.ranking-more-btn,
.ranking-less-btn {
    width: calc(7.2 * var(--vw));
    height: calc(2 * var(--vw));

    background: #FFFFFF;
    outline: none;
    border: 2px solid #3F3F3F;
    cursor: pointer;

    font-family: 'Rubik', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;

    transition: transform 0.18s ease, background 0.2s ease;
}

.ranking-less-btn {
    display: none;
}

.ranking-server-btns {
    display: none;
}

.ranking-more-btn:hover,
.ranking-less-btn:hover {
    background: #F2F2F2;
    transform: translateY(calc(-0.15 * var(--vw)));
}

.ranking-more-btn:active,
.ranking-less-btn:active {
    transform: translateY(calc(0.05 * var(--vw)));
}

/* ================================================================== */
/* ========================= MODAL ZAMÓWIENIA ====================== */
/* ================================================================== */

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.order-modal.open {
    opacity: 1;
    visibility: visible;
}

.order-box {
    position: relative;
    width: calc(47 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 90vh;
    overflow: hidden;

    transform: translateY(calc(1.5 * var(--vw))) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.order-modal.open .order-box {
    transform: translateY(0) scale(1);
}

.order-close {
    position: absolute;
    top: calc(1 * var(--vw));
    right: calc(1.2 * var(--vw));

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.6 * var(--vw));
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease;
}

.order-close:hover {
    transform: scale(1.15);
}

.order-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.3 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    line-height: 105%;

    margin-bottom: calc(1.8 * var(--vw));
}

.order-title span {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(3.5 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    line-height: 105%;

    margin-bottom: calc(1.8 * var(--vw));
}

.order-carousel {
    width: 100%;
    display: flex;
    align-items: center;
    gap: calc(0.6 * var(--vw));
}

.order-arrow {
    flex-shrink: 0;

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'Rubik', sans-serif;
    font-size: calc(2.4 * var(--vw));
    font-weight: 700;
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease, color 0.18s ease;
}

.order-arrow:hover {
    color: #FFA600;
    transform: scale(1.2);
}

.order-track {
    flex: 1;
    min-width: 0;

    display: flex;
    gap: calc(1 * var(--vw));

    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;

    scroll-snap-type: x mandatory;

    padding-top: calc(2.2 * var(--vw));
}

.order-track::-webkit-scrollbar {
    display: none;
}

.order-product {
    flex: 0 0 calc((100% - calc(2 * var(--vw))) / 3);
    scroll-snap-align: start;

    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
}

.order-product-top {
    position: relative;
    overflow: visible;

    width: 100%;
    height: calc(7.5 * var(--vw));
}

.order-product-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.order-product-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-product:hover .order-product-bg img {
    transform: scale(1.1) translate(3%, -3%);
}

.order-product-render {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.order-product-render img {
    width: auto;
    height: calc(9 * var(--vw));
    display: block;
}

.order-product-name {
    padding: calc(0.7 * var(--vw)) calc(0.5 * var(--vw));
    text-align: center;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.75 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
    line-height: 120%;
}

.order-product-btn {
    margin: auto calc(0.7 * var(--vw)) calc(0.7 * var(--vw)) calc(0.7 * var(--vw));
    height: calc(2.3 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.72 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.order-product-btn:hover {
    background: #FFB733;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.order-product-btn:active {
    transform: translateY(calc(0.05 * var(--vw)));
    box-shadow: 0 calc(0.05 * var(--vw)) 0 #4A4A4A;
}

.order-product--added { opacity: 0.55; }
.order-product-btn--added { background: #1FCE1F; }
.order-product-btn--added:hover { background: #2CE02C; }

.order-scroll {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: calc(2.4 * var(--vw)) calc(2.5 * var(--vw)) calc(1 * var(--vw));
}

.order-footer {
    flex-shrink: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.7 * var(--vw));

    padding: calc(1.2 * var(--vw)) calc(2.5 * var(--vw)) calc(2.4 * var(--vw));

    background: #FFFFFF;
    border-top: 2px solid rgba(74, 74, 74, 0.15);
}

.order-sum {
    margin: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.05 * var(--vw));
    font-weight: 500;
    color: #4A4A4A;
    letter-spacing: calc(0.03 * var(--vw));
}

.order-sum span {
    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.1 * var(--vw));
    font-weight: 400;
    color: #FFA600;
}

.order-pay {
    margin-top: 0;

    width: calc(26 * var(--vw));
    max-width: 100%;
    height: calc(4.2 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.2 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.order-pay:hover {
    background: #FFB733;
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.order-pay:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

/* ================================================================== */
/* ============================= CONFIRM ============================ */
/* ================================================================== */

.confirm {
    width: 100%;
    height: auto;

    padding: calc(12.5 * var(--vw)) calc(15.5 * var(--vw)) calc(2 * var(--vw)) calc(15.5 * var(--vw));
}

.confirm-container {
    margin-top: calc(4 * var(--vw));
    position: relative;

    width: 100%;
    height: calc(14 * var(--vw));

    border: 2px solid #4A4A4A;
}

.confirm-container-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.confirm-container-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.confirm-container:hover .confirm-container-background img {
    transform: scale(1.1) translate(3%, -3%);
}

.confirm-content {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(4 * var(--vw));
}

.confirm-content-left {
    display: flex;
    flex-direction: column;
}

.confirm-content-left h2 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(3 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.5);
}

.confirm-content-left p {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.9 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    text-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(0, 0, 0, 0.1);
}

.confirm-content img {
    width: calc(18 * var(--vw));
    height: auto;

    clip-path: inset(0 0 6.8% 0);
}

.confirm-summary {

    width: 100%;
    height: auto;

    padding: calc(2 * var(--vw)) 0 calc(3 * var(--vw)) 0;
}

.confirm-summary-headline {
    display: flex;
    align-items: center;
    gap: calc(1 * var(--vw));

    margin-bottom: calc(1.5 * var(--vw));
}

.confirm-summary-headline h3 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.3 * var(--vw));
    font-weight: 500;
    color: #303030;
    white-space: nowrap;
}

.confirm-summary-line {
    flex: 1;
    height: 2px;
    background: #3F3F3F;
}

.confirm-summary-tiles {
    display: flex;
    align-items: stretch;
    gap: calc(1.5 * var(--vw));

    width: 100%;
}

.confirm-tile {
    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    padding: calc(1.5 * var(--vw));

    display: flex;
    flex-direction: column;
}

.confirm-tile--products {
    flex: 2;
}

.confirm-tile--details,
.confirm-tile--help {
    flex: 1;
}

.confirm-tile h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.1 * var(--vw));
    font-weight: 400;
    color: #303030;
    line-height: 1.5;
}

/* LISTA PRODUKTÓW */

.confirm-tile--products h4 {
    margin-bottom: calc(1.5 * var(--vw));
}

.confirm-products {
    display: flex;
    flex-direction: column;
    gap: calc(0.6 * var(--vw));
}

.confirm-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1 * var(--vw));
}

.confirm-product span {
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #3F3F3F;
}

.confirm-product--total {
    margin-top: calc(1.4 * var(--vw));
}

/* ID / DATA / PŁATNOŚĆ */

.confirm-tile--details {
    gap: calc(0.9 * var(--vw));
}

.confirm-detail {
    display: flex;
    flex-direction: column;
    gap: calc(0.25 * var(--vw));
}

.confirm-detail h5 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.65 * var(--vw));
    font-weight: 400;
    color: #6A6A6A;
}

.confirm-detail p {
    font-size: calc(0.9 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
}

/* PROBLEM Z ZAKUPEM? */

.confirm-tile--help h4 {
    margin-bottom: calc(0.8 * var(--vw));
}

.confirm-tile--help p {
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #3F3F3F;
    line-height: 1.45;

    margin-bottom: calc(1.1 * var(--vw));
}

.confirm-tile--help button {
    width: 100%;
    height: calc(2.3 * var(--vw));

    background: #5182FF;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;

    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.confirm-tile--help button:hover {
    background: #4DABFF;
    transform: translateY(calc(-0.15 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.confirm-tile--help button:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

/* ================================================================== */
/* ====================== MODAL ULEPSZ RANGĘ ======================== */
/* ================================================================== */

.upgrade-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.upgrade-modal.open {
    opacity: 1;
    visibility: visible;
}

.upgrade-box {
    position: relative;
    width: calc(42 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #4A4A4A;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: calc(2.2 * var(--vw)) calc(2.5 * var(--vw));

    transform: translateY(calc(1.5 * var(--vw))) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.upgrade-modal.open .upgrade-box {
    transform: translateY(0) scale(1);
}

.upgrade-box--choose {
    width: calc(47 * var(--vw));
}

.upgrade-close {
    position: absolute;
    top: calc(1 * var(--vw));
    right: calc(1.2 * var(--vw));

    background: none;
    border: none;
    cursor: pointer;
    padding: 0;

    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.6 * var(--vw));
    color: #4A4A4A;
    line-height: 1;

    transition: transform 0.18s ease;
}

.upgrade-close:hover {
    transform: scale(1.15);
}

.upgrade-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(2.5 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-align: center;
    line-height: 105%;
}

/* ------------------------- KROK 1: FORMULARZ ---------------------- */

.upgrade-form {
    width: 100%;
    margin-top: calc(0.2 * var(--vw));

    display: flex;
    flex-direction: column;
    gap: calc(1.4 * var(--vw));
}

.upgrade-section-title {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.4 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    margin-bottom: calc(0.8 * var(--vw));
}

.upgrade-terms {
    display: flex;
    flex-direction: column;
    gap: calc(0.8 * var(--vw));
}

.upgrade-terms .cart-check span {
    font-family: 'Rubik', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-shadow: none;
}

.upgrade-next {
    margin-top: calc(1.4 * var(--vw));

    width: calc(14 * var(--vw));
    height: calc(2.7 * var(--vw));

    background: #FFA600;
    outline: none;
    border: 2px solid #4A4A4A;
    cursor: pointer;

    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 400;
    color: #FFFFFF;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    text-shadow: 0 calc(0.15 * var(--vw)) 0 rgba(0, 0, 0, 0.25);

    box-shadow: 0 calc(0.10 * var(--vw)) 0 #4A4A4A;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease;
}

.upgrade-next:hover {
    background: #FFB733;
    transform: translateY(calc(-0.22 * var(--vw)));
    box-shadow: 0 calc(0.3 * var(--vw)) 0 #4A4A4A;
}

.upgrade-next:active {
    transform: translateY(calc(0.1 * var(--vw)));
    box-shadow: 0 calc(0.1 * var(--vw)) 0 #4A4A4A;
}

/* ---------------------- KROK 2: WYBÓR ULEPSZENIA ------------------ */

/* kolumny wyrównane do góry — kafelki rang zaczynają się na tej samej wysokości */
.upgrade-compare {
    width: 100%;
    margin-top: calc(1.6 * var(--vw));

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: calc(1.8 * var(--vw));
}

.upgrade-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.5 * var(--vw));
}

.upgrade-nick {
    display: flex;
    align-items: center;
    gap: calc(0.35 * var(--vw));
}

.upgrade-nick img {
    width: calc(1.15 * var(--vw));
    height: calc(1.15 * var(--vw));
    object-fit: contain;
}

.upgrade-nick span {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.8 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-transform: uppercase;
    text-shadow: 0 calc(0.05 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.upgrade-current-label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.95 * var(--vw));
    font-weight: 500;
    color: #3F3F3F;
    text-shadow: 0 calc(0.05 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}


/* kafelek rangi — ta sama budowa co rank-card w sklepie */
.upgrade-tile {
    width: calc(11 * var(--vw));

    background: #FFFFFF;
    border: 2px solid #464646;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(0.6 * var(--vw));

    padding: 0 0 calc(0.7 * var(--vw)) 0;

    box-shadow: 0 calc(0.15 * var(--vw)) 0 #464646;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease;
}

.upgrade-tile-box {
    position: relative;
    width: 100%;
    height: calc(7 * var(--vw));
}

.upgrade-tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.upgrade-tile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

    transform: scale(1.1);
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.upgrade-tile:hover .upgrade-tile-bg img {
    transform: scale(1.1) translate(3%, -3%);
}

.upgrade-tile-render {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;

    transform: translateX(-50%);
}

.upgrade-tile-render img {
    display: block;
    width: calc(8.5 * var(--vw));
    height: auto;
}

.upgrade-tile h4 {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(1.2 * var(--vw));
    font-weight: 500;
    color: #464646;
    text-align: center;
    text-shadow: 0 calc(0.08 * var(--vw)) 0 rgba(0, 0, 0, 0.25);
}

.upgrade-arrow {
    flex-shrink: 0;
    line-height: 0;

    /* strzałka na środku wysokości kafelków */
    margin-top: calc(4.1 * var(--vw));
}

.upgrade-arrow img {
    width: calc(2.2 * var(--vw));
    height: auto;
}

.upgrade-options {
    display: flex;
    align-items: flex-start;
    gap: calc(1.2 * var(--vw));
}

.upgrade-option {
    display: flex;
    flex-direction: column;
    gap: calc(0.7 * var(--vw));
}

.upgrade-option .upgrade-tile {
    cursor: pointer;
}

.upgrade-option .upgrade-tile:hover {
    transform: translateY(calc(-0.3 * var(--vw)));
    box-shadow: 0 calc(0.45 * var(--vw)) 0 #464646;
}

/* ELITA — większy render, jak w sklepie */
.upgrade-option--elita .upgrade-tile-render img {
    width: calc(9.5 * var(--vw));
}

/* niewybrane ulepszenie — kafelek i przycisk przygaszone, tło dodatkowo wyszarzone */
.upgrade-option:not(.is-active) .upgrade-tile {
    opacity: 0.75;
}

.upgrade-option:not(.is-active) .upgrade-tile-bg img {
    filter: saturate(0.08) brightness(1.18);
}

.upgrade-option:not(.is-active) .rank-btn {
    opacity: 0.75;
}

/* cena nad przyciskiem — stara przekreślona mniejsza i wyżej (jak potęga) */
.upgrade-price-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: calc(0.3 * var(--vw));
}

.upgrade-price-new {
    font-family: 'Rubik', sans-serif;
    font-size: calc(1.05 * var(--vw));
    font-weight: 800;
    color: #FFA600;
    white-space: nowrap;
    -webkit-text-stroke: calc(0.2 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
}

.upgrade-price-old {
    font-family: 'Rubik', sans-serif;
    font-size: calc(0.62 * var(--vw));
    font-weight: 800;
    color: #9A9A9A;
    text-decoration: line-through;
    white-space: nowrap;
    text-shadow: 0 calc(0.06 * var(--vw)) 0 rgba(0, 0, 0, 0.2);

    transform: translateY(calc(-0.08 * var(--vw)));
}

.upgrade-option .rank-btn {
    height: calc(2.3 * var(--vw));
    font-size: calc(0.75 * var(--vw));
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.25s ease, opacity 0.25s ease;
}

/* ------------------- SUMA + PRZEJDŹ DO PŁATNOŚCI ------------------ */

.upgrade-summary {
    width: 100%;
    margin-top: calc(1.4 * var(--vw));
    padding-top: calc(1 * var(--vw));
    border-top: 2px solid #ECECEC;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1 * var(--vw));
}

/* pomniejszona wersja podsumowania z koszyka */
.upgrade-summary .cart-summary-total {
    gap: calc(0.1 * var(--vw));
}

.upgrade-summary .cart-summary-total-label {
    font-size: calc(1.1 * var(--vw));
}

.upgrade-summary .cart-summary-total-value {
    font-size: calc(1.1 * var(--vw));
}

.upgrade-summary .cart-summary-action {
    gap: calc(0.35 * var(--vw));
}

.upgrade-summary .cart-checkout {
    width: calc(10.5 * var(--vw));
    height: calc(2.4 * var(--vw));
    font-size: calc(0.66 * var(--vw));
}

.upgrade-summary .cart-summary-vat {
    font-size: calc(0.55 * var(--vw));
}

/* ================================================================== */
/* ================ ULTRAWIDE (szerzej niż 1920px, 21:9) ============ */
/* ================================================================== */

@media (min-width: 1920px) {
    /* cała strona trzyma szerokość Full HD i jest wycentrowana */
    body {
        max-width: 1920px;
        margin: 0 auto;
    }

    /* nav i marquee celowo zostają full-width (tło/cień na całą szerokość) —
       content navbara centruje --nav-pad-x zdefiniowany w :root */
}
/* ================================================================== */
/* ===================== PACK ELEMENTS (z obrazkami) =============== */
/* ================================================================== */

.featured-tile-desc ul.pack-elements {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(0.4 * var(--vw));
    align-content: start;
}

.pack-el {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(0.2 * var(--vw));
    padding: calc(0.5 * var(--vw)) calc(0.3 * var(--vw));
    background: #FFF8EC;
    border: 2px solid #4A4A4A;
    box-shadow: 0 calc(0.1 * var(--vw)) 0 rgba(74, 74, 74, 0.35);
    min-width: 0;
    position: relative;
}

.pack-el-img {
    width: calc(2.7 * var(--vw));
    height: calc(2.7 * var(--vw));
    object-fit: contain;
    image-rendering: pixelated;
}

.pack-el-hidden {
    width: calc(2.7 * var(--vw));
    height: calc(2.7 * var(--vw));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik One', sans-serif;
    font-size: calc(1.9 * var(--vw));
    color: #C026D3;
    -webkit-text-stroke: calc(0.03 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    line-height: 1;
}

.pack-el-amt {
    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.68 * var(--vw));
    color: #FFA600;
    -webkit-text-stroke: calc(0.02 * var(--vw)) #4A4A4A;
    paint-order: stroke fill;
    line-height: 1;
}

.pack-el-name {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: calc(0.6 * var(--vw));
    color: #383838;
    text-align: center;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.pack-el-promo {
    position: absolute;
    top: calc(0.15 * var(--vw));
    right: calc(0.15 * var(--vw));
    font-family: 'Rubik One', sans-serif;
    font-size: calc(0.5 * var(--vw));
    color: #FFFFFF;
    background: #FE4545;
    border: 1px solid #4A4A4A;
    padding: 0 calc(0.22 * var(--vw));
    line-height: 1.5;
}

.pack-carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(0.55 * var(--vw));
}

.pack-track {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: calc(0.45 * var(--vw));
    width: 100%;
}

.pack-track ul.pack-elements {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

.pack-arrow {
    align-self: stretch;
    width: calc(1.5 * var(--vw));
    min-width: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(180deg, #FFB733 0%, #FFA600 100%);
    border: 2px solid #4A4A4A;
    box-shadow: 0 calc(0.12 * var(--vw)) 0 #4A4A4A;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.12s ease, filter 0.2s ease, box-shadow 0.12s ease;
}

.pack-arrow:hover { filter: brightness(1.08); box-shadow: 0 calc(0.22 * var(--vw)) 0 #4A4A4A; transform: translateY(calc(-0.08 * var(--vw))); }
.pack-arrow:active { transform: translateY(calc(0.08 * var(--vw))); box-shadow: 0 calc(0.04 * var(--vw)) 0 #4A4A4A; }
.pack-arrow svg { display: block; }

.pack-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(0.3 * var(--vw));
}

.pack-dot {
    width: calc(0.5 * var(--vw));
    height: calc(0.5 * var(--vw));
    min-width: 6px;
    min-height: 6px;
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid #4A4A4A;
    transition: background 0.2s ease;
}

.pack-dot.is-active { background: #FFA600; }

@media (max-width: 500px) {
    .featured-tile-desc ul.pack-elements { gap: 1.8vw; }
    .pack-el { padding: 2.2vw 1.5vw; border-width: 0.5vw; gap: 1vw; }
    .pack-el-img, .pack-el-hidden { width: 12vw; height: 12vw; }
    .pack-el-hidden { font-size: 8vw; }
    .pack-el-amt { font-size: 3.4vw; }
    .pack-el-name { font-size: 3vw; }
    .pack-el-promo { font-size: 2.6vw; }
    .pack-arrow { width: 11vw; min-width: 0; }
    .pack-dot { width: 2.4vw; height: 2.4vw; min-width: 0; min-height: 0; }
}

/* Edytowalna ilość w koszyku */
.cart-qty-input {
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;
    outline: none;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ================================================================== */
/* ========================= SKELETONY ============================= */
/* ================================================================== */

.cp-skeleton {
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
    border-radius: 2px;
}
.cp-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    animation: cp-shimmer 1.3s ease-in-out infinite;
}
@keyframes cp-shimmer {
    100% { transform: translateX(100%); }
}

.info-slot { position: relative; }
.info-slot-img {
    position: absolute;
    inset: 12%;
    width: 76%;
    height: 76%;
    object-fit: contain;
    image-rendering: pixelated;
}

.info-slot-name {
    position: absolute;
    bottom: calc(100% + calc(0.25 * var(--vw)));
    left: 50%;
    transform: translateX(-50%);
    display: none;
    white-space: nowrap;
    background: #1a1a1a;
    border: 2px solid #4A4A4A;
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: calc(0.62 * var(--vw));
    letter-spacing: 0.01em;
    padding: calc(0.12 * var(--vw)) calc(0.5 * var(--vw));
    z-index: 20;
    pointer-events: none;
}

.info-slot:hover .info-slot-name {
    display: block;
}

@media (max-width: 500px) {
    .info-slot-name { font-size: 3vw; border-width: 0.5vw; }
}

.info-rank-feats {
    list-style: none;
    margin: calc(1 * var(--vw)) auto 0;
    padding: 0;
    width: 100%;
    max-width: calc(30 * var(--vw));
    max-height: calc(17 * var(--vw));
    overflow-y: auto;
    border: 2px solid #4A4A4A;
    background: #FFF8EC;
}

.info-rank-feat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(1 * var(--vw));
    padding: calc(0.5 * var(--vw)) calc(0.8 * var(--vw));
}

.info-rank-feat:nth-child(even) {
    background: rgba(74, 74, 74, 0.06);
}

.info-rank-feat-label {
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.78 * var(--vw));
    color: #303030;
    text-align: left;
    line-height: 1.2;
}

.info-rank-feat-value {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'FiveByFive', sans-serif;
    font-size: calc(0.78 * var(--vw));
    color: #B26A00;
    text-align: right;
    white-space: nowrap;
}

.info-rank-icon {
    width: calc(1.1 * var(--vw));
    height: auto;
    display: block;
    image-rendering: pixelated;
}

@media (max-width: 500px) {
    .info-rank-feats { max-width: 100%; max-height: 60vw; }
    .info-rank-feat { padding: 2vw 3vw; }
    .info-rank-feat-label, .info-rank-feat-value { font-size: 3.5vw; }
    .info-rank-icon { width: 5vw; }
}
