#custom-cookie-box {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    background: #ffffff !important;
    z-index: 10000;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.1);
    display: none;
    padding: 1.5rem 2.5rem !important;
}

.cookie-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.cookie-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
}
