@font-face {
    font-family: 'Amazon Ember';
    src: url('/assets/fonts/Amazon Ember.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

#consent-banner {
    display: none;
    position: fixed;
    bottom: 36px;
    right: 36px;
    left: auto;
    transform: none;
    width: 360px;
    max-width: calc(100% - 48px);
    z-index: 2147483647;
    font-family: "Amazon Ember", Arial, sans-serif;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#consent-banner .consent-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

#consent-banner .consent-icon {
    font-size: 32px;
}

#consent-banner .consent-text {
    flex: 1;
}

#consent-banner h4 {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #1a1a2e;
}

#consent-banner p {
    font-size: 13px;
    color: #5a5a72;
    line-height: 1.6;
    margin: 0;
}

#consent-banner a {
    color: var(--secondary, #A7165C);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

#consent-banner a:hover {
    color: var(--secondary-dk, #9e0c58);
    text-decoration: underline;
}

#consent-banner .button-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

#consent-banner .button {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: auto;
    flex: 1;
}

#consent-banner .btn-accept {
    background: linear-gradient(135deg, var(--secondary, #A7165C) 0%, var(--secondary-dk, #9e0c58) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(167, 22, 92, 0.4);
}

#consent-banner .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 22, 92, 0.5);
}

#consent-banner .btn-decline {
    background: #f5f5f7;
    color: #1a1a2e;
    border: none;
}

#consent-banner .btn-decline:hover {
    background: #ebebed;
}

#consent-banner .btn-customize {
    color: #5a5a72;
    font-size: 13px;
    padding: 10px 12px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    flex: none;
    line-height: 1;
}

#consent-banner .btn-customize:hover {
    color: var(--secondary, #A7165C);
}

#consent-banner .consent-links {
    margin-top: 10px;
    font-size: 12px;
}

#consent-banner .consent-links .divider {
    margin: 0 8px;
    color: #ccc;
}