/* Unboxing */
:root {
    --accent-blue: #30A1DB; /* Цвет рамки и кнопок как на image_2026-05-04_12-37-21.png */
    --text-main: #333333;
    --text-muted: #233137;
    --card-border: #E0E0E0;
}

/* Контентная часть */
.content-top {
    margin-bottom: 40px;
}

.title {
    font-size: 60px;
    color: var(--text-main);
    margin: 0 0 16px 0;
}

.description {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.filter-controls {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    justify-content: end;
    border-bottom: 1px solid #767676;
    padding-bottom: 30px;
}

.select-container {
    position: relative;
    width: 206px;
}

.custom-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #30A1DB;
    border-radius: 16px;
    padding: 10px 18px;
    font-size: 20px;
    color: #7A7A7A;
    background-color: #ffffff;
    background-image: url(../img/drown-icon.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 24px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
}

.custom-select:hover {
    border-color: #30A1DB;
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #7A7A7A;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.box-card {
    background: #ffffff;
    border: 1px solid #C4C4C4;
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.box-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.box-card__preview {
    position: relative;
    height: 207px;
    background: #f0f0f0;
}

.box-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #30A1DB;
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    cursor: pointer;
}

.box-card__info {
    padding: 0;
    background: #FAFAFA;
}

.box-card__info h3 {
    margin: 0;
    padding: 24px 20px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    border-bottom: 1px solid #C4C4C4;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #C4C4C4;
    font-size: 14px;
}

.data-row.footer-border {
    border-bottom: none;
    padding: 35px 20px;
}

.label {
    color: #666666;
}

.value {
    color: #333333;
    font-weight: 500;
}

.invoice {
    color: #333333;
    font-weight: 500;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #30A1DB;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.download-btn svg {
    flex-shrink: 0;
}

.download-btn:hover {
    opacity: 0.8;
}

/* Пагинация */
.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.page-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    color: var(--text-muted);
}

.page-list li {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
}

.page-list li.active {
    background-color: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
}

.nav-arrow {
    background: none;
    border: none;
    color: #D1D1D1;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-arrow:not(.disabled) {
    color: var(--accent-blue);
}
section.main-report-container {
    padding: 100px 0;
}
