body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

.products-header {
    text-align: center;
    margin: 5px 0 60px 0;
}

.products-logo {
    width: 30%;
    max-width: 80%;
    display: block;
    margin: 0px auto 15px auto;
}

#grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 20px 50px 20px;
}

.grid-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
}


.product-card {
    width: 200px;
    text-align: center;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid white;
}

.product-name {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
}

button {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #fff;
    color: #000;
}

.center {
    text-align: center;
}

.logo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}


.main-button {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #fff;
    transition: 0.3s ease;
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

.main-button:hover {
    background: #fff;
    color: #000;
}

.hero {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}


.how-to-order {
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 170px auto 160px auto;
}

.how-to-order h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.how-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.order-step {
    width: 250px;
    text-align: center;
}

.step-anim {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px auto;
}

.lottie-box {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.static-gif {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.order-step p {
    margin-top: 10px;
    font-size: 16px;
}










