/* Cookie Banner Specific Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a237e;
    color: white;
    padding: 16px 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #f8bbd9;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #f5a6c8;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.cookie-btn-accept {
    background: #f8bbd9;
    color: #1a237e;
}

.cookie-btn-accept:hover {
    background: #f5a6c8;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-customize {
    background: transparent;
    color: white;
    border: 1px solid #f8bbd9;
}

.cookie-btn-customize:hover {
    background: #f8bbd9;
    color: #1a237e;
    transform: translateY(-1px);
}

/* Responsive design for cookie banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        min-width: 100px;
        margin: 4px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px 0;
    }
    
    .cookie-banner-content {
        padding: 0 16px;
    }
    
    .cookie-banner-text {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: 90px;
    }
}