/* Banner Styles */
.cookie-consent-banner {
    position: fixed;
    z-index: 999999;
    width: 100%;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: none;
}

.cookie-consent-banner.active {
    display: block;
}

/* Positions */
.cookie-consent-banner.position-top {
    top: 0;
    left: 0;
    right: 0;
}

.cookie-consent-banner.position-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

.cookie-consent-banner.position-top-left {
    top: 20px;
    left: 20px;
    width: 400px;
    border-radius: 8px;
}

.cookie-consent-banner.position-top-right {
    top: 20px;
    right: 20px;
    width: 400px;
    border-radius: 8px;
}

.cookie-consent-banner.position-bottom-left {
    bottom: 20px;
    left: 20px;
    width: 400px;
    border-radius: 8px;
}

.cookie-consent-banner.position-bottom-right {
    bottom: 20px;
    right: 20px;
    width: 400px;
    border-radius: 8px;
}

/* Layouts */
.cookie-consent-banner.layout-classic {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-banner.layout-modern {
    border-radius: 12px;
    margin: 20px;
}

.cookie-consent-banner.layout-minimal {
    background: transparent !important;
    box-shadow: none;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: inherit;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 120px;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-consent-btn:active {
    transform: translateY(0);
}

/* Customization Panel */
.cookie-consent-custom {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.cookie-consent-custom.active {
    display: block;
}

.cookie-consent-custom h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-option-label {
    flex: 1;
}

.cookie-option-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-option-desc {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
}

.cookie-option-required {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-banner.position-top-left,
    .cookie-consent-banner.position-top-right,
    .cookie-consent-banner.position-bottom-left,
    .cookie-consent-banner.position-bottom-right {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.cookie-consent-banner.position-bottom {
    animation: slideInUp 0.5s ease;
}

.cookie-consent-banner.position-top {
    animation: slideInDown 0.5s ease;
}

/* SEO Friendly - Hide from bots */
.seo-hidden {
    display: none !important;
}