/* Self-hosted Inter font */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-v20-latin-700.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafbfc;
    color: #1a1a1a;
    line-height: 1.7;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
    background: white;
    border-bottom: 1px solid #e8eaed;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: #5f6368;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #4f5aed;
}
.nav-links a.active {
    color: #4f5aed;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5f6368;
}


/* Dropdown Navigation Styles */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown > a {
    cursor: pointer;
}

.nav-item.has-dropdown > a::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0;           /* NO gap - dropdown touches the nav */
    padding-top: 0.75rem;    /* Space INSIDE the dropdown instead */
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #5f6368;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #4f5aed;
}

/* Mobile dropdown */
.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}


/* Header */
header {
    background: linear-gradient(to bottom, #ffffff, #fafbfc);
    border-bottom: 1px solid #e8eaed;
    padding: 4rem 0 3rem;
    margin-bottom: 4rem;
}
header .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.tagline {
    color: #5f6368;
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px 5rem;
}

/* Ad Placeholder */
.ad-placeholder {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    border: 2px dashed #a8b4c8;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    color: #5a6a7f;
    font-weight: 500;
    margin-bottom: 3rem;
    font-size: 1rem;
}
.ad-placeholder.leaderboard {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-placeholder.rectangle {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tool Section */
.tool-section {
    background: white;
    border-radius: 16px;
    padding: 4rem 3.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    margin-bottom: 3rem;
    border: 1px solid #f0f0f0;
}

.intro-text {
    margin-bottom: 3rem;
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.conversion-selectors {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.selector-group {
    display: flex;
    flex-direction: column;
}

.arrow-icon {
    font-size: 2rem;
    color: #4f5aed;
    margin-bottom: 1.75rem;
    text-align: center;
}

.file-input-group {
    margin-bottom: 2.5rem;
}

label {
    display: block;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

select {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f5aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

select:hover {
    border-color: #4f5aed;
    background-color: white;
    box-shadow: 0 2px 12px rgba(79, 90, 237, 0.08);
}

select:focus {
    outline: none;
    border-color: #4f5aed;
    box-shadow: 0 0 0 4px rgba(79, 90, 237, 0.1);
}

input[type="file"] {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

input[type="file"]:hover {
    border-color: #4f5aed;
    background: white;
    box-shadow: 0 2px 12px rgba(79, 90, 237, 0.08);
}

input[type="file"]:focus {
    outline: none;
    border-color: #4f5aed;
    box-shadow: 0 0 0 4px rgba(79, 90, 237, 0.1);
}

.file-info {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #4a4a4a;
    font-size: 0.95rem;
    display: none;
}

.file-info.show {
    display: block;
}

/* Image Preview (for FLAC cover art tool) */
.preview {
    margin-top: 1.5rem;
    text-align: center;
}
.preview img {
    max-width: 240px;
    max-height: 240px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Preset Buttons Styling */
.preset-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.preset-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.preset-btn:hover {
    border-color: #4f5aed;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 90, 237, 0.15);
}

.preset-btn.active {
    background: linear-gradient(135deg, #4f5aed 0%, #3d47cc 100%);
    color: white;
    border-color: #4f5aed;
    box-shadow: 0 4px 16px rgba(79, 90, 237, 0.3);
}

.preset-btn .preset-name {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.preset-btn .preset-desc {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Slider Styling */
.slider-group {
    margin-bottom: 2rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.slider-value {
    color: #4f5aed;
    font-size: 1.1rem;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #e0e4e8 0%, #4f5aed 100%);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4f5aed;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 90, 237, 0.4);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(79, 90, 237, 0.6);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4f5aed;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(79, 90, 237, 0.4);
    transition: all 0.2s ease;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(79, 90, 237, 0.6);
}

.slider-hint {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #5f6368;
}

/* Action Buttons - supports both #convertBtn and #processBtn */
#convertBtn,
#processBtn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #4f5aed 0%, #3d47cc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px rgba(79, 90, 237, 0.24);
}

#convertBtn:hover:not(:disabled),
#processBtn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(79, 90, 237, 0.32);
}

#convertBtn:active:not(:disabled),
#processBtn:active:not(:disabled) {
    transform: translateY(0);
}

#convertBtn:disabled,
#processBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

#status {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-size: 1rem;
    font-weight: 500;
}

#status.info {
    background: #e8f4fd;
    color: #0369a1;
    border-left: 4px solid #0284c7;
    display: block;
}

#status.success {
    background: #ecfdf5;
    color: #047857;
    border-left: 4px solid #10b981;
    display: block;
}

#status.error {
    background: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #dc2626;
    display: block;
}

/* Info Section */
.info-section {
    background: white;
    border-radius: 16px;
    padding: 3.5rem 3.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    margin-bottom: 3rem;
    border: 1px solid #f0f0f0;
}

.info-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    color: #0a0a0a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.info-section p {
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-section ul {
    margin-left: 1.5rem;
    color: #4a4a4a;
    margin-top: 1.5rem;
}

.info-section li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Popular Conversions Section */
.popular-conversions-section {
    background: white;
    border-radius: 16px;
    padding: 3.5rem 3.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    margin-bottom: 3rem;
    border: 1px solid #f0f0f0;
}

.popular-conversions-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #0a0a0a;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.conversion-grid a {
    padding: 1rem 1.25rem;
    background: #fafbfc;
    border: 2px solid #e0e4e8;
    border-radius: 10px;
    text-decoration: none;
    color: #4f5aed;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conversion-grid a:hover {
    background: white;
    border-color: #4f5aed;
    box-shadow: 0 4px 12px rgba(79, 90, 237, 0.15);
    transform: translateY(-2px);
}

.conversion-grid a:active {
    transform: translateY(0);
}

/* Related Conversions */
.related-conversions {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.related-conversions h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

p {
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

li {
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

strong {
    color: #1a1a1a;
    font-weight: 600;
}

a {
    color: #4f5aed;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}






/* Footer Mega Menu */
footer {
    background: #0a0a0a;
    color: #e8eaed;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #a8b4c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #4f5aed;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #a8b4c8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #a8b4c8;
    margin: 0 1rem;
}

.footer-bottom a:hover {
    color: #4f5aed;
}





/* Mobile Optimization */
@media (max-width: 768px) {
    nav .container {
        padding: 0 24px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        gap: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    header {
        padding: 3rem 0 2rem;
        margin-bottom: 2.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1.05rem;
    }
    main {
        padding: 0 24px 3rem;
    }
    header .container {
        padding: 0 24px;
    }
    .tool-section, .info-section {
        padding: 2.5rem 2rem;
    }
    .ad-placeholder {
        padding: 40px 20px;
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .ad-placeholder.leaderboard {
        min-height: 60px;
    }
    .conversion-selectors {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .arrow-icon {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .popular-conversions-section {
        padding: 2.5rem 2rem;
    }
    
    .popular-conversions-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .conversion-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .conversion-grid a {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .preset-buttons {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    nav .container {
        padding: 0 20px;
    }
    h1 {
        font-size: 1.75rem;
    }
    .tagline {
        font-size: 1rem;
    }
    main {
        padding: 0 20px 2rem;
    }
    header .container {
        padding: 0 20px;
    }
    .tool-section, .info-section {
        padding: 2rem 1.5rem;
    }
    .intro-text {
        font-size: 1rem;
    }
    label {
        font-size: 1rem;
    }
    #convertBtn,
    #processBtn {
        font-size: 1rem;
    }
    
    .popular-conversions-section {
        padding: 2rem 1.5rem;
    }
    
    .conversion-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .conversion-grid a {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
}











/* Related Tools Section */
.related-tools-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 0px solid #4f5aed;
}

.related-tools-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.related-tools-header {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.related-tools-subheader {
    text-align: center;
    color: #5f6368;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Trending Tools Bar */
.trending-tools-bar {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trending-label {
    font-weight: 700;
    color: #0a0a0a;
    font-size: 0.95rem;
}

.trending-link {
    color: #4f5aed;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.trending-link:hover {
    color: #3d47cc;
    text-decoration: underline;
}

.separator {
    color: #e0e4e8;
    font-weight: 700;
}

/* Related Tools Grid */
.related-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.related-tool-card {
    background: white;
    border: 2px solid #e8eaed;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-tool-card:hover {
    border-color: #4f5aed;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(79, 90, 237, 0.15);
}

.tool-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.related-tool-card h3 {
    font-size: 1.25rem;
    color: #0a0a0a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.related-tool-card p {
    color: #5f6368;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Browse All CTA */
.browse-all-cta {
    text-align: center;
}

.browse-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4f5aed 0%, #3d47cc 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(79, 90, 237, 0.3);
}

.browse-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 90, 237, 0.4);
}

.btn-icon {
    font-size: 1.25rem;
}

.btn-arrow {
    font-weight: 700;
    font-size: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .related-tools-section {
        padding: 3rem 0;
    }
    
    .related-tools-section .container {
        padding: 0 24px;
    }
    
    .related-tools-header {
        font-size: 1.75rem;
    }
    
    .related-tools-subheader {
        font-size: 1rem;
    }
    
    .trending-tools-bar {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .trending-label, .trending-link {
        font-size: 0.875rem;
    }
    
    .related-tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .browse-all-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trending-tools-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .separator {
        display: none;
    }
}
