body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1c1e;
    color: #fff;
}

.container {
    padding: 20px;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    margin: 0;
}

.header span {
    font-size: 16px;
}

.location-input {
    background-color: #2c2c2e;
    border: 1px solid #3a3a3c;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    position: relative;
}

.location-input input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #2c2c2e;
    border: 1px solid #3a3a3c;
    z-index: 10;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
}

.autocomplete-suggestion {
    padding: 10px;
    color: #fff;
    cursor: pointer;
}

.autocomplete-suggestion:hover {
    background-color: #3a3a3c;
}

.details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.details button {
    flex: 1;
    background-color: #2c2c2e;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.details button:active {
    background-color: #3a3a3c;
}

.options {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
}

.option {
    text-align: center;
    width: 22%; 
    padding: 10px;
    border: 1px solid #ddd; 
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.option:hover {
    transform: translateY(-5px); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.option img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.option-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.option-price {
    font-size: 14px;
    color: #888;
}

.option.active {
    background-color: #ffd600;
    color: #000;
}

.payment-method {
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
}

.order-button {
    background-color: #ffd600;
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.order-button:active {
    background-color: #e6c200;
}

.nav-bar {
    display: flex;
    justify-content: space-around;
    background-color: #2c2c2e;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.nav-bar div {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
}

.nav-bar div:active {
    color: #fff;
}

#map {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.logo {
    width: 200px;
    height: auto;
    transition: all 0.3s ease-in-out; /* Плавное изменение */
}

.nav-bar div {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-bar div:hover {
    color: #ffd600;
}

.nav-bar div:active {
    color: #fff;
}

#logo {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
