/* Cookie Banner Styles - Optimized */

[data-cb-notice] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #004c97;
    color: #ecf0f1;
    padding: 16px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUpIn 0.3s ease-out;
}

@keyframes slideUpIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

[data-cb-inner] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

[data-cb-content] {
    flex: 1;
    min-width: 250px;
}

[data-cb-title] {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

[data-cb-msg] {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

[data-cb-btn] {
    background-color: green;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

[data-cb-btn]:hover {
    background-color: #0b7b2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

[data-cb-btn]:active {
    transform: translateY(0);
}

[data-cb-notice][data-cb-hidden] {
    animation: slideDownOut 0.3s ease-out forwards;
}

@keyframes slideDownOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

@media (max-width: 768px) {
    [data-cb-notice] { padding: 12px; }
    [data-cb-inner] { flex-direction: column; align-items: stretch; }
    [data-cb-btn] { width: 100%; text-align: center; }
    [data-cb-title] { font-size: 16px; }
    [data-cb-msg] { font-size: 13px; }
}

@media (max-width: 480px) {
    [data-cb-notice] { padding: 10px; }
    [data-cb-title] { font-size: 14px; margin-bottom: 8px; }
    [data-cb-msg] { font-size: 12px; }
    [data-cb-btn] { padding: 10px 20px; font-size: 13px; }
}
