.w3tc-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    z-index: 999999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.w3tc-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.w3tc-consent-text {
    flex: 1 1 60%;
}

.w3tc-consent-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    font-weight: 450;
}

.w3tc-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.w3tc-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.w3tc-btn-yes {
    background: #4CAF50;
    color: white;
}

.w3tc-btn-yes:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.w3tc-btn-no {
    background: #f44336;
    color: white;
}

.w3tc-btn-no:hover {
    background: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244, 67, 54, 0.4);
}

@media (max-width: 768px) {
    .w3tc-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .w3tc-consent-text {
        flex: 1 1 100%;
    }
    
    .w3tc-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .w3tc-btn {
        flex: 1;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .w3tc-consent-buttons {
        flex-direction: column;
    }
    
    .w3tc-btn {
        width: 100%;
    }
}