@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Glassmorphism & Vibrant Palette */
    --primary-color: #6366f1; /* Indigo */
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --bg-gradient: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    
    --glass-bg: #ffffff7e;
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --blur-amount: 16px;

    --text-main: #1f2937;
    --text-muted: #6b7280;
    --danger-color: #ef4444;
    --success-color: #10b981;
    
    --radius: 24px;
    --spacing-unit: 24px;
    --modal-bg: rgba(255, 255, 255, 0.75);
    --option-bg: rgba(0, 0, 0, 0.03);
    --option-bg-hover: rgba(0, 0, 0, 0.06);
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --glass-bg: rgba(30, 41, 59, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --modal-bg: #1e293bbf;
    --option-bg: rgba(255, 255, 255, 0.05);
    --option-bg-hover: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed; /* Keeps gradient stable during scroll */
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: var(--spacing-unit);
}

/* Auth Specific Styles */
.auth-container {
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.auth-header h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.auth-form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border: var(--glass-border);
    border-radius: 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-main);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

.input-group select {
    width: 100%;
    padding: 14px;
    border: var(--glass-border);
    border-radius: 16px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy effect */
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-muted);
    border: var(--glass-border);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--text-main);
    transform: translateY(-2px);
}

.btn-danger-outline {
    background-color: transparent;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.btn-danger-outline:hover {
    background-color: #fef2f2;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px;
    margin-top: 8px;
    cursor: pointer;
}

.btn-text:hover {
    color: var(--text-main);
}

.btn-icon {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}
.btn-icon:hover {
    background-color: rgba(0,0,0,0.05);
}

#walkInBtn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.4s ease;
}

#walkInBtn:hover {
    background: var(--primary-gradient);
    background-origin: border-box;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.btn-connected {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-color: var(--success-color);
}

.profile-pic-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #cbd5e1; /* Light grey placeholder */
    cursor: pointer;
    transition: transform 0.2s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.profile-upload-section {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.profile-pic-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 1.5rem;
}

.profile-pic-large:hover .profile-overlay {
    opacity: 1;
}

.profile-pic-placeholder:hover {
    transform: scale(1.05);
}

.app-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--secondary-color);
    padding: 20px 0;
    border-top: var(--glass-border);
}

/* --- Dashboard / App Layout --- */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    background: transparent; /* Let body gradient show through */
}

.app-header {
    padding: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-bottom: var(--glass-border);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 80px; /* Space for bottom nav */
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 700;
}

.btn-large {
    padding: 18px;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
}

.btn-sm {
    width: auto;
    padding: 8px 16px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Cards & Metrics */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.metric-card.full-width {
    grid-column: 1 / -1;
}

.metric-card h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.metric-card .value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
}

.metric-card .expected-value {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    opacity: 0.7;
}

/* Goal Section */
.goal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-bar {
    height: 10px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.goal-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: right;
}
    
/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border-top: var(--glass-border);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    z-index: 100;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px;
    transition: all 0.3s;
    border-radius: 12px;
}

.nav-item.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    font-weight: 600;
}

/* --- Appointments List --- */
.appointment-list {
    display: flex;
    flex-direction: column;
}

.appointment-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--glass-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.appointment-item:hover {
    transform: scale(1.01);
}

.appointment-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.appointment-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.appointment-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.appointment-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-more {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

/* --- Modal / Bottom Sheet --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000050;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Bottom sheet style */
    z-index: 1000;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
}

.modal.hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-content {
    background: var(--modal-bg);
    width: 100%;
    max-width: 480px;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.2);
    max-height: 80vh;
    overflow: auto;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-content h3 {
    margin-bottom: 16px;
    text-align: center;
}

.btn-option {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--option-bg);
    border: 1px solid transparent;
    border-radius: 16px;
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: center;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-option:hover {
    background: var(--option-bg-hover);
    transform: scale(1.01);
}

.btn-danger {
    color: var(--danger-color);
    background: #fff5f5;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.divider {
    margin: 32px 0;
    border: 0;
    border-top: var(--glass-border);
}

#settingsForm {
    max-width: 600px;
    margin: 0 auto;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* Date Separator */
.date-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.date-separator::before,
.date-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.2;
    margin: 0 16px;
}

/* Notifications */
.notification-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    width: 90%;
    max-width: 400px;
}

.notification-toast {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: auto;
}

.notification-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-toast.error {
    border-left: 4px solid var(--danger-color);
    padding-left: 20px;
}

.notification-toast.success {
    border-left: 4px solid var(--success-color);
    padding-left: 20px;
}

/* Search Input */
.search-input {
    width: 100%;
    padding: 12px 16px;
    border: var(--glass-border);
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

/* Custom Select UI */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.3);
    border: var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.custom-select-trigger::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 10px;
    transition: transform 0.3s;
    opacity: 0.7;
}

.custom-select.open .custom-select-trigger::after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    background: var(--modal-bg);
    backdrop-filter: blur(var(--blur-amount));
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.2s;
}

.custom-option:hover {
    background: var(--option-bg-hover);
}

.custom-option.selected {
    background: var(--option-bg);
    font-weight: 600;
}

/* Hide native select but keep it accessible for form submission/JS logic */
select {
    display: none !important;
}

/* --- Chart Styles --- */
#busyHoursChart {
    display: flex;
    align-items: flex-end;
    height: 120px;
    gap: 3px;
    padding-bottom: 20px; /* Space for labels */
    margin-top: 10px;
}

#busyHoursYAxis {
    display: none !important;
}

.chart-bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: 4px 4px 0 0;
    position: relative;
    min-width: 6px;
    transform-origin: bottom;
}


.chart-bar-value {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 6px;
    background-color: var(--text-main);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

[data-theme="dark"] .chart-bar-value {
    color: #1f2937;
}

.chart-bar:hover .chart-bar-value {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

.chart-bar-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.service-autocomplete-group {
    position: relative;
}

/* Service Dropdown Specifics */
#serviceDropdown.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.service-option {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.2s;
}

.service-option:hover {
    background: var(--option-bg-hover);
}

.service-option .service-price {
    color: var(--text-muted);
    font-size: 0.9em;
}

/* Modal Overlay and Content */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--modal-bg);
    z-index: 300;
    padding: 24px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    width: min(720px, 100%);
    max-width: 720px;
    max-height: 80vh;
    overflow: auto;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-content > *:not(:first-child) {
    /* ensure spacing inside modal */
    margin-top: 12px;
}

.modal-content .modal-body,
.modal-content #onboardingContent,
.modal-content #infoContent {
    overflow: auto;
    padding-right: 8px; /* give small room for scrollbar */
}

/* Ensure close buttons don't cause overflow */
.modal-content button[ id^="close"], .modal-content button[ id^="close" ] {
    z-index: 5;
}

/* Scroll-to-bottom circular button inside modals */
.scroll-to-bottom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--option-bg);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    z-index: 12;
}

.scroll-to-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.scroll-to-bottom svg {
    width: 18px;
    height: 18px;
    fill: var(--text-main);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    border-top: var(--glass-border);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(var(--blur-amount));
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    z-index: 999;
    animation: slideUp 0.3s ease;
    font-size: 0.875rem;
}

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

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-message {
    flex: 1;
    color: var(--text-muted);
    line-height: 1.5;
    margin-right: 12px;
}

.cookie-consent-message a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-message a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-consent-dismiss {
    padding: 8px 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--option-bg);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: background 0.2s ease;
}

.cookie-consent-dismiss:hover {
    background: var(--option-bg-hover);
}

.cookie-consent-accept {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cookie-consent-accept:hover {
    opacity: 0.9;
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cookie-consent-message {
        margin-right: 0;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}