:root {

    --radius: 28px;

    --shadow: 0 10px 30px rgba(0, 0, 0, .06);

    --primary: #111827;

    --background: #f7f7f7;

    --border: #ececec;

}

body {

    margin: 0;

    background: var(--background);

    color: #222;

    font-family:
        Inter,
        sans-serif;

}

.page {

    margin-left: 76px;

}

.sidebar {

    width: 76px;

    position: fixed;

    top: 0;

    bottom: 0;

    left: 0;

    background: white;

    border-right: 1px solid var(--border);

    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 100;

}

.logo {

    width: 52px;

    height: 52px;

    margin: 18px 0;

    border-radius: 16px;

    background: #fff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

    text-decoration: none;

}

.sidebar nav {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.sidebar nav a {

    width: 48px;

    height: 48px;

    border-radius: 16px;

    color: #555;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    transition: .2s;

}

.sidebar nav a:hover {

    background: #f2f2f2;

}

.product-card {

    display: block;

    background: white;

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .25s;

    color: inherit;

}

.product-card:hover {

    transform: translateY(-4px);

}

.product-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

}

.product-body {

    padding: 0px 22px;

}

.product-brand {

    font-size: 13px;

    color: #888;

    margin-bottom: 10px;

}

.product-title {

    font-size: 12px;

    height: 32px;

    overflow: hidden;

}

.product-footer {

    margin-top: 8px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.product-price {


    font-weight: 700;

}

.download-btn {

    width: 30px;

    height: 30px;

    border: none;

    border-radius: 50%;

    background: #111;

    color: white;

}

.similar-card {

    display: block;

    background: white;

    border-radius: 22px;

    overflow: hidden;

    color: inherit;

    box-shadow: var(--shadow);

}

.similar-card img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: contain;

    background: #fafafa;

    padding: 20px;

}

.similar-info {

    padding: 16px;

}

.similar-title {

    font-size: 15px;

    line-height: 1.4;

    height: 42px;

    overflow: hidden;

}

.similar-price {

    margin-top: 12px;

    font-weight: 700;

}

@media(max-width:992px) {

    .sidebar {

        display: none;

    }

    .page {

        margin-left: 0;

    }

}

.feed-search {

    max-width: 700px;

    margin: auto;

}

.feed-search-box {

    display: flex;

    align-items: center;

    gap: 16px;

    background: white;

    padding: 18px 22px;

    border-radius: 18px;

    box-shadow: var(--shadow);

    color: #666;

}

.feed-search-box:hover {

    color: #111;

}

.feed-search-box i {

    font-size: 20px;

}

.product-image-container {

    position: relative;

    background: #fafafa;

    aspect-ratio: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 10px;

}

.store-badge {

    position: absolute;

    left: 16px;

    bottom: 16px;

    width: 46px;

    height: 46px;

    border-radius: 14px;

    overflow: hidden;

    background: white;

    border: 1px solid #ececec;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

    transition: .2s;

}

.store-badge img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.store-badge:hover {

    transform: scale(1.08);

}

.action-buttons {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.compare-button {

    position: absolute;

    right: 32px;


    width: 30px;

    height: 30px;

    border-radius: 14px;

    background: #111;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);

    transition: .2s;

}

.compare-button:hover {

    transform: scale(1.08);

    color: white;

}

.product-gallery {

    position: sticky;

    top: 24px;

}

.productSwiper {

    border-radius: 28px;

    overflow: hidden;

    background: #fafafa;

}

.gallery-image {

    width: 100%;

    aspect-ratio: 1;

    object-fit: contain;

    padding: 50px;

    user-select: none;

}

.thumbsSwiper {

    overflow: hidden;

}

.thumbsSwiper .swiper-slide {

    width: 90px;

    height: 90px;

    cursor: pointer;

    border-radius: 18px;

    overflow: hidden;

    border: 2px solid transparent;

}

.thumbsSwiper .swiper-slide-thumb-active {

    border-color: #111;

}

.gallery-thumb {

    width: 100%;

    height: 100%;

    object-fit: contain;

    background: #fafafa;

    padding: 8px;

}

.gallery-counter {

    position: absolute;

    right: 18px;

    bottom: 18px;

    z-index: 10;

    background: rgba(0, 0, 0, .65);

    color: white;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 600;

    backdrop-filter: blur(8px);

}

.store-row {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #444;

    font-weight: 600;

}

.store-row:hover {

    color: #111;

}

.store-logo {

    width: 48px;

    height: 48px;

    border-radius: 14px;

    border: 1px solid #eee;

}

.product-actions {

    border-top: 1px solid #ececec;

    padding-top: 28px;

}

.btn-action {

    height: 56px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-weight: 600;

    text-decoration: none;

    transition: .2s;

}

.btn-action:hover {

    transform: translateY(-2px);

}

.btn-buy {

    background: #111;

    color: white;

    padding: 0 28px;

}

.btn-buy:hover {

    color: white;

}

.btn-like {

    width: 56px;

    border: none;

    background: #f5f5f5;

}

.btn-compare {

    background: #f5f5f5;

    color: #111;

}

.btn-compare:hover {

    color: #111;

}

/* download screen  */

.download-features {

    display: flex;

    flex-direction: column;

    gap: 16px;

    text-align: left;

    margin: auto;

    max-width: 260px;

}

.download-features div {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 500;

}

.download-features i {

    color: #198754;

    font-size: 18px;

}

/* download page */

.download-page {

    max-width: 520px;

    margin: auto;

    min-height: 85vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    text-align: center;

}

.app-logo {

    width: 110px;

    margin: auto;

}

.features {

    display: flex;

    flex-direction: column;

    gap: 18px;

    text-align: left;

}

.feature {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 20px;

    border: 1px solid #ececec;

    border-radius: 18px;

    background: white;

}

.feature i {

    font-size: 22px;

}

.page-body {
    background: white;
    padding: 30px;
    border-radius: 30px;
}