* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'StratosSkyeng', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

/* ========== ШАПКА ========== */
.header {
    height: 100vh;
    background-image: url(images/13.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
}

/* Тонкая белая линия вверху */
.header__top-line {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.header__overlay {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: calc((100% - 1200px) / 2);
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.header__top {
    position: absolute;
    top: 20px;
    left: calc((100% - 1200px) / 2);
    right: calc((100% - 1200px) / 2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
}

.header__interior {
    font-size: 24px;
    color: white;
    opacity: 0.9;
}

.header__nav {
    display: flex;
    gap: 30px;
}

.header__nav-link {
    color: white;
    text-decoration: none;
    font-size: 20px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.header__nav-link:hover {
    opacity: 0.7;
}

.header__title {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 15px;
    max-width: 800px;
    line-height: 1.2;
    margin-top: 40px;
}

.header__subtitle {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.9;
}

.header__link-catalog {
    color: white;
    font-size: 24px;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.header__link-catalog:hover {
    opacity: 0.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

/* ========== КАТАЛОГ ========== */
.catalog {
    max-width: 1200px;
    margin: 100px auto;
    width: 1200px;
}

.catalog__title {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 400;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.card {
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
}

.card__image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.card__title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.card__description {
    font-size: 16px;
    line-height: 1.5;
    color: #888888;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card__price {
    font-size: 20px;
    font-weight: bold;
    margin-top: auto;
}

/* ========== ФУТЕР ========== */
.footer {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(180deg, #f7f6f6 0%, #e9e9e9 100%);
}

.footer__overlay {
    max-width: 1200px;
    margin: 0 auto;
    width: 1200px;
}

.footer__text {
    font-size: 24px;
    text-align: center;
    color: #333;
}
