/**
 * Spot Downlights - Professional B2B Portal Stylesheet
 * Clean, Light Design System
 * Version: 2.0
 * ============================================================================
 * 
 * Design Principles:
 * - Light colors only (no dark backgrounds)
 * - Consistent rounded corners (12px cards, 6px inputs)
 * - Professional B2B aesthetic
 * - Matches products.php design system
 * - Mobile responsive
 */

/* ============================================================================
   CSS VARIABLES - Light Color Palette
   ============================================================================ */
:root {
    /* Primary Blue - Light & Professional */
    --primary-blue: #1976d2;
    --primary-blue-dark: #1565c0;
    --primary-blue-light: #42a5f5;
    --primary-blue-lighter: #e3f2fd;
    --primary-blue-pale: #f0f7ff;
    
    /* Grays - Light Only */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #666666;
    --gray-800: #444444;
    --gray-900: #333333;
    
    /* Background Colors - All Light */
    --bg-white: #ffffff;
    --bg-light: #fafbfc;
    --bg-lighter: #f8f9fa;
    --bg-blue-light: #f0f7ff;
    
    /* Text Colors - No Pure Black */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --text-on-blue: #ffffff;
    
    /* Border Colors */
    --border-light: #f0f0f0;
    --border-medium: #e0e0e0;
    --border-strong: #d0d0d0;
    
    /* Success, Warning, Error - Light Versions */
    --success: #4caf50;
    --success-light: #e8f5e9;
    --warning: #ff9800;
    --warning-light: #fff3e0;
    --error: #f44336;
    --error-light: #ffebee;
    --info: #2196f3;
    --info-light: #e3f2fd;
    
    /* Shadows - Subtle & Professional */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* Border Radius - Consistent Rounded Corners */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 15px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 32px;
    --text-4xl: 42px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Layout */
    --max-width: 1400px;
    --header-height: 72px;
    
    /* Z-index */
    --z-header: 1000;
    --z-dropdown: 1010;
    --z-modal: 1020;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
    min-height: 100vh;
}

.spotdl-body {
    background-color: var(--bg-light);
}

.spotdl-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-xl);
    font-weight: 600;
}

h4 {
    font-size: var(--text-lg);
    font-weight: 600;
}

p {
    margin: 0 0 var(--space-4) 0;
    line-height: 1.6;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue-dark);
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================================================
   HEADER - Professional & Clean
   ============================================================================ */
.spotdl-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-medium);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

.spotdl-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotdl-header__brand {
    display: flex;
    align-items: center;
}

.spotdl-header__logo {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.spotdl-header__logo:hover {
    color: var(--primary-blue);
}

.spotdl-header__logo-text {
    display: block;
}

.spotdl-header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.spotdl-header__link {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.spotdl-header__link:hover {
    color: var(--text-primary);
    background-color: var(--bg-lighter);
}

.spotdl-header__link--active {
    color: var(--primary-blue);
    background-color: var(--primary-blue-pale);
}

.spotdl-header__cart {
    position: relative;
}

.spotdl-header__cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--error);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    min-width: 18px;
    text-align: center;
}

/* ============================================================================
   HERO SECTION - Blue Gradient
   ============================================================================ */
.spotdl-products-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--text-on-blue);
    padding: 60px 20px;
    text-align: center;
}

.spotdl-products-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spotdl-products-hero p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* ============================================================================
   FEATURED SECTION - Light Gray Background
   ============================================================================ */
.spotdl-featured-section {
    background: var(--bg-lighter);
    padding: 60px 20px;
}

.spotdl-featured-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 40px 0;
}

.spotdl-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================================================
   PRODUCT CARDS - Professional & Clean
   ============================================================================ */
.spotdl-product-card-enhanced {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spotdl-product-card-enhanced:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.spotdl-product-image {
    position: relative;
    padding-top: 75%;
    background: var(--bg-lighter);
    overflow: hidden;
}

.spotdl-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotdl-product-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: var(--gray-300);
}

.spotdl-product-badges-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.spotdl-product-badge {
    padding: 6px 12px;
    background: var(--primary-blue);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotdl-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.spotdl-product-brand {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.spotdl-product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.4;
}

.spotdl-product-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.spotdl-product-name a:hover {
    color: var(--primary-blue);
}

.spotdl-product-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.spotdl-product-ref {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin: 0 0 auto 0;
}

.spotdl-product-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: var(--space-3);
}

.spotdl-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
}

.spotdl-product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.spotdl-product-actions {
    display: flex;
    gap: var(--space-2);
}

.spotdl-btn-add {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 20px;
    background: var(--primary-blue);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.spotdl-btn-add:hover {
    background: var(--primary-blue-dark);
    color: white;
}

/* ============================================================================
   PRODUCTS CONTAINER & TOOLBAR
   ============================================================================ */
.spotdl-products-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
}

.spotdl-toolbar {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.spotdl-toolbar-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spotdl-search-box {
    flex: 1;
    min-width: 300px;
}

.spotdl-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: var(--font-sans);
    transition: border-color var(--transition-fast);
}

.spotdl-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.spotdl-toolbar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.spotdl-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.spotdl-filter-select {
    padding: 10px 36px 10px 12px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-family: var(--font-sans);
    background: var(--bg-white);
    cursor: pointer;
    transition: border-color var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.spotdl-filter-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.spotdl-view-toggle {
    display: flex;
    gap: 8px;
}

.spotdl-view-btn {
    padding: 10px 16px;
    border: 2px solid var(--border-medium);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

.spotdl-view-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

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

.spotdl-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 4px;
}

.spotdl-results-count {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

/* ============================================================================
   PRODUCTS GRID & LIST
   ============================================================================ */
.spotdl-products-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.spotdl-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.spotdl-product-card-list {
    flex-direction: row;
}

.spotdl-product-card-list .spotdl-product-image {
    flex-shrink: 0;
    width: 240px;
    padding-top: 0;
    height: 210px;
}

.spotdl-product-card-list .spotdl-product-content {
    flex: 1;
}

/* ============================================================================
   PAGINATION
   ============================================================================ */
.spotdl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: 40px;
}

.spotdl-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 16px;
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.spotdl-pagination-btn:hover:not(.disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.spotdl-pagination-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.spotdl-pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================================
   EMPTY STATE
   ============================================================================ */
.spotdl-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.spotdl-empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: var(--space-6);
}

.spotdl-empty-state h2 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.spotdl-empty-state p {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

/* ============================================================================
   FOOTER - Clean & Professional
   ============================================================================ */
.spotdl-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-medium);
    margin-top: auto;
    padding: var(--space-8) var(--space-6);
}

.spotdl-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
}

.spotdl-footer__nav {
    display: flex;
    gap: var(--space-6);
}

.spotdl-footer__nav a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.spotdl-footer__nav a:hover {
    color: var(--text-primary);
}

.spotdl-footer__copy {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================================================
   BUTTONS - Professional Rounded Style
   ============================================================================ */
.spotdl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: var(--text-md);
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.spotdl-btn-primary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.spotdl-btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.spotdl-btn-secondary {
    background: var(--bg-white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.spotdl-btn-secondary:hover {
    background: var(--primary-blue-pale);
    color: var(--primary-blue);
}

.spotdl-btn-ghost {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.spotdl-btn-ghost:hover {
    background: var(--primary-blue);
    color: white;
}

/* ============================================================================
   CARDS - Professional & Clean
   ============================================================================ */
.spotdl-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.spotdl-card:hover {
    box-shadow: var(--shadow-md);
}

/* ============================================================================
   FORMS - Clean Input Styling
   ============================================================================ */
.spotdl-input,
.spotdl-textarea,
.spotdl-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: var(--font-sans);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.spotdl-input:focus,
.spotdl-textarea:focus,
.spotdl-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.spotdl-textarea {
    resize: vertical;
    min-height: 120px;
}

.spotdl-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

/* ============================================================================
   BADGES - Light & Clean
   ============================================================================ */
.spotdl-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotdl-badge-primary {
    background: var(--primary-blue-pale);
    color: var(--primary-blue);
}

.spotdl-badge-success {
    background: var(--success-light);
    color: var(--success);
}

.spotdl-badge-warning {
    background: var(--warning-light);
    color: var(--warning);
}

.spotdl-badge-error {
    background: var(--error-light);
    color: var(--error);
}

/* ============================================================================
   ALERTS - Light Backgrounds
   ============================================================================ */
.spotdl-alert {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.spotdl-alert-info {
    background: var(--info-light);
    color: var(--info);
    border-left: 4px solid var(--info);
}

.spotdl-alert-success {
    background: var(--success-light);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.spotdl-alert-warning {
    background: var(--warning-light);
    color: var(--warning);
    border-left: 4px solid var(--warning);
}

.spotdl-alert-error {
    background: var(--error-light);
    color: var(--error);
    border-left: 4px solid var(--error);
}

/* ============================================================================
   RESPONSIVE - Mobile Optimizations
   ============================================================================ */
@media (max-width: 768px) {
    .spotdl-header__inner {
        padding: var(--space-4);
    }
    
    .spotdl-header__nav {
        gap: 0;
    }
    
    .spotdl-header__link {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }
    
    .spotdl-products-hero h1 {
        font-size: 32px;
    }
    
    .spotdl-products-hero p {
        font-size: 16px;
    }
    
    .spotdl-toolbar-top {
        flex-direction: column;
    }
    
    .spotdl-search-box {
        min-width: 100%;
    }
    
    .spotdl-toolbar-bottom {
        flex-direction: column;
        align-items: stretch;
    }
    
    .spotdl-filters {
        flex-direction: column;
    }
    
    .spotdl-filter-select {
        width: 100%;
    }
    
    .spotdl-products-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .spotdl-product-card-list {
        flex-direction: column;
    }
    
    .spotdl-product-card-list .spotdl-product-image {
        width: 100%;
        padding-top: 75%;
        height: auto;
    }
    
    .spotdl-footer__inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .spotdl-footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4);
    }
}

/* ============================================================================
   UTILITIES - Helper Classes
   ============================================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

/* ============================================================================
   LOADING STATE
   ============================================================================ */
.spotdl-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-medium);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spotdl-spin 0.6s linear infinite;
}

@keyframes spotdl-spin {
    to { transform: rotate(360deg); }
}
/* ----------------------------------------------------------
 * Cookie banner (Spot Downlights)
 * ---------------------------------------------------------- */

.spotdl-cookie-banner {
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px;
    background: #111827; /* dark navy */
    color: #f9fafb;
    font-size: 0.9rem;
    display: none; /* shown via JS */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
}

.spotdl-cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
}

.spotdl-cookie-banner__text {
    flex: 1 1 260px;
    line-height: 1.4;
}

.spotdl-cookie-banner__text strong {
    font-weight: 600;
}

.spotdl-cookie-banner__actions {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

.spotdl-cookie-banner__btn {
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
}

.spotdl-cookie-banner__btn--primary {
    background: #2563eb; /* blue */
    color: #ffffff;
}

.spotdl-cookie-banner__btn--primary:hover {
    background: #1d4ed8;
}

.spotdl-cookie-banner__link {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.spotdl-cookie-banner__link:hover {
    color: #bfdbfe;
}

/* Small screens */
@media (max-width: 600px) {
    .spotdl-cookie-banner {
        padding: 12px 14px;
    }

    .spotdl-cookie-banner__inner {
        align-items: flex-start;
    }

    .spotdl-cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
    }
}
/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */
