@import url("store.css");
.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;
}

.nav-left {
    margin-left: 20px;
}

.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.active {
    border-bottom-color: #fff;
}

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

.nav-right,
.search-form,
.fav-button,
.cart-button {
    display: none !important;
}

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

.favorites-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    flex-direction: column;
    text-align: center;
    padding: 0 20px 60px;
}

.favorites-content h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
}

.favorites-content p {
    color: #b3b3b3;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 13px;
        padding: 4px 6px;
    }
    .favorites-content h1 {
        font-size: 22px;
    }
    .favorites-content p {
        font-size: 13px;
    }
    .logo {
        height: 28px;
    }
    .favorites-container {
        padding: 0 15px 40px;
    }
}

.favorites-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
    background: #000;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    overflow: hidden;
}

.fav-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #0a0a0a;
    border-bottom: 1px solid #111;
    color: #fff;
    transition: background 0.25s ease;
    padding: 10px 0;
    min-height: 120px;
}

.fav-item:hover {
    background: #111;
}

.fav-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: none;
    border-radius: 0;
    background: transparent !important;
    flex-shrink: 0;
    margin-left: 12px;
}

.fav-info {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title price" "meta meta" "actions actions";
    row-gap: 4px;
    padding: 8px 16px;
}

.fav-info h4 {
    grid-area: title;
}

.fav-price {
    grid-area: price;
    align-self: start;
    white-space: nowrap;
}

.fav-info p {
    grid-area: meta;
}

.fav-controls {
    grid-area: actions;
}

.fav-info h4 {
    margin: 0 0 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.fav-info p {
    margin: 0 0 5px;
    color: #b5b5b5;
    font-size: 12.5px;
    font-family: "Poppins", sans-serif;
}

.fav-price {
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.fav-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.favorites-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
    padding: 14px 0 18px;
}

.clear-fav-btn {
    background: #fff;
    color: #000;
    border-radius: 0;
    border: none;
    padding: 12px 18px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: none !important;
}

@media (max-width: 768px) {
    .favorites-list {
        width: 100%;
        border: none;
        margin: 0;
        padding: 0;
        background: #000;
    }
    .fav-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background: #0a0a0a;
        border-bottom: 1px solid #111;
        padding: 10px 12px;
        gap: 10px;
    }
    .fav-item img {
        width: 85px;
        height: 85px;
        object-fit: cover;
        background: transparent !important;
        border: none;
        border-radius: 0;
        flex-shrink: 0;
    }
    .fav-info h4 {
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        margin: 0 0 3px;
        text-transform: uppercase;
        text-align: left;
        line-height: 1.2;
    }
    .fav-info p {
        font-size: 12px;
        color: #b5b5b5;
        margin: 0 0 4px;
        font-family: "Poppins", sans-serif;
        text-align: left;
    }
    .fav-price {
        font-size: 13px;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        color: #fff;
        text-align: left;
    }
    .fav-controls {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
        margin-top: 6px;
    }
    .btn-add,
    .btn-remove {
        border: 1px solid #ffffff;
        background: #ffffff;
        color: #000000;
        font-family: "Poppins", sans-serif;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: none !important;
        padding: 6px 12px;
        border-radius: 6px;
        display: inline-block;
        line-height: 1;
    }
    .btn-add:hover,
    .btn-remove:hover {
        background: #ffffff;
        color: #000000;
    }
    .clear-fav-btn {
        background: #fff;
        color: #000;
        border: none;
        font-family: "Poppins", sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        width: auto;
        padding: 8px 20px;
        margin: 18px auto 0;
        display: block;
        border-radius: 4px;
        box-shadow: none;
        letter-spacing: 0.6px;
        transition: none !important;
    }
    .favorites-actions {
        padding: 0 10px 14px;
        display: flex;
        justify-content: center;
    }
}

footer.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    text-align: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer.site-footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 16px;
}

footer.site-footer .footer-pay {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer.site-footer .footer-pay img {
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

footer.site-footer .footer-pay img:hover {
    opacity: 1;
}

footer.site-footer .divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
}

footer.site-footer .footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer.site-footer .footer-social img {
    height: 22px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

footer.site-footer .footer-social img:hover {
    opacity: 1;
}

footer.site-footer .copyright {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 10px;
}

@media (max-width: 768px) {
    footer.site-footer {
        padding: 20px 14px;
    }
    footer.site-footer .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -16px;
    left: 14px;
    z-index: 2000;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.back-button img {
    width: 24px;
    height: 24px;
    filter: brightness(1);
    transition: transform 0.2s ease;
}

.back-button:hover img {
    transform: translateX(-2px);
}

body.store-body.static-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

header.navbar {
    top: 0 !important;
}

.favorites-page {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.08em;
}

.favorites-content h1 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#favEmptyText {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #777;
}

.btn-add,
.btn-remove {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    padding: 6px 10px !important;
    border-radius: 0 !important;
}

.btn-remove {
    color: #aaa !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.fav-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.fav-title-row h4 {
    margin: 0;
    flex: 1;
}

.fav-price {
    white-space: nowrap;
    font-weight: 600;
}

.fav-info h4,
.fav-title-row h4 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
}

.fav-price {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    opacity: 0.85;
}

.fav-info p {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    opacity: 0.6;
}

.fav-item:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.btn-add,
.btn-remove {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.btn-add,
.btn-remove {
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn-add:hover,
.btn-remove:hover {
    opacity: 0.75;
}

.btn-add:active,
.btn-remove:active {
    transform: scale(0.97);
}

.fav-item {
    opacity: 0;
    transform: translateY(8px);
    animation: favFadeIn 0.35s ease-out forwards;
}

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

body.favorites-page {
    background: #ffffff !important;
    color: #000000 !important;
}

body.favorites-page {
    background: #ffffff !important;
    color: #111111 !important;
}

.favorites-list {
    background: #ffffff !important;
    border: none !important;
}

.fav-item {
    background: #ffffff !important;
    border-bottom: 1px solid #e6e6e6 !important;
}

.fav-item img {
    background: transparent !important;
}

.fav-info h4 {
    color: #111111 !important;
    font-weight: 600;
}

.fav-price {
    color: #111111 !important;
    font-weight: 600;
}

.fav-info p {
    color: #666666 !important;
}

.btn-add,
.btn-remove {
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #cccccc !important;
    border-radius: 0 !important;
}

.btn-add:hover,
.btn-remove:hover {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
}

.clear-fav-btn {
    background: #111111 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.info-section {
    background: #ffffff !important;
    color: #111111 !important;
    border-top: 1px solid #e5e5e5;
}

.info-section h2 {
    color: #111111 !important;
}

.info-section a,
.info-section p,
.info-section .info-text,
.info-section .info-address {
    color: #555555 !important;
}

.info-section img {
    filter: invert(0) !important;
    opacity: 0.85;
}

footer.site-footer {
    background: #ffffff !important;
    color: #111111 !important;
    border-top: 1px solid #e5e5e5;
}

footer.site-footer .divider {
    background: #dddddd !important;
}

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

footer.site-footer .copyright {
    color: #666666 !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;
}

.favorites-page .info-logo {
    display: none;
}

header.navbar {
    background: #fff !important;
    box-shadow: none !important;
    border: none !important;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
}

.close-page {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    color: #000;
    padding: 6px;
    line-height: 1;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body.favorites-page {
    background: #000000 !important;
    color: #ffffff !important;
}

header.navbar {
    background: #000 !important;
}

.close-page {
    color: #ffffff !important;
}

.favorites-list {
    background: #000 !important;
    border: 1px solid #111 !important;
}

.fav-item {
    background: #0a0a0a !important;
    border-bottom: 1px solid #111 !important;
}

.fav-item img {
    background: transparent !important;
}

.fav-info h4,
.fav-price {
    color: #ffffff !important;
}

.fav-info p {
    color: #777777 !important;
}

.btn-add,
.btn-remove {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-add:hover,
.btn-remove:hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.clear-fav-btn {
    background: #ffffff !important;
    color: #000000 !important;
}

.info-section {
    background: #000 !important;
    color: #ffffff !important;
    border-top: 1px solid #111 !important;
}

.info-section h2 {
    color: #ffffff !important;
}

.info-section a,
.info-section p,
.info-section .info-text,
.info-section .info-address {
    color: #888888 !important;
}

footer.site-footer {
    background: #000 !important;
    color: #ffffff !important;
    border-top: 1px solid #111 !important;
}

footer.site-footer .divider {
    background: #222 !important;
}

footer.site-footer .copyright {
    color: #666 !important;
}

.fav-item,
.favorite-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.fav-item *,
.favorite-item * {
    background: transparent !important;
}

.fav-item,
.favorite-item {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.fav-item:hover,
.favorite-item:hover {
    border: none !important;
    box-shadow: none !important;
}

.fav-item>div,
.favorite-item>div {
    border: none !important;
}

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