
.page__container {
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.page__container::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 9, 11, 0.45) 0%, rgba(9, 9, 11, 0.72) 100%),
        url("../images/thumbnail.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.62;
    filter: grayscale(1) contrast(1.18) brightness(0.72);
}

.page__container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-image: url("../svg/components.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.85;
    filter: grayscale(1) saturate(0);
}

.page__container > * {
    position: relative;
    z-index: 2;
}

.page__container .title {
    font-family: "Krona One", sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 14px 48px rgba(0, 0, 0, 0.55);
}

.page__container .description {
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    max-width: 630px;
    text-align: center;
    line-height: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.statistic__container {
    width: 100%;
    height: 0px;
    overflow: visible;
    position: relative;
    z-index: 3;
}

.statistic__content {
    max-width: var(--containers-max-width);
    margin: 0 auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0B0B0B;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.statistic__item {
    width: 100%;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
}

.statistic__item img {
    width: 42px;
    height: 42px;
}

.statistic__item__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.statistic__item__text .title {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

.statistic__item__text .description {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.note__container {
    width: 100%;
    padding-top: 197px;
    padding-bottom: 137px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.note__container .title {
    font-size: 49px;
    font-weight: 600;
    color: var(--white);
}

.note__container .title.accent {
    color: var(--accent);
}

.note__container .description {
    color: var(--text);
    font-size: 17.5px;
    font-weight: 500;
    max-width: 760px;
    text-align: center;
    line-height: 20px;
}

.reviews__container {
    width: 100%;
    border-top: 1px solid var(--border);
}

.reviews__content {
    max-width: var(--containers-max-width);
    padding: var(--padding75) 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.reviews__content .title-description {
    font-weight: 400;
    font-size: 20px;
    color: var(--text);
    text-align: center;
    max-width: 662px;
    line-height: 30px;
}

.reviews__items__container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.reviews__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--child);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.reviews__item__header {
    padding: 25px;
}

.reviews__item__header .title {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    line-height: 20px !important;
}

.reviews__item__bottom {
    padding: 25px;
    background-color: var(--widget);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews__item__bottom__customer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.reviews__item__bottom__customer .title {
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
}

.reviews__item__bottom__customer .description {
    color: var(--text);
    font-weight: 500;
    font-size: 13px;
}

.reviews__item__bottom__stars {
    display: flex;
    gap: 25px;
}

.reviews__item__bottom__stars img {
    width: 25px;
    height: 25px;
}

.sellers__container {
    width: 100%;
    border-top: 1px solid var(--border);
}

.sellers__content {
    max-width: var(--containers-max-width);
    padding: var(--padding75) 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.sellers__content .title {
    font-weight: 400;
    font-size: 15px;
    color: var(--white);
}

.sellers__items__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.seller__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
    background-color: var(--child);
    border: 1px solid var(--border);
    outline: 0px solid var(--alpha0);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.seller__item:hover {
    border: 1px solid var(--accent);
    outline: 5px solid var(--accent20);
}

.seller__item .title {
    all: unset;
    max-width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.seller__item .description {
    all: unset;
    max-width: 100%;
    white-space: pre-line;
    text-align: left;
    word-wrap: break-word;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text);
}

.seller__item__information {
    display: flex;
    gap: 25px;
    align-items: center;
}

.seller__item__information .avatar__container {
    width: 63px;
    height: 63px;
    border-radius: 100px;
    overflow: hidden;
}

.seller__item__information .avatar__container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.seller__item__information__name__and__products {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.seller__item__information__name__and__products .description {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    white-space: normal;
    line-height: 100%;
}

.seller__item__information__name__status {
    height: 21px;
    display: flex;
    gap: 13px;
    align-items: center;
}

.seller__item__information__name__status .title {
    all: unset;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
}

.seller__item__information__name__status .accent {
    all: unset;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent);
    display: flex;
    align-items: center;

}

.category-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: linear-gradient(150deg, #111112 0%, #0B0B0C 72%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-product-card:hover,
.category-product-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), 0 0 0 4px var(--accent20);
    outline: none;
}

.category-product-card__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: #111112;
}

.category-product-card__visual::after {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    content: "";
    background: linear-gradient(transparent, rgba(8, 8, 8, 0.58));
    pointer-events: none;
}

.category-product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.category-product-card:hover .category-product-card__visual img {
    transform: scale(1.045);
}

.category-product-card__badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(14, 14, 15, 0.78);
    color: #F5F5F5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.category-product-card__empty {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--text);
    font-size: 12px;
}

.category-product-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
}

.category-product-card__type {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.category-product-card h2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

.category-product-card p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-product-card__footer {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
}

.category-product-card__action {
    color: var(--white);
    white-space: nowrap;
}

.category-product-card__action span {
    color: var(--accent);
    font-size: 16px;
}

.category-product-grid__empty {
    color: var(--text);
    font-size: 13px;
}

/* Editorial product list: the store currently has one product family, so the
   catalogue reads as a direct product showcase instead of nested category cards. */
.sellers__container { border-top: 1px solid #252525; }
.sellers__content { gap: 52px; padding: 100px 0; }
.storefront__heading { display: grid; grid-template-columns: 170px 1fr 320px; gap: 34px; align-items: end; }
.storefront__eyebrow { color: #777; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.storefront__heading h2 { color: #fff; font-size: clamp(34px, 4.8vw, 64px); font-weight: 500; letter-spacing: -.05em; line-height: .98; }
.storefront__heading p { color: #898989; font-size: 13px; line-height: 1.65; }
.storefront__products { border-top: 1px solid #303030; }

.storefront__product {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    min-height: 390px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #303030;
}

.storefront__visual { position: relative; overflow: hidden; margin: 28px 42px 28px 0; background: #0b0b0b; }
.storefront__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.storefront__product:hover .storefront__visual img { transform: scale(1.025); }
.storefront__availability { position: absolute; top: 14px; left: 14px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.24); background: rgba(8,8,8,.88); color: #eee; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.storefront__copy { display: flex; flex-direction: column; padding: 38px 0 28px 42px; border-left: 1px solid #303030; }
.storefront__copy > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.storefront__index, .storefront__type { color: #707070; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.storefront__copy h3 { margin-top: auto; color: #fff; font-size: clamp(42px, 6vw, 76px); font-weight: 500; letter-spacing: -.06em; line-height: .95; }
.storefront__copy p { display: -webkit-box; max-width: 440px; margin-top: 20px; overflow: hidden; color: #8d8d8d; font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.storefront__meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 24px; border-top: 1px solid #252525; color: #fff; font-size: 13px; font-weight: 600; }
.storefront__action { display: flex; align-items: center; gap: 22px; text-transform: uppercase; }
.storefront__action b { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #363636; font-size: 14px; transition: background-color 160ms ease, color 160ms ease, transform 160ms ease; }
.storefront__product:hover .storefront__action b { background: #f4f4f4; color: #080808; transform: translate(2px,-2px); }

@media screen and (min-width:767px) and (max-width:1200px) {
    .page__container .title {
        font-size: 60px;
    }
    .statistic__item {
        scale: 0.9;
    }
}

@media screen and (max-width:767px) {
    .page__container {
        height: 100vh;
        gap: 20px;
        background-size: cover;
    }
    .page__container::after {
        background-size: cover;
    }
    .page__container .title {
        font-size: 40px;
        max-width: var(--containers-max-width);
        text-align: center;
    }
    .page__container .description {
        display: none;
    }
    .statistic__item__text {
        display: none;
    }
    .note__container {
        height: 400px;
    }
    .note__container .title {
        font-size: 40px;
        text-align: center;
    }
    .reviews__content {
        gap: 15px;
    }
    .reviews__items__container {
        display: flex;
        flex-direction: column;
    }
    .reviews__item__bottom__customer .description {
        display: none;
    }
    .reviews__item__bottom__stars {
        gap: 5px;
        justify-content: flex-end;
    }
    .reviews__item__bottom__stars img {
        scale: 0.5;
    }
    .sellers__content {
        gap: 25px;
    }
    .seller__item .title {
        line-height: 20px;
    }
    .category-product-grid {
        grid-template-columns: 1fr;
    }
    .sellers__content { padding: 70px 16px; }
    .storefront__heading { grid-template-columns: 1fr; gap: 16px; }
    .storefront__product { grid-template-columns: 1fr; }
    .storefront__visual { min-height: 240px; margin: 24px 0; }
    .storefront__copy { min-height: 330px; padding: 30px 0; border-left: 0; border-top: 1px solid #303030; }
}
