body { 
    font-family: sans-serif; 
    margin: 0; 
    background: white; 
    text-align: center; 
    body {font-size: 16px;}
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #101010; 
    color: white; 
    padding: 10px 5%; 
}
header h1 { 
    margin: 0 0 10px 0; 
}
nav a { 
    color: white; 
    margin: 0 15px; 
    text-decoration: none; 
    font-weight: bold; 
}
nav a:hover {
    color: #29fc6b;
}
main { 
    padding: 40px 20px; 
}
.logo img {
    height: 100px;
    width: 100px;
}
.brand-intro .intro-container {
    max-width: auto; 
    margin: 0 auto;
}
.brand-intro .intro-image img {
    max-width: auto; 
    height: auto;
    margin-top: 60px; 
}
.brand-intro .intro-text p {
    color: #333;
    line-height: 1.6;
    font-size: 1.1em;
}
.outro-image img {
    max-width: auto; 
    height: auto;
    margin-top: 80px; 
}
.intro-text {
    text-align: center;      
    max-width: 55%;
    margin: 20px auto;       
    line-height: 1.6;        
    padding: 0 20px;        
}
.highlight {
    font-weight: 700;  
    color: #ef5743; 
}
.offers { 
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: flex-start; 
    flex-wrap: wrap;
    gap: 20px; 
    margin: 20px auto;
    width: 100%;
}
.offer-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
}
.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    transform: scale(1.1);
}
img {
    overflow-clip-margin: content-box;
    overflow: clip;
    max-width: 100%;
    height: auto;
}
.offer-card { 
    background: white; 
    padding: 20px; 
    border-radius: 8px; 
    border: 1px solid #ddd; 
    width: 300px; 
}
.offer-card h3 { 
    margin-top: 0; 
    color: #e74c3c; 
}
button { 
    background: #e74c3c; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 4px; 
    cursor: pointer; 
}
.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 50px 10%;
}
.contact-info {  
    flex: 1;
    min-width: 300px;
    margin-left: 30%;
    margin-right: 30%;
    background: white;
    padding: 30px;
    border-radius: 10 px;
    box-shadow: 0 4px 10px 
rgba(0,0,0,0.1);
    text-align: center; 
}
.contact-form {
    flex: 1;
    min-width: 300px;
    margin-left: 30%;
    margin-right: 30%;
    background: white;
    padding: 30px;
    border-radius: 10 px;
    box-shadow: 0 4px 10px 
rgba(0,0,0,0.1);
    text-align: center;  
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: lrem;
}
.contact-form input:focus {
    border-color: #e74c3c;
    outline: none;
}
.cart-summary {
    background: #f4f4f4;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    max-width: 250px;
    top: 40px;
}
.menu-grid {
    grid-template-columns: 1fr;
    align-items: top;
    padding: 0;
}
footer {
    background: #101010;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
    font-size: 0.9em;
}
footer a:hover {
    color: #29fc6b;
}
.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    font-size: 0.9em;
}
.cookie-container a {
    color: #29fc6b;
    text-decoration: underline;
}
.cookie-container .order-btn {
    margin-left: 20px;
    padding: 8px 20px;
    white-space: nowrap;
}
.cookie-hidden {
    display: none;
}
