/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

:root {
    /* Premium Navy & Gold Theme (Reverted) */
    --bg-dark: #020B1C;       /* Deepest Navy (Background) */
    --bg-card: #0B162C;       /* Lighter Navy (Cards/Sections) */
    --primary-gold: #D4AF37;  /* Metallic Gold (Brand Accent) */
    --primary-gold-hover: #F2C94C;
    --text-main: #FFFFFF;
    --text-muted: #A0AAB5;    /* Cool Grey */
    --border-color: #1C2B45;
    --accent-red: #CE1126;    /* Ghana Red (Sparse usage) */
    --success-green: #27AE60;
}

body {
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-dark);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Header & Navigation */
header {
    background: rgba(2, 11, 28, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 80px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* Option B Hero Section */
.hero.option-b-hero {
    /* Darker gradient for text pop */
    background: linear-gradient(180deg, rgba(2,11,28,0.3) 0%, rgba(2,11,28,1) 100%), 
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

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

.hero-logo-large {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.sub-line {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px; /* Slight rounding, not full pill */
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-primary {
    background: var(--primary-gold);
    color: #000;
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Sections General */
.info-section, .roadmap-section, .governance-section, .content-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.info-section:nth-child(even) {
    background: var(--bg-card);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: var(--primary-gold);
    margin: 0.5rem auto 0;
}

.text-center {
    text-align: center;
}

/* Content Blocks & Custom Lists (About Page) */
.content-block {
    margin-bottom: 3rem;
}

.content-block h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.custom-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.custom-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

.custom-list li strong {
    color: #fff;
}

.custom-list li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Cards & Milestones */
.milestones {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.milestone-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 4px;
}

.milestone-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--primary-gold);
}

.milestone-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.milestone-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.milestone-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Page Headers (Subpages) */
.page-header {
    background: linear-gradient(rgba(2,11,28,0.9), rgba(2,11,28,0.9));
    color: #fff;
    padding: 10rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h2 {
    color: #fff;
    font-size: 3rem;
}

.page-header p {
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Booking System Styles */
.hero.small-hero {
    height: 50vh;
    background: linear-gradient(180deg, rgba(2,11,28,0.6) 0%, rgba(2,11,28,1) 100%), 
                url('https://images.unsplash.com/photo-1542296332-2e44a996aaad?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.booking-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.booking-widget {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.form-group input, .form-group select {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background: #020B1C;
    color: #fff;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-gold);
}

/* Flight Results */
.flight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.flight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--primary-gold);
}

.flight-route {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.flight-time {
    color: var(--text-muted);
}

.flight-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.passenger-details {
    background: var(--bg-card);
    padding: 3rem;
    margin-top: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-gold);
}

.selected-flight-summary {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-gold);
    color: #fff;
}

/* Footer */
footer {
    background: #000;
    color: #666;
    padding: 5rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.footer-links a {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-links .separator {
    margin: 0 1rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links li {
        margin: 1.5rem 0;
        text-align: center;
    }
    .hamburger {
        display: block;
    }
    .hero.option-b-hero {
        height: 100vh;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .milestones, .form-row {
        flex-direction: column;
    }
    .flight-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .flight-price {
        text-align: center;
    }
    .flight-action {
        margin-left: 0;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}

/* GLOSSY BOOKING STYLES (British Airways Inspired) */

.parallax-wrapper {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 80px; /* Header height */
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a2a40 0%, #000000 100%),
                url('https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* Parallax effect simulated via fixed position */
}

.booking-section-glossy {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
}

.glass-booking-card {
    background: rgba(11, 22, 44, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 0; /* Padding inside tabs/form */
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    animation: slideUp 0.6s ease-out;
}

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

/* Tabs */
.booking-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn i {
    margin-right: 10px;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 3px solid var(--primary-gold);
}

/* Form */
.glossy-form {
    padding: 2.5rem;
}

.trip-type-selector {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    color: #fff;
}

.trip-type-selector label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.points-toggle {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.points-toggle .toggle-label {
    color: var(--primary-gold);
    font-weight: 700;
}

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

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

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-gold);
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.big-field {
    grid-column: span 2;
}

.glossy-form .form-group label {
    color: #ccc;
}

.glossy-form input, .glossy-form select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.glossy-form input:focus, .glossy-form select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-glossy-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F2C94C 100%);
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-glossy-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Points Promo */
.points-promo {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0));
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.promo-text h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.promo-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-link {
    margin-left: auto;
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive Glossy */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .big-field {
        grid-column: span 1;
    }
    .trip-type-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .points-toggle {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
    .booking-tabs {
        overflow-x: auto;
    }
    .tab-btn {
        white-space: nowrap;
        padding: 1rem;
    }
    .points-promo {
        flex-direction: column;
        text-align: center;
    }
    .btn-link {
        margin: 0;
    }
}

/* GAMIFICATION & WALLET STYLES */

.wallet-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.dashboard-card {
    background: rgba(11, 22, 44, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tier-status-card {
    background: linear-gradient(135deg, rgba(2, 11, 28, 0.9), rgba(11, 22, 44, 0.9));
    border: 1px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Tier Progress Bar */
.progress-container {
    width: 100%;
    background: rgba(255,255,255,0.1);
    height: 12px;
    border-radius: 20px;
    margin: 1.5rem 0 0.5rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), #F2C94C);
    width: 0%;
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Badges Grid */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.badge-item {
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.5;
    filter: grayscale(1);
    cursor: help;
    position: relative;
}

.badge-item.unlocked {
    opacity: 1;
    filter: grayscale(0);
    border-color: var(--primary-gold);
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(0,0,0,0) 70%);
    box-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.badge-item span {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

/* Rewards Section */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.reward-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.reward-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.1);
}

.reward-cost {
    color: var(--primary-gold);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
}

/* Responsive Wallet */
@media (max-width: 900px) {
    .wallet-dashboard {
        grid-template-columns: 1fr;
    }
}

/* GDPR Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    z-index: 10000;
    padding: 1.5rem;
    font-family: 'Segoe UI', sans-serif;
    animation: slideIn 0.5s ease-out;
}

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

.cookie-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    flex: 1;
}

.btn-cookie-outline:hover {
    background: #222;
}

.btn-cookie-grey {
    background: #ccc;
    border: none;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.btn-cookie-grey:hover {
    background: #bbb;
}

.btn-cookie-white {
    background: #fff;
    border: none;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    flex: 1;
}

.btn-cookie-white:hover {
    background: #f0f0f0;
}
