:root {
    --maroon: #E8D8C4;
    --beige: #E8D8C4;
   
}

body {
    font-family: sans-serif;
    background:#E8D8C4;
    margin: 0;
    color: var(--maroon);
}

header {
    background: #561C24;
    color:#E8D8C4;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--gold);
}

main {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.card {
    display: flex;
    background: #561C24;
    border-radius: 20px;
    color:#E8D8C4;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.left-side, .right-side {
    padding: 40px;
    flex: 1;
    color: #E8D8C4;
}

.right-side {
    background: #561C24;
    color: #E8D8C4;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    color: #561C24;
    margin-bottom: 25px;
}

.item {
    padding: 20px;
    background-color:#E8D8C4;
    color:#561C24;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
}

.item.active {
    background:#561C24;
    color: var(--beige);
}

label {
    display: block;
    color:#E8D8C4;
    margin-top: 15px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #561C24;
    background: #E8D8C4;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 15px;
    margin-top: 25px;
    background: var(--maroon);
    color:#561C24;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}


.close {
    background: none;
    color:#E8D8C4;
    margin-top: 10px;
}
.float-logo{
     
    position: fixed !important; 
    top: 20px !important;
    left: 20px !important;
    width: 100px !important; 
    height: 100px !important; 
    border-radius: 50% !important; 
    object-fit: cover !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; 
    }

    .slider-wrapper {
        height: 300px; 
    }

    .brand-card {
        width: 90%; 
        margin: 10px auto;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
/* Final polish */
header a { text-decoration: none; }
@media (max-width: 820px) { header { flex-direction: column; gap: 12px; text-align: center; } .card { flex-direction: column; } .left-side, .right-side { padding: 24px; } }
