/* Eraika Modern Design System 2026 */

:root {
    /* Color Palette - Modern 2026 */
    --primary: #6366f1;        /* Indigo moderne */
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #f59e0b;      /* Amber/Orange */
    --secondary-dark: #d97706;
    --accent: #10b981;         /* Emerald green */
    --background: #f8fafc;     /* Slate 50 */
    --surface: #ffffff;
    --text-primary: #1e293b;   /* Slate 800 */
    --text-secondary: #64748b; /* Slate 500 */
    --text-light: #94a3b8;    /* Slate 400 */
    --border: #e2e8f0;         /* Slate 200 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Override Bootstrap variables to match our design system */
    --bs-body-bg: var(--background) !important;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--background) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
}

/* Navbar Modern */
.navbar-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-modern .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-modern .navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-modern .navbar-brand .navbar-logo {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.navbar-modern .navbar-brand:hover .navbar-logo {
    transform: rotate(10deg) scale(1.1);
}

.navbar-modern #languageSelector {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    color: white !important;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-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='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 12px !important;
}

.navbar-modern #languageSelector * {
    background: var(--primary-dark) !important;
    color: white !important;
}

/* Selected interests and events tags styling */
#selectedInterests, #selectedEvents {
    min-height: 40px;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}

#interestsTags .badge, #eventsTags .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#interestsTags .badge:hover, #eventsTags .badge:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

#interestsTags .badge span, #eventsTags .badge span {
    font-size: 1.1rem;
    line-height: 1;
}

.navbar-modern #languageSelector::-webkit-scrollbar {
    width: 8px;
}

.navbar-modern #languageSelector::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

.navbar-modern #languageSelector::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.navbar-modern #languageSelector:hover {
    background: rgba(255, 255, 255, 0.25);
}

.navbar-modern #languageSelector:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.navbar-modern #languageSelector option {
    background: var(--primary-dark) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-modern #languageSelector option:hover,
.navbar-modern #languageSelector option:checked {
    background: var(--primary) !important;
    color: white !important;
}

/* Hero Section */
.hero-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    padding: 0 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-modern > .navbar-modern {
    background: transparent;
    box-shadow: none;
    padding: 1rem 0;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-modern .container {
    position: relative;
    z-index: 1;
}

.hero-modern h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-modern .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Buttons Modern */
.btn-modern {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-modern:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-modern:active {
    transform: translateY(0);
}

/* Bouton de partage dans le hero */
.btn-share-hero {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border: 3px solid white;
    transition: all 0.3s ease;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-share-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-share-hero:active {
    transform: translateY(0);
    color: white !important;
}

.btn-share-hero span {
    font-size: 1.2em;
    margin-right: 0.5rem;
    color: white !important;
}

.btn-modern-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.25rem;
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Cards Modern */
.card-modern {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.card-modern h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Form Modern */
.form-modern {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
}

.form-modern .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-modern .form-control,
.form-modern .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-modern .form-control:focus,
.form-modern .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-modern .form-control:hover,
.form-modern .form-select:hover {
    border-color: var(--primary-light);
}

/* Sections */
.section-modern {
    background: var(--surface) !important;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-modern-alt {
    background: var(--surface) !important;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* List Modern */
.list-modern {
    list-style: none;
    padding: 0;
}

.list-modern li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
}

.list-modern li:last-child {
    border-bottom: none;
}

.list-modern .check-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Footer Modern */
.footer-modern {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-modern h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-modern p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-modern a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-modern hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* FAQ Modern */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Button Checkbox Modern */
.btn-check:checked + .btn-outline-modern {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-outline-modern {
    cursor: pointer;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Invalid Feedback */
.invalid-feedback {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.was-validated .invalid-feedback,
.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #ef4444;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-modern {
        padding: 3rem 0;
    }
    
    .hero-modern h1 {
        font-size: 2rem;
    }
    
    .section-modern,
    .section-modern-alt {
        padding: 3rem 0;
    }
    
    .form-modern {
        padding: 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Utility Classes */
.text-primary-modern {
    color: var(--primary) !important;
}

.text-secondary-modern {
    color: var(--text-secondary) !important;
}

.bg-primary-modern {
    background: var(--primary) !important;
}

.bg-surface {
    background: var(--surface) !important;
}

.shadow-modern {
    box-shadow: var(--shadow) !important;
}

.shadow-lg-modern {
    box-shadow: var(--shadow-lg) !important;
}

/* Loading Spinner */
.spinner-modern {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Form Labels on Dark Background */
.hero-modern .form-label {
    color: var(--text-primary) !important;
    font-weight: 600;
}

/* Text Primary Modern Link */
a.text-primary-modern {
    transition: all 0.3s ease;
}

a.text-primary-modern:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
}

/* Gift Product Cards */
.gift-image-container {
    overflow: hidden;
    border-radius: 12px;
    background: var(--background);
    margin-bottom: 1rem;
}

.gift-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gift-image:hover {
    transform: scale(1.05);
}

.badge-price {
    background: var(--secondary);
    color: white;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

/* ============================================ */
/* Result Page Specific Styles */
/* ============================================ */

/* Hero Navigation Buttons */
.hero-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.btn-modern-outline-white {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.btn-modern-outline-white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-icon {
    font-size: 1.125rem;
}

/* Filter Buttons */
.filter-btn {
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.filter-btn.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Gift Cards Modern */
.gift-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.gift-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-card-modern:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

.gift-card-modern:hover::before {
    transform: scaleX(1);
}

.gift-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.gift-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3), 0 4px 6px -2px rgba(99, 102, 241, 0.2);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gift-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.gift-card-modern:hover .gift-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4), 0 10px 10px -5px rgba(99, 102, 241, 0.3);
}

.gift-card-modern:hover .gift-icon::before {
    transform: scale(1);
}

.gift-price-badge {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.gift-card-modern:hover .gift-price-badge {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.gift-card-body {
    flex: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.gift-brand {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.gift-name {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    letter-spacing: -0.02em;
}

.gift-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.gift-category-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gift-item {
    transition: all 0.3s ease;
}

.gift-item.hidden {
    display: none !important;
}

/* Empty State */
.empty-state {
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.empty-state h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Result Page Responsive */
@media (max-width: 768px) {
    .hero-navigation {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gift-card-modern {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .gift-icon {
        width: 60px;
        height: 60px;
        font-size: 1.875rem;
        border-radius: 14px;
    }
    
    .gift-price-badge {
        font-size: 1.125rem;
        padding: 0.5rem 1rem;
    }
    
    .gift-name {
        font-size: 1.25rem;
    }
    
    .gift-card-modern:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .btn-modern-outline-white {
        width: 100%;
        justify-content: center;
    }
    
    .gift-card-modern {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .gift-icon {
        width: 60px;
        height: 60px;
        font-size: 1.875rem;
        border-radius: 14px;
    }
    
    .gift-price-badge {
        font-size: 1.125rem;
        padding: 0.5rem 1rem;
    }
    
    .gift-name {
        font-size: 1.25rem;
    }
    
    .gift-card-modern:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .gift-name {
        font-size: 1.125rem;
    }
    
    .gift-price-badge {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* Result Page Specific - Force white background */
body .section-modern {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

body .section-modern h2,
body .section-modern h3 {
    color: var(--text-primary) !important;
}

body .section-modern p {
    color: var(--text-secondary) !important;
}

/* Force navbar-modern styles on result page */
body .navbar-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    box-shadow: var(--shadow) !important;
}

body .navbar-modern .navbar-brand {
    color: white !important;
}

body .navbar-modern #languageSelector {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}