/* Minimal Cookie Banner - Matches TFD Homepage Aesthetic */
.tfd-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tfd-cookie-banner.show {
    transform: translateY(0);
}

.tfd-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tfd-cookie-text {
    flex: 1;
    min-width: 300px;
}

.tfd-cookie-text p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.tfd-cookie-text a {
    color: #d63384;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.tfd-cookie-text a:hover {
    text-decoration: underline;
}

.tfd-cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.tfd-cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.tfd-cookie-btn-accept {
    background: #d63384;
    color: white;
}

.tfd-cookie-btn-accept:hover {
    background: #b02a6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.25);
}

.tfd-cookie-btn-reject {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.tfd-cookie-btn-reject:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: #333; /* ← Add this line */
}

/* Shortcode button for Cookie Policy page */
.cookie-settings-btn {
    background: #d63384;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: #b02a6b;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .tfd-cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .tfd-cookie-text {
        text-align: center;
    }
    
    .tfd-cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .tfd-cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}