/* Container Flexbox */
.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0; /* Reduced padding */
}
/* Remove blue outline and focus effects */
button, a, input, textarea {
    outline: none;
    box-shadow: none; /* Remove any default focus shadow effect */
    -webkit-tap-highlight-color: transparent; /* Prevent blue highlight on mobile */
}

button:focus, a:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: none; /* Remove any focus shadow effect */
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: none;
    box-shadow: none; /* Ensures the border is removed on click in all browsers */
}

button:active, a:active, input:active, textarea:active {
    outline: none;
    box-shadow: none; /* Removes blue border on active state */
}





/* Header Styling */
.header {
    background-color: #1F1F1F;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #fff;
    margin: 0;
    margin-left: 10px;
    
}

.logo .highlight {
    color: #ff6600;
}

.logo img {
    width: 70px; /* Reduced logo size */
    height: auto;
    margin-right: 10px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 8px; /* Further reduced margin */
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 6px; /* Further reduced padding */
     
    display: block;
}

.main-nav ul li a:hover {
    color: #ff6600;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    margin-left: 10px; /* Reduced margin */
}

.search-bar input {
    padding: 4px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
}

.search-bar button {
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 5px 8px; /* Reduced padding */
    cursor: pointer;
}

/* Navigation Separator */
.nav-separator {
    border: none;
    border-top: 2px solid #000; /* Changed to black */
    margin: 0;
}

/* Secondary Navigation */
.secondary-nav {
    background-color: #1F1F1F;
    padding: 10px 0;
}

.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-nav ul li {
    margin: 5px 10px;
}

.secondary-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.secondary-nav ul li a.highlight-red {
    background-color: red;
    border-radius: 5px;
}

/* Add margin between secondary nav and main content */
.secondary-nav + .categories-container {
    margin-top: 20px; /* Adjust this value as needed */
}

.menubtn{
    display: none;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}


.product-grid {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 0px;
    text-decoration: none;
}

.product-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    text-decoration: none;
}

.product-item h3 {
    font-size: 18px;
    margin: 10px 0;
    
}


.search-barmobile{
    display: none;
}

.download-btn {
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px; /* Changed to modern square shape */
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    width: auto;
    height: auto;
}

.download-btn:hover {
    background-color: #e65500;
    transform: translateY(-3px) scale(1.05); /* Modern hover effect */
}

#vvdimb-image {
    width: 80%;
    height: 700px;
    max-height: 150px; /* Adjust max height as needed */
    object-fit: contain; /* Ensures the image maintains aspect ratio */
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow for a modern hover effect */
}

span {
    color: #ff6c00;
}

.mobile-menu{
    display: none;
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide main nav on mobile */
    }

    .mobile-menu-toggle {
        display: block; /* Show menu toggle button on mobile */
    }

    .mobile-menu {
        display: block; /* Ensure the mobile menu shows when active */
    }
    .menubtn{
        display: block;
    }

    .container {
        position: relative;
    }
    .desktop-nav,
    .secondary-nav {
        display: none; /* Hide desktop nav and secondary nav on mobile */
    }
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        
    }
}

@media (max-width: 768px) {

    @media (max-width: 768px) {
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100%;
            background-color: #1c1c1c;
            padding: 20px;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            margin-left: 10px;
        }
        .mobile-menu-toggle{
            margin-right: -10px;
            
        }        

        .search-barmobile {
            display: flex;
            align-items: center;
            max-width: 400px;
            margin: 20px 20px 15px 15px;
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
            border-radius: 25px; /* Rounded corners for the entire bar */
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .search-barmobile input {
            flex-grow: 1;
            padding: 12px 20px; /* Increased left padding for better text alignment */
            border: none;
            background-color: transparent;
            font-size: 16px;
            color: #333;
            outline: none;
        }
        
        .search-barmobile input::placeholder {
            color: #999;
            
        }
        
        .search-barmobile button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px 12px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 25px 25px 25px 25px; /* Rounded corners on the right side of the button */
            
        }
        
        .search-barmobile button:hover {
            background-color: #e55c00;
        }
        
        .search-barmobile button svg {
            width: 20px;
            height: 20px;
        }
        .mobile-menu.active {
            
            transform: translateX(0); /* Slide in */
        }

        .mobile-menu ul {
            list-style: none; /* Remove default bullet points */
            padding: 20px 0; /* Add vertical padding */
            margin: 0; /* Remove default margin */
        }
        .mobile-menu ul li {
            margin: 15px 0; /* Add margin between items */
        }

        .mobile-menu.active ul li a{
            color: #ff6600; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Font size */
    padding: 10px 15px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    display: block; /* Make the link fill the list item */
    transition: background-color 0.3s ease;
        }

        .mobile-menu ul li a:hover {
            background-color: rgba(255, 102, 0, 0.1); /* Light background on hover */
            color: #ffffff; /* Change text color on hover */
        }
        
        /* Active link state */
        .mobile-menu ul li a.active {
            font-weight: bold; /* Make active link bold */
            background-color: rgba(255, 102, 0, 0.3); /* Slightly darker background */
        }
    }
    
    .main-nav {
        display: none; /* Hide menu by default */
        position: fixed;
        right: -100%; /* Off-screen to the right */
        top: 0;
        height: 100%;
        width: 250px;
        background-color: #333;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        z-index: 999; /* Ensure it's above other content */
    }

    .main-nav.active {
        display: flex; /* Change from display: none to display: flex */
        right: 0; /* Slide into view when active */
    }


    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 0;
    }

    .mobile-menu ul li {
        margin: 10px 0;
    }

    .mobile-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 10px 15px;
    }

    .menu-button {
        display: block; /* Show menu button on mobile */
    }

    .secondary-nav {
        display: none; /* Hide secondary nav on mobile */
    }
    #vlogo img{
        margin-left: -30px;
        margin-bottom: -30px;
    }
    .logo h1{

        font-size: 28px;
        margin-left: -10px;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
    }
    .product-grid{
        margin-left: 20px;
    }
    .footer{
        margin-left: -370px;
        margin-top: 40px;
    }
#xhorsekit{
    width: 250px;
}

#vvdi{
    width: 250px;
}
#vvdi2{
    width: 250px;
}
#bmw{
    width: 250px;
}

#mlb{
    
    width: 250px;
}

#mulprog{
    width: 250px;
}

#prog{
    width: 250px;
}
  } 
  .footer {
    background-color: #0a1a2a;
    color: #ffffff;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-top: 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: green;
    font-size: 24px;
    border-radius: 50%;
    padding: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff6600;
    transform: translateY(-2px);
}

.footer-column {
    flex: 0 1 auto;
    min-width: 200px;
    margin: 10px 0;
    margin-right: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-column h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-column p {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.footer-column i {
    color: #ff6600;
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        text-align: center;
        margin-left: 370px;
    }

    .footer-column {
        margin-right: 0;
        text-align: center;
        margin-left: 370px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-left: 370px;
    }
}


.barmobile {
    display: flex;
    align-items: center;
    
}

.search-barmobile {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
}

.search-barmobile input {
    flex: 1;
    padding: 8px;
    font-size: 16px;
    margin-left: 10px;

}
.search-barmobile .search button {
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Same as width for a round shape */
    padding: 0; /* Remove padding for perfect circle */
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6600; /* Optional: Add background color */
    color: white; /* Optional: Text/icon color */
    border: none; /* Remove border for cleaner look */
}


@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
      opacity: 1;
    }

    .barmobile button {
        margin-right: 5px;
        font-weight: bold;
    }

    .search-barmobile input {
        padding: 6px;
        font-size: 14px;
    }

    .search-barmobile .search button {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-barmobile input {
        padding: 5px;
        font-size: 14px;
    }

    .search-barmobile .search button {
        padding: 5px 8px;
        font-size: 12px;
        margin-left: -25px;
    }
}


  /* Ensure the arrows are displayed on smaller screens as well */
  @media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
      opacity: 1;
    }

    .barmobile button{
        margin-right: 5px;
        font-weight: bold;
    }
  }
    
@media (min-width: 769px) {
    .search-barmobile{
     display: none;
    }
 }