.CDSTYMainsiteTopSearch-container {
            max-width: 1400px;
            margin: 0 auto;
            /* background: white; */
            /* border-radius: 24px; */
            /* padding: 20px; */
            /* box-shadow: 0 4px 24px rgba(0,0,0,0.06); */
            overflow: visible;
            position: relative;
        }

        .CDSTYMainsiteTopSearch-search-header {
            font-size: 28px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .CDSTYMainsiteTopSearch-badge {
            background: linear-gradient(135deg, #5559BC 0%, #9857CD 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        /* Mobile Search Button (Hidden on Desktop) */
        .CDSTYMainsiteTopSearch-mobile-search-trigger {
            display: none;
            position: fixed;
            top: 38px;
            right: 38px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5559BC 0%, #9857CD 100%);
            border: none;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
            z-index: 997;
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        /* Ensure button is always visible on very small screens */
        @media screen and (max-width: 768px) {
            .CDSTYMainsiteTopSearch-mobile-search-trigger {
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }

        .CDSTYMainsiteTopSearch-mobile-search-trigger:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        .CDSTYMainsiteTopSearch-mobile-search-trigger.CDSTYMainsiteTopSearch-hidden {
            transform: scale(0);
            opacity: 0;
            pointer-events: none;
        }

        /* Mobile Search Panel */
        .CDSTYMainsiteTopSearch-mobile-search-panel {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 0 0;
            box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 998;
            max-height: 80vh;
            overflow-y: auto;
        }

        .CDSTYMainsiteTopSearch-mobile-search-panel.CDSTYMainsiteTopSearch-open {
            transform: translateY(0);
        }

        .CDSTYMainsiteTopSearch-mobile-panel-header {
            padding: 12px 20px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
        }

        .CDSTYMainsiteTopSearch-mobile-panel-title {
            font-size: 18px;
            font-weight: 600;
            color: #374151;
        }

        .CDSTYMainsiteTopSearch-mobile-close-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            color: #6b7280;
        }

        .CDSTYMainsiteTopSearch-mobile-close-btn:hover {
            background: #f3f4f6;
            color: #374151;
        }

        .CDSTYMainsiteTopSearch-mobile-search-content {
            padding: 20px;
        }

        .CDSTYMainsiteTopSearch-mobile-search-input-wrapper {
            position: relative;
            margin-bottom: 16px;
        }

        .CDSTYMainsiteTopSearch-mobile-search-input {
            width: 100%;
            padding: 16px 16px 16px 48px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-mobile-search-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .CDSTYMainsiteTopSearch-mobile-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            width: 20px;
            height: 20px;
        }

        .CDSTYMainsiteTopSearch-mobile-location-wrapper {
            position: relative;
            margin-bottom: 16px;
        }

        .CDSTYMainsiteTopSearch-mobile-location-input {
            width: 100%;
            padding: 16px 48px 16px 48px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: all 0.2s ease;
            background: #f8f9fa;
        }

        .CDSTYMainsiteTopSearch-mobile-location-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .CDSTYMainsiteTopSearch-mobile-location-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            width: 20px;
            height: 20px;
        }

        .CDSTYMainsiteTopSearch-mobile-detect-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border: none;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-mobile-detect-btn:hover {
            background: #e5e7eb;
            color: #667eea;
        }

        .CDSTYMainsiteTopSearch-mobile-action-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .CDSTYMainsiteTopSearch-mobile-filter-btn {
            flex: 1;
            padding: 16px;
            border: 2px solid #667eea;
            background: white;
            color: #667eea;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-mobile-filter-btn:hover {
            background: #f3f4f6;
        }

        .CDSTYMainsiteTopSearch-mobile-filter-btn.CDSTYMainsiteTopSearch-active {
            background: #ede9fe;
            border-color: #7c3aed;
            color: #7c3aed;
        }

        .CDSTYMainsiteTopSearch-mobile-submit-btn {
            flex: 1;
            padding: 16px;
            border: none;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-mobile-submit-btn:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b3a95 100%);
            transform: translateY(-1px);
        }

        /* Main Search Bar Container (Desktop) */
        .CDSTYMainsiteTopSearch-search-container {
            position: relative;
            overflow: visible;
            margin-bottom: 0;
        }

        .CDSTYMainsiteTopSearch-search-bar {
            display: flex;
            align-items: stretch;
            background: white;
            border-radius: 10px;
            /* box-shadow: 0 2px 16px rgba(0,0,0,0.08); */
            overflow: visible;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            min-height: 50px;
            position: relative;
        }

        .CDSTYMainsiteTopSearch-search-bar:focus-within {
            border-color: #667eea;
            box-shadow: 0 4px 24px rgba(102, 126, 234, 0.18);
        }

        /* Advanced Filter Button (LEFT) - Icon Only */
        .CDSTYMainsiteTopSearch-advanced-filter-btn {
            padding: 0 20px;
            min-width: 64px;
            border: none;
            background: #f8f9fa;
            color: #374151;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid #e5e7eb;
            position: relative;
            border-radius: 8px 0 0 8px;
        }

        .CDSTYMainsiteTopSearch-advanced-filter-btn:hover {
            background: #f3f4f6;
            color: #667eea;
        }

        .CDSTYMainsiteTopSearch-advanced-filter-btn.CDSTYMainsiteTopSearch-active {
            background: #ede9fe;
            color: #7c3aed;
        }

        .CDSTYMainsiteTopSearch-advanced-filter-btn.CDSTYMainsiteTopSearch-active::after {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background: #7c3aed;
            border-radius: 50%;
        }

        /* Search Input (CENTER) */
        .CDSTYMainsiteTopSearch-search-input-wrapper {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 20px;
            background: white;
        }

        .CDSTYMainsiteTopSearch-search-input {
            width: 100%;
            border: none;
            padding: 15px 8px;
            font-size: 18px;
            outline: none;
            background: transparent;
        }

        .CDSTYMainsiteTopSearch-search-input::placeholder {
            color: #9ca3af;
            font-size: 16px;
        }

        .CDSTYMainsiteTopSearch-search-icon {
            color: #9ca3af;
            margin-right: 12px;
            width: 24px;
            height: 24px;
        }

        /* Location Input (RIGHT) */
        .CDSTYMainsiteTopSearch-location-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: #f8f9fa;
            padding: 0 12px;
            min-width: 260px;
            border-left: 1px solid #e5e7eb;
            z-index: 100;
        }

        .CDSTYMainsiteTopSearch-location-icon {
            color: #6b7280;
            margin-right: 10px;
            width: 22px;
            height: 22px;
        }

        .CDSTYMainsiteTopSearch-location-input {
            flex: 1;
            border: none;
            background: none;
            padding: 17px 8px;
            font-size: 16px;
            outline: none;
            color: #374151;
        }

        .CDSTYMainsiteTopSearch-location-input::placeholder {
            color: #9ca3af;
        }

        .CDSTYMainsiteTopSearch-location-detect-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: white;
            cursor: pointer;
            color: #6b7280;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-location-detect-btn:hover {
            background: #e5e7eb;
            color: #667eea;
        }

        .CDSTYMainsiteTopSearch-location-detect-btn.CDSTYMainsiteTopSearch-detecting {
            animation: CDSTYMainsiteTopSearch-locationPulse 1.5s infinite;
            background: #ede9fe;
            color: #667eea;
        }

        /* Search Button (FAR RIGHT) - Icon Only */
        .CDSTYMainsiteTopSearch-search-btn {
            min-width: 60px;
            padding: 0 20px;
            border: none;
            background: linear-gradient(135deg, #5559BC 0%, #9857CD 100%);
            color: #9857CD;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 0 8px 8px 0;
        }

        .CDSTYMainsiteTopSearch-search-btn:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b3a95 100%);
        }

        .CDSTYMainsiteTopSearch-search-btn:active {
            transform: scale(0.98);
        }

        /* Location Suggestions Dropdown */
        .CDSTYMainsiteTopSearch-location-suggestions {
            position: absolute;
            top: 100%;
            right: 0;
            left: auto;
            margin-top: 8px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.25);
            padding: 8px;
            z-index: 99999;
            display: none;
            min-width: 280px;
            width: max-content;
            border: 2px solid #e5e7eb;
            max-height: 300px;
            overflow-y: auto;
        }

        .CDSTYMainsiteTopSearch-location-suggestions.CDSTYMainsiteTopSearch-show {
            display: block !important;
        }

        .CDSTYMainsiteTopSearch-location-suggestion-item {
            padding: 14px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: #374151;
        }

        .CDSTYMainsiteTopSearch-location-suggestion-item:hover {
            background: #f3f4f6;
            color: #667eea;
        }

        /* Active Filters Display */
        .CDSTYMainsiteTopSearch-active-filters {
            margin-top: 16px;
            padding: 16px 20px;
            background: #f8f9fa;
            border-radius: 12px;
            display: none;
            border: 1px solid #e5e7eb;
        }

        .CDSTYMainsiteTopSearch-active-filters.CDSTYMainsiteTopSearch-show {
            display: block;
        }

        .CDSTYMainsiteTopSearch-active-filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .CDSTYMainsiteTopSearch-active-filters-title {
            font-weight: 600;
            color: #374151;
            font-size: 14px;
        }

        .CDSTYMainsiteTopSearch-clear-all-btn {
            color: #dc2626;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-clear-all-btn:hover {
            color: #b91c1c;
            text-decoration: underline;
        }

        .CDSTYMainsiteTopSearch-filter-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .CDSTYMainsiteTopSearch-filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: white;
            color: #7c3aed;
            border: 1px solid #ddd6fe;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .CDSTYMainsiteTopSearch-tag-remove {
            cursor: pointer;
            font-size: 18px;
            line-height: 1;
            opacity: 0.6;
            transition: opacity 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-tag-remove:hover {
            opacity: 1;
        }

        /* SLIDING FILTER PANEL STYLES */
        .CDSTYMainsiteTopSearch-filter-panel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            backdrop-filter: blur(2px);
        }

        .CDSTYMainsiteTopSearch-filter-panel-overlay.CDSTYMainsiteTopSearch-open {
            opacity: 1;
            visibility: visible;
        }

        .CDSTYMainsiteTopSearch-filter-panel {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 400px;
            max-width: 90vw;
            background: white;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .CDSTYMainsiteTopSearch-filter-panel.CDSTYMainsiteTopSearch-open {
            transform: translateX(0);
        }

        .CDSTYMainsiteTopSearch-panel-header {
            padding: 24px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            color: white;
            position: relative;
        }

        .CDSTYMainsiteTopSearch-panel-title {
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .CDSTYMainsiteTopSearch-close-panel {
            width: 36px;
            height: 36px;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            color: white;
        }

        .CDSTYMainsiteTopSearch-close-panel:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .CDSTYMainsiteTopSearch-panel-content {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
            background: #fafafa;
        }

        .CDSTYMainsiteTopSearch-filter-section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
            border: 1px solid #e5e7eb;
            opacity: 1;
        }

        .CDSTYMainsiteTopSearch-filter-section-title {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 16px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .CDSTYMainsiteTopSearch-filter-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
            margin-bottom: 4px;
        }

        .CDSTYMainsiteTopSearch-filter-option:hover {
            background: #f3f4f6;
        }

        .CDSTYMainsiteTopSearch-filter-option input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #667eea;
        }

        .CDSTYMainsiteTopSearch-filter-option label {
            cursor: pointer;
            color: #4b5563;
            font-size: 15px;
            flex: 1;
            user-select: none;
        }

        .CDSTYMainsiteTopSearch-panel-footer {
            padding: 20px 24px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            gap: 12px;
            background: white;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        }

        .CDSTYMainsiteTopSearch-btn {
            flex: 1;
            padding: 14px 24px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-btn-reset {
            background: #f3f4f6;
            color: #374151;
        }

        .CDSTYMainsiteTopSearch-btn-reset:hover {
            background: #e5e7eb;
        }

        .CDSTYMainsiteTopSearch-btn-apply {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .CDSTYMainsiteTopSearch-btn-apply:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b3a95 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        /* Filter count badge */
        .CDSTYMainsiteTopSearch-filter-count {
            background: #667eea;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            margin-left: auto;
        }

        /* Search Results */
        .CDSTYMainsiteTopSearch-search-results {
            margin-top: 24px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            display: none;
            border: 1px solid #e5e7eb;
        }

        .CDSTYMainsiteTopSearch-search-results.CDSTYMainsiteTopSearch-active {
            display: block;
        }

        .CDSTYMainsiteTopSearch-results-header {
            margin-bottom: 16px;
            color: #374151;
            font-weight: 500;
            font-size: 16px;
        }

        .CDSTYMainsiteTopSearch-result-item {
            padding: 18px;
            background: white;
            border-radius: 10px;
            margin-bottom: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
            border: 1px solid #e5e7eb;
        }

        .CDSTYMainsiteTopSearch-result-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-color: #ddd6fe;
        }

        .CDSTYMainsiteTopSearch-result-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .CDSTYMainsiteTopSearch-result-info h5 {
            margin: 0 0 8px 0;
            color: #1a1a1a;
            font-size: 18px;
        }

        .CDSTYMainsiteTopSearch-result-meta {
            color: #6b7280;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .CDSTYMainsiteTopSearch-view-btn {
            padding: 10px 24px;
            border: 1px solid #667eea;
            background: white;
            color: #667eea;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .CDSTYMainsiteTopSearch-view-btn:hover {
            background: #667eea;
            color: white;
        }

        /* Icons */
        .CDSTYMainsiteTopSearch-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .CDSTYMainsiteTopSearch-icon-sm {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .CDSTYMainsiteTopSearch-icon-lg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        /* Animations */
        @keyframes CDSTYMainsiteTopSearch-locationPulse {
            0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
            70% { box-shadow: 0 0 0 8px rgba(102, 126, 234, 0); }
            100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Hide desktop search */
            .CDSTYMainsiteTopSearch-search-container {
                display: none !important;
            }

            /* Show mobile search button - IMPORTANT */
            .CDSTYMainsiteTopSearch-mobile-search-trigger {
                display: flex !important;
                align-items: center;
                justify-content: center;
            }

            /* Show mobile search panel */
            .CDSTYMainsiteTopSearch-mobile-search-panel {
                display: block;
            }

            .CDSTYMainsiteTopSearch-search-header {
                font-size: 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .CDSTYMainsiteTopSearch-container {
                padding: 16px;
            }

            .CDSTYMainsiteTopSearch-filter-panel {
                width: 85vw;
            }

            .CDSTYMainsiteTopSearch-result-content {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }

            .CDSTYMainsiteTopSearch-view-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 8px;
            }

            .CDSTYMainsiteTopSearch-container {
                padding: 12px;
                border-radius: 16px;
            }

            .CDSTYMainsiteTopSearch-search-header {
                font-size: 18px;
                margin-bottom: 16px;
            }

            .CDSTYMainsiteTopSearch-badge {
                font-size: 11px;
                padding: 4px 10px;
            }

            .CDSTYMainsiteTopSearch-filter-panel {
                width: 100vw;
            }

            .CDSTYMainsiteTopSearch-panel-content {
                padding: 16px;
            }

            .CDSTYMainsiteTopSearch-filter-section {
                padding: 16px;
            }

            .CDSTYMainsiteTopSearch-result-info h5 {
                font-size: 16px;
            }

            .CDSTYMainsiteTopSearch-result-meta {
                font-size: 13px;
            }

            .CDSTYMainsiteTopSearch-mobile-search-trigger {
                width: 56px;
                height: 56px;
            }
        }

        @media (max-width: 360px) {
            .CDSTYMainsiteTopSearch-search-header {
                font-size: 16px;
            }

            .CDSTYMainsiteTopSearch-active-filters {
                padding: 12px;
            }

            .CDSTYMainsiteTopSearch-filter-tag {
                font-size: 12px;
                padding: 6px 10px;
            }

            .CDSTYMainsiteTopSearch-mobile-search-trigger {
                width: 52px;
                height: 52px;
                bottom: 16px;
                right: 16px;
            }
        }