body {
    margin: 0;
    background: #0f1115;
    color: white;
    font-family: Inter, sans-serif;
}

.hero {
    min-height: 100vh;
    padding: 80px;
}

h1 {
    font-size: 70px;
    margin-bottom: 10px;
}

h2 {
    font-size: 40px;
    margin-bottom: 30px;
}
h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

p {
    color: #999;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.logoo {
    width: 400px;
    height: auto;
}

.products, .measure_grids {
    margin-top: 80px;
}

.card {
    background: #181b22;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(255, 166, 0, .15);
}

.card img {
    width: 220px;
}

.info h2 {
	color: #ffbe99;
    font-size: 32px;
    margin-bottom: 0px;
}
.info h3 {
	color: #ffd7bf;
	margin-top: 0px;
    font-size: 15px;
    margin-bottom: 10px;
}

.specs {
    color: #999;
    line-height: 1.7;
}

.price {
    font-size: 40px;
    color: #ff9933;
    margin-top: 20px;
    font-weight: bold;
}

.pricewas {
    font-size: 25px;
    color: #a8998a;
    margin-top: 20px;
    font-weight: bold;
}


button {
    margin-top: 30px;
    background: linear-gradient(135deg, #ff9933, #ff5d00);
    border: none;
    color: white;
    padding: 16px 40px;
    border-radius: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.buttonwas {
    margin-top: 30px;
    background: linear-gradient(135deg, #a8998a, #937a6c);
    color: white;
    padding: 16px 40px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    text-decoration: none;
}


.contacts {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    width: 900px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
}

.logo {
    width: 500px;
}

.buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.telegram,
.instagram {
    padding: 20px 50px;
    border-radius: 18px;
    text-decoration: none;
    color: white;
    font-size: 22px;
}

.telegram {
    background: #229ED9;
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.measure_grid img {
    width: 100%;
    border-radius: 20px;
}

.measurements a {
    color: #fff;
    margin-top: 20px;
    display: block;
}

@media screen and (max-width: 900px) {
    .products {
        margin-top: 40px;
    }
    
    .container {
        max-width: 90%;
        margin: 0 auto;

    }

    .hero {
        padding: 40px;
    }
    
    h1 {
        font-size: 50px;
    }
    
    .card {
        flex-direction: column;
        text-align: center;
    }
    
    .card img {
        width: 100%;
    }
    
    .info h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 500px) {
    .hero {
        padding: 20px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .contact-box {
        width: 100%;
        padding: 40px 20px;
    }
    
    .logo {
        width: 100%;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .telegram,
    .instagram {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}