.hero-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #F8D7DA, #FFF0F3);
    border-radius: 30px;
    padding: 60px;
    margin-top: 30px;
}

.logo-main {
    color: #6F4E37;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text h1 {
    color: #6F4E37;
    font-size: 52px;
    font-weight: bold;
}

.hero-text p {
    color: #6F4E37;
    font-size: 20px;
}

.hero-small {
    max-width: 520px;
    margin-bottom: 30px;
}

.btn-dessert {
    display: inline-block;
    background: #6F4E37;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
}

    .btn-dessert:hover {
        background: #8B5E3C;
        color: white;
    }

.hero-image img {
    width: 420px;
    height: 360px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(111, 78, 55, 0.25);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 45px;
}

    .advantages div {
        background: #ffffff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 5px 16px rgba(0,0,0,0.08);
        color: #6F4E37;
        font-size: 28px;
    }

    .advantages h3 {
        font-size: 18px;
        margin-top: 10px;
    }

.popular h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #6F4E37;
    margin-top: 80px;
    margin-bottom: 70px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    width: 300px;
    background: white;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
}

    .card:hover {
        transform: translateY(-8px);
    }

    .card img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 20px;
        margin: 0 auto 15px auto;
        display: block;
    }

    .card h3 {
        color: #6F4E37;
        margin-bottom: 10px;
    }

.about {
    margin-top: 70px;
    margin-bottom: 50px;
}

    .about h2 {
        color: #6F4E37;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
    }

.contacts {
    margin-top: 60px;
    padding: 35px;
    text-align: center;
    background: #F8D7DA;
    border-radius: 25px;
    color: #6F4E37;
}

.footer {
    margin-top: 90px;
    padding: 25px 0;
    text-align: center;
    color: #6F4E37;
    background-color: #FFF8F2;
    border-top: 2px solid #F8D7DA;
    position: static !important;
    width: 100%;
    line-height: normal !important;
}

.custom-navbar {
    background-color: #FFF8F2;
    padding: 18px 0;
    border-bottom: 2px solid #F8D7DA;
}

.logo {
    font-size: 34px;
    font-weight: 700;
    color: #6F4E37 !important;
}

.nav-link {
    color: #6F4E37 !important;
    font-size: 18px;
    font-weight: 500;
    margin-left: 15px;
}

    .nav-link:hover {
        color: #D98FA0 !important;
    }

.order-btn {
    background: #6F4E37;
    color: white !important;
    border-radius: 25px;
    padding: 8px 18px !important;
}

    .order-btn:hover {
        background: #8B5E3C;
    }

@media (max-width: 900px) {
    .hero-new {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }

    .advantages {
        grid-template-columns: 1fr 1fr;
    }
}
.cards h4 {
    color: #D98FA0;
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
}
.order-page {
    max-width: 700px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

    .order-page h1 {
        text-align: center;
        color: #6F4E37;
        margin-bottom: 20px;
    }

    .order-page p {
        text-align: center;
        margin-bottom: 30px;
    }

.form-label {
    color: #6F4E37;
    font-weight: 600;
}

.alert-success {
    margin-bottom: 20px;
}
.admin-note {
    text-align: center;
    color: #6F4E37;
    font-size: 18px;
    margin-bottom: 10px;
}

.orders-count {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #D98FA0;
    margin-bottom: 30px;
}
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

    .search-form .form-control {
        border-radius: 25px;
        padding: 12px 18px;
        border: 1px solid #F8D7DA;
    }

.clear-btn {
    color: #6F4E37;
    text-decoration: none;
    font-weight: 600;
}

    .clear-btn:hover {
        color: #D98FA0;
    }

.orders-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}
.admin-actions {
    text-align: center;
    margin-bottom: 25px;
}
.admin-btn {
    background: #D98FA0;
    color: white !important;
    border-radius: 25px;
    padding: 8px 18px !important;
    margin-left: 10px;
}

    .admin-btn:hover {
        background: #C97A8D;
    }
.search-form .form-control {
    height: 48px;
}
.search-form .btn-dessert {
    height: 48px;
    margin-top: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form .clear-btn {
    height: 48px;
    display: flex;
    align-items: center;
}