/* OVERLAY */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 9998;
}

/* MODAL CENTER */
.cookie-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* BOX */
.cookie-box {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: fadeIn 0.3s ease;
}

/* TITLE */
.cookie-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* CONTENT */
.cookie-content {
    max-height: 250px;
    overflow-y: auto;
    font-size: 14px;
    color: #555;
}

/* BUTTONS */
.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* BASE BUTTON */
.cookie-btn {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #461959;
    background: #fff;
    color: #461959;
    transition: all 0.25s ease;
}

/* PRIMARY BUTTON (ALLOW ALL) */
.cookie-btn.primary {
    background: #461959;
    color: #fff;
}

/* OUTLINE BUTTON (ONLY NECESSARY + MORE INFO) */
.cookie-btn.outline {
    background: #fff;
    color: #461959;
}

/* HOVER FOR OUTLINE */
.cookie-btn.outline:hover {
    background: #461959;
    color: #fff;
}

/* HOVER FOR PRIMARY */
.cookie-btn.primary:hover {
    background: #00cc00; /* darker purple */
    border-color: #00cc00;
}

/* CLICK EFFECT (OPTIONAL PREMIUM) */
.cookie-btn:active {
    transform: scale(0.97);
}

/* ANIMATION */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* HIDE CLASS */
.d-none {
    display: none;
}
