.mca-cookie-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 95%; 
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    z-index: 1000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
    border: 1px solid #d1d1d1;
    display: none;
    border-bottom: 6px solid #9F7D46; 
}
.mca-cookie-content { padding: 60px; text-align: center; }
.mca-cookie-content h3 {
    margin: 0 0 25px 0;
    font-size: 32px;
    font-weight: 700;
    color: #9F7D46; 
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mca-cookie-content p { font-size: 18px; color: #333; line-height: 1.8; margin-bottom: 30px; }
.mca-cookie-link { color: #9F7D46; text-decoration: none; font-weight: 600; border-bottom: 1px solid #9F7D46; }
.mca-cookie-actions { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
.mca-btn-accept {
    background: #1a1a1a; color: #ffffff; border: none; padding: 18px 50px;
    border-radius: 0; font-size: 16px; font-weight: 600; cursor: pointer; min-width: 200px; transition: all 0.3s ease;
}
.mca-btn-accept:hover { background: #9F7D46; color: #fff; }
.mca-btn-manage {
    background: transparent; color: #9F7D46; border: 1px solid #9F7D46;
    padding: 18px 35px; border-radius: 0; font-size: 16px; cursor: pointer; transition: all 0.3s ease;
}
.mca-btn-manage:hover { background: #fdfaf5; }
#mca-prefs-panel { margin-top: 30px; text-align: left; }
.mca-pref-row {
    display: flex; align-items: center; gap: 15px; background: #fcf9f4;
    padding: 15px; margin-bottom: 10px; border-left: 3px solid #9F7D46;
}
@media (max-width: 820px) {
    .mca-cookie-container { width: 100%; top: auto; bottom: 0; left: 0; transform: none; max-width: 100%; border-bottom: 8px solid #9F7D46; }
    .mca-cookie-content { padding: 40px 20px; }
    .mca-cookie-actions { flex-direction: column; }
    .mca-btn-accept, .mca-btn-manage { width: 100%; }
}