@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --bg: #0b0b0c;
    --panel: #141416;
    --card: #171719;
    --line: #28282b;
    --text: #f4f2ef;
    --muted: #9a9793;
    --accent: #f06b9a;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    max-width: 520px;
    margin: auto;
    min-height: 100vh
}

a {
    text-decoration: none;
    color: inherit
}

.topbar {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    position: sticky;
    top: 0;
    z-index: 20;
    background: #0b0b0cf2;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #ffffff0b
}

.brand {
    font-weight: 700;
    letter-spacing: .13em;
    font-size: 15px
}

.brand span {
    color: var(--accent)
}

.icon-btn,
.tg-head {
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 700
}

.icon-btn {
    font-size: 22px;
    width: 36px
}

.tg-head {
    border: 1px solid #ffffff22;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px
}

.drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(360px, 88vw);
    background: #121214;
    z-index: 50;
    transform: translateX(-105%);
    transition: .25s;
    padding: 18px;
    box-shadow: 20px 0 60px #000
}

.drawer.open {
    transform: none
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 30px
}

.drawer-head button {
    background: none;
    border: 0;
    color: #fff;
    font-size: 30px
}

.drawer a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px
}

.drawer-note {
    color: var(--muted);
    font-size: 12px;
    margin-top: 28px;
    line-height: 1.6
}

.shade {
    position: fixed;
    inset: 0;
    background: #0009;
    z-index: 40;
    display: none
}

.shade.show {
    display: block
}

main {
    padding-bottom: 50px
}

.hero {
    padding: 48px 20px 38px;
    background: radial-gradient(circle at 80% 15%, #f06b9a16, transparent 35%)
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--accent);
    font-weight: 700
}

.hero h1 {
    font-size: 44px;
    line-height: .98;
    margin: 13px 0 15px;
    letter-spacing: -.04em
}

.hero h1 i {
    font-family: 'Playfair Display', serif;
    font-weight: 600
}

.hero p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
    max-width: 330px
}

.primary {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 14px;
    background: var(--text);
    color: #111;
    border-radius: 999px;
    padding: 13px 16px 13px 20px;
    font-size: 13px;
    font-weight: 700
}

.primary span {
    background: #111;
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center
}

.filters {
    padding: 0 16px 26px
}

.searchbox {
    height: 48px;
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 13px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: var(--muted);
    gap: 8px
}

.searchbox input {
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    width: 100%;
    font: inherit
}

.chips {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding: 12px 1px 2px;
    scrollbar-width: none
}

.chip {
    white-space: nowrap;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 11px
}

.chip.active {
    background: #fff;
    color: #111;
    border-color: #fff
}

.catalog {
    padding: 0 16px
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 14px
}

.section-head h2 {
    font-size: 23px;
    margin: 6px 0 0
}

.count {
    color: var(--muted);
    font-size: 12px
}

.cards {
    display: grid;
    gap: 14px
}

.card {
    background: var(--card);
    border: 1px solid #ffffff09;
    border-radius: 18px;
    overflow: hidden
}

.cover {
    height: 350px;
    position: relative;
    background: #222
}

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cover:after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, #000b)
}

.fav {
    position: absolute;
    z-index: 2;
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #fff3;
    background: #0008;
    color: #fff;
    font-size: 18px
}

.card-info {
    position: relative;
    margin-top: -70px;
    z-index: 2;
    padding: 0 15px 15px
}

.name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.name {
    font-size: 21px;
    font-weight: 700
}

.verified {
    font-size: 9px;
    color: #111;
    background: var(--accent);
    padding: 5px 7px;
    border-radius: 999px;
    font-weight: 700
}

.meta {
    color: #d1cfcb;
    font-size: 12px;
    margin: 7px 0 11px
}

.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.tag {
    font-size: 10px;
    border: 1px solid #fff1;
    border-radius: 999px;
    padding: 6px 8px;
    color: #bbb
}

.price {
    margin-top: 12px;
    font-size: 12px;
    color: #fff
}

.price b {
    font-size: 16px
}

.view {
    display: block;
    margin-top: 13px;
    text-align: center;
    border: 1px solid #fff2;
    border-radius: 10px;
    padding: 11px;
    font-size: 12px;
    font-weight: 700
}

.empty {
    text-align: center;
    color: var(--muted);
    padding: 50px 10px
}

@media(min-width:521px) {
    body {
        box-shadow: 0 0 80px #000
    }

    .topbar {
        border-left: 1px solid #222;
        border-right: 1px solid #222
    }
}