/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white;
    color: #333;
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
    background-color: white;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    width: 100%;
}

nav li {
    display: inline-block;
    margin: 0;
    position: relative;
}

nav a {
    display: block;
    color: purple;
    text-decoration: none;
    padding: 20px 25px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s;
}

nav a:hover {
    background-color: lightblue;
    text-decoration: underline;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

.dropdown-content a {
    padding: 15px 20px;
    display: block;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(rgba(128, 0, 128, 0.7), rgba(128, 0, 128, 0.7)), lightblue;
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    position: relative;
    width: 100%;
}

.hero-section::before {
    content: '💰';
    position: absolute;
    font-size: 8em;
    opacity: 0.2;
    top: 50px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section em {
    font-size: 2.5em;
    font-style: italic;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.hero-section p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ==========================================
   BUTTONS
   ========================================== */
button, .btn {
    border-radius: 25px;
    border: none;
    background: white;
    color: purple;
    padding: 18px 45px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    display: inline-block;
}

button:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pill-btn {
    display: inline-block;
    padding: 10px 16px;
    margin: 8px 6px 8px 0;
    border-radius: 9999px;
    background: purple;
    color: white !important;
    border: 2px solid purple;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

.pill-btn:hover {
    background: white;
    color: purple !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128,0,128,0.25);
    text-decoration: none;
}

/* ==========================================
   CONTAINERS & SECTIONS
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.benefits-section {
    background: white;
    margin: 40px auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 1000px;
    width: 100%;
}

.benefits-section h2 {
    color: purple;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    word-spacing: 10px;
}

.benefits-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.benefits-section li {
    color: white;
    font-size: 1.3em;
    padding: 15px 15px 15px 50px;
    margin: 10px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.benefits-section li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

/* ==========================================
   COURSE SECTION
   ========================================== */
.course-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    margin: 40px auto;
    border-radius: 20px;
    color: white;
    text-align: center;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    width: 100%;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

.course-card {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    width: 100%;
}

.course-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fef3c7;
    text-align: left;
}

/* Loading Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    margin-top: 20px;
    font-size: 1.2em;
}




.course-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
    width: 100%;
}

.course-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.course-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* ==========================================
   PRICING
   ========================================== */
.price-box {
    background: white;
    color: purple;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    font-size: 3em;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.price-box:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

.pricing-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
    width: 100%;
}

.price-card {
    color: white;
    border: 3px solid purple;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 128, 0.3);
}

.badge {
    background: #ef4444;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.5em;
}

.new-price {
    font-size: 3em;
    font-weight: bold;
    margin: 20px 0;
}

/* ==========================================
   AFFILIATE & OTHER SECTIONS
   ========================================== */
.affiliate-highlight {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 50px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    width: 100%;
}

.affiliate-highlight h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.earnings-display {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    font-size: 2em;
    width: 100%;
}

.earnings-number {
    font-size: 3em;
    color: #10b981;
    font-weight: bold;
    margin: 20px 0;
}

.event-section {
    background: white;
    padding: 50px;
    margin: 40px auto;
    border-radius: 20px;
    text-align: center;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
}

.event-section h2 {
    color: purple;
    font-size: 2.2em;
    margin-bottom: 30px;
}

.event-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.video-container {
    max-width: 800px;
    margin: 30px auto;
    background: #f3f4f6;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
    margin: 25px 0;
    text-align: left;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 150px;
    font-family: inherit;
}

/* ==========================================
   DASHBOARD & STATS
   ========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    width: 100%;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    margin: 15px 0;
}

.referral-section {
    background: #f9fafb;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    width: 100%;
}

.referral-section input {
    width: 100%;
    padding: 18px;
    font-size: 1.1em;
    border: 3px solid purple;
    border-radius: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.hidden {
    display: none;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    font-size: 1.3em;
    text-align: center;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background-color: white;
    text-align: center;
    padding: 40px;
    margin-top: 60px;
    color: purple;
    font-weight: bold;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    width: 100%;
}

/* ==========================================
   LOGIN MODAL
   ========================================== */
#loginModal > div {
    width: 95% !important;
    max-width: 500px !important;
}

#loginModal .form-group input {
    width: 100% !important;
    box-sizing: border-box;
}

#loginModal button {
    width: 100%;
    box-sizing: border-box;
}

#loginModal > div > button {
    position: absolute;
    right: 15px;
    top: 15px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loginModal h2 {
    margin-top: 0;
    padding-top: 0;
}

/* UPPDATERAD COOKIE BANNER CSS */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: #1a1a1a;
    color: white;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    z-index: 9999;
    border-radius: 15px;
}

@keyframes slideIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    text-align: center;
}

.cookie-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95em;
    text-align: center;
}

/* FIXED: Centrerade knappar */
.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accept-btn,
.reject-btn,
.settings-btn {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1em;
}

.accept-btn {
    background: #10b981;
    color: white;
}

.reject-btn {
    background: #ef4444;
    color: white;
}

.settings-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.accept-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.reject-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.settings-btn:hover {
    background: white;
    color: #1a1a1a;
}

/* Desktop: Side-by-side layout */
@media (min-width: 600px) {
    .cookie-buttons {
        flex-direction: row;
        gap: 12px;
    }
    
    .accept-btn,
    .reject-btn {
        flex: 1;
    }
    
    .settings-btn {
        flex: 0 0 auto;
        min-width: 120px;
    }
}

/* Mobile: Full width stacked */
@media (max-width: 599px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 20px;
    }
    
    .cookie-text h3 {
        font-size: 1.1em;
    }
    
    .cookie-text p {
        font-size: 0.9em;
    }
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-content h2 {
    color: purple;
    margin-bottom: 30px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 15px;
    gap: 20px;
}

.cookie-option h4 {
    margin: 0 0 8px 0;
    color: #333;
}

.cookie-option p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.cookie-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ==========================================
   MOBILE RESPONSIVE - CRITICAL FIXES
   ========================================== */
@media (max-width: 768px) {
    /* Reset all widths and margins for mobile */
    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    /* Header */
    nav li {
        display: block;
        width: 100%;
    }
    
    nav a {
        padding: 12px 15px;
        font-size: 0.95em;
        width: 100%;
    }
    
    /* Auth buttons - NYTT */
    .pill-btn {
        padding: 6px 10px;
        font-size: 0.75em;
        margin: 5px 2px;
        white-space: nowrap;
    }
    
    #authNav {
        display: flex;
        gap: 3px;
        margin-left: 3px !important;
    }
    
    /* Hero section */
    .hero-section {
        height: auto;
        min-height: 400px;
        padding: 80px 10px 40px 10px;
        width: 100%;
        margin: 0;
    }
    
    .hero-section em {
        font-size: 1.6em;
        padding: 0 10px;
    }
    
    .hero-section p {
        font-size: 1.2em;
        padding: 0 10px;
    }
    
    /* Buttons */
    button, .btn {
        padding: 14px 30px;
        font-size: 1em;
    }
    
    .pill-btn {
        padding: 8px 12px;
        font-size: 0.85em;
    }
    
    /* ALL CONTAINERS - CRITICAL FIX */
    .container,
    .benefits-section,
    .course-section,
    .pricing-section,
    .affiliate-highlight,
    .event-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
        border-radius: 0 !important;
    }
    
    .benefits-section {
        padding: 30px 10px !important;
        margin: 20px 0 !important;
        border-radius: 0 !important;
    }
    
    .benefits-section h2 {
        font-size: 1.8em;
        padding: 0 5px;
    }
    
    .benefits-section ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .benefits-section li {
        font-size: 1.1em;
        padding: 15px 15px 15px 45px;
        width: 100%;
        margin: 10px 0;
        box-sizing: border-box;
    }
    
    .benefits-section li::before {
        left: 15px;
    }
    
    /* Course section */
    .course-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .course-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
        padding: 0;
    }
    
    .course-card {
        padding: 20px;
        width: 100%;
        margin: 0;
    }
    
    .course-card ul {
        width: 100%;
    }
    
    /* Pricing */
    .pricing-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
    }
    
    .price-card {
        padding: 25px;
        width: 100%;
        margin: 0;
    }
    
    .new-price {
        font-size: 2.2em;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        width: 100%;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    /* Video */
    .video-container {
        padding: 20px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Forms */
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        width: 100%;
    }
    
    /* Affiliate */
    .affiliate-highlight {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .affiliate-highlight h2 {
        font-size: 1.8em;
    }
    
    .earnings-display {
        padding: 25px 15px;
        font-size: 1.5em;
        width: 100%;
    }
    
    .earnings-number {
        font-size: 2.2em;
    }
    
    /* Dashboard */
    #dashboard .benefits-section {
        padding: 20px 15px !important;
    }
    
    /* Referral section */
    .referral-section {
        width: 100%;
        padding: 20px 15px;
    }
    
    .referral-section input {
        width: 100%;
    }
    
    /* Login Modal */
    #loginModal > div {
        width: 90% !important;
        margin: 20% auto !important;
        padding: 25px 20px !important;
    }
    
    #loginModal h2 {
        font-size: 1.6em;
    }
    
    /* Cookie banner */
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .accept-btn, .settings-btn {
        width: 100%;
    }
    
    .cookie-option {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - even tighter */
    .hero-section {
        padding: 60px 5px 30px 5px;
    }
    
    .hero-section em {
        font-size: 1.3em;
    }
    
    .hero-section p {
        font-size: 1em;
    }
    
    nav a {
        padding: 10px 8px;
        font-size: 0.85em;
    }
    
    /* Auth buttons - ännu mindre på små skärmar */
    .pill-btn {
        padding: 6px 10px;
        font-size: 0.75em;
        margin: 5px 2px;
    }
    
    .container,
    .benefits-section,
    .course-section,
    .pricing-section,
    .affiliate-highlight,
    .event-section {
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .benefits-section h2 {
        font-size: 1.5em;
    }
    
    .benefits-section li {
        font-size: 1em;
        padding: 12px 12px 12px 40px;
        margin: 8px 0;
    }
    
    .benefits-section li::before {
        left: 12px;
        font-size: 1.3em;
    }
    
    .price-box {
        font-size: 1.8em;
        padding: 20px 15px;
    }
    
    .course-card,
    .price-card {
        padding: 15px;
    }
}

/* ==========================================
   LANDSCAPE MODE
   ========================================== */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: 300px;
        padding: 60px 20px 30px 20px;
    }
    
    .hero-section em {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .hero-section p {
        font-size: 1em;
        margin-bottom: 20px;
    }
}

/* ==========================================
   TOUCH DEVICES
   ========================================== */
@media (hover: none) and (pointer: coarse) {
    button, .btn, .pill-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    nav a {
        min-height: 44px;
    }
    
    .course-card {
        cursor: default;
    }
}

/* ==========================================
   iOS SPECIFIC
   ========================================== */
@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea {
        font-size: 16px !important;
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   SMOOTH SCROLLING
   ========================================== */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================== */
.course-card {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* Cookie banner - mobil fix (kompakt) */
@media (max-width: 768px) {
    .cookie-banner {
        top: 5px !important;
        bottom: auto !important;
        left: 5px !important;
        right: 5px !important;
        max-width: none !important;
        padding: 10px 12px !important;
        border-radius: 10px !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    .cookie-banner .cookie-text h3 {
        font-size: 0.9em;
        margin-bottom: 3px;
    }
    
    .cookie-banner .cookie-text p {
        font-size: 0.7em;
        line-height: 1.3;
        margin: 0;
    }
    
    .cookie-banner .cookie-content {
        gap: 10px;
    }
    
    .cookie-banner .cookie-buttons {
        flex-direction: row !important;
        gap: 5px;
    }
    
    .cookie-banner .accept-btn,
    .cookie-banner .reject-btn,
    .cookie-banner .settings-btn {
        padding: 6px 10px;
        font-size: 0.75em;
        border-radius: 5px;
    }
    
    .cookie-banner .settings-btn {
        display: none; /* Göm settings-knappen på mobil för att spara plats */
    }
}