* { margin: 0; padding: 0; box-sizing: border-box; }

body { background-color: #0b0b0b; color: white; font-family: 'Arial', sans-serif; display: flex; flex-direction: column; align-items: center; overflow-x: hidden; width: 100%; }

nav { width: 100%; height: 70px; background: rgba(11, 11, 11, 0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); position: fixed; top: 0; left: 0; z-index: 9999; display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.nav-container { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo { font-weight: 900; letter-spacing: 2px; font-size: 20px; text-transform: uppercase; color: #fff; text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 15px; }
.nav-item { position: relative; list-style: none; }
.nav-link { text-decoration: none; color: #eee; font-size: 11px; font-weight: bold; text-transform: uppercase; padding: 10px 15px; cursor: pointer; display: flex; align-items: center; gap: 5px; }

.dropdown-content { position: absolute; top: 100%; left: 0; background: rgba(20, 20, 20, 0.7);  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-radius: 12px; 
    min-width: 200px; border: 1px solid rgba(255, 255, 255, 0.1); padding: 10px 0; margin-top: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.5); overflow: hidden; }
.dropdown-content a { color: #eee; padding: 12px 20px; text-decoration: none; display: block; font-size: 13px; transition: 0.2s; }
.dropdown-content a:hover { background: rgba(255, 255, 255, 0.05); color: #f1c232; }

@media (min-width: 851px) {
    .dropdown:hover .dropdown-content { opacity: 1; visibility: visible; }
    .nav-link:hover { color: #f1c232; }
}

.hamburger { display: none; cursor: pointer; z-index: 10001; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 850px) {
    .hamburger { display: block; }

    .nav-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: #0b0b0b; flex-direction: column; justify-content: flex-start; padding-top: 100px; transition: 0.4s; z-index: 10000; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .nav-menu.active { right: 0; }
    .nav-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-link { font-size: 18px; padding: 20px; justify-content: space-between; width: 100%; }

    .dropdown-content { position: static; display: none; opacity: 1; visibility: visible; background: #111; width: 100%; border: none; }
    .dropdown-content a { padding: 15px 40px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.02); }

    .nav-item.show-drop .dropdown-content { display: block; }
    .nav-item.show-drop .fa-chevron-down { transform: rotate(180deg); }
}

.hero-section {
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('https://firebasestorage.googleapis.com/v0/b/stryqrides.firebasestorage.app/o/bg.webp?alt=media&token=3f736237-21f6-4cd6-899c-d0e6bc8834a9');
    background-size: cover;
    background-position: center 30%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10; 
}
.hero-section::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, 1) 100%); z-index: 5;}

.hero-section .main-title {
    color: #ffffff !important;
    z-index: 10;
    position: relative;
}

h1.main-title {
    font-size: 5vw;
    font-weight: 600;
    letter-spacing: 5px;
    margin: 0;
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}
.brand-desc {
    font-size: 1.1rem;
    color: #cccccc;
    margin-top: 10px;
    max-width: 800px;
}

h2 { margin: 40px 0 20px 0; letter-spacing: 3px; font-size: 18px; text-align: center; width: 90%; max-width: 1100px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 10px; }

.brand-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; max-width: 1300px; padding: 0 20px; }
.brand-link {  text-decoration: none;  color: inherit; align-items: center;}
.brand-card { background-color: #141414; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08); padding: 15px; display: flex; flex-direction: column; align-items: center; width: 180px; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; text-align: center; }
.brand-card .brand-link{text-decoration: none; color: inherit; display: block;}
.brand-card:hover { transform: scale(1.03); border-color: rgba(241, 194, 50, 0.4); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); }
.brand-card img { width: 140px; height: 140px; object-fit: contain; margin-bottom: 12px; border-radius: 15px; transition: transform 0.5s ease; }
.brand-card:hover img { transform: scale(1.1); }
.title { font-size: 13px; font-weight: bold; color: #fff; text-align: center; }
.subtext { font-size: 11px; color: #888; margin-top: 4px; text-align: center; align-items: center;}

#product-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; max-width: 1300px; padding: 0 20px; }
.model-link {  text-decoration: none;  color: inherit;  }
.model-card { background-color: #141414; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08); padding: 15px; display: flex; flex-direction: column; align-items: center; width: 180px; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.model-card:hover { transform: scale(1.03); border-color: rgba(241, 194, 50, 0.4); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); }
.model-card:hover img { transform: scale(1.1); }
.model-card img { width: 140px; height: 140px; object-fit: contain; margin-bottom: 12px; border-radius: 15px; transition: transform 0.5s ease; }
.model-name { font-size: 13px; font-weight: bold; color: #fff; text-align: center; }

.promo-code { border: 1px dashed #f1c232; color: #f1c232; padding: 10px 20px; font-size: 10px; font-weight: bold; text-transform: uppercase; border-radius: 5px; background: rgba(241, 194, 50, 0.05); cursor: pointer; transition: all 0.2s ease; position: relative; }
.promo-code:hover { background: rgba(241, 194, 50, 0.15); transform: scale(1.05); }
.promo-code:active { transform: scale(0.95); }

footer { margin-top: 80px; width: 100%; padding: 40px 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; align-items: center; gap: 20px; }

.social-links { display: flex; gap: 20px; align-items: center; }
.social-links a, .social-links a i, .social-links:visited { color: #ffffff !important; display: flex; gap: 20px; align-items: center; text-decoration: none; transition: 0.3s ease;}
.social-links a:hover i { color: #f1c232 !important; opacity: 1;  transform: translateY(-3px); }
.social-icon { width: 32px; height: 32px; transition: transform 0.2s; }
.social-icon:hover { transform: scale(1.1); }

.contact-info { color: #888; font-size: 13px; text-align: center; }

@media (max-width: 850px) {
    .brand-container { display: grid; flex-wrap: wrap; grid-template-columns: calc(50% - 6px) calc(50% - 6px) !important; justify-content: center; gap: 20px; width: 100%; max-width: 1300px; padding: 0 20px; }
}
@media (max-width: 850px) {
    #product-grid { display: grid; flex-wrap: wrap; grid-template-columns: calc(50% - 6px) calc(50% - 6px) !important; justify-content: center; gap: 20px; width: 100%; max-width: 1300px; padding: 0 20px; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.filter-bar { margin: 5px 0; margin-bottom: 5px 0; text-align: center; }
#voltage-select { background: #1a1a1a; color: #f1c232; border: 1px solid #f1c232; padding: 10px 20px; border-radius: 8px; font-size: 1rem; cursor: pointer; outline: none; }
#voltage-select:hover { background: #222; }

.clear-btn { background: transparent; color: #888; border: 1px solid #444; padding: 10px 15px; border-radius: 8px; margin-left: 10px; cursor: pointer; font-size: 13px; transition: 0.3s; }
.clear-btn:hover { color: #fff; border-color: #f1c232; }

.no-results {
    text-align: center;
    width: 100%;
    grid-column: 1 / -1; /* This ensures it spans the full width if inside a grid */
    padding: 40px 20px;
    font-size: 1.2rem;
    color: #888;
    font-family: 'Arial', sans-serif; /* Use your site's font */
}

/* Optional: Make it stand out more on mobile */
@media (max-width: 600px) {
    .no-results {
        font-size: 1rem;
        padding: 60px 10px;
    }
}