body, html {
    margin: 0;
    padding: 0;
    font-family: 'Dancing Script', cursive;
    background-color: #C9A882;
}

.container {
    width: 900px;
    margin: 20px auto;
    background-color: #EFE7DD;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 20px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3E3C9;
    padding: 10px 20px;
    border-radius: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background-color: #FFF;
    padding: 10px;
    border-radius: 50%;
    font-family: 'Pacifico', cursive;
}

.site-title {
    font-size: 26px;
    font-weight: bold;
    color: #4F3F2F;
    text-align: center;
    flex-grow: 1;
}

.main-menu-button, .checkout-button {
    background-color: #E6B850;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.main-menu-button:hover, .checkout-button:hover {
    background-color: #C99C42;
}

.main-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.left-panel, .right-panel {
    width: 48%;
    border-radius: 10px;
    padding: 10px;
    background-color: #FFF;
}

.panel-title {
    font-size: 22px;
    color: #4F3F2F;
    text-align: center;
    margin-bottom: 10px;
}

.search-container {
    background-color: #D8C4A6;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.search-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.search-input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.nav-button {
    background-color: #8C5B3F;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}

.nav-button:hover {
    background-color: #B27B52;
}

.promo-section {
    background-color: #D2A96D;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.promo-box {
    background-color: #EED6B2;
    height: 100px;
    border-radius: 10px;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.social-icons img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
}

.logo-footer img {
    width: 80px;
    margin-top: 20px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: #EFE7DD;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
    position: relative;
}

.modal-content p {
    font-size: 20px;
    color: #4F3F2F;
    margin-bottom: 20px;
}

.close-modal-btn {
    background-color: #E6B850;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}

.close-modal-btn:hover {
    background-color: #C99C42;
}
