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

        :root {
            --burgundy: #6B1F3A;
            --deep-wine: #8B2F47;
            --soft-rose: #D4A5A5;
            --cream: #F5F1E8;
            --sage: #9BA89B;
            --charcoal: #2A2A2A;
            --gold: #C9A961;
            --shadow: rgba(107, 31, 58, 0.15);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, var(--cream) 0%, #EDE8DC 100%);
            color: var(--charcoal);
            line-height: 1.6;
            min-height: 100vh;
        }

        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" /></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.04"/></svg>');
            pointer-events: none;
            z-index: 9999;
        }

        header {
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-wine) 100%);
            color: var(--cream);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px var(--shadow);
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 8s infinite linear;
        }

        @keyframes shimmer {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 0.1em;
            position: relative;
            z-index: 1;
            margin-bottom: 0.5rem;
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tagline {
            font-size: 1.1rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

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

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

        .welcome-banner {
            margin-bottom: 2rem;
            padding: 1.2rem;
            background: white;
            border-radius: 8px;
            border-left: 4px solid var(--burgundy);
            box-shadow: 0 2px 10px var(--shadow);
        }

        .welcome-banner strong {
            color: var(--burgundy);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--burgundy);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
        }

        .actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            align-items: center;
            overflow: visible;
        }

        .search-box {
            flex: 1;
            min-width: 250px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 0.9rem 1rem 0.9rem 2.8rem;
            border: 2px solid rgba(107, 31, 58, 0.2);
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            background: white;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--burgundy);
            box-shadow: 0 0 0 3px rgba(107, 31, 58, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(107, 31, 58, 0.4);
        }

        button {
            font-family: 'Outfit', sans-serif;
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
        }
        
        button:has(.notification-badge) {
            overflow: visible !important;
        }

        button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
            z-index: 0;
            overflow: hidden;
        }

        button:hover::before {
            width: 300px;
            height: 300px;
        }
        
        button > * {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-wine) 100%);
            color: var(--cream);
            box-shadow: 0 4px 15px var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px var(--shadow);
        }

        .wine-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }

        .wine-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 30px var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .wine-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--burgundy) 0%, var(--gold) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .wine-card:hover::before {
            transform: scaleX(1);
        }

        .wine-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 50px rgba(107, 31, 58, 0.25);
        }

        .wine-header {
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-wine) 100%);
            color: var(--cream);
            padding: 1.5rem;
            position: relative;
        }

        .wine-header::after {
            content: '🍷';
            position: absolute;
            top: 50%;
            right: 1.5rem;
            transform: translateY(-50%);
            font-size: 2rem;
            opacity: 0.3;
        }

        .wine-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .wine-vintage {
            font-size: 0.9rem;
            opacity: 0.9;
            letter-spacing: 0.1em;
        }

        .wine-body {
            padding: 1.5rem;
        }

        .wine-detail {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(107, 31, 58, 0.1);
        }

        .wine-detail:last-child {
            border-bottom: none;
        }

        .label {
            font-weight: 500;
            color: var(--burgundy);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .value {
            font-weight: 400;
            color: var(--charcoal);
            text-align: right;
            max-width: 60%;
        }

        .wine-notes {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(107, 31, 58, 0.1);
        }

        .wine-owner {
            background: linear-gradient(135deg, var(--soft-rose) 0%, #E8C5C5 100%);
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .owner-name {
            font-weight: 500;
            color: var(--burgundy);
        }

        .trade-btn, .delete-btn {
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-weight: 500;
        }

        .trade-btn {
            background: var(--burgundy);
            color: white;
        }

        .trade-btn:hover {
            background: var(--deep-wine);
            transform: scale(1.05);
        }

        .delete-btn {
            background: #dc2626;
            color: white;
        }

        .delete-btn:hover {
            background: #b91c1c;
            transform: scale(1.05);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1000;
            animation: modalFadeIn 0.3s ease-out;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .modal-header {
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-wine) 100%);
            color: var(--cream);
            padding: 2rem;
            position: relative;
        }

        .modal-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 400;
        }

        .close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: transparent;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--burgundy);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        input, select, textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid rgba(107, 31, 58, 0.2);
            border-radius: 4px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--cream);
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--burgundy);
            background: white;
            box-shadow: 0 0 0 3px rgba(107, 31, 58, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--sage);
        }

        .empty-state-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .empty-state-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .loading {
            text-align: center;
            padding: 4rem 2rem;
        }

        .loading-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .name-prompt {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-wine) 100%);
        }

        .name-prompt-card {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .name-prompt-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .name-prompt-card h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--burgundy);
            margin-bottom: 0.5rem;
        }

        .name-prompt-card p {
            color: #666;
            margin-bottom: 2rem;
        }

        .trade-info {
            background: var(--cream);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        .trade-info p {
            margin-bottom: 0.5rem;
            color: var(--burgundy);
        }

        .trade-proposal-card {
            background: white;
            border: 2px solid rgba(107, 31, 58, 0.2);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .trade-proposal-card:hover {
            border-color: var(--burgundy);
            box-shadow: 0 4px 15px var(--shadow);
        }

        .trade-proposal-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--cream);
        }

        .trade-proposal-wine {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--burgundy);
            margin-bottom: 0.3rem;
        }

        .trade-proposal-from {
            font-size: 0.9rem;
            color: #666;
        }

        .trade-proposal-status {
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .status-pending {
            background: #FEF3C7;
            color: #92400E;
        }

        .status-accepted {
            background: #D1FAE5;
            color: #065F46;
        }

        .status-declined {
            background: #FEE2E2;
            color: #991B1B;
        }

        .trade-proposal-body {
            margin-bottom: 1rem;
        }

        .trade-proposal-label {
            font-weight: 600;
            color: var(--burgundy);
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 0.3rem;
            margin-top: 0.8rem;
        }

        .trade-proposal-value {
            color: var(--charcoal);
        }

        .trade-proposal-actions {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .btn-accept {
            background: #059669;
            color: white;
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-accept:hover {
            background: #047857;
            transform: translateY(-1px);
        }

        .btn-decline {
            background: #dc2626;
            color: white;
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-decline:hover {
            background: #b91c1c;
            transform: translateY(-1px);
        }

        .btn-contact {
            background: var(--burgundy);
            color: white;
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-contact:hover {
            background: var(--deep-wine);
            transform: translateY(-1px);
        }

        .no-proposals {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--sage);
        }

        .no-proposals-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .wine-detail-card {
            background: var(--cream);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .wine-detail-large {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 2px solid rgba(107, 31, 58, 0.1);
        }

        .wine-detail-large:last-of-type {
            border-bottom: none;
        }

        .wine-detail-large .label {
            font-size: 0.9rem;
        }

        .wine-detail-large .value {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .wine-detail-notes {
            background: white;
            padding: 1.2rem;
            border-radius: 6px;
            margin-top: 1rem;
        }

        .wine-detail-notes .label {
            display: block;
            margin-bottom: 0.8rem;
        }

        .wine-detail-notes .value {
            color: var(--charcoal);
            line-height: 1.6;
            max-width: 100%;
        }

        .wine-detail-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .wine-detail-actions button {
            flex: 1;
            min-width: 200px;
        }

        .contact-info-card {
            background: var(--cream);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(107, 31, 58, 0.1);
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .contact-info-icon {
            font-size: 1.5rem;
            min-width: 40px;
        }

        .contact-info-details {
            flex: 1;
        }

        .contact-info-label {
            font-size: 0.8rem;
            color: var(--burgundy);
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .contact-info-value {
            color: var(--charcoal);
            font-size: 1.1rem;
        }

        .contact-info-value a {
            color: var(--burgundy);
            text-decoration: none;
        }

        .contact-info-value a:hover {
            text-decoration: underline;
        }

        .filters-container {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: end;
            box-shadow: 0 2px 10px rgba(107, 31, 58, 0.05);
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            min-width: 150px;
            flex: 1;
        }

        .filter-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--burgundy);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .filter-select {
            padding: 0.7rem;
            border: 2px solid rgba(107, 31, 58, 0.2);
            border-radius: 4px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            background: var(--cream);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--burgundy);
            box-shadow: 0 0 0 3px rgba(107, 31, 58, 0.1);
        }

        .btn-clear-filters {
            padding: 0.7rem 1.2rem;
            background: #6B7280;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            align-self: end;
        }

        .btn-clear-filters:hover {
            background: #4B5563;
            transform: translateY(-1px);
        }

        .wine-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            background: #f9f9f9;
            border-radius: 4px;
            margin-bottom: 1rem;
        }

        .status-completed {
            background: #10b981 !important;
            color: white !important;
        }

        .notification-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #dc2626;
            color: white;
            border-radius: 50%;
            min-width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            border: 3px solid white;
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.5);
            animation: badgePulse 2s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes badgePulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .new-badge {
            display: inline-block;
            background: #10b981;
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-left: 0.5rem;
            animation: newBadgePulse 2s ease-in-out infinite;
        }

        @keyframes newBadgePulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .activity-tabs {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--cream);
            flex-wrap: wrap;
        }

        .activity-tab {
            padding: 0.8rem 1.5rem;
            background: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            color: var(--charcoal);
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .activity-tab:hover {
            background: var(--cream);
            color: var(--burgundy);
        }

        .activity-tab.active {
            border-bottom-color: var(--burgundy);
            color: var(--burgundy);
            font-weight: 600;
        }

        .activity-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .activity-stat-card {
            background: linear-gradient(135deg, var(--cream) 0%, #F5E9E0 100%);
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 2px solid rgba(107, 31, 58, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .activity-stat-card:hover {
            border-color: var(--burgundy);
            box-shadow: 0 4px 15px var(--shadow);
            transform: scale(1.05);
        }

        .activity-stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--burgundy);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .activity-stat-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .activity-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .activity-wine-card {
            background: white;
            border: 2px solid rgba(107, 31, 58, 0.1);
            border-radius: 8px;
            padding: 1.2rem;
            transition: all 0.3s ease;
        }

        .activity-wine-card:hover {
            border-color: var(--burgundy);
            box-shadow: 0 4px 15px var(--shadow);
        }

        .activity-wine-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 0.8rem;
        }

        .activity-wine-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--burgundy);
        }

        .activity-wine-date {
            font-size: 0.85rem;
            color: #999;
        }

        .activity-wine-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.8rem;
            margin-top: 0.8rem;
        }

        .activity-wine-detail {
            font-size: 0.9rem;
        }

        .activity-wine-detail strong {
            color: var(--burgundy);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .wine-grid {
                grid-template-columns: 1fr;
            }

            .actions {
                flex-direction: column;
            }

            .search-box {
                width: 100%;
            }

            button {
                width: 100%;
            }
            
            .filters-container {
                flex-direction: column;
            }
            
            .filter-group {
                width: 100%;
            }
        }
