/* Moldcake Styles */
/* Color palette from mobile design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-background: #f5f3f0;
    --color-cream: #f5f3f0;
    --color-foreground: #3d4a3e;
    --color-navy: #3d4a3e;
    --color-primary: #4a5d4b;
    --color-blue: #4a5d4b;
    --color-secondary: #d4a574;
    --color-gold: #d4a574;
    --color-accent: #b89968;
    --color-muted: #e8e5e1;
    --color-muted-foreground: #7a8a7b;
    --color-white: #ffffff;
    --color-card: #ffffff;
    --color-border: #e0ddd8;
    --color-gray-light: #e0ddd8;
    --color-gray: #7a8a7b;
    --shadow-sm: 0 2px 8px rgba(61, 74, 62, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 74, 62, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-cream);
    color: var(--color-navy);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

/* Prevent images and iframes from causing horizontal scroll */
img,
iframe {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--color-blue);
}

.search-input {
    padding: 10px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    width: 300px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--color-blue);
}

.btn-login {
    padding: 10px 24px;
    background-color: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* User Menu Dropdown */
.user-menu {
    position: relative;
}

.btn-user-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background-color: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-user-menu svg {
    flex-shrink: 0;
    vertical-align: middle;
}

.btn-user-menu:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: var(--color-white);
    border: 2px solid var(--color-navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out 0.25s;
    pointer-events: none;
    padding-top: 8px;
    margin-top: -4px;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.user-menu-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: none;
    border: none;
    color: var(--color-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.user-menu-item:hover {
    background-color: var(--color-cream);
}

.user-menu-item.logout {
    border-top: 1px solid var(--color-gray-light);
    color: #dc2626;
}

.user-menu-item.logout:hover {
    background-color: #fef2f2;
}

/* Login Provider Menu */
.login-provider-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--color-navy);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background-color: var(--color-white);
    color: var(--color-navy);
}

.provider-btn svg {
    flex-shrink: 0;
}

.provider-btn:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.google-btn {
    border-color: #4285f4;
    color: #4285f4;
}

.google-btn:hover {
    background-color: #4285f4;
    color: white;
}

.apple-btn {
    border-color: #000;
    color: #000;
}

.apple-btn:hover {
    background-color: #000;
    color: white;
}

.btn-primary {
    padding: 10px 24px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #3d7a8a;
    transform: translateY(-1px);
}

/* Main */
.main {
    padding: 40px 0;
}

.section {
    margin-bottom: 48px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-navy);
}

/* Section Header with Controls */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-select {
    padding: 10px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    background-color: var(--color-white);
    color: var(--color-navy);
    transition: border-color 0.2s;
}

.sort-select:focus,
.sort-select:hover {
    border-color: var(--color-blue);
}

.view-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.view-toggle:hover {
    border-color: var(--color-blue);
    background-color: var(--color-cream);
}

.view-toggle.active {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

.grid-icon {
    font-size: 20px;
    line-height: 1;
}

/* Cheese Grid */
.cheese-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* Cheese List View */
.cheese-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cheese-list .cheese-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
}

.cheese-list .cheese-image-placeholder,
.cheese-list .cheese-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius);
}

.cheese-list .cheese-info {
    flex: 1;
    padding: 0 0 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px; /* Match image height */
}

.cheese-list .cheese-name {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-foreground);
}

.cheese-list .cheese-meta {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: var(--color-muted-foreground);
    line-height: 1.4;
}

.cheese-list .cheese-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 6px 0;
    font-size: 13px;
}

.cheese-list .cheese-rating .stars {
    color: var(--color-primary);
}

.cheese-list .cheese-rating .rating-text {
    font-weight: 600;
    color: var(--color-foreground);
}

.cheese-list .cheese-rating .rating-count {
    color: var(--color-muted-foreground);
}

.cheese-list .cheese-description {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-muted-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cheese-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    cursor: pointer;
    padding: 12px;
}

.cheese-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cheese-image-placeholder,
.cheese-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: var(--radius);
}

.cheese-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cheese-info {
    padding: 12px 0 0 0;
}

.cheese-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-foreground);
}

.cheese-meta {
    font-size: 13px;
    color: var(--color-muted-foreground);
    margin-bottom: 6px;
}

.cheese-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--color-secondary);
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-foreground);
}

.rating-count {
    font-size: 13px;
    color: var(--color-muted-foreground);
}

/* Store Selector Component */
.store-selector {
    position: relative;
    width: 100%;
}

.store-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.store-search-input:focus {
    border-color: var(--color-blue);
}

.store-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    margin-top: -2px;
}

.store-result-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-result-item:hover {
    background-color: var(--color-cream);
}

.store-result-item.add-new {
    border-top: 2px solid var(--color-gray-light);
    color: var(--color-blue);
}

.store-result-item strong {
    font-weight: 600;
    color: var(--color-navy);
}

.store-result-item.add-new strong {
    color: var(--color-blue);
}

.store-result-item small {
    font-size: 12px;
    color: var(--color-gray);
}

.selected-store-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background-color: var(--color-cream);
    border: 2px solid var(--color-blue);
    border-radius: var(--radius);
    position: relative;
}

.selected-store-display strong {
    font-weight: 600;
    color: var(--color-navy);
    padding-right: 30px;
}

.selected-store-display small {
    font-size: 12px;
    color: var(--color-gray);
}

.btn-clear-store {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-gray);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.btn-clear-store:hover {
    color: var(--color-navy);
}

.add-store-form-content {
    padding: 20px;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
}

.add-store-form-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.add-store-form-content .form-group {
    margin-bottom: 12px;
}

.add-store-form-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.add-store-form-content input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.add-store-form-content input:focus {
    border-color: var(--color-blue);
}

.add-store-form-content .form-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-cancel-store,
.btn-save-store {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel-store {
    background-color: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-gray-light);
}

.btn-cancel-store:hover {
    border-color: var(--color-navy);
}

.btn-save-store {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-save-store:hover {
    background-color: #3d7a8a;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

/* Feed */
.feed-section {
    margin: 0;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.photo-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.placeholder-text {
    color: var(--color-gray);
    text-align: center;
    padding: 40px;
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-navy);
}

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

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.filter-select {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    cursor: pointer;
    background-color: var(--color-white);
    transition: border-color 0.2s;
}

.filter-select:focus {
    border-color: var(--color-blue);
}

/* Compact Inline Filters */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filters-group {
    display: flex;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
}

.filter-compact {
    padding: 8px 12px;
    border: 1.5px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 14px;
    background-color: var(--color-white);
    color: var(--color-navy);
    cursor: pointer;
    transition: all 0.2s;
    min-width: 140px;
}

.filter-compact:hover {
    border-color: var(--color-blue);
    background-color: #f8fafc;
}

.filter-compact:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.btn-clear-filters {
    padding: 8px 16px;
    background-color: transparent;
    color: var(--color-blue);
    border: 1.5px solid var(--color-blue);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-clear-filters:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

/* Footer */
.footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 32px 0;
    text-align: center;
    margin-top: 80px;
}

/* Hamburger Menu Button (hidden on desktop) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet Responsive (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .cheese-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-link {
        font-size: 16px;
    }

    .logo-text {
        font-size: 22px;
    }
}

/* Mobile Responsive (up to 768px) */
@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }

    .filters-group {
        flex-direction: column;
        gap: 8px;
    }

    .filter-compact {
        width: 100%;
        min-width: auto;
    }

    .section-controls {
        width: 100%;
        justify-content: space-between;
    }

    .sort-select {
        flex: 1;
    }

    .search-input {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .cheese-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Event and Store cards - prevent overflow */
    .event-card,
    .store-card {
        max-width: 100%;
        overflow: hidden;
        padding: 20px !important;
        margin: 0 8px 16px 8px;
    }

    .event-map,
    .store-map {
        margin: 16px 0;
        padding: 0;
    }

    .event-card iframe,
    .store-card iframe {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    .event-card img,
    .store-card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Ensure event containers don't overflow */
    .events-container,
    .stores-container {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Hamburger Menu Mobile Navigation */
    .hamburger-btn {
        display: flex;
    }

    .header-content {
        position: relative;
    }

    .nav {
        position: fixed;
        top: 72px; /* Below header */
        right: 0;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 72px);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 99;
    }

    .nav.active {
        transform: translateX(0);
    }

    .top-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 16px;
    }

    .nav-link {
        padding: 16px 12px;
        font-size: 18px;
        border-bottom: 1px solid var(--color-gray-light);
    }

    .btn-login {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* User menu in mobile */
    .user-menu {
        width: 100%;
    }

    .btn-user-menu {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .user-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        padding-top: 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    .main {
        padding: 24px 0;
    }

    /* Touch-friendly buttons */
    .btn-primary,
    .btn-login,
    .provider-btn {
        min-height: 44px; /* iOS recommended touch target */
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    textarea {
        min-height: 120px;
    }
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--color-blue);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    font-weight: 600;
    color: var(--color-dark);
}

/* Footer Links */
.footer-divider {
    margin: 0 8px;
    color: var(--color-gray);
}

.footer-link {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

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

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

.cookie-consent-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.cookie-consent-text p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-text a {
    color: var(--color-blue);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #6ba3ff;
}

.cookie-consent-actions {
    flex-shrink: 0;
}

.btn-accept {
    background: var(--color-blue);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-accept:hover {
    background: #0051cc;
}

/* Responsive cookie banner */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .btn-accept {
        width: 100%;
    }
}
