/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Hello Elementor Child Theme
Author: Concept Chest
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-primary: #060913;
    --bg-secondary: #0b0f19;
    --bg-card: #0d1326;
    --bg-card-border: rgba(255, 255, 255, 0.05);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-blue: #0ea5e9;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    --accent-indigo: #5b5cf0;
    
    --gradient-hero: linear-gradient(135deg, #38bdf8 0%, #a855f7 100%);
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    --gradient-btn: linear-gradient(90deg, #0ea5e9 0%, #8b5cf6 100%);
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Global resets and body overrides for the homepage template */
body.aleynray-homepage-body {
    background-color: var(--bg-primary) !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Force dark backgrounds on WordPress wrapper, header, and footer */
body.aleynray-homepage-body,
body.aleynray-homepage-body #page,
body.aleynray-homepage-body #content,
body.aleynray-homepage-body #site-header,
body.aleynray-homepage-body #site-footer,
body.aleynray-homepage-body .site-header,
body.aleynray-homepage-body .site-footer,
body.aleynray-homepage-body header,
body.aleynray-homepage-body footer,
body.aleynray-homepage-body .elementor-header,
body.aleynray-homepage-body .elementor-footer {
    background-color: var(--bg-primary) !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

body.aleynray-homepage-body .site-title a,
body.aleynray-homepage-body .site-description,
body.aleynray-homepage-body header a,
body.aleynray-homepage-body footer a {
    color: var(--text-secondary) !important;
}

body.aleynray-homepage-body header a:hover,
body.aleynray-homepage-body footer a:hover {
    color: var(--text-primary) !important;
}

body.aleynray-homepage-body *,
body.aleynray-homepage-body *::before,
body.aleynray-homepage-body *::after {
    box-sizing: border-box;
}

/* Navbar */
.ar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.ar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}
.ar-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-btn);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}
.ar-nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.ar-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.ar-nav-links a:hover {
    color: var(--text-primary);
}
.ar-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ar-btn-signin {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.ar-btn-primary {
    background: var(--gradient-btn);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    border: none;
    cursor: pointer;
}
.ar-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}
.ar-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s, border 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ar-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.ar-hero {
    position: relative;
    padding: 80px 4% 120px 4%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.12) 0%, rgba(6, 9, 19, 0) 60%);
}
.ar-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
}
.ar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.ar-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
}
.ar-hero h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto 20px auto;
    max-width: 900px;
    letter-spacing: -2px;
}
.ar-hero h1 span.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ar-hero p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 35px auto;
}
.ar-hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}
.ar-stats-row {
    display: inline-flex;
    gap: 40px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 35px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}
.ar-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}
.ar-stat-item strong {
    color: var(--text-primary);
    font-size: 16px;
}
.ar-stat-icon {
    font-size: 18px;
}

/* Brand Ticker */
.ar-ticker-sec {
    padding: 30px 0;
    background: rgba(11, 15, 25, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
}
.ar-ticker-title {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}
.ar-ticker-wrap {
    overflow: hidden;
    width: 100%;
}
.ar-ticker-row {
    display: flex;
    gap: 25px;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.ar-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}
.ar-ticker-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Tools Section (Wraps page-category-grid shortcode) */
.ar-tools-sec {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 4%;
    text-align: center;
}
.ar-sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--accent-blue);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}
.ar-tools-sec h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -1.5px;
}
.ar-tools-sec h2 span {
    background: linear-gradient(135deg, #a855f7 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ar-tools-sec p.sec-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Why Choose Section */
.ar-features-sec {
    background: #090d1a;
    padding: 100px 4%;
}
.ar-features-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.ar-features-sec h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}
.ar-features-sec h2 span {
    color: var(--accent-indigo);
}
.ar-features-sec p.sec-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 60px auto;
}
.ar-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .ar-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ar-features-grid { grid-template-columns: 1fr; }
}
.ar-feature-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: left;
    transition: border 0.3s, transform 0.3s;
}
.ar-feature-card:hover {
    border-color: rgba(91, 92, 240, 0.3);
    transform: translateY(-5px);
}
.ar-feature-icon {
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ar-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.ar-feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Feature Showcase Section */
.ar-showcase-sec {
    padding: 100px 4%;
    max-width: 1200px;
    margin: 0 auto;
}
.ar-showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}
.ar-showcase-row:nth-child(even) {
    flex-direction: row-reverse;
}
@media (max-width: 900px) {
    .ar-showcase-row, .ar-showcase-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}
.ar-showcase-content {
    flex: 1;
}
.ar-showcase-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
}
.ar-showcase-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 900px) {
    .ar-showcase-content h2 {
        justify-content: center;
    }
}
.ar-showcase-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* CSS Mockups representing screenshots */
.ar-mockup-frame {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.ar-mockup-header {
    background: #1e293b;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}
.ar-dot:nth-child(2) { background: #eab308; }
.ar-dot:nth-child(3) { background: #22c55e; }
.ar-mockup-title {
    margin-left: 10px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
}
.ar-mockup-body {
    padding: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: left;
}
.ar-mockup-input {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    color: #fff;
    margin-bottom: 15px;
}
.ar-mockup-button {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    font-size: 11px;
    display: inline-block;
}
.ar-mockup-result {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 15px;
    border-left: 3px solid var(--accent-blue);
    font-family: monospace;
    color: #38bdf8;
    white-space: pre-line;
}

/* Testimonials */
.ar-testimonials-sec {
    background: #04070f;
    padding: 100px 4%;
}
.ar-testimonials-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.ar-testimonials-wrap h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}
.ar-testimonials-wrap h2 span {
    color: var(--accent-blue);
}
.ar-testimonials-wrap p.sec-desc {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 60px;
}
.ar-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 900px) {
    .ar-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ar-testimonial-grid { grid-template-columns: 1fr; }
}
.ar-testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ar-t-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.ar-t-stars {
    color: #eab308;
    margin-bottom: 20px;
    font-size: 14px;
}
.ar-t-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ar-t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.ar-t-info h4 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.ar-t-info p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

/* Call to Action Banner */
.ar-cta-sec {
    padding: 100px 4%;
    text-align: center;
}
.ar-cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, rgba(11, 15, 25, 0.95) 80%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    padding: 80px 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.ar-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
    line-height: 1.1;
}
.ar-cta-card h2 span {
    background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ar-cta-card p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto 35px auto;
}
.ar-cta-info-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}
.ar-cta-info-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ar-cta-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
}

/* Footer styles */
.ar-footer {
    background: #03050a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 4% 30px 4%;
}
.ar-footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.ar-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
@media (max-width: 900px) {
    .ar-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
.ar-footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 15px 0 20px 0;
    max-width: 300px;
}
.ar-socials {
    display: flex;
    gap: 15px;
}
.ar-social-link {
    color: var(--text-muted);
    font-size: 18px;
    transition: color 0.2s;
}
.ar-social-link:hover {
    color: #fff;
}
.ar-footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ar-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ar-footer-col ul li {
    margin-bottom: 12px;
}
.ar-footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.ar-footer-col ul li a:hover {
    color: #fff;
}
.ar-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}
@media (max-width: 600px) {
    .ar-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* FAQ Section */
.ar-faq-sec {
    background: #060913;
    padding: 100px 4%;
}
.ar-faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.ar-faq-sec h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}
.ar-faq-sec h2 span {
    background: linear-gradient(135deg, #38bdf8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ar-faq-sec p.sec-desc {
    color: var(--text-secondary);
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}
.ar-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ar-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.ar-faq-item:hover, .ar-faq-item.active {
    border-color: rgba(91, 92, 240, 0.25);
}
.ar-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    padding: 22px 25px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ar-faq-icon {
    font-size: 18px;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}
.ar-faq-item.active .ar-faq-icon {
    transform: rotate(45deg);
}
.ar-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    padding: 0 25px;
}
.ar-faq-item.active .ar-faq-answer {
    max-height: 1000px;
    padding: 0 25px 22px 25px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* All Tools Page Styles */
.ar-tools-header {
    position: relative;
    padding: 100px 4% 60px 4%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, rgba(6, 9, 19, 0) 65%);
}
.ar-tools-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    z-index: -1;
    pointer-events: none;
}
.ar-tools-header h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
}
.ar-tools-header h1 span {
    background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ar-tools-header p.sec-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 40px auto;
}
.ar-search-container {
    max-width: 750px;
    margin: 0 auto;
}
.ar-search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 6px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.ar-search-box:focus-within {
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 25px rgba(14, 165, 233, 0.15);
}
.ar-search-icon {
    color: var(--text-muted);
}
.ar-search-box:focus-within .ar-search-icon {
    color: var(--accent-blue);
}
#ar-tool-search {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    width: 100%;
    font-family: var(--font-body);
}
#ar-tool-search::placeholder {
    color: var(--text-muted);
}
.ar-filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}
.ar-filter-tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ar-filter-tag:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}
.ar-filter-tag.active {
    background: #fff;
    color: #060913;
    border-color: #fff;
    font-weight: 600;
}
.ar-catalog-sec {
    padding: 30px 4% 100px 4%;
}
.ar-catalog-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.ar-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}
.ar-no-results {
    color: var(--text-muted);
    font-size: 16px;
    text-align: center;
    width: 100%;
    padding: 40px 0;
}


