/* 
   Doctor Biker Garage
   Theme: Dark, Industrial, Red Accents
*/

:root {
    --primary-red: #D50000;
    /* Medical Red */
    --primary-red-hover: #B71C1C;
    --bg-black: #050505;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-white: #FFFFFF;
    --text-gray: #B0BEC5;
    --accent-white: #FFFFFF;
    /* New accent */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mt-3 {
    margin-top: 1rem !important;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    /* Prevent stretching if width is constrained */
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.bg-black {
    background-color: var(--bg-black);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.section {
    padding: 80px 0;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-red);
    margin: 10px auto 30px;
    box-shadow: 0 0 10px rgba(213, 0, 0, 0.5);
    /* Red glow */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    /* Sharp edges for luxury */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--primary-red);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-red);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(213, 0, 0, 0.2);
    /* Subtle red glow */
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: var(--text-light);
    color: var(--bg-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Sleek Minimalist Service Button */
.btn-glow {
    position: relative;
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 5px;
    /* Subtle rounded corners, not fully pill */
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    /* Prevent stacking text */
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-red);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-glow:hover {
    transform: translateY(-2px);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(213, 0, 0, 0.2);
}

.btn-glow:hover::before {
    width: 100%;
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    /* Darker, more transparent */
    padding: 20px 0;
    /* More spacing */
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Thinner border */
    backdrop-filter: blur(20px);
    /* Stronger blur */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo img {
    height: 40px;
    width: auto;
    /* Ensure aspect ratio is kept */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
}

.nav-link:not(.btn-primary):hover {
    color: var(--primary-red);
}

.icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 10px;
    color: var(--text-white);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.icon-btn:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Mobile Menu */
.lang-switcher {
    color: var(--text-white);
    margin-left: 20px;
    font-weight: bold;
    cursor: default;
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 0 5px;
}

.lang-btn.active {
    opacity: 1;
    color: var(--primary-red);
    text-decoration: underline;
}

.lang-btn:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--bg-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    /* Larger, more cinematic */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 5px;
    /* Wide luxurious spacing */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.delay-3 {
    animation-delay: 0.6s;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 8px;
    border-bottom: 3px solid var(--primary-red);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 0;
    /* Sharp edges */
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(213, 0, 0, 0.5);
    background: rgba(30, 30, 30, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(213, 0, 0, 0.5);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Pagination Bar */
.pagination-bar {
    width: 100%;
    margin-top: 50px;
    padding: 15px 25px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pagination-info {
    color: var(--text-gray);
    font-size: 0.9rem;
    white-space: nowrap;
}

.pagination-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 1rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.page-btn.active {
    background: var(--primary-red);
    color: white;
    font-weight: bold;
}

.page-btn.prev-next {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.page-btn.prev-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pagination-limit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.limit-select-small {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.limit-select-small:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

/* .gallery-item styles have been moved/merged below to support overlays */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Brands Section */
.brands-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #000;

    /* Enable scrolling on mobile */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;

    /* Hide scrollbar for cleaner look (optional) */
    scrollbar-width: none;
}

.brands-container::-webkit-scrollbar {
    display: none;
}

.brands-img {
    height: 80px;
    /* Fixed height ensures logos are legible */
    width: auto;
    /* Allow natural width */
    max-width: none;
    /* Override max-width so it can scroll */

    filter: grayscale(100%) brightness(200%);
    /* Make white */
    opacity: 0.8;
    transition: var(--transition);
}

.brands-img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
    /* Full color on hover */
}

/* Reviews */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-card);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.score {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.stars {
    color: #ffd700;
}

.source {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
    font-size: 5rem;
    color: rgba(230, 57, 70, 0.2);
    line-height: 0;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer .name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.contact-info {
    padding: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 30px;
    text-align: center;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-gray);
}

.link-red {
    color: var(--primary-red);
    font-weight: 500;
}

.link-red:hover {
    text-decoration: underline;
}

.social-links.large {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.social-btn.insta {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-btn.tiktok {
    background-color: #000000;
    color: white;
    border: 1px solid var(--accent-white);
    /* Consistent with other buttons */
}

/* Gallery Overlay Effects (Instagram Style) */
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    position: relative;
    cursor: pointer;
}

/* Custom Select Dropdowns */
.boutique-filters-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 25px;
}

.custom-select-wrapper {
    position: relative;
    width: 250px;
    max-width: 100%;
}

.custom-select-wrapper::after {
    content: '\f107';
    /* FontAwesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--primary-red);
    pointer-events: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.custom-select-wrapper:hover::after {
    color: var(--text-white);
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 40px 12px 20px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.custom-select:hover,
.custom-select:focus {
    border-color: var(--primary-red);
    background-color: rgba(30, 30, 30, 0.8);
    box-shadow: 0 0 15px rgba(213, 0, 0, 0.2);
}

.custom-select option {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 10px;
    font-family: var(--font-body);
    font-weight: normal;
    text-transform: none;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 15px;
}

.gallery-overlay .stats {
    display: flex;
    gap: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.gallery-overlay .stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Media Spotlight Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.social-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.map-container {
    background-color: #333;
    min-height: 400px;
}

/* Diagnostic Wizard */
#diagnostic-wizard {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-black) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Prevent step overflow */
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.wizard-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: left;
}

.wizard-btn i {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 0;
    width: 30px;
    text-align: center;
}

.wizard-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
    padding-left: 30px;
    /* Slide content inside by increasing padding */
}

.wizard-btn:active {
    transform: scale(0.98);
    /* Subtle click effect instead of slide */
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
    margin-top: 20px;
}

/* Result Card */
.result-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(213, 0, 0, 0.2);
}

.result-icon {
    width: 150px;
    height: 150px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.result-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(213, 0, 0, 0.3));
    /* Subtle glow */
}

.result-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 600px) {
    .wizard-options {
        grid-template-columns: 1fr;
    }

    .result-card {
        padding: 25px 20px;
        width: 95%;
        margin: 0 auto;
    }

    .result-actions {
        flex-direction: column;
        gap: 15px;
    }

    .result-actions .btn {
        width: 100%;
        display: block;
        padding: 15px 0;
        text-align: center;
    }

    .wizard-step h3 {
        font-size: 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer structure remains the same */
.map-container iframe {
    height: 100%;
}

/* Footer */
footer {
    background-color: var(--bg-black);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 60px;
    margin: 0 auto 20px;
}

footer h3 {
    margin-bottom: 2rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.footer-socials {
    margin-bottom: 2rem;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: var(--transition);
    padding: 10px;
}

.social-icon:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-link {
        display: block;
        padding: 15px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 100px;
        min-height: 100vh;
        height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 30px;
    }

    .map-container {
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Rate Us Card */
.rate-us-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.rate-us-card {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.rate-us-card:hover {
    transform: translateY(-5px);
    border-color: rgba(213, 0, 0, 0.5);
    box-shadow: 0 15px 40px rgba(213, 0, 0, 0.15);
}

.rate-us-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 0, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.rate-us-card:hover::before {
    opacity: 1;
}

.rate-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--text-gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.rate-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.rate-stars {
    font-size: 2rem;
    color: #FFD700;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rate-stars i {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    animation: starPulse 2s infinite alternate;
}

.rate-stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.rate-stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.rate-stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.rate-stars i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {
    from {
        opacity: 0.8;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

.rate-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--text-white);
    opacity: 0;
    transform: translateY(10px) rotate(-15deg);
    font-size: 2rem;
    transition: var(--transition);
}

/* Modal Base */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid var(--primary-red);
    width: 90%;
    max-width: 1200px;
    border-radius: 15px;
    position: relative;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-gray);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-red);
    text-decoration: none;
    cursor: pointer;
}

/* Toast Notification */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--primary-red);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px 20px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(213, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    font-family: var(--font-heading);
    font-weight: 500;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

/* Product Detail Modal Styles */
.product-detail-modal {
    max-width: 800px;
    padding: 30px 40px 30px 40px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    height: fit-content !important;
    min-height: 0 !important;
}

.close-detail-modal {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-detail-modal:hover,
.close-detail-modal:focus {
    color: var(--primary-red);
    text-decoration: none;
}

.product-detail-layout {
    display: flex;
    flex-direction: row;
    gap: 30px;
    /* tightly packed gap */
    align-items: center;
    /* Center to prevent stretching empty space */
    margin-top: 15px;
}

.product-detail-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
}

.product-detail-img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.product-detail-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

/* Boutique Grid Title Truncation */
.product-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-specific-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-detail-info .divider {
    margin-left: 0;
    margin-bottom: 20px;
}

.detail-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.detail-order-btn {
    align-self: flex-start;
    width: 100%;
    max-width: 300px;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .product-detail-layout {
        flex-direction: column;
        gap: 20px;
    }

    .product-detail-info {
        text-align: center;
        align-items: center;
    }

    .product-detail-info .divider {
        margin: 0 auto 20px auto;
    }
}

.rate-us-card:hover .rate-icon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Boutique Category Filters */
.boutique-category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-btn {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    /* Pill shape */
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.category-btn.active {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(213, 0, 0, 0.3);
}

/* Boutique Search Field */
.boutique-search-container {
    position: relative;
    max-width: 500px;
    margin: 20px auto 10px auto;
}

.boutique-search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background-color: rgba(255, 255, 255, 0.05);
    /* very light transparency */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.boutique-search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: rgba(5, 5, 5, 0.9);
    box-shadow: 0 0 10px rgba(213, 0, 0, 0.2);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1rem;
    pointer-events: none;
}

/* Claymorphism Boutique Button */
.btn-clay {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #8C523D;
    /* Warm brown clay color */
    border-radius: 50px;
    /* Pill shape */
    padding: 6px;
    text-decoration: none;
    /* Soft 3D lighting: Top-left highlight, bottom-right shadow */
    box-shadow:
        inset -3px -4px 8px rgba(0, 0, 0, 0.25),
        inset 3px 4px 8px rgba(255, 255, 255, 0.15),
        0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.btn-clay::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: none;
}

.btn-clay:hover::after {
    animation: shineBtn 2s infinite;
}

@keyframes shineBtn {
    0% {
        left: -100%;
    }

    30% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-clay:hover {
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        inset -3px -4px 8px rgba(0, 0, 0, 0.25),
        inset 3px 4px 8px rgba(255, 255, 255, 0.25),
        0 12px 20px rgba(0, 0, 0, 0.4);
}

.btn-clay:active {
    transform: scale(0.96);
    box-shadow:
        inset -2px -3px 6px rgba(0, 0, 0, 0.25),
        inset 2px 3px 6px rgba(255, 255, 255, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.clay-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    /* Perfect Circle shape */
    height: 45px;
    background-color: #8C523D;
    border-radius: 50%;
    flex-shrink: 0;
    /* Carved in effect: Top-left dark shadow, bottom-right light shadow */
    box-shadow:
        inset 3px 4px 6px rgba(0, 0, 0, 0.4),
        inset -3px -4px 6px rgba(255, 255, 255, 0.15);
}

.clay-icon-wrapper i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #ffd27a;
    /* Warm fire-like yellow/orange for the icon */
    /* Give the icon a 3D pop so it looks like it sits inside the groove */
    filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.5));
    transform: translateX(1px);
    /* Slight optical center adjustment */
}

.clay-text {
    flex: 1;
    text-align: center;
    color: #F8E9D2;
    /* Creamy off-white */
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-right: 20px;
    /* Offset the text to visually center it relative to the button width */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* --- Shop Slider Showcase --- */
.shop-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    /* Soft fade on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.shop-slider-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.shop-slider-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

.shop-slide-card {
    width: 200px;
    margin-right: 30px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.shop-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(213, 0, 0, 0.3);
}

.shop-slide-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.shop-slide-title {
    color: var(--text-white);
    font-size: 1rem;
    text-align: center;
    font-family: var(--font-heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Truncate to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    /* Consistent height */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls exactly half the track width (one copy of items) */
}

/* ============================================================
   MOBILE RESPONSIVENESS
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ============================================================ */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {

    /* Nav */
    .menu-toggle {
        display: flex;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px 40px;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1050;
        border-left: 1px solid rgba(213, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero h1 {
        font-size: 3.2rem;
        letter-spacing: 3px;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    /* Boutique filters stack */
    .boutique-filters-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px !important;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- MOBILE (≤ 768px) ---------- */
@media (max-width: 768px) {

    /* Base spacing */
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .hero .subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Section titles */
    .section-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }

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

    /* Services — single column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Product cards — 2 columns on mobile */
    #boutique-product-grid.services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
    }

    .product-card {
        padding: 14px 10px !important;
    }

    .product-card img {
        height: 140px !important;
        object-fit: contain;
    }

    .product-card-title {
        font-size: 0.85rem !important;
        min-height: 40px !important;
    }

    /* Boutique filters */
    .boutique-filters-container {
        flex-direction: column !important;
        align-items: center;
        gap: 10px !important;
    }

    .custom-select-wrapper {
        width: 100%;
        max-width: 340px;
    }

    .custom-select {
        width: 100%;
    }

    /* Boutique search */
    .boutique-search-container {
        margin-bottom: 24px !important;
    }

    .boutique-search-input {
        font-size: 0.95rem;
        padding: 12px 16px 12px 42px !important;
    }

    /* Pagination bar */
    .pagination-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 15px;
        text-align: center;
    }

    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Footer */
    .footer-content {
        padding: 20px 16px;
    }

    .footer-socials {
        gap: 20px;
    }

    /* Product detail modal */
    .product-detail-layout {
        flex-direction: column !important;
    }

    .product-detail-image-container {
        width: 100% !important;
    }

    /* Breadcrumb */
    nav[aria-label="breadcrumb"] {
        font-size: 0.78rem;
        padding: 0 16px;
    }

    /* Category page H1 */
    section#boutique-page h1.section-title {
        font-size: 1.5rem !important;
        letter-spacing: 1px;
    }

    /* Shop teaser */
    .shop-teaser-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ---------- SMALL PHONES (≤ 480px) ---------- */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.9rem;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 0.9rem;
    }

    /* Single column product cards */
    #boutique-product-grid.services-grid {
        grid-template-columns: 1fr !important;
        max-width: 340px;
        margin: 0 auto;
    }

    .product-card img {
        height: 180px !important;
    }

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

    .section-title {
        font-size: 1.5rem !important;
    }

    /* Nav narrower */
    .nav-menu {
        width: 85vw;
    }

    /* Pagination: hide info on tiny screens */
    .pagination-info {
        font-size: 0.8rem;
    }

    .page-btn {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* ---------- HAMBURGER ANIMATION ---------- */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay behind open mobile nav */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 950; /* Below navbar (1000) */
}

.nav-overlay.active {
    display: block;
}

/* Ensure navbar is above everything else except search dropdown */
.navbar {
    z-index: 1000;
}

/* ---------- SEARCH AUTOCOMPLETE ---------- */
.boutique-search-container {
    position: relative; /* Anchor for results */
}

.search-autocomplete-results {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 2000;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    display: none; /* Hidden by default */
}

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

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(213, 0, 0, 0.1);
}

.search-result-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    background: #000;
    padding: 2px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-result-info {
    flex: 1;
    text-align: left;
}

.search-result-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.search-result-meta {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    gap: 10px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Custom Scrollbar for results */
.search-autocomplete-results::-webkit-scrollbar {
    width: 6px;
}
.search-autocomplete-results::-webkit-scrollbar-track {
    background: transparent;
}
.search-autocomplete-results::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}