* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
}

header {
    width: 100%;
    background: white;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.logo span,
footer span {
    color: #ff4f64;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff4f64;
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 25px;
    cursor: pointer;
}

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px max(30px, calc((100% - 1140px) / 2));
    background: linear-gradient(120deg, #fff0f2, #ffe1e6);
}

.hero-text {
    max-width: 560px;
}

.small-title {
    color: #ff4f64;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 70px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h2 span {
    color: #ff4f64;
}

.hero-text > p:not(.small-title) {
    color: #666;
    max-width: 450px;
    margin-bottom: 30px;
}

.main-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #ff4f64;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.main-btn:hover {
    transform: translateY(-2px);
}

.hero-shoe {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
}

.shoe-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 160px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: rotate(-10deg);
}

.products {
    padding: 100px 30px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    color: #ff4f64;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 40px;
    margin-top: 8px;
}

.product-container {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.product-card {
    flex: 1;
    max-width: 350px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    background: #fff1f3;
    border-radius: 15px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.product-card p {
    color: #777;
    margin-bottom: 15px;
}

.product-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
}

.product-card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: #222;
    color: white;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
}

.product-card button:hover {
    background: #ff4f64;
}

.about {
    max-width: 1200px;
    margin: auto;
    padding: 100px 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    width: 50%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 130px;
    background: #ffe7ea;
    border-radius: 30px;
}

.about-text {
    flex: 1;
}

.about-text > p:first-child {
    color: #ff4f64;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 15px 0 20px;
}

.about-text p:not(:first-child) {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact {
    padding: 100px 30px;
    background: #fafafa;
}

form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
}

textarea {
    height: 150px;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #ff4f64;
}

footer {
    text-align: center;
    padding: 50px 30px;
    background: #222;
    color: white;
}

footer h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

footer p {
    color: #bbb;
}

.copyright {
    margin-top: 25px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 25px;
        background: white;
        z-index: 10;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero h2 {
        font-size: 50px;
    }

    .hero-shoe {
        width: 100%;
    }

    .shoe-circle {
        width: 260px;
        height: 260px;
        font-size: 110px;
    }

    .product-container {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
    }

    .about {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        width: 100%;
    }

    .about-text {
        text-align: center;
    }
}
