@media (max-width: 768px) {
    header.navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 14px;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: background 0.3s ease;
    }
    .nav-left a,
    .search-form {
        display: none !important;
    }
    .nav-left {
        display: flex;
        align-items: center;
        gap: 1px;
    }
    .hamburger {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: white;
        user-select: none;
    }
    .nav-center {
        flex: 1;
        text-align: center;
    }
    .nav-center img.logo {
        height: 28px;
        object-fit: contain;
    }
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 2px;
    }
    .nav-right img {
        width: 22px;
        height: 22px;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw !important;
        height: 100vh !important;
        background: #000 !important;
        backdrop-filter: none !important;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 60px 25px;
        transition: left 0.3s ease;
        z-index: 10000 !important;
    }
    .mobile-menu.open {
        left: 0;
    }
    .mobile-menu .close-btn {
        position: absolute;
        top: 18px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }
    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        margin-bottom: 18px;
        display: block;
        font-weight: 500;
        letter-spacing: 1px;
    }
    @media (max-width: 768px) {
        footer.site-footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 22px 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        footer.site-footer::before {
            content: "";
            display: flex;
            width: 100%;
            justify-content: space-between;
        }
        footer.site-footer {
            position: relative;
        }
        footer.site-footer>div[style*="gap"] {
            order: 1;
            display: flex !important;
            justify-content: flex-start;
            width: 100%;
            gap: 12px !important;
            margin-bottom: 8px;
        }
        footer.site-footer .pay {
            order: 2;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            width: 100%;
            gap: 6px;
            margin-top: -48px;
            padding-right: 12px;
        }
        footer.site-footer .pay img,
        footer.site-footer div[style*="gap"] img {
            height: 24px;
            opacity: 0.9;
            transition: opacity 0.2s ease;
        }
        footer.site-footer .pay img:hover,
        footer.site-footer div[style*="gap"] img:hover {
            opacity: 1;
        }
        footer.site-footer::after {
            content: "";
            position: absolute;
            top: 34px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 24px;
            background: rgba(255, 255, 255, 0.3);
        }
        footer.site-footer .copyright {
            order: 3;
            margin-top: 16px;
            font-size: 12px;
            opacity: 0.8;
        }
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.mobile-search-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 12px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .search-form {
        display: none !important;
    }
}

.mobile-search-bar {
    position: fixed;
    top: -70px;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(6px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: top 0.3s ease;
    z-index: 2000;
}

.mobile-search-bar input {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #111;
    background: #fff;
    border-radius: 6px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2001;
}

.mobile-search-bar.active {
    top: 0;
}

.mobile-search-bar input {
    font-family: 'Poppins', sans-serif !important;
    flex: 1;
    height: 36px;
    border: none;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}

.mobile-search-bar button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-search-results {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(6px);
        overflow-y: auto;
        padding: 10px 15px;
        display: none;
        flex-direction: column;
        z-index: 1999;
        animation: fadeIn 0.2s ease-in-out;
    }
    .mobile-search-results.active {
        display: flex;
    }
    .mobile-search-results div {
        color: white;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
        cursor: pointer;
    }
    .mobile-search-results div:hover {
        color: #00bfff;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 768px) {
    .mobile-search-results {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(6px);
        overflow-y: auto;
        padding: 10px 15px;
        display: none;
        flex-direction: column;
        z-index: 1999;
        animation: fadeIn 0.2s ease-in-out;
    }
    .mobile-search-results.active {
        display: flex;
    }
    .mobile-search-results div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
        color: white;
        cursor: pointer;
        transition: 0.2s;
    }
    .mobile-search-results div:hover {
        color: #00bfff;
        background: rgba(255, 255, 255, 0.05);
    }
    .mobile-search-results img {
        width: 38px;
        height: 38px;
        border-radius: 4px;
        object-fit: cover;
    }
}

.hamburger,
.mobile-search {
    display: none;
}

@media (max-width: 768px) {
    .hamburger,
    .mobile-search {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hamburger,
.mobile-search,
.mobile-search-icon {
    display: none !important;
}

@media (max-width: 768px) {
    .hamburger,
    .mobile-search,
    .mobile-search-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .hamburger,
    .mobile-search,
    .mobile-search-icon {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .info-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "center center" "left   right";
        gap: 18px 24px;
        padding: 24px 16px;
        align-items: start;
        text-align: left;
    }
    .info-center {
        grid-area: center;
        text-align: center;
    }
    .info-left {
        grid-area: left;
    }
    .info-right {
        grid-area: right;
    }
    .info-section h2 {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .04em;
        margin: 0 0 6px;
    }
    .info-section a {
        display: block;
        font-size: 13px;
        line-height: 1.6;
        opacity: .9;
        text-decoration: none;
    }
    .info-logo {
        width: 88px;
        height: auto;
        display: block;
        margin: 0 auto 10px;
    }
    .info-text {
        font-size: 12px;
        line-height: 1.5;
        margin: 0 auto 6px;
        max-width: 260px;
        opacity: .85;
    }
    .info-address {
        font-size: 12px;
        opacity: .7;
        margin: 0;
    }
    .info-right {
        position: relative;
    }
    .info-right::before {
        content: "";
        position: absolute;
        left: -12px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255, 255, 255, .08);
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 28px 22px;
        column-gap: 28px;
    }
    .info-left {
        padding-left: 9px;
    }
    .info-right {
        padding-left: 12px;
    }
    .info-section ul li {
        margin-bottom: 3px;
    }
    .info-logo {
        margin-bottom: 12px;
    }
    .info-text {
        max-width: 240px;
        margin: 0 auto 10px;
        line-height: 1.5;
    }
    .info-right::before {
        content: "";
        position: absolute;
        left: -14px;
        top: 2px;
        bottom: 2px;
        width: 1px;
        background: rgba(255, 255, 255, 0.08);
    }
}

.promo-bar {
    width: 100%;
    background: #f7f6f2;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease;
}

.promo-bar span {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.6s ease;
}

@media (max-width: 768px) {
    .promo-bar {
        font-size: 13px;
        padding: 6px 0;
    }
}

.promo-bar {
    width: 100%;
    background: #f7f6f2;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease;
}

.promo-bar .promo-icon {
    width: 15px;
    height: 15px;
    margin-right: 3px;
    vertical-align: -2px;
    opacity: 0.9;
}

.promo-bar span {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.6s ease;
}

@media (max-width: 768px) {
    .promo-bar {
        font-size: 13px;
        padding: 6px 0;
    }
    body.store-body:not(.static-page) header.navbar {
        top: 32px !important;
    }
    body.store-body.static-page header.navbar {
        top: 0 !important;
    }
    .promo-bar,
    header.navbar {
        transition: opacity 0.25s ease;
    }
    body.menu-open .promo-bar,
    body.menu-open header.navbar {
        opacity: 0.4;
        pointer-events: none;
    }
    .mobile-menu {
        z-index: 2500;
    }
    .nav-center img.logo {
        height: 40px;
        max-height: 40px;
        object-fit: contain;
        transition: transform 0.2s ease;
    }
    .nav-center img.logo:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .scroll-row {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 0 8px;
    }
    .scroll-row::-webkit-scrollbar {
        display: none;
    }
    .scroll-row .card {
        flex: 0 0 72%;
        scroll-snap-align: start;
        background: #000 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-right: 6px;
        height: 340px !important;
    }
    .card-media {
        height: 230px !important;
        background: #000 !important;
    }
    .card-bottom {
        background: #000 !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 6px 0 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .card-title {
        text-align: center;
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        margin: 3px 0 0;
        text-transform: uppercase;
        line-height: 1.1;
        letter-spacing: 0.3px;
    }
    .card .add-mini {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100% !important;
        height: 40px;
        background: #000;
        color: #fff;
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-top: 1px solid #6a0f0f;
        border-left: 1px solid #6a0f0f;
        border-right: 1px solid #6a0f0f;
        border-bottom: 1px solid #6a0f0f;
        border-radius: 0 !important;
        cursor: pointer;
        transition: all 0.25s ease;
        margin-top: 6px !important;
        box-sizing: border-box;
        text-align: center;
        line-height: 1;
        padding: 0;
    }
    .card .add-mini:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }
}

@media (max-width: 768px) {
    body.product-body {
        background: #000;
        color: #fff;
        font-family: "Cinzel", serif;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    header.simple-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 14px;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .product-page {
        margin-top: 40px;
        padding: 0 12px 50px;
    }
    .modal__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .modal__stage img {
        width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: cover;
        border-radius: 0;
        margin-bottom: 0 !important;
    }
    .thumbs {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 2px !important;
        margin-bottom: 0 !important;
        overflow-x: auto;
    }
    .thumbs img {
        width: 60px;
        height: 60px;
        border-radius: 4px;
        object-fit: cover;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }
    .thumbs img:hover,
    .thumbs img.active {
        opacity: 1;
    }
    .modal__right {
        margin-top: 18px;
        text-align: center;
    }
    .modal__right h2 {
        font-family: "Poppins", sans-serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
        text-transform: uppercase;
        color: #fff;
    }
    .color-row {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin: 8px 0;
    }
    .color-btn {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid #666;
        cursor: pointer;
    }
    .size-btn {
        font-family: "Cinzel", serif;
        background: #000;
        color: #fff;
        border: 1px solid #6a0f0f;
        font-size: 12px;
        width: 44px;
        height: 36px;
        margin: 3px;
        border-radius: 0;
        cursor: pointer;
        transition: 0.2s;
    }
    .size-btn.active {
        background: #6a0f0f;
        color: #fff;
        border-color: #fff;
    }
    .product-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 14px;
    }
    .add-to-bag,
    .add-to-wishlist {
        width: 100%;
        height: 42px;
        background: #000;
        color: #fff;
        font-family: "Cinzel", serif;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        border: 1px solid #6a0f0f;
        border-radius: 0;
        cursor: pointer;
        transition: all 0.25s ease;
    }
    .add-to-bag:hover,
    .add-to-wishlist:hover {
        background: #fff;
        color: #000;
    }
    .product-info-tabs {
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .info-tab {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 13px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .arrow {
        font-size: 18px;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .modal__right h2 {
        text-align: left !important;
        font-size: 20px !important;
        font-weight: 600;
        margin-left: 4px;
        margin-bottom: 4px;
    }
    .color-row {
        justify-content: flex-start !important;
        gap: 5px;
        margin-left: 4px;
        margin-top: 4px;
        margin-bottom: 6px;
    }
    .color-btn {
        width: 22px !important;
        height: 22px !important;
        border: 1px solid #555;
    }
    .size-btn {
        width: 42px !important;
        height: 34px !important;
        font-size: 11px !important;
    }
    .product-buttons {
        margin-top: 10px !important;
    }
}

@media (max-width: 768px) {
    .color-label {
        display: block;
        text-align: left !important;
        font-size: 12px !important;
        letter-spacing: 0.5px;
        color: #aaa;
        margin-left: 4px !important;
        margin-bottom: 2px !important;
        text-transform: uppercase;
    }
}

@media (max-width: 768px) {
    .modal__stage {
        height: auto !important;
        margin-bottom: 4px !important;
    }
    .thumbs {
        margin-top: 4px !important;
    }
}

@media (max-width: 768px) {
    .color-btn {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        border: 1px solid #555 !important;
        transition: transform 0.2s ease, border-color 0.2s ease !important;
    }
    .color-btn.active {
        border-color: #fff !important;
        transform: scale(1.1);
    }
    .color-btn:focus {
        outline: none !important;
        border-radius: 50% !important;
    }
}

@media (max-width: 768px) {
    .size-guide-modal {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.96);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
        pointer-events: none;
    }
    .size-guide-modal.active {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    .unit-toggle {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        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.3);
    }
    .unit-btn:hover {
        border-color: #fff;
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    body.menu-open .promo-bar,
    body.menu-open header.navbar {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .mobile-menu {
        z-index: 3000 !important;
    }
}

@media (max-width: 768px) {
    .mobile-locale {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-top: auto;
        padding: 14px 20px;
        width: 100%;
        background: transparent !important;
    }
    .mobile-locale .locale-flag {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        object-fit: cover;
    }
    .mobile-locale .divider {
        opacity: 0.5;
    }
    .mobile-locale span {
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .locale-block {
        display: none !important;
    }
}

.cart .locale-block,
.cart #locale-block {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: transparent !important;
    color: #111 !important;
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cart .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.08);
    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 6px;
}

.cart .locale-block #locale-currency {
    font-weight: 700;
}

@media (max-width: 380px) {
    .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;
    }
}

body.search-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1996;
    pointer-events: none;
    transition: opacity 0.18s ease;
    opacity: 1;
}

.mobile-search-bar {
    z-index: 2000;
}

.mobile-search-results {
    z-index: 1999;
}

.cart__item .qty-controls,
.cart__item .quantity,
.cart__item .qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart__item .qty-controls {
    padding: 4px;
    border-radius: 10px;
    background: transparent;
}

.cart__item .qty-controls button,
.cart__item .qty-btn,
.cart__item .qty-controls .btn-qty {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.cart__item .qty-controls button:hover,
.cart__item .qty-btn:hover,
.cart__item .qty-controls .btn-qty:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    background: #111;
}

.cart__item .qty-controls button:active,
.cart__item .qty-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.cart__item .qty-controls input[type="number"],
.cart__item .qty-controls .qty-count,
.cart__item .qty-controls .qty-value {
    width: 46px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    background: #fff;
    color: #111;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

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

.cart__item .qty-controls input[type="number"]:focus,
.cart__item .qty-controls .qty-count:focus {
    outline: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: #bbb;
}

.cart__item .qty-controls button>svg,
.cart__item .qty-controls button>img {
    width: 14px;
    height: 14px;
}

@media (max-width: 480px) {
    .cart__item .qty-controls button,
    .cart__item .qty-controls .btn-qty {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
        border-radius: 7px;
    }
    .cart__item .qty-controls input[type="number"],
    .cart__item .qty-controls .qty-count {
        width: 40px;
        height: 32px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw !important;
        height: 100vh !important;
        background: #000 !important;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 72px 24px 32px;
        transition: left 0.3s ease;
        z-index: 3000 !important;
    }
    .mobile-menu.open {
        left: 0;
    }
    .mobile-menu a {
        display: block;
        font-size: 17px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 14px;
        line-height: 1.6;
        color: #fff;
        text-decoration: none;
    }
    .mobile-menu-section-title {
        margin-top: 18px;
        margin-bottom: 6px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        opacity: 0.7;
    }
    .mobile-menu-sub a {
        font-size: 15px;
        letter-spacing: 0.12em;
        opacity: 0.9;
        margin-bottom: 6px;
    }
    .mobile-menu-social-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }
    .mobile-menu-social-pill {
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        padding: 5px 12px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }
    .mobile-menu a:hover,
    .mobile-menu-social-pill:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        transition: 0.18s ease;
    }
}

.mobile-menu-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 16px 0;
}

@media (max-width: 768px) {
    .fav-button {
        position: relative;
    }
    .fav-button .cart-badge {
        right: -6px;
        top: -1px;
    }
}

@media (max-width: 768px) {
    header.navbar .fav-button {
        position: fixed;
        left: 86px;
        top: 18px;
        width: 24px;
        height: 24px;
        padding: 0;
        border: none;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1100;
    }
    header.navbar .fav-button .fav-icon {
        width: 20px;
        height: 20px;
        display: block;
    }
    header.navbar .fav-button .cart-badge {
        position: absolute;
        top: -6px;
        right: -12px;
        background: #fff;
        color: #000;
        transform: none;
        padding: 2px 5px;
        font-size: 10px;
        border-radius: 50%;
    }
    header.navbar .nav-right {
        gap: 4px;
    }
}

.cart-badge {
    position: absolute;
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

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

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

@media (max-width: 768px) {
    .fav-button .fav-icon {
        width: 26px !important;
        height: 26px !important;
    }
}

@media (max-width: 768px) {
    #favCount {
        right: -15px !important;
        top: -6px !important;
    }
}

@media (max-width: 768px) {
    #favCount,
    #cartCount {
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }
    .cart-badge,
    #cartCount,
    #favCount {
        min-width: 17px !important;
        height: 17px !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .details-section {
        padding: 4px 0;
    }
    .details-toggle {
        padding: 6px 0;
        font-size: 11px;
    }
    .details-toggle span:not(.details-arrow) {
        font-size: 11px;
    }
    .details-content,
    #detailsBody {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .details-body,
    .details-content {
        font-size: 10px !important;
        line-height: 1.35 !important;
        padding-left: 10px !important;
        padding-right: 4px !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }
    .details-body p,
    .details-content p,
    .details-body li,
    .details-content li {
        font-size: 10px !important;
        line-height: 1.35 !important;
        margin: 2px 0 !important;
    }
}

@media (max-width: 768px) {
    .details-body .quality-line {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 3px !important;
        padding: 0 !important;
    }
    .details-body .quality-line img {
        width: 10px !important;
        height: 10px !important;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .details-body .quality-line span {
        font-size: 10px !important;
        line-height: 1.3 !important;
        display: block;
        margin: 0 !important;
        padding: 0 !important;
    }
    .details-body {
        padding-left: 14px !important;
        padding-right: 6px !important;
        padding-top: 4px !important;
    }
}

.mobile-menu a,
.mobile-locale-block {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.45s cubic-bezier(.25, .46, .45, .94), transform 0.45s cubic-bezier(.25, .46, .45, .94);
}

.mobile-menu.open a,
.mobile-menu.open .mobile-locale-block {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a[href="index.html"] {
    transition-delay: 0.10s;
}

.mobile-menu a[href="store.html"] {
    transition-delay: 0.18s;
}

.mobile-menu a[href="policy.html"] {
    transition-delay: 0.26s;
}

.mobile-menu a[data-action="account"] {
    transition-delay: 0.34s;
}

.mobile-menu a[data-action="orders"] {
    transition-delay: 0.42s;
}

.mobile-menu a[href="favorites.html"] {
    transition-delay: 0.50s;
}

.mobile-menu a[href="account.html"]:not([data-action]) {
    transition-delay: 0.58s;
}

.mobile-menu.open .mobile-locale-block {
    transition-delay: 0.70s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 84vw;
    max-width: 420px;
    background: #0f0f10;
    color: #fff;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 640ms cubic-bezier(.16, 1, .3, 1), opacity 640ms cubic-bezier(.16, 1, .3, 1);
    z-index: 1500;
    will-change: transform, opacity;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 560ms cubic-bezier(.16, 1, .3, 1);
    z-index: 1400;
}

body.menu-open::before {
    background: rgba(0, 0, 0, 0.48);
    opacity: 1;
    pointer-events: none;
}

.mobile-menu a,
.mobile-menu .mobile-locale-block {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 420ms cubic-bezier(.25, .46, .45, .94), transform 420ms cubic-bezier(.25, .46, .45, .94);
    transition-delay: 0s;
}

.mobile-menu.open a,
.mobile-menu.open .mobile-locale-block {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a[href="index.html"] {
    transition-delay: 0.20s;
}

.mobile-menu.open a[href="store.html"] {
    transition-delay: 0.30s;
}

.mobile-menu.open a[href="policy.html"] {
    transition-delay: 0.40s;
}

.mobile-menu.open a[data-action="account"] {
    transition-delay: 0.50s;
}

.mobile-menu.open a[data-action="orders"] {
    transition-delay: 0.60s;
}

.mobile-menu.open a[href="favorites.html"] {
    transition-delay: 0.70s;
}

.mobile-menu.open a[href="account.html"]:not([data-action]) {
    transition-delay: 0.78s;
}

.mobile-menu.open .mobile-locale-block {
    transition-delay: 0.85s;
}

.mobile-menu:not(.open) a,
.mobile-menu:not(.open) .mobile-locale-block {
    transition-delay: 0s !important;
}

@media (max-width: 768px) {
    .mobile-search-icon {
        width: 22px;
        height: 22px;
        display: inline-block;
        vertical-align: middle;
        filter: invert(1) brightness(1.9) contrast(1.05);
        -webkit-filter: invert(1) brightness(1.9) contrast(1.05);
        transition: filter .18s ease;
    }
    header.navbar .mobile-search-icon {
        margin-left: 8px;
        margin-right: 4px;
    }
    .mobile-search-bar .close-search {
        color: #fff;
        font-size: 22px;
        line-height: 1;
        background: transparent;
        border: none;
    }
    header.navbar .search-form button,
    .mobile-search-bar button {
        color: #fff;
    }
}

@media (max-width: 768px) {
    body.product-body #openFav {
        display: flex !important;
    }
    body:not(.product-body) #openFav {
        display: none !important;
    }
}

.hamburger {
    width: 22px;
    height: 22px;
    object-fit: contain;
    cursor: pointer;
    filter: invert(1);
}

.mobile-locale-block .locale-flag {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-card,
.card {
    position: relative;
    overflow: visible;
}

.card-media,
.product-card .media {
    position: relative;
    z-index: 1;
}

.card-media img,
.product-card .media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.card-content,
.product-card .details,
.card-footer,
.product-card .footer {
    position: relative;
    z-index: 6;
    color: #ffffff;
}

.card-footer,
.product-card .footer,
.card .meta,
.product-card .meta {
    background: rgba(0, 0, 0, 0.48);
    padding: 8px 10px;
    border-radius: 2px;
}

@media (max-width: 600px) {
    .card-media,
    .product-card .media {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .cart {
        width: 100vw !important;
        height: 100vh !important;
        inset: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .cart__head {
        padding-top: 24px;
    }
    .cart__list {
        padding-bottom: 120px;
    }
    .cart__foot {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .cart {
        width: 100vw !important;
        height: 100vh !important;
        inset: 0 !important;
        transform: translateX(110%);
        opacity: 1;
        transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .cart.active {
        transform: translateX(0);
    }
    .cart__foot {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 16px;
    }
    .cart__list {
        padding-bottom: 130px;
    }
}

@media (max-width: 768px) {
    .cart__item {
        padding: 18px 10px !important;
        margin-bottom: 16px !important;
    }
    .cart__item img {
        border-radius: 12px !important;
    }
    .cart__total {
        font-size: 20px !important;
        font-weight: 800 !important;
    }
    .checkout {
        height: 50px !important;
        font-size: 14px !important;
        letter-spacing: 0.12em !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
        background: #000 !important;
    }
}

#productContainer,
.product-page {
    padding-top: 96px;
}

@media (max-width: 768px) {
    #productContainer,
    .product-page {
        padding-top: 40px;
    }
}

.thumbs {
    display: none !important;
}

.gallery-nav button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
}

.modal__stage {
    position: relative;
}

.gallery-nav,
.gallery-nav button {
    color: #fff;
}

.sizes__label {
    margin-bottom: 2px !important;
}

.sizes-header {
    margin-bottom: 2px !important;
}

.sizes__row {
    margin-top: 0 !important;
    gap: 4px !important;
}

.product-page .old-price {
    opacity: 0.55;
    text-decoration: line-through;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .modal__left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .modal__stage {
        width: 100%;
        position: relative;
    }
    .thumbs {
        position: static !important;
        display: flex;
        gap: 10px;
        margin-top: 14px;
        justify-content: center;
        width: 100%;
        order: 2 !important;
    }
    .thumbs img {
        width: 54px;
        height: 54px;
        object-fit: cover;
        opacity: 0.6;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .thumbs img:active {
        opacity: 1;
        transform: scale(0.96);
    }
}

@media (max-width: 768px) {
    .modal__left,
    .modal__stage {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .gallery-nav {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 28px;
        margin: 4px 0 0 0 !important;
        padding: 0 !important;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.14em;
    }
    .gallery-nav button {
        font-size: 26px !important;
        padding: 12px 16px !important;
        line-height: 1;
        color: #fff;
    }
    .gallery-nav span {
        font-size: 13px;
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .product-page {
        gap: 0 !important;
    }
    .modal__right {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .modal__right h2 {
        margin-top: 0 !important;
    }
}

.info-section,
.info-section h2,
.info-section p,
.info-section a,
footer.site-footer,
footer.site-footer * {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
}

.info-section p,
.info-section a,
footer.site-footer .copyright {
    font-size: 11px;
    letter-spacing: 0.18em !important;
    font-weight: 500;
    opacity: 0.8;
}

.info-section h2 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em !important;
}

@media (max-width: 768px) {
    .info-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .info-left,
    .info-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
    }
    .info-right::before {
        display: none !important;
    }
    .info-right,
    .info-right * {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .info-text {
        padding: 0 12px;
        margin: 14px auto 0;
        max-width: 320px;
        text-align: center;
        line-height: 1.5;
        letter-spacing: 0.02em;
        font-size: 13px;
        opacity: 0.85;
    }
}

@media (max-width: 768px) {
    .info-section .info-text {
        font-size: 10px !important;
        line-height: 1.35 !important;
        letter-spacing: 0.02em !important;
        max-width: 260px !important;
        padding: 0 !important;
        margin: 8px auto 1px !important;
        opacity: 0.75 !important;
    }
    .info-section .info-address {
        font-size: 9px !important;
        letter-spacing: 0.14em !important;
        margin-top: 4px !important;
        opacity: 0.6 !important;
    }
    .info-section h2 {
        font-size: 10px !important;
        letter-spacing: 0.24em !important;
        margin-bottom: 8px !important;
    }
    .info-section a {
        font-size: 9.5px !important;
        letter-spacing: 0.1em !important;
    }
}

@media (max-width: 768px) {
    .price-note {
        font-family: "Poppins", sans-serif !important;
        font-size: 7px !important;
        line-height: 1 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        color: rgba(255, 255, 255, 0.45) !important;
        margin: 1px 0 0 4px !important;
        padding: 0 !important;
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .mobile-search-results {
        padding: 8px 14px !important;
    }
    .mobile-search-results div {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 8px 0 !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    }
    .mobile-search-results img {
        width: 36px !important;
        height: 46px !important;
        object-fit: contain !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    .mobile-search-results div span {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        font-family: 'Poppins', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 0.14em !important;
        line-height: 1.25 !important;
        color: #fff !important;
    }
    .mobile-search-results div span::first-line {
        font-size: 11px !important;
        font-weight: 500 !important;
        opacity: 0.95 !important;
    }
    .mobile-search-results div span::after {
        content: attr(data-price);
        font-size: 10px !important;
        font-weight: 600 !important;
        letter-spacing: 0.18em !important;
        opacity: 0.75 !important;
    }
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 8px !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 6px !important;
        opacity: 0.7 !important;
    }
    .trust-icons {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 4px !important;
    }
    .trust-icon {
        width: 20% !important;
        text-align: center !important;
    }
    .trust-icon img {
        width: 14px !important;
        height: 14px !important;
        margin-bottom: 2px !important;
        filter: invert(1) !important;
    }
    .trust-icon span {
        font-size: 6px !important;
        line-height: 1.05 !important;
        letter-spacing: 0.1em !important;
        opacity: 0.65 !important;
        display: block !important;
    }
}

@media (max-width: 768px) {
    .trust-icon img {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 768px) {
    .trust-payments img {
        height: 18px !important;
    }
}

@media (max-width: 768px) {
    .trust-icon img {
        opacity: 0.7;
    }
    .trust-icon span {
        color: rgba(255, 255, 255, 0.6) !important;
    }
}

@media (max-width: 768px) {
    .trust-icon:active {
        transform: translateY(-2px) scale(0.96);
    }
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    overscroll-behavior: auto;
}

* {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .sizes-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 10px 0 6px !important;
        padding: 0 !important;
    }
    .sizes__label {
        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;
        margin: 0 !important;
        line-height: 1 !important;
    }
    .selected-size {
        font-family: inherit !important;
        font-size: inherit !important;
        letter-spacing: inherit !important;
        opacity: 0.7 !important;
    }
    .size-guide {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        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;
        text-decoration: none !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    .size-guide img {
        width: 14px !important;
        height: 14px !important;
        filter: invert(1) !important;
        opacity: 0.85 !important;
    }
}

@media (max-width: 768px) {
    .modal__stage {
        touch-action: pan-y;
        user-select: none;
        -webkit-user-drag: none;
    }
    .modal__stage img {
        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }
}

@media (max-width: 768px) {
    .reviews,
    .reviews-list,
    .review-list {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .reviews h3,
    .reviews h2,
    .reviews-title {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        font-size: 11px !important;
        letter-spacing: 0.16em !important;
    }
    .review,
    .review-item {
        text-align: left !important;
        align-items: flex-start !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .review-stars span {
        font-size: 10px !important;
    }
    .review-text,
    .review p {
        font-size: 8px !important;
        line-height: 1.35 !important;
        letter-spacing: 0.04em !important;
        margin: 4px 0 !important;
    }
    .review-author,
    .review-name,
    .review small {
        font-size: 7px !important;
        letter-spacing: 0.14em !important;
        opacity: 0.55 !important;
        margin-top: 2px !important;
    }
}

@media (max-width: 768px) {
    .reviews-title,
    .reviews-header,
    .reviews h3 {
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    .reviews,
    .review-item {
        text-align: left !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 768px) {
    .reviews-block {
        margin-top: 5px !important;
    }
    .reviews-header h3 {
        margin-bottom: 2px !important;
    }
}

@media (max-width: 768px) {
    .rating-value {
        font-size: 10px;
    }
    .rating-instagram img {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 768px) {
    .rating-instagram img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .reviews-block {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }
    .review-text {
        font-size: 9px !important;
        line-height: 1.45 !important;
        letter-spacing: 0.02em !important;
    }
    .review-author {
        font-size: 10px !important;
        margin-top: 4px !important;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .simple-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #000;
    }
}

@media (max-width: 768px) {
    body,
    .product-page {
        overflow-x: hidden;
    }
}

.trust-block {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .review-item {
        align-items: flex-start !important;
    }
    .review-photo {
        margin-top: 8px;
        margin-left: 0;
    }
    .review-photo img {
        display: block;
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    .product-body .reviews-list .review-item {
        padding: 14px !important;
        margin: 10px 0 !important;
        background: rgba(255, 255, 255, 0.06) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .product-body .review-stars {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
    .product-body .review-text {
        font-size: 11px !important;
        line-height: 1.35 !important;
        margin-bottom: 4px !important;
    }
    .product-body .review-meta {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-bottom: 6px !important;
    }
    .product-body .review-author {
        font-size: 8px !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        opacity: 0.75 !important;
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
    }
    .product-body .review-author img {
        width: 9px !important;
        height: 9px !important;
    }
    .product-body .review-date {
        font-size: 8px !important;
        opacity: 0.45 !important;
        letter-spacing: 0.1em !important;
    }
    .product-body .review-photo {
        margin-top: 4px !important;
    }
    .product-body .review-photo img {
        width: 56px !important;
        height: 56px !important;
        border-radius: 5px !important;
    }
}

.review-date {
    position: relative;
    top: 1px;
}

@media (max-width: 768px) {
    .review-item {
        transform: scale(0.97);
        filter: blur(3px);
        transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
    }
}

@media (max-width: 768px) {
    .reviews-block .reviews-list .review-item .review-text {
        font-size: 13px !important;
        line-height: 1.55;
    }
    .reviews-block .reviews-list .review-item .review-meta .review-author {
        font-size: 10.5px !important;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .old-price {
        color: #fff !important;
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .size-guide-modal {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        height: auto;
        max-height: 80vh;
        background: #000;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 5000;
        border-radius: 14px 14px 0 0;
        overflow: hidden;
    }
    .size-guide-modal.active {
        transform: translateY(0);
    }
    .size-guide-modal * {
        background: transparent !important;
    }
    .unit-toggle {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 4px 0 2px;
        margin: 0;
        background: #000 !important;
    }
    .unit-btn {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 6px 12px;
        font-size: 12px;
        letter-spacing: 0.08em;
    }
    .unit-btn.active {
        background: #fff;
        color: #000;
        border-color: #fff;
    }
    .size-guide-modal img,
    .size-guide-modal img.size-img {
        display: block;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 65vh;
        object-fit: contain;
        margin: 0 auto;
        padding: 0;
    }
    .size-guide-content,
    .size-guide-table,
    table {
        padding: 0 !important;
        margin: 0 !important;
    }
    .close-size-guide {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .size-guide-modal {
        border-top: 3px solid rgba(255, 255, 255, 0.25);
    }
    .unit-toggle {
        background: #000 !important;
    }
    .unit-btn {
        background: transparent !important;
        color: rgba(255, 255, 255, 0.6);
        border: 3px solid rgba(255, 255, 255, 0.35);
        font-weight: 500;
        transition: all 0.2s ease;
    }
    .unit-btn.active {
        background: #fff !important;
        color: #000 !important;
        border-color: #fff !important;
        font-weight: 600;
    }
    .unit-btn:not(.active) {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .size-guide-close {
        position: fixed;
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .size-guide-close:active {
        transform: scale(0.92);
    }
}

@media (max-width: 768px) {
    .review-date {
        font-size: 13px;
        line-height: 1.3;
        opacity: 0.85;
        margin-top: 2px;
    }
}

@media (max-width: 768px) {
    .review-item .review-meta .review-date {
        font-size: 10px !important;
        opacity: 0.8;
        margin-top: 2px;
        display: block;
        line-height: 1.2;
    }
}

.promo-banner {
    margin: 16px 0;
}

.promo-link img {
    height: 200px;
}

.promo-btn {
    bottom: 14px;
    font-size: 12px;
    padding: 10px 28px;
    letter-spacing: 0.16em;
}

.promo-banner {
    margin-top: 54px;
}

.promo-banner+.container {
    padding-top: 8px;
}

.promo-btn {
    font-size: 11px;
    padding: 10px 26px;
    bottom: 14px;
}

@media (max-width: 768px) {
    body.product-body .product-page .price-line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        font-family: "Cinzel", serif;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: #ffffff;
        margin: 8px 0 12px;
    }
    body.product-body .product-page .old-price {
        font-size: 13px;
        font-weight: 400;
        opacity: 0.55;
        text-decoration: line-through;
    }
    body.product-body .product-page .new-price {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
    }
}

.checkout-note {
    font-size: 8px;
    letter-spacing: 0.3px;
}

.checkout-icon-img {
    width: 10px;
    height: 10px;
}

.reviews-title-row {
    align-items: center;
}

.reviews-title-row .reviews-trust {
    position: relative;
    top: 4px;
}

.reviews-rating {
    position: relative;
    top: 2px;
}

.review-author {
    display: inline-flex !important;
    align-items: center !important;
}

.review-author img.review-flag {
    width: 16px !important;
    height: 12px !important;
    object-fit: cover !important;
    margin-left: 4px !important;
    position: relative;
    top: 0 !important;
}

@media (max-width: 768px) {
    .reviews-breakdown {
        margin: 16px 0 24px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .break-row {
        display: grid;
        grid-template-columns: 46px 1fr;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        color: #9a9a9a;
    }
    .break-stars {
        font-family: "Cinzel", serif;
        letter-spacing: 1px;
        color: #e5e5e5;
        white-space: nowrap;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .break-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.10);
        position: relative;
        overflow: hidden;
        align-self: center;
    }
    .break-fill {
        height: 100%;
        background: #ffffff;
        width: 100%;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.9s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
    }
    .break-percent {
        display: none;
    }
}

@media (max-width: 768px) {
    .break-bar {
        margin-left: 8px;
        width: calc(100% - 8px);
        height: 3px;
    }
}

@media (max-width: 768px) {
    .break-percent {
        display: block;
        font-size: 10px;
        color: #777;
        text-align: right;
    }
    .break-row {
        grid-template-columns: 46px 1fr 32px;
    }
    .break-bar {
        margin-left: 6px;
        width: calc(100% - 6px);
        height: 4px;
    }
}

@media (max-width: 768px) {
    header.navbar img.logo {
        opacity: 1 !important;
    }
    header.navbar img:not(.logo):active,
    header.navbar svg:active,
    header.navbar .hamburger:active,
    header.navbar .mobile-search-icon:active {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    header.navbar {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        min-height: 65px;
    }
    header.navbar .nav-left,
    header.navbar .nav-center,
    header.navbar .nav-right {
        align-items: center;
    }
}

@media (max-width: 768px) {
    header.navbar .nav-center img.logo {
        height: 45px !important;
        max-height: none !important;
        width: auto !important;
        object-fit: contain;
    }
}

html,
body {
    touch-action: pan-x pan-y;
}

* {
    touch-action: manipulation;
}

@media (max-width:768px) {
    .promo-banner {
        opacity: 0;
        animation: mobileBannerFade 0.30s ease forwards;
        animation-delay: 0.3s;
    }
    @keyframes mobileBannerFade {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.color-btn {
    border-radius: 0 !important;
}

.color-btn.active {
    border-radius: 0 !important;
}

@media (max-width:768px) {
    .scroll-row .card {
        flex: 0 0 55% !important;
        height: 230px !important;
    }
    .card-media {
        height: 150px !important;
    }
    .card-media img {
        object-fit: cover !important;
    }
    .card-bottom {
        padding: 4px 2px !important;
    }
    .card-title {
        font-size: 11px !important;
        margin: 2px 0 0 !important;
        letter-spacing: .5px;
    }
    .price,
    .old-price {
        font-size: 11px !important;
    }
    .card .add-mini {
        height: 28px !important;
        font-size: 10px !important;
        margin-top: 4px !important;
    }
}

@media (max-width:768px) {
    .scroll-row {
        align-items: flex-start !important;
    }
    .scroll-row .card {
        height: auto !important;
    }
    .card-bottom {
        padding-bottom: 6px !important;
    }
}

@media (max-width:768px) {
    .card-media img {
        object-fit: contain !important;
        width: 100%;
        height: 100%;
        background: #000;
    }
}

@media (max-width:768px) {
    .card:active {
        transform: scale(.97);
        transition: .15s;
    }
}

@media (max-width:768px) {
    .scroll-row {
        gap: 14px !important;
    }
}

body.page-fade {
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.page-visible {
    opacity: 1;
}

body.page-fade {
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.page-visible {
    opacity: 1;
}

.fly-img {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    object-fit: cover !important;
    transform: none !important;
}

.nav-left.header-actions a.insta-link {
    display: flex !important;
}

.header-actions .back-btn {
    display: flex !important;
}

@media (max-width: 768px) {
    header.navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-left {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }
    header.navbar .fav-button {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .fav-button .fav-icon {
        width: 22px !important;
        height: 22px !important;
    }
    .fav-button .cart-badge {
        top: -4px !important;
        right: -6px !important;
    }
}

.fav-button img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    body.product-body header.navbar .fav-button {
        width: 28px !important;
        height: 28px !important;
    }
    body.product-body header.navbar .fav-button img {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 768px) {
    .size-guide-modal {
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
    }
    .size-guide-modal img.size-img {
        width: auto !important;
        height: auto !important;
        max-width: 90vw !important;
        max-height: 80vh !important;
        margin: 0 auto !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width:768px) {
    .size-guide-modal img.size-img {
        max-width: 90vw;
        max-height: 70vh;
    }
}

.size-guide-modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .size-guide-modal {
        padding-top: 28px !important;
    }
    .unit-toggle {
        margin-top: 10px !important;
        margin-bottom: 14px !important;
    }
}

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

.size-btn {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 768px) {
    .category-bar {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 18px;
        padding: 12px 14px;
        -webkit-overflow-scrolling: touch;
    }
    .category-bar::-webkit-scrollbar {
        display: none;
    }
    .category-link {
        font-size: 12px;
        white-space: nowrap;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .category-bar {
        margin-top: 60px;
    }
    main.container {
        padding-top: 100px;
    }
}

.category-bar {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .category-bar {
        overflow-x: auto;
        -webkit-mask-image: linear-gradient( to right, black 0%, black 85%, transparent 100%);
        mask-image: linear-gradient( to right, black 0%, black 85%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .review-item * {
        max-width: 100%;
        box-sizing: border-box;
    }
    .review-item {
        padding: 16px;
        overflow: hidden;
    }
    .review-item p,
    .review-item h4,
    .review-item span {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 768px) {
    .review-text {
        padding-right: 4px;
        word-wrap: break-word;
    }
}