:root {
    --bg: #000;
    --text: #fff;
    --muted: #b8b8b8;
    --panel: #111;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

body.store-body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none;
}

.nav-left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 8px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.nav-link:hover {
    color: #b3b3b3;
}

.nav-link.active {
    border-bottom-color: #fff;
}

@media (max-width: 480px) {
    .nav-left {
        gap: 10px;
    }
    .nav-link {
        padding: 4px 6px;
        font-size: 12px;
    }
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    height: 32px;
    object-fit: contain;
    filter: contrast(1.1)
}

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

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px
}

.search-form input {
    height: 36px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
    background: #0f0f0f;
    color: #fff;
    padding: 0 14px;
    width: 240px;
    outline: none;
}

.search-form button {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
}

.search-results {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow: auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    display: none;
    box-shadow: var(--shadow);
}

.search-results.active {
    display: block
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.result-item:hover {
    background: #1b1b1b
}

.result-item img {
    width: 44px;
    height: 56px;
    object-fit: contain;
    background: #0f0f0f;
    border-radius: 6px
}

.result-item span {
    font-size: 14px
}

.cart-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 52px;
    gap: 6px;
    border: none !important;
    background: none !important;
    color: #fff;
    cursor: pointer;
}

.cart-ico {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1)
}

.cart-badge {
    position: absolute;
    top: -9px;
    right: -6px;
    background: #fff;
    color: #000;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button .cart-badge {
    top: -1px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px
}

.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 4px 14px
}

.section-head h1 {
    margin: 0;
    font-size: 22px;
    letter-spacing: .06em
}

.pill {
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 260px);
    gap: 16px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.scroll-row::-webkit-scrollbar {
    height: 8px
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px
}

.card {
    background: #0f0f0f;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: transform .15s ease;
}

.card:hover {
    transform: translateY(-3px)
}

.card-media {
    position: relative;
    aspect-ratio: 3/4;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.quick-view {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    padding: 10px 14px;
    font-weight: 700;
    background: #000;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: .15s ease;
}

.card:hover .quick-view {
    opacity: 1;
    transform: translateY(0)
}

.card-title {
    margin: 10px 12px 6px;
    font-size: 15px
}

.card-meta {
    margin: 0 12px 8px;
    color: #bdbdbd;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    display: inline-block
}

.dot.grey {
    background: #888
}

.dot.green {
    background: #4caf50
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.modal.active {
    display: flex
}

.modal__dialog {
    width: min(1050px, 92vw);
    background: #fff;
    color: #000;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 18px;
    animation: pop .18s ease;
}

@keyframes pop {
    from {
        transform: translateY(10px);
        opacity: 0
    }
    to {
        transform: none;
        opacity: 1
    }
}

.modal__close {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 10000;
    border: none;
    background: #000;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal__close:hover {
    background: #222;
}

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

.modal__stage img,
#mainImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: transparent;
    border: none;
    border-radius: 0;
}

.modal__stage img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.thumbs {
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    overflow: auto
}

.thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.modal__right h2 {
    margin: 0 0 4px 0
}

.modal__stage {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.modal__stage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.color-line,
.price-line {
    margin: 0;
    font-weight: 600
}

.sizes__row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.size-btn {
    min-width: 44px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.size-btn.active {
    background: #000;
    color: #fff;
    border-color: #000
}

.cart {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(440px, 90vw);
    background: #fff;
    color: #000;
    transform: translateX(110%);
    transition: transform .18s ease;
    z-index: 70;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 40px rgba(0, 0, 0, .35);
}

.cart.active {
    transform: none
}

.cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #eee
}

.cart__title {
    font-weight: 800
}

.cart__close {
    border: 0;
    background: #000;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer
}

.cart__list {
    padding: 8px 10px;
    overflow: auto;
    flex: 1
}

.cart__item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 10px 6px;
    border-bottom: 1px solid #f2f2f2;
    align-items: center;
}

.cart__item img {
    width: 64px;
    height: 84px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 8px
}

.cart__info h4 {
    margin: 0 0 4px 0;
    font-size: 14px
}

.cart__info p {
    margin: 0;
    color: #666;
    font-size: 12px
}

.rowprice {
    font-weight: 700
}

.cart__remove {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 18px
}

.cart__foot {
    padding: 14px 16px;
    border-top: 1px solid #eee;
    display: grid;
    gap: 10px
}

.cart__total {
    font-weight: 800;
    display: flex;
    justify-content: space-between
}

.checkout {
    height: 40px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.site-footer {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 20px;
    margin-top: 0px;
}

.site-footer .pay img {
    width: 26px;
    height: 26px;
    margin-right: 8px;
}

.site-footer .socials img {
    width: 26px;
    height: 26px;
}

.site-footer .copyright {
    color: #fff;
    text-decoration: none
}

.add-mini,
.add-to-bag,
.checkout {
    font-family: Poppins, sans-serif
}

.info-section {
    background-color: #000;
    color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 36px 20px;
    flex-wrap: wrap;
    gap: 28px;
    border-top: 1px solid #222;
    font-family: 'Poppins', sans-serif;
}

.info-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.05em;
}

.info-left a,
.info-right a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-left a:hover,
.info-right a:hover {
    color: #fff;
    transform: translateX(5px);
}

.info-center {
    text-align: center;
    max-width: 500px;
    flex: 1;
}

.info-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.info-text {
    font-size: 14px;
    color: #bdbdbd;
    margin-bottom: 20px;
    line-height: 1.5;
}

.info-address {
    font-size: 13px;
    color: #777;
}

.modal__dialog {
    position: relative;
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s ease;
}

.modal__close:hover {
    background: #222;
}

@media (max-width: 900px) {
    .info-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    .info-left,
    .info-right {
        width: 100%;
    }
    .info-center {
        order: -1;
    }
    .info-left a,
    .info-right a {
        font-size: 15px;
    }
}

.dot.white,
.color-btn.white {
    background: #fff;
    border: 1px solid #ccc;
}

.color-btn.black {
    background: #000;
}

.color-btn.grey {
    background: #777;
}

.color-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.color-btn.active {
    border-color: #000;
}

.size-guide-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 95vw);
    height: 100%;
    background: #fff;
    color: #000;
    transform: translateX(110%);
    transition: transform .25s ease;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 24px;
    overflow-y: auto;
}

.size-guide-modal.active {
    transform: translateX(0);
}

.size-guide-content {
    width: 100%;
    max-width: none;
    padding: 0;
    background: none;
    box-shadow: none;
}

.close-size-guide {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.unit-toggle {
    margin: 60px 0 16px 0;
}

.size-guide-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.unit-btn {
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    background: #e4e4e4;
    color: #111;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

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

.size-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.close-size-guide:hover {
    background: #222;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.action-btn {
    background: #f5f5f5;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn img {
    width: 22px;
    height: 22px;
}

.action-btn:hover {
    background: #000;
    transform: scale(1.05);
}

.action-btn:hover img {
    filter: invert(1);
}

.delivery-info {
    border-top: 1px solid #eee;
    margin-top: 16px;
    padding-top: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.delivery-info h4 {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 15px;
}

.delivery-info .delivery-link {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.delivery-info .delivery-link:hover {
    opacity: 0.7;
}

.fav-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    margin-right: 12px;
}

.fav-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.fav-button:hover .fav-icon {
    transform: scale(1.1);
}

.navbar {
    z-index: 2000;
}

#cartDrawer,
#quickModal,
.size-guide-modal {
    z-index: 3000;
}

.brand-message {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin: 30px 0;
}

.brand-message-content {
    width: 100%;
    max-width: 800px;
    padding: 14px 8px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.brand-message-content h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.brand-message-content p {
    font-size: 12.5px;
    color: #b3b3b3;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .brand-message-content {
        max-width: 800px;
        padding: 14px 8px;
    }
    .brand-message-content h2 {
        font-size: 18px;
    }
    .brand-message-content p {
        font-size: 12.5px;
    }
}

.join-movement {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    color: #fff;
    text-align: center;
    margin: 40px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.join-inner {
    width: 100%;
    max-width: 800px;
    padding: 20px 10px;
}

.join-inner h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.join-inner p {
    color: #b3b3b3;
    font-size: 12.5px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.join-form {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.join-form input {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    width: 240px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
}

.join-form button {
    background: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.join-form button:hover {
    background: #f3f3f3;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .join-movement {
        margin: 30px 0;
    }
    .join-inner {
        max-width: 800px;
        padding: 16px 8px;
    }
    .join-form {
        flex-wrap: wrap;
        justify-content: center;
    }
    .join-form input,
    .join-form button {
        width: 100%;
        max-width: 280px;
    }
}

.login-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.login-button:hover .login-icon {
    transform: scale(1.1);
    opacity: 0.8;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    background-color: black;
}

@media (max-width: 768px) {
    .hero-video {
        opacity: 0.35;
        object-position: center center;
    }
}

:root {
    --promo-height: 36px;
}

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--promo-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6f7;
    color: #111;
    font: 600 13px/1.2 "Poppins", system-ui, sans-serif;
    z-index: 2000;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.promo-bar .promo-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
    opacity: 0.9;
}

body.store-body {
    padding-top: var(--promo-height);
}

header.navbar {
    position: sticky;
    top: var(--promo-height);
    z-index: 1500;
}

body.store-body {
    padding-top: var(--promo-height);
}

.nav-center img.logo {
    height: 44px;
    max-height: 44px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.nav-center img.logo:hover {
    transform: scale(1.05);
}

main.container {
    padding-top: 80px;
}

.fav-button .cart-badge {
    right: -12px;
    top: -6px;
}

body.product-body {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.product-page {
    width: min(1050px, 92vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 30px;
}

@media (max-width: 900px) {
    .product-page {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.sizes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 10px;
}

.selected-size {
    margin-left: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    background: rgba(255, 255, 255, 0);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sizes__label {
    font-weight: 600;
    font-size: 15px;
}

.size-guide {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    transition: 0.2s ease;
}

.size-guide:hover {
    opacity: 0.7;
}

.sizes__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 5px;
    width: 100%;
}

.size-btn {
    width: 58px;
    height: 42px;
    border: 1px solid #807d7d;
    border-radius: 0;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.size-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.size-btn:disabled {
    position: relative;
    color: #555;
    border-color: #444;
    cursor: not-allowed;
    opacity: 0.5;
}

.size-btn:disabled::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 2px;
    background: #000;
    top: 50%;
    left: 5%;
    transform: rotate(-45deg);
}

.color-line {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.color-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.color-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.8px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-btn:hover {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.color-btn.active {
    border: 2px solid #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.add-to-bag {
    width: 100%;
    padding: 16px 0;
    border: 1px solid #b7483d;
    background: #fff;
    color: #b7483d;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}

.add-to-bag img {
    filter: invert(31%) sepia(31%) saturate(520%) hue-rotate(340deg) brightness(85%) contrast(90%);
}

@keyframes sizeFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.size-btn.active {
    animation: sizeFade .25s ease;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.add-to-bag img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.25s ease;
}

.add-to-bag:not(.loading):not(.added):hover img {
    transform: scale(1.05);
}

.add-to-wishlist img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.25s ease;
}

.add-to-wishlist:not(.loading):not(.added):hover img {
    transform: scale(1.05);
}

.add-to-wishlist {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid #a10000;
    border-radius: 0;
    padding: 10px 0;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-wishlist:hover {
    background-color: #a10000;
    color: #fff;
    transform: scale(1.02);
}

.add-to-wishlist.active {
    background: #9c0000;
    color: #fff;
    border-color: #9c0000;
}

.add-to-wishlist.active img {
    filter: brightness(0) invert(1);
}

.size-guide {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.size-guide img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0);
    transition: transform 0.2s ease;
}

.size-guide:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}

.size-guide:hover img {
    transform: rotate(-10deg);
}

.product-info-tabs {
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
}

.info-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.info-tab span {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.info-tab .arrow {
    font-size: 20px;
    line-height: 1;
}

.unit-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.unit-btn {
    background: #f2f2f2;
    border: none;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.unit-btn.active {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.unit-btn:not(.active):hover {
    background: #e3e3e3;
}

.size-img {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.size-img.fading {
    opacity: 0;
}

.unit-btn {
    transition: background-color .2s ease, color .2s ease;
}

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

.close-size-guide {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #222;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 10;
}

.close-size-guide:hover {
    transform: scale(1.1);
    color: #000;
}

.close-size-guide {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 22px;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s ease;
}

.close-size-guide:hover {
    background: #222;
}

.sizes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: -1px;
}

.sizes__label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 400;
    opacity: 0.85;
}

.size-guide {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
    text-decoration: none;
    transition: all 0.2s ease;
}

.size-guide img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.size-guide:hover {
    color: #fff;
}

.size-guide:hover img {
    opacity: 1;
}

.sizes__row {
    margin-top: 6px;
}

.add-to-bag {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000000;
    color: #630000;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #630000;
    border-radius: 0px;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-bag.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #590000;
    border-top-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 2s linear infinite;
}

.add-to-bag.added {
    background: #9c0000;
    transition: background 1s ease;
}

.add-to-bag.added::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: url("../assets/check.png") no-repeat center center / contain;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: checkFade 1s ease forwards;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes checkFade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    40% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.bag-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.add-to-bag.shake {
    animation: shakeAnim 0.4s ease;
}

@keyframes shakeAnim {
    0%,
    100% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-6px);
    }
    40% {
        transform: translateX(6px);
    }
    60% {
        transform: translateX(-4px);
    }
    80% {
        transform: translateX(4px);
    }
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 8px 0 12px;
    font-family: "Cinzel", serif;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.old-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    text-decoration-thickness: 1.2px;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    margin-right: 4px;
    letter-spacing: 0.3px;
    opacity: 1;
}

.new-price {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.new-price small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 3px;
}

.price-line:hover .new-price {
    transform: scale(1.02);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.product-page,
.product-page * {
    font-family: "Cinzel", serif !important;
    letter-spacing: 0.4px;
}

.product-page button,
.product-page .size-btn,
.product-page .color-btn {
    font-weight: 600;
    text-transform: uppercase;
}

.product-page p,
.product-page a,
.product-page span,
.product-page label {
    font-weight: 400;
    font-size: 14px;
}

.product-page h1,
.product-page h2,
.product-page h3 {
    font-weight: 700;
    letter-spacing: 0.6px;
}

.card .price,
.card .price-line,
.card .new-price,
.card .old-price {
    font-family: 'OCR-B Std', monospace !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
}

.card .price,
.card .new-price {
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

.card .old-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    text-decoration: line-through;
    text-decoration-thickness: 1.2px;
    margin-right: 4px;
}

.card .price-line {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    min-height: 24px;
}

.card .old-price {
    position: relative;
    top: -1px;
}

.card .new-price {
    position: relative;
    top: 0;
    display: inline-block;
}

.card h3 {
    min-height: 40px;
    margin-bottom: 6px;
}

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

.simple-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-header .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.simple-header .logo-img {
    height: 46px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.simple-header .logo-img:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

body {
    padding-top: 80px;
}

.modal__right h2 {
    margin-bottom: 8px;
}

.price-line {
    margin-top: 0;
    margin-bottom: 12px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #000 !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: auto;
    position: relative;
}

.card-media {
    height: 220px;
    flex: none;
    overflow: hidden;
    position: relative;
    background: #000;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-meta,
.card-meta .dot {
    display: none !important;
}

.card-bottom {
    background: #000 !important;
    padding-top: 6px !important;
    padding-bottom: 10px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.card-title {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 6px 0 2px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.card .price-line,
.card .price {
    font-family: 'OCR-B Std', monospace !important;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.25);
    letter-spacing: 0.3px;
    margin-top: -2px;
    margin-bottom: 10px !important;
}

.card .add-mini {
    display: block !important;
    width: 100%;
    height: 42px;
    background: #000;
    color: #6a0f0f;
    font-family: "Cinzel", serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid #6a0f0f;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 0;
}

.card .add-mini:hover {
    color: #6a0f0f;
    background: #000;
    box-shadow: 0 0 6px rgba(138, 0, 0, 0.6);
}

.card h3,
.card-title {
    min-height: 0 !important;
    margin-bottom: 2px !important;
}

.card {
    background: #000 !important;
    box-shadow: none !important;
}

.card-bottom {
    background: #000 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.card .add-mini {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #6a0f0f;
}

.size-guide-modal {
    background: rgba(0, 0, 0, 0.96) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;
}

.size-guide-modal img.size-img {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 !important;
    max-width: 420px;
    width: 90%;
    height: auto;
    filter: invert(1) brightness(0.9) contrast(1.1);
    transition: all 0.4s ease;
}

.unit-toggle {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    justify-content: center;
}

.unit-btn {
    width: 60px;
    height: 38px;
    background: #000;
    color: #fff;
    border: 1px solid #6a0f0f;
    border-radius: 0 !important;
    font-family: "Cinzel", serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.unit-btn.active {
    background: #6a0f0f;
    border-color: #fff;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.unit-btn:hover {
    border-color: #fff;
    transform: scale(1.05);
}

.size-guide-modal img.size-img {
    filter: invert(1) brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.locale-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-family: "Cinzel", serif;
    font-size: 14px;
    color: #fff;
    background: #0d0d0d !important;
    padding: 6px 10px;
    width: 100%;
    margin: 0 !important;
}

.locale-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.divider {
    color: #666;
}

.site-footer .locale-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 16px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: #0b0b0b;
}

.site-footer .locale-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover
}

.site-footer .locale-block .divider {
    opacity: .5
}

.site-footer #locale-country,
.site-footer #locale-currency,
.site-footer .divider {
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width:768px) {
    .site-footer .locale-block {
        margin: 4px auto 12px;
        padding: 10px 14px;
        gap: 10px
    }
    .site-footer .locale-flag {
        width: 18px;
        height: 18px
    }
}

.site-footer {
    padding-bottom: 20px;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    z-index: 9998;
}

.cookie-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #d1d1d1;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.45s ease;
    pointer-events: none;
}

.cookie-banner.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    position: relative;
    padding: 24px 20px 28px;
    max-width: 700px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
}

.cookie-content a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-content button {
    display: block;
    width: 100%;
    padding: 14px 0;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.cookie-content button:hover {
    background-color: #333;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    transition: 0.25s;
}

.cookie-close:hover {
    color: #000;
}

@media (max-width: 600px) {
    .cookie-content {
        padding: 20px 16px 24px;
    }
    .cookie-content h3 {
        font-size: 16px;
    }
    .cookie-content p {
        font-size: 13px;
    }
}

.cookie-content .cookie-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 12px 0;
    color: #000;
    display: block;
}

@media (max-width: 600px) {
    .cookie-content .cookie-title {
        font-size: 16px;
    }
}

.promo-box {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.promo-box input {
    flex: 1;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 12px;
    border: 1.5px solid #d4d4d4;
    transition: 0.25s ease;
    outline: none;
    font-weight: 500;
}

.promo-box input:focus {
    border-color: #000;
}

.promo-box input.error {
    border-color: #ff3b3b !important;
    background: #ffe5e5;
}

.promo-box button {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: 0.25s ease;
}

.promo-box button:hover {
    opacity: 0.8;
}

.promo-message {
    margin-top: 5px;
    font-size: 14px;
    min-height: 18px;
    color: #111;
    font-weight: 600;
}

.promo-success {
    color: #2ecc71;
    font-weight: 600;
}

.promo-error {
    color: #e74c3c;
    font-weight: 600;
}

#promoInput {
    text-transform: uppercase;
}

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

.subtotal-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

#savedAmount {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#savedAmount.visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-inline {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.45);
    opacity: 0.7;
    margin-left: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transform: translateY(1px);
}

.cart-pay-icons {
    margin-top: 6px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 1;
}

.cart-pay-icons img {
    height: 18px;
    width: auto;
    filter: none;
    opacity: 0.9;
    transition: 0.2s ease;
}

.cart-pay-icons img:hover {
    opacity: 1;
}

.promo-box {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
}

#promoInput {
    flex: 1;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #ccc;
    padding: 0 14px;
    font-size: 12px;
    outline: none;
}

#promoInput::placeholder {
    color: #999;
    font-size: 12px;
}

#applyPromo {
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.checkout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.checkout-lock {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
    opacity: 1;
    display: inline-block;
}

.cart .locale-block,
#cartDrawer .locale-block,
.cart #locale-block {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    margin: 0 !important;
    background: transparent !important;
    color: #111 !important;
    justify-content: flex-start;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 8px;
    box-shadow: none;
}

.cart .locale-block .locale-flag,
#cartDrawer .locale-block .locale-flag,
.cart #locale-block .locale-flag {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 2px;
}

.cart .locale-block span,
.cart #locale-block span {
    color: #111 !important;
    font-size: 13px;
    line-height: 1;
    display: inline-block;
}

.cart .locale-block .divider,
.cart #locale-block .divider {
    opacity: 0.5;
    margin: 0 8px;
}

.cart .locale-block {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .cart .locale-block {
        padding: 10px 12px;
        gap: 8px;
    }
    .cart .locale-flag {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }
    .cart .locale-block span {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

.cart__item button,
.cart__item .qty-minus,
.cart__item .qty-plus,
.cart__item .qty-btn,
.cart__item .cart__remove,
.cart__item .remove,
.cart__item [data-action="decrease"],
.cart__item [data-action="increase"],
.cart__item [aria-label*="decrease"],
.cart__item [aria-label*="increase"] {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 0 6px !important;
    margin: 0 8px !important;
    vertical-align: middle !important;
    color: #555 !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
    transition: opacity .12s ease, transform .12s ease !important;
}

.cart__item button:hover,
.cart__item .cart__remove:hover,
.cart__item .qty-minus:hover,
.cart__item .qty-plus:hover {
    opacity: .6 !important;
    transform: translateY(-1px) !important;
}

.cart__item input[type="number"],
.cart__item .qty-count,
.cart__item .qty-value,
.cart__item .quantity-value,
.cart__item span.qty {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 6px !important;
    width: 18px !important;
    height: auto !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #444 !important;
    line-height: 1 !important;
    display: inline-block !important;
    pointer-events: none !important;
}

.cart__item input[type="number"]::-webkit-outer-spin-button,
.cart__item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

@media (max-width: 480px) {
    .cart__item button,
    .cart__item .qty-minus,
    .cart__item .qty-plus {
        font-size: 18px !important;
        padding: 0 6px !important;
        margin: 0 6px !important;
    }
    .cart__item input[type="number"],
    .cart__item .qty-count {
        width: 20px !important;
        font-size: 15px !important;
    }
}

.checkout {
    position: relative;
    overflow: hidden;
}

.checkout .label {
    display: inline-block;
    transition: opacity .25s ease, transform .25s ease;
}

.checkout.loading .label {
    opacity: 0;
    transform: scale(.98);
    pointer-events: none;
}

.checkout.loading::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinCheckout 0.72s linear infinite;
    z-index: 5;
}

.checkout.loading .checkout-lock {
    opacity: 0.6;
    transform: translateY(-1px);
    transition: opacity .25s ease, transform .25s ease;
}

@keyframes spinCheckout {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.checkout .checkout-lock {
    transition: opacity .35s ease, transform .35s ease;
}

.checkout.loading .checkout-lock {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.login-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.login-label {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.login-tooltip-bubble {
    position: fixed;
    max-width: 260px;
    background: #ffffff;
    color: #000;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.login-tooltip-bubble.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.login-tooltip-bubble p {
    margin: 0;
}

.login-tooltip-bubble .lt-small {
    font-size: 11px;
}

.login-tooltip-bubble a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.login-tooltip-bubble::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    border-width: 0 7px 7px 7px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.login-icon {
    width: 22px;
    height: auto;
    filter: invert(1);
}

.cart__remove,
.cart__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
    color: #000000;
}

.cart__remove-icon {
    width: 14px;
    height: 14px;
    display: block;
}

.cart__remove:hover,
.cart__close:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: scale(1.08);
    opacity: 0.95;
}

.cart__remove:active,
.cart__close:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.16);
}

#cartDrawer {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #000;
    padding: 24px;
}

#cartDrawer strong,
#cartDrawer b {
    font-weight: 500;
}

#cartDrawer .cart__head,
#cartDrawer .cart__head * {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#cartDrawer .cart__info h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#cartDrawer .cart__empty,
#cartDrawer .cart-empty,
#cartDrawer .empty {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: center;
    margin-top: 24px;
}

#cartDrawer .subtotal,
#cartDrawer .total-label,
#cartDrawer .cart__total-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
}

#cartDrawer .rowprice,
#cartDrawer #cartTotal,
#cartDrawer .cart__total {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #111;
}

#cartDrawer hr,
#cartDrawer .divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}

#cartDrawer .checkout {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    height: 52px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

#cartDrawer .checkout:hover {
    opacity: 0.9;
}

#cartDrawer .cart-more,
#cartDrawer a {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.7;
}

#cartDrawer .cart__title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#cartDrawer .cart__total .subtotal-left span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#cartDrawer #cartTotal {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

#cartDrawer strong,
#cartDrawer b {
    font-weight: 500;
}

#cartDrawer .cart__title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#cartDrawer .cart__total .subtotal-left span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#cartDrawer #cartTotal {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

#cartDrawer strong,
#cartDrawer b {
    font-weight: 500;
}

#cartDrawer .cart__foot {
    margin-top: 0 !important;
    padding-top: 8px !important;
}

#cartDrawer .cart__total {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

#cartDrawer .cart__total .subtotal-left span {
    font-size: 13px;
}

#cartDrawer #cartTotal {
    font-size: 13px;
}

#cartDrawer .checkout {
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    height: 50px;
}

#cartDrawer .cart-pay-icons {
    margin-top: 6px !important;
}

#cartDrawer #cartList {
    min-height: 40vh;
    position: relative;
}

#cartDrawer #cartList:not(:has(.cart__item))::before {
    content: "YOUR BAG IS EMPTY";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    opacity: 0.7;
    text-align: center;
    white-space: nowrap;
}

#cartDrawer #cartList:has(.cart__item)::before {
    content: none;
}

#cartDrawer #cartList:not(:has(.cart__item))>* {
    display: none;
}

#cartDrawer #cartList:not(:has(.cart__item))::before {
    transform: translate(-50%, -50%);
    margin-top: -26px;
}

#cartDrawer .cart__foot {
    position: relative;
    transform: translateY(-150px);
}

#cartDrawer .checkout {
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;
}

#cartDrawer .checkout:focus,
#cartDrawer .checkout:active {
    box-shadow: none !important;
    outline: none !important;
}

#cartDrawer .checkout {
    -webkit-tap-highlight-color: transparent;
}

#cartDrawer #cartTotal {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #111;
}

#cartDrawer .rowprice,
#cartDrawer .cart__item-price,
#cartDrawer .cart__price {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #111;
}

#cartDrawer .cart__info p,
#cartDrawer .cart__info span,
#cartDrawer .cart__variant,
#cartDrawer .cart__options {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
}

#cartDrawer .cart__item,
#cartDrawer .cart__item-image,
#cartDrawer .cart__item-thumb,
#cartDrawer .cart__item-img {
    background: transparent !important;
    border: none !important;
}

#cartDrawer .cart__item img {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
}

#cartDrawer .cart__item-image,
#cartDrawer .cart__item-thumb {
    padding: 0 !important;
}

#cartDrawer .cart__item {
    position: relative;
}

#cartDrawer .cart__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

#cartDrawer .cart__remove:hover {
    opacity: 1;
}

#cartDrawer .checkout {
    width: 100% !important;
    height: 42px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #000;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    box-sizing: border-box;
    box-shadow: none;
}

#cartDrawer .checkout-lock {
    width: 11px;
    height: 11px;
    object-fit: contain;
}

#cartDrawer .checkout .label {
    line-height: 1;
}

#cartDrawer .checkout .label {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
}

#cartDrawer .checkout-lock {
    width: 9px;
    height: 9px;
    object-fit: contain;
}

.cart-wishlist-link {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cart-wishlist-link:hover {
    opacity: 1;
}

.cart-wishlist-link {
    display: block;
    margin-top: 1px;
    text-align: center;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.85;
}

.cart-wishlist-link:hover {
    opacity: 1;
}

.info-right a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-right a img {
    width: 16px;
    min-width: 16px;
    height: 16px;
    opacity: 0.85;
}

.info-right {
    padding-right: 0;
    margin-right: 0;
}

.info-right a span,
.info-right a {
    text-align: left;
}

@media (min-width: 769px) {
    .cart {
        background: #ffffff;
    }
    .cart__foot {
        background: #ffffff;
        border-top: none;
        box-shadow: none;
        position: relative;
        z-index: 5;
    }
}

.card,
.card * {
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.card-title {
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 4px !important;
}

.card .price-line,
.card .price,
.card .new-price,
.card .old-price {
    font-family: 'OCR-B Std', monospace !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-shadow: none !important;
}

.card .old-price {
    opacity: 0.5 !important;
    text-decoration-thickness: 1px !important;
}

.card .add-mini {
    font-family: 'Poppins', sans-serif !important;
    font-size: 10.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    height: 42px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
}

.card .quick-view {
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    background: #000 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.card .quick-view:hover {
    opacity: 0.85 !important;
}

.card .badge,
.card .label,
.card .tag,
.card [class*="label"],
.card [class*="badge"],
.card [class*="tag"] {
    font-family: 'Poppins', sans-serif !important;
    font-size: 9.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    color: #fff !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.card-media .badge,
.card-media .label,
.card-media .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.75;
}

.card .price-line,
.card .new-price {
    text-shadow: none !important;
}

.section-head h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.section-head h1 * {
    font-family: inherit !important;
}

.section-head .pill,
.section-head span,
.section-head small {
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.section-head {
    margin: 12px 4px 14px !important;
    gap: 10px !important;
}

.info-section,
.info-section * {
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.info-section h2 {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 14px !important;
}

.info-section a {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
}

.info-section a:hover {
    opacity: 1 !important;
}

.info-text,
.info-address {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6 !important;
}

.site-footer,
.site-footer * {
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.site-footer img {
    filter: none !important;
}

.site-footer .copyright {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
}

.site-footer #locale-country,
.site-footer #locale-currency,
.site-footer .divider {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

.nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    opacity: 0.75 !important;
    padding: 6px 4px !important;
    border-bottom: none !important;
}

.nav-link:hover {
    opacity: 1 !important;
}

.nav-link.active {
    opacity: 1 !important;
    border-bottom: none !important;
}

.nav-left {
    gap: 16px !important;
}

.promo-bar,
.promo-bar * {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #111 !important;
    line-height: 1 !important;
}

.promo-bar {
    height: 36px !important;
    background: #f5f6f7 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.promo-bar span,
.promo-bar p {
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.promo-bar img,
.promo-bar svg {
    width: 14px !important;
    height: 14px !important;
    margin-right: 6px !important;
    opacity: 0.9 !important;
}

.search-results,
.search-results * {
    font-family: 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
}

.search-results {
    background: #ffffff !important;
    border: 1px solid #e6e6e6 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.search-results .result-item {
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    gap: 10px !important;
    align-items: center !important;
    padding: 10px 12px !important;
    border-bottom: 1px solid #eeeeee !important;
    background: #ffffff !important;
}

.search-results .result-item:hover {
    background: #f7f7f7 !important;
}

.search-results .result-item img {
    width: 44px !important;
    height: 56px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

.search-results .result-item span {
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.25 !important;
    color: #111 !important;
    white-space: normal !important;
}

.search-results .result-item .price,
.search-results .result-item .price-line {
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
}

.search-results .old-price {
    opacity: 0.45 !important;
}

.search-results .search-empty,
.search-results .search-loading {
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
    padding: 12px !important;
    text-align: center !important;
    color: #666 !important;
}

@media (max-width: 768px) {
    .search-results .result-item {
        padding: 8px 10px !important;
        gap: 8px !important;
    }
    .search-results .result-item span {
        font-size: 9px !important;
        letter-spacing: 0.18em !important;
    }
    .search-results .result-item img {
        width: 40px !important;
        height: 52px !important;
    }
}

.search-results .result-item img {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 42px !important;
    height: auto !important;
    max-height: 56px !important;
    object-fit: contain !important;
    display: block !important;
}

.search-results .result-item {
    align-items: center !important;
}

.search-results .result-item * {
    background-color: transparent !important;
}

.mobile-search-results div,
.search-results div {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.mobile-search-results div span,
.search-results div span {
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    white-space: normal !important;
}

.site-footer a img {
    filter: invert(1) brightness(2) !important;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

.site-footer a img {
    filter: invert(1) brightness(1.1);
    opacity: 0.9;
}

.site-footer .copyright img {
    filter: none !important;
    opacity: 1 !important;
}

.site-footer .pay img {
    filter: brightness(0) invert(1) !important;
}

.add-mini,
.add-mini:focus,
.add-mini:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
    -webkit-tap-highlight-color: transparent;
}

.add-mini {
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, background 0.2s ease;
}

.add-mini:active {
    transform: scale(0.96);
}

.add-mini::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.add-mini:active::after {
    opacity: 1;
}

.card {
    opacity: 0;
    transform: translateY(12px);
    animation: cardFadeUp 0.6s ease forwards;
}

.card:nth-child(1) {
    animation-delay: 0.05s;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

.card:nth-child(3) {
    animation-delay: 0.15s;
}

.card:nth-child(4) {
    animation-delay: 0.2s;
}

.card:nth-child(5) {
    animation-delay: 0.25s;
}

.card:nth-child(6) {
    animation-delay: 0.3s;
}

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

@media (min-width: 769px) {
    .promo-banner {
        height: 70vh;
        overflow: hidden;
    }
    .promo-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }
}

.promo-bar {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    border-bottom: none !important;
}

.promo-bar span,
.promo-bar a {
    color: #fff !important;
}

.promo-bar img {
    filter: invert(1);
}

@media (min-width: 769px) {
    .scroll-row {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .scroll-row::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 769px) {
    .search-form {
        gap: 0;
    }
    .search-form input {
        border-radius: 0 !important;
        background: #000 !important;
        border: 1px solid #222 !important;
        height: 38px;
        width: 240px;
        color: #fff;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.4px;
    }
    .search-form input:focus {
        border-color: #444 !important;
        outline: none;
    }
    .search-form button {
        border-radius: 0 !important;
        height: 38px;
        width: 42px;
        background: #000 !important;
        border: 1px solid #222;
        border-left: none;
        color: #fff;
        transition: background 0.2s ease;
    }
    .search-form button:hover {
        background: #111;
    }
}

.search-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (min-width: 769px) {
    .search-form input::placeholder {
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.08em;
    }
    .search-form input {
        text-transform: none;
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .fav-button {
        width: 26px;
        height: 26px;
    }
    .fav-button .fav-icon {
        width: 20px;
        height: 20px;
        filter: none !important;
        -webkit-filter: none !important;
    }
}

@media (min-width: 769px) {
    header .fav-button .fav-icon {
        filter: brightness(0) invert(1) !important;
        -webkit-filter: brightness(0) invert(1) !important;
    }
}

@media (min-width: 769px) {
    header .fav-button {
        width: 24px !important;
        height: 24px !important;
    }
    header .fav-button .fav-icon {
        width: 18px !important;
        height: 18px !important;
    }
}

.card-media {
    cursor: pointer;
}

.info-left,
.info-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-left a,
.info-right a {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.info-section {
    border-top: none !important;
}

.category-bar {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 14px 10px;
    border-bottom: 1px solid #111;
    position: relative;
    z-index: 1400;
}

.category-link {
    color: #fff;
    text-decoration: none;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.2s ease;
    position: relative;
}

.category-link:hover {
    color: #b3b3b3;
}

.category-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.num {
    font-family: 'OCR-B Std', monospace !important;
}