body {
    margin: 0;
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* ——— ПЕРВЫЙ ЭКРАН ——— */

.hero {
    position: relative;
    height: 100vh;
}

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

.hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.brand {
    font-size: 42px;
    font-weight: 900;
    color: #e60000;
    letter-spacing: 2px;
    text-shadow: 0 0 12px rgba(255,0,0,0.4);
}

.tagline {
    margin-top: 4px;
    font-size: 16px;
    color: #b30000;
}

/* ——— МАНИФЕСТ ——— */

.manifest {
    padding: 40px 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

/* ——— ТОВАРЫ ——— */

.products {
    padding: 20px;
}

.product {
    margin-bottom: 45px;
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background: #fff;
}

.product h2 {
    margin: 12px 0 5px;
    font-size: 20px;
}

.sub {
    font-size: 10px;
    opacity: 0.7;
    margin-top: -3px;
}

.price {
    color: #e60000;
    font-size: 14px;
    margin: 5px 0;
}

.desc {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

/* ——— ФИНАЛ ——— */

.footer-block {
    padding: 50px 20px;
    text-align: center;
}

.main-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
}

.footer-text {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.6;
}