:root {
--bg: #07111d;
--bg-soft: #0d1828;
--panel: rgba(12, 22, 38, 0.94);
--card: rgba(255, 255, 255, 0.06);
--card-hover: rgba(255, 255, 255, 0.1);
--border: rgba(255, 255, 255, 0.08);
--text: #edf4ff;
--muted: #93a6c6;
--primary: #68e0d1;
--primary-2: #6ea8ff;
--success: #38d98b;
--danger: #ff7f88;
--warning: #ffc857;
--shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100%;
font-family: Inter, Arial, sans-serif;
color: var(--text);
background:
radial-gradient(circle at top left, rgba(110, 168, 255, 0.14), transparent 28%),
radial-gradient(circle at top right, rgba(104, 224, 209, 0.1), transparent 24%),
var(--bg);
}
body {
min-height: 100vh;
}
button,
input,
select {
font: inherit;
}
a {
color: inherit;
}
.app-layout {
display: grid;
grid-template-columns: 320px 1fr;
min-height: 100vh;
}
.sidebar {
position: sticky;
top: 0;
height: 100vh;
overflow-y: auto;
padding: 24px;
background: var(--panel);
border-right: 1px solid var(--border);
backdrop-filter: blur(16px);
}
.sidebar::-webkit-scrollbar,
.filter-list::-webkit-scrollbar {
width: 8px;
}
.sidebar::-webkit-scrollbar-thumb,
.filter-list::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.12);
border-radius: 999px;
}
.brand {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 28px;
}
.brand__icon {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 18px;
background: linear-gradient(135deg, var(--primary), var(--primary-2));
color: #07111d;
font-size: 28px;
font-weight: 800;
box-shadow: var(--shadow);
}
.brand__title {
font-size: 22px;
font-weight: 800;
line-height: 1.2;
}
.brand__subtitle {
margin-top: 4px;
color: var(--muted);
font-size: 14px;
}
.sidebar__block {
margin-bottom: 22px;
}
.sidebar__actions {
display: flex;
flex-direction: column;
gap: 10px;
}
.label {
display: block;
margin-bottom: 8px;
font-size: 13px;
color: var(--muted);
}
.control {
width: 100%;
padding: 13px 14px;
border-radius: 14px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.05);
color: var(--text);
outline: none;
transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.control:focus {
border-color: rgba(104, 224, 209, 0.45);
background: rgba(255, 255, 255, 0.07);
box-shadow: 0 0 0 3px rgba(104, 224, 209, 0.08);
}
.control::placeholder {
color: #8ea2c0;
}
.block-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-bottom: 12px;
}
.block-head h3 {
margin: 0;
font-size: 17px;
}
.badge-count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 30px;
height: 30px;
padding: 0 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
font-size: 12px;
font-weight: 700;
}
.filter-list {
display: flex;
flex-direction: column;
gap: 8px;
max-height: 260px;
overflow-y: auto;
padding-right: 4px;
}
.filter-item {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 12px 14px;
border-radius: 14px;
border: 1px solid transparent;
background: rgba(255, 255, 255, 0.05);
color: var(--text);
text-align: left;
cursor: pointer;
transition: all 0.2s ease;
}
.filter-item:hover {
background: rgba(255, 255, 255, 0.08);
border-color: var(--border);
}
.filter-item.active {
background: linear-gradient(135deg, rgba(104, 224, 209, 0.18), rgba(110, 168, 255, 0.18));
border-color: rgba(104, 224, 209, 0.28);
box-shadow: inset 0 0 0 1px rgba(104, 224, 209, 0.12);
}
.filter-item__count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 30px;
height: 30px;
padding: 0 9px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
font-size: 12px;
font-weight: 700;
flex-shrink: 0;
}
.btn {
width: 100%;
border: none;
border-radius: 14px;
padding: 14px 16px;
cursor: pointer;
font-weight: 800;
transition: transform 0.15s ease, opacity 0.2s ease, filter 0.2s ease;
}
.btn:hover {
transform: translateY(-1px);
filter: brightness(1.03);
}
.btn:disabled {
opacity: 0.75;
cursor: wait;
transform: none;
filter: none;
}
.btn--primary {
background: linear-gradient(135deg, var(--primary), var(--primary-2));
color: #07111d;
}
.btn--secondary {
background: rgba(255, 255, 255, 0.08);
color: var(--text);
border: 1px solid var(--border);
}
.content {
padding: 28px;
}
.hero {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
padding: 28px;
border-radius: 24px;
background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
border: 1px solid var(--border);
box-shadow: var(--shadow);
}
.hero__label {
margin-bottom: 10px;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 12px;
font-weight: 700;
}
.hero h1 {
margin: 0 0 10px;
font-size: 36px;
line-height: 1.15;
}
.hero p {
margin: 0;
max-width: 780px;
color: var(--muted);
line-height: 1.6;
}
.hero__status-wrap {
display: flex;
align-items: center;
gap: 12px;
}
.hero__status {
display: inline-flex;
align-items: center;
gap: 10px;
white-space: nowrap;
padding: 12px 14px;
border-radius: 14px;
background: rgba(255, 255, 255, 0.05);
color: var(--muted);
}
.hero__dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--success);
box-shadow: 0 0 16px rgba(56, 217, 139, 0.55);
}
.mobile-filter-btn {
display: none;
align-items: center;
justify-content: center;
border: none;
border-radius: 14px;
padding: 12px 14px;
font-weight: 800;
cursor: pointer;
color: #07111d;
background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.mobile-filter-btn.is-active {
opacity: 0.9;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
margin: 18px 0;
}
.stats-card {
padding: 18px;
border-radius: 20px;
background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
border: 1px solid var(--border);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.stats-card span {
display: block;
color: var(--muted);
margin-bottom: 8px;
font-size: 13px;
}
.stats-card strong {
font-size: 30px;
}
.toolbar {
margin-bottom: 18px;
}
.active-filters {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tag {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 9px 12px;
border-radius: 999px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.05);
color: var(--text);
font-size: 13px;
}
.tag-reset {
cursor: pointer;
background: linear-gradient(135deg, rgba(104,224,209,0.18), rgba(110,168,255,0.18));
}
.error-box {
margin-bottom: 18px;
padding: 14px 16px;
border-radius: 16px;
background: rgba(255, 127, 136, 0.12);
border: 1px solid rgba(255, 127, 136, 0.22);
color: #ffd7dc;
}
.hidden {
display: none;
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.product-card {
display: flex;
flex-direction: column;
gap: 16px;
padding: 20px;
border-radius: 22px;
background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
border: 1px solid var(--border);
box-shadow: var(--shadow);
transition: transform 0.18s ease, background 0.18s ease;
}
.product-card:hover {
transform: translateY(-2px);
background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}
.product-card__head {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 12px;
}
.product-card__title {
margin: 0;
font-size: 18px;
line-height: 1.45;
word-break: break-word;
}
.product-card__vendor {
margin-top: 6px;
color: var(--muted);
font-size: 13px;
}
.product-card__meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pill {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.05);
font-size: 12px;
}
.pill--success {
background: rgba(56, 217, 139, 0.14);
color: #b4ffd2;
}
.pill--danger {
background: rgba(255, 127, 136, 0.14);
color: #ffd7dc;
}
.product-card__bottom {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 14px;
margin-top: auto;
}
.price-block {
display: flex;
flex-direction: column;
gap: 5px;
}
.price-current {
font-size: 28px;
font-weight: 800;
line-height: 1.1;
}
.price-old {
color: var(--muted);
text-decoration: line-through;
font-size: 14px;
}
.product-card__actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: flex-end;
}
.copy-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 120px;
border: 1px solid var(--border);
border-radius: 14px;
padding: 12px 14px;
background: rgba(255, 255, 255, 0.06);
color: var(--text);
font-weight: 800;
cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.copy-btn:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-1px);
}
.copy-btn.is-copied {
background: rgba(56, 217, 139, 0.16);
border-color: rgba(56, 217, 139, 0.35);
color: #b4ffd2;
}
.product-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 120px;
text-decoration: none;
border-radius: 14px;
padding: 12px 14px;
background: linear-gradient(135deg, var(--primary), var(--primary-2));
color: #07111d;
font-weight: 800;
transition: filter 0.2s ease, transform 0.15s ease;
}
.product-link:hover {
filter: brightness(1.03);
transform: translateY(-1px);
}
.empty-box {
grid-column: 1 / -1;
padding: 42px 20px;
text-align: center;
color: var(--muted);
border-radius: 22px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
}
@media (max-width: 1380px) {
.products-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 1100px) {
.app-layout {
grid-template-columns: 1fr;
}
.sidebar {
position: relative;
top: auto;
height: auto;
overflow: visible;
padding: 18px;
border-right: none;
border-bottom: 1px solid var(--border);
}
.content {
padding: 18px;
}
.hero {
flex-direction: column;
align-items: flex-start;
padding: 22px;
}
.hero__status {
width: 100%;
white-space: normal;
}
.stats-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.filter-list {
max-height: 220px;
}
}
@media (max-width: 700px) {
.sidebar {
display: none;
padding: 14px;
}
.sidebar.sidebar--open {
display: block;
}
.mobile-filter-btn {
display: inline-flex;
}
.content {
padding: 14px;
}
.hero {
padding: 18px;
border-radius: 18px;
}
.hero__label {
font-size: 11px;
margin-bottom: 8px;
}
.hero h1 {
font-size: 24px;
margin-bottom: 8px;
}
.hero p {
font-size: 14px;
line-height: 1.5;
}
.hero__status-wrap {
width: 100%;
flex-direction: column;
align-items: stretch;
}
.hero__status {
padding: 10px 12px;
border-radius: 12px;
font-size: 13px;
}
.brand {
margin-bottom: 20px;
}
.brand__icon {
width: 46px;
height: 46px;
border-radius: 14px;
font-size: 22px;
}
.brand__title {
font-size: 18px;
}
.brand__subtitle {
font-size: 13px;
}
.sidebar__block {
margin-bottom: 16px;
}
.block-head h3 {
font-size: 15px;
}
.control {
padding: 12px;
border-radius: 12px;
font-size: 14px;
}
.filter-list {
gap: 6px;
max-height: 180px;
}
.filter-item {
padding: 10px 12px;
border-radius: 12px;
font-size: 14px;
}
.filter-item__count,
.badge-count {
min-width: 26px;
height: 26px;
padding: 0 7px;
font-size: 11px;
}
.btn {
padding: 13px 14px;
border-radius: 12px;
font-size: 14px;
}
.stats-grid {
grid-template-columns: 1fr 1fr;
gap: 10px;
margin: 14px 0;
}
.stats-card {
padding: 14px;
border-radius: 16px;
}
.stats-card span {
margin-bottom: 6px;
font-size: 12px;
}
.stats-card strong {
font-size: 22px;
}
.toolbar {
margin-bottom: 14px;
}
.active-filters {
gap: 8px;
}
.tag {
padding: 8px 10px;
font-size: 12px;
}
.products-grid {
grid-template-columns: 1fr;
gap: 12px;
}
.product-card {
padding: 16px;
border-radius: 18px;
gap: 14px;
}
.product-card__head {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.product-card__title {
font-size: 16px;
line-height: 1.4;
}
.product-card__vendor {
font-size: 12px;
}
.product-card__meta {
gap: 6px;
}
.pill {
font-size: 11px;
padding: 7px 9px;
}
.product-card__bottom {
flex-direction: column;
align-items: stretch;
gap: 12px;
}
.price-current {
font-size: 24px;
}
.price-old {
font-size: 13px;
}
.product-card__actions {
flex-direction: column;
align-items: stretch;
}
.copy-btn,
.product-link {
width: 100%;
min-width: 0;
border-radius: 12px;
}
.empty-box {
padding: 28px 16px;
border-radius: 18px;
font-size: 14px;
}
.error-box {
padding: 12px 14px;
border-radius: 14px;
font-size: 13px;
}
}
@media (max-width: 420px) {
.content,
.sidebar {
padding: 12px;
}
.hero {
padding: 16px;
}
.hero h1 {
font-size: 21px;
}
.stats-grid {
grid-template-columns: 1fr;
}
.tag {
width: 100%;
text-align: center;
}
.filter-item {
font-size: 13px;
}
.product-card {
padding: 14px;
}
.price-current {
font-size: 22px;
}
}