#arrow-icon {
  margin-left: 8px; /* Space between username and arrow */
  color: rgb(228, 228, 228); /* Change the icon color to white */
  transition: transform 0.3s ease; /* Smooth transition for the rotation */
}
@media (max-width: 767px) {
  #arrow-icon {
    margin-right: 8px; /* Add margin-right on mobile */
  }
}
.footer {
    background-color: #202124; /* Dark background for the footer */
    color: white; /* White text color */
    padding: 20px; /* Add padding around the content */
}

.footer-content {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out the left and right sides */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.footer-left {
    width: 30%; /* Width for the left side */
    margin-bottom: 20px; /* Add margin at the bottom for spacing */
}

.footer-left h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: white;

}

.footer-logo {
        width: 100px; /* Adjust size */
    height: 100px; /* Adjust size */
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(0, 0, 0);
    margin-top: 50px;
    margin-left: 10px;
}



.footer-logo img {
  width: 100px; /* Adjust size */
    height: 100px; /* Adjust size */
        border-radius: 50%;

}



.footer__content-bottom {
    border-top: solid 1px rgb(67 61 61);
    padding-top: 2rem
}
/* Style for the copyright content */
.footer__content-bottom .copyright__content a {
    color: white; /* Default text color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Hover effect for the link */
.footer__content-bottom .copyright__content a:hover {
    color: orange; /* Color when hovered */
}

/* Existing styles... */
@media only screen and (max-width: 768px) {
    .footer-logo {
        
        margin-top: -2px; /* Adjust top margin for mobile */
    }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .footer {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .footer-content {
        flex-direction: column; /* Stack elements vertically on mobile */
        align-items: center; /* Center align items */
    }

    .footer-left {
        width: 100%; /* Full width for mobile screens */
        margin-bottom: 15px; /* Adjust bottom margin for spacing */
    }

    .footer-logo img {
        width: 100px; /* Adjust logo size for mobile */
        height: 100px; /* Maintain aspect ratio */
        margin-left: 0; /* Remove left margin */
    }

    .footer__content-bottom {
        padding-top: 1rem; /* Adjust top padding */
        text-align: center; /* Center align text for mobile */
    }
}
@media (max-width: 767px) {
    .scrollToTop.show {
        bottom: 100px;
    }
}
/* Additional adjustments for very small screens */
@media (max-width: 480px) {
  .footer {
    padding-left: 15px;
    padding-right: 15px;
    /* OR just shorthand: */
    /* padding: 0 15px; */
    
    /* Do NOT include text-align */
  }
}


    .footer-left {
        margin-bottom: 10px; /* Further adjust bottom margin */
    }

    .footer-logo img {
        width: 100px; /* Further adjust logo size */
        height: 100px; /* Maintain aspect ratio */
/*        margin-top: 10px;  Further adjust top margin 
*/    }

    .footer__content-bottom {
        padding-top: 0.5rem; /* Further adjust top padding */
    }
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

/* For mobile screen only */
@media (max-width: 768px) {
  .vehicle-menu {
    display: flex;
    align-items: center;
    justify-content: space-between; /* or 'flex-start' if you want tight layout */
    gap: 8px;
    margin-bottom: 10px;
  }
  .vehicle-menu {
    margin-right: 19px !important;
    margin-left: 20px !important;
  }
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .shop-now-buttuns {
    padding: 10px 16px;
    background-color: #FF5722;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
  }
}


.footer__content-bottom-wrapper {
    display: flex; /* Use Flexbox for layout */
    align-items: center; /* Align items vertically */
    padding: 0 22px; /* Add padding to the sides */
    position: relative; /* Position relative for potential additional styling */
}

.footer__copyright {
    margin-right: auto; /* Pushes the copyright section to the left */
}

.payment {
    display: flex;
    align-items: center; /* Center image vertically */
}

/* Optional: Adjustments for spacing */
.footer__content-bottom-wrapper::after {
    content: "";
    flex: 1; /* Takes up remaining space */
}

.payment {
    margin-left: auto; /* Pushes the payment section to the right */
}

/* Default (mobile-first) styles - Apply 0 margin-left on mobile screens */
.payment img {
    margin-left: 0;
}

/* For tablet and desktop screens (min-width: 768px) and larger - Apply 340px margin-left */
@media (min-width: 768px) {
    .payment img {
        margin-left: 50px;
    }
}
@media (min-width: 1024px) {
    .payment img {
        margin-left: 340px;
    }
}

.footer-left p {
    margin: 5px 0; /* Add vertical spacing */
        color: rgb(192, 192, 192); /* Link color */

}

.footer-left a {
    color: rgb(192, 192, 192); /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.footer-left p:hover {
	color: white;
}

.footer-right {
    width: 65%; /* Width for the right side */
    display: flex; /* Use flexbox for columns */
    justify-content: space-between; /* Space out the columns */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.footer-column {
    width: 30%; /* Width for the column */
    margin-bottom: 20px; /* Margin at the bottom */
}

.footer-column h3 {
    margin-top: 0; /* Remove top margin */
    margin-bottom: 10px; /* Margin below the heading */
    font-size: 20px; /* Font size for the heading */
    color: white; /* Text color */
}

.footer-column ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.footer-column ul li {
    margin-bottom: 10px; /* Add spacing between list items */
}
.terms-condition{
	margin-top: 15px;
}
.cancel-refund{
	margin-top: 15px;
}
.footer-column a {
    color: rgb(192, 192, 192); /* Link color */
    text-decoration: none; /* Remove underline from links */
        font-size: 15px;

}





.footer-column a:hover {
	color: white;
}
.footer-column1 a:hover {
	color: white;
}

.footer-column1 {
   /* width: 30%;  Width for the column */
    margin-bottom: 20px; /* Margin at the bottom */
}

/* Existing styles... */
@media (max-width: 768px) {
    .payment {
        margin-left: auto;  /* Center content */
        margin-right: auto; /* Center content */
        max-width: 90%;     /* Maximum width for mobile screens */
        width: 100%;        /* Ensures full responsiveness */
        display: flex;      /* Enables flex layout */
        justify-content: center; /* Centers content inside */
    }
}

@media (max-width: 1024px) {
 
}
@media (max-width: 1024px) {
    .user-text {
        margin-right: 30px !important;  /* Correct: Remove right margin on mobile screens */
    }
}
@media (max-width: 1024px) {
    .user-text {
        margin-right: 30px !important;  /* Correct: Remove right margin on mobile screens */
    }
}
html, body {
		    padding: 0;       /* Remove extra padding */
		    margin: 0;        /* Remove unwanted margins */
		    width: 100%;      /* Ensure full width */
		    overflow-x: hidden; /* Prevent horizontal scroll */
		    box-sizing: border-box; /* Ensures padding doesn't affect total width */
		    
		}
/* Mobile-specific styles */
@media (max-width: 767px) {
    .footer__content-bottom-wrapper {
        flex-direction: column; /* Stack content vertically on mobile */
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .footer__copyright {
        margin-right: 0; /* Remove margin for mobile view */
        text-align: center; /* Center align text */
    }

    .payment {
        margin-left: 0; /* Remove left margin */
        justify-content: center; /* Center content horizontally */
    }

    .payment img {
        margin-left: 20px; /* Remove margin between images */
        max-width: 230px; /* Limit image width on mobile */
        margin-top: 10px;
    }

    .footer-left p {
        font-size: 14px; /* Adjust font size for better readability */
    }

    .footer-right {
        width: 100%; /* Full width for mobile screens */
        flex-direction: column; /* Stack columns vertically */
    }

    .footer-column {
        width: 90%; /* Full width for columns */
        margin-bottom: 15px; /* Adjust margin for spacing */
    }

    .footer-column h3 {
        font-size: 18px; /* Adjust font size for headings */
    }

    .footer-column a {
        font-size: 14px; /* Adjust font size for links */
    }

    .footer-column ul li {
        margin-bottom: -8px; /* Adjust spacing between list items */
                padding-left: 20px; /* Add space for the arrow on mobile */

    }
.footer-column ul li::before {
        content: '➤'; /* Arrow or icon before the list item */
        position: absolute;
        left: 10px; /* Align arrow to the left */
        color: rgb(253, 82, 0); /* Color of the arrow */
        font-size: 12px; /* Adjust size of the arrow */
        margin-top: 10px;
    }
    /* Remove Arrow for Social Media Links */
.footer-column .social-media-links li::before {
    content: none; /* Removes the arrow */
}

/* Ensure Remaining Footer Shows on Mobile */
@media (max-width: 768px) {
    .footer-column {
        display: block; /* Ensures footer content remains visible */
    }

    .footer-column ul {
        padding-left: 0; /* Removes unnecessary padding */
    }

    .footer-column .social-media-links li {
        list-style: none; /* Ensures no default bullet points */
    }
}

 
@media (max-width: 767px) {
    .footer-columns h3, .footer-columns h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}
.footer-columns h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: white;
}
.footer-columns {
    width: 30%;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .footer-columns {
        width: 90%;
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .social-media-links {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}
@media (max-width: 767px) {
    .social-media-links {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        max-width: 100%;
    }
}
.social-media-links {
    display: grid
;
    grid-template-columns: minmax(100px, auto) minmax(150px, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;

}

@media (max-width: 767px) {
    .footer-columns ul li {
        margin-bottom: -8px;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .footer-columns ul li {
        margin-bottom: -8px;
        padding-left: 20px;
    }
}
@media (max-width: 767px) {
    .footer-columns ul li {
        margin-bottom: -8px;
        padding-left: 20px;
    }
}
    .terms-condition, .cancel-refund {
        margin-top: 10px; /* Adjust top margin */
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
    .footer__content-bottom-wrapper {
        padding: 0 5px; /* Further reduce padding */
    }

    .footer-left p {
        font-size: 12px; /* Further adjust font size for small screens */
    }

    .footer-column h3 {
        font-size: 16px; /* Further adjust font size for headings */
    }

    .footer-column a {
        font-size: 12px; /* Further adjust font size for links */
    }
}


.footer-column1 h3 {
    margin-top: 0; /* Remove top margin */
    margin-bottom: 12px; /* Margin below the heading */
    font-size: 20px; /* Font size for the heading */
    color: white; /* Text color */
}
.footer-column h4 {
    margin-top: 0; /* Remove top margin */
    margin-bottom: 12px; /* Margin below the heading */
    font-size: 20px; /* Font size for the heading */
    color: white; /* Text color */
    margin-left: 15px;
}

.footer-column1 ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.footer-column1 ul li {
    margin-bottom: 20px; /* Add spacing between list items */
}

.footer-column1 a {
    color: rgb(192, 192, 192); /* Link color */
    text-decoration: none; /* Remove underline from links */
    font-size: 15px;
}

.social-media-links {
  display: grid; /* Use grid for layout */
  grid-template-columns: minmax(100px, auto) minmax(150px, 1fr);  
  gap: 30px 10px; /* 30px row gap, 10px column gap */
  list-style: none; /* Remove list bullets */
  padding: 0; /* Remove default padding */
  margin: 0 auto; /* Center the grid container */
  max-width: 500px; /* Max width for the grid container */
  margin-top: 40px;
}



.social-icon {
    border-radius: 10px; /* Adjust the radius as needed */
}

.list-social__item img {
  width: 50px; /* Increase the width of the images */
  height: 50px; /* Set height for consistent size */
  object-fit: contain; /* Ensure the image fits well within the space */
  transition: transform 0.3s; /* Smooth hover effect */
}
.list-social__item1 img {
  width: 50px; /* Increase the width of the images */
  height: 50px; /* Set height for consistent size */
  object-fit: contain; /* Ensure the image fits well within the space */
  transition: transform 0.3s; /* Smooth hover effect */
  background-color: white;
}
.list-social__item2 img {
  width: 50px; /* Increase the width of the images */
  height: 50px; /* Set height for consistent size */
  object-fit: contain; /* Ensure the image fits well within the space */
  transition: transform 0.3s; /* Smooth hover effect */
  background-color: rgb(0, 122, 244);
}
.link.list-social__link:hover img {
  transform: scale(1.1); /* Slightly increase size on hover */
}

.visually-hidden {
    position: absolute; /* Hide visually but keep accessible */
    width: 1px; /* Minimize space taken */
    height: 1px; /* Minimize space taken */
    margin: -1px; /* Remove margin */
    padding: 0; /* Remove padding */
    overflow: hidden; /* Hide overflow */
    clip: rect(0, 0, 0, 0); /* Clip the content */
    border: 0; /* Remove border */
}
/* Set the background color of the utility-bar to blue */
.utility-bar {
    background-color: #FF5722; /* Blue color */
        position: fixed;
     width: 100%;
     z-index: 1000; /* Ensure it stays above other content */

}

/* Set the background color of the sticky-header to black and make it fixed */
.sticky-header {
    background-color: rgb(32, 33, 36); /* Black color */
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 1000; /* Ensure it stays above other content */
}
/* Existing styles... */

/* Mobile-specific styles */
@media (max-width: 767px) {
    .footer-column1 h3,
    .footer-column h4 {
        font-size: 18px; /* Adjust font size for headings */
        margin-bottom: 10px; /* Adjust margin below the heading */
    }

    .footer-column1 ul li {
        margin-bottom: 10px; /* Reduce spacing between list items */
                padding-left: 20px; /* Add space for the arrow on mobile */

    }
.footer-column1 ul li::before {
        content: '➤'; /* Arrow or icon before the list item */
        position: absolute;
        left: 10px; /* Align arrow to the left */
        color: rgb(253, 82, 0); /* Color of the arrow */
        font-size: 12px; /* Adjust size of the arrow */
    }
    .footer-column1 a {
        font-size: 14px; /* Adjust font size for links */
    }

    .social-media-links {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Adjust grid layout */
        max-width: 100%; /* Full width on mobile screens */
margin-top: 10px;
    }

    .social-icon {
        width: 40px; /* Adjust size of social icons */
        height: 40px; /* Adjust size of social icons */
    }

    .list-social__item img,
    .list-social__item1 img,
    .list-social__item2 img {
        width: 40px; /* Adjust width of images */
        height: 40px; /* Adjust height of images */
    }

    .utility-bar {
        padding: 10px; /* Adjust padding for the utility bar */
    }

    .sticky-header {
        padding: 10px; /* Adjust padding for the sticky header */
        top: 40px; /* Fix to top of screen */
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
    .footer-column1 h3,
    .footer-column h4 {
        font-size: 16px; /* Further adjust font size for very small screens */
        margin-left: -1px;
    }

    .footer-column1 ul li {
        margin-bottom: 8px; /* Further reduce spacing between list items */
    }

    .footer-column1 a {
        font-size: 12px; /* Further adjust font size for links */
    }

    .social-media-links {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); /* Adjust grid layout */
    }

    .social-icon {
        width: 30px; /* Adjust size of social icons */
        height: 30px; /* Adjust size of social icons */
    }

    .list-social__item img,
    .list-social__item1 img,
    .list-social__item2 img {
        width: 30px; /* Adjust width of images */
        height: 30px; /* Adjust height of images */
    }

    .utility-bar,
    .sticky-header {
        padding: 0px; /* Further adjust padding for very small screens */
    }
}


.list-social__item12 img {
    width: 55px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
    background-color: rgb(255, 0, 0);
}
@media (max-width: 480px) {
    .list-social__item12 img {
        width: 30px;
        height: 30px;
    }
}
.header__headings {
    margin-top: 40px;
    font-size: 2rem;
    font-weight: bold;
}

/* Link styling inside the header */
.header__heading-links {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
}

/* Style for the logo container */
.header__headings-logo-wrappers {
    width: 100%;
    display: inline-block;
    transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);display: inline-block; /* Make the logo wrapper inline with text */
    margin-bottom: 10px; /* Space below the logo */
}
.vs-product-wrapper {
			background-image: url('assets/img/log-in-bg.png');
			
		}
/* Styling for the logo image */
.round-images {
   border-radius: 100%;
    width: 80px;
    object-fit: cover;
    border: 2px solid black;
}

.heading-policy {
  font-family: Arial, sans-serif;
  
}

.main-page-title {
  font-size: 60px; /* Font size for the main heading */
  font-weight: bold;
  margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
}
.main-page-title::after {
    content: "";
    display: block;
    width: 100px;
    border-bottom: 5px solid #FF5722;
    position: absolute;
    left: 0;
    margin-left: 20px;
}



.rte li {
  font-size: 20px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left; /* Align text within paragraphs and list items to the left */
}
.rte p{
	font-size: 18px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
  
} 
.gradientd{
	background-color: white;
}
.heading-policy p{
	font-size: 18px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 15px;
  
}


.heading-policy{
		margin-top: -90px;
		}
		
.orange-link {
  color: rgb(255, 90, 11); /* Sets the color to orange */
  text-decoration: none; /* Removes underline, optional */
}
.email-heading{
	  color: #FF5722; /* Sets the color to orange */
	  font-size: 20px;

}
.email-heading:hover{
	color: #FF5722;
	
}
.location-heading{
	margin-left: 5px;
	margin-right: 5px;
}
.email-heading1:hover{
	color: #FF5722;
	
}
.email-heading1{
	  color: rgb(0, 0, 0); /* Sets the color to orange */
	  font-size: 20px;
}
.email-heading12{
	  color: rgb(0, 0, 0); /* Sets the color to orange */
	  margin-top: 10px;
}
.orange-link:hover {
  text-decoration: underline; /* Adds underline on hover, optional */
  background-color: rgb(192, 192, 192);
}

.rte1 h3 {
  font-size: 20px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
  margin-left: 20px;

}

.rte1 h4 {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: black;
}

.rte1 li {
  font-size: 20px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left; /* Align text within paragraphs and list items to the left */
}
.rte1 p{
	font-size: 20px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
 
  
} 
.rte2 p{
	font-size: 20px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
  margin-left: 20px;
}
.rte2 li{
	font-size: 18px; /* Font size for paragraphs and list items */
  line-height: 1.6;
  margin-bottom: 16px;
  margin-left: 30px;
}
.heading-term{
	margin-left: 20px;
}

.center-container {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
  min-height: 10vh; /* Ensures vertical centering */
}

.center-form {
  max-width: 600px; /* Controls form width */
  width: 100%; 
  margin: 0 auto; /* Centers form horizontally */
}
.field__input {
  background-color: white; /* Default background color */
  color: black; /* Default text color */
  padding: 10px; /* Padding for better appearance */
  width: 100%; /* Full width */
  box-sizing: border-box; /* Ensure padding and border are included in width */
  font-size: 16px; /* Adjust font size */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for color changes */
}

/* Style when the input is focused */
.field__input:focus {
  outline: none; /* Remove default outline */
  background-color: #f0f0f0; /* Light gray background when focused */
  color: black; /* Text remains black */
  border-color: #007bff; /* Blue border on focus */
}
/* Existing styles... */
@media (max-width: 767px) {
    .footer-left h3 {
		margin-top: 10px;
        font-size: 24px; /* Adjust font size for mobile */
        margin-bottom: 5px; /* Adjust bottom margin for mobile */
    }
}
/* Mobile-specific styles */
@media (max-width: 767px) {
    


    .main-page-title {
        font-size: 24px; /* Adjust font size for mobile */
        margin-bottom: 15px;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 120px;
    }

    .main-page-title::after {
        width: 60px; /* Adjust underline width for mobile */
        border-bottom: 3px solid #FF5722;
                margin-left: 10px;
    }



    .rte li {
        font-size: 16px; /* Adjust font size for list items */
        margin-bottom: 12px; /* Reduce margin for better fit */
    }

    .rte p {
        font-size: 16px; /* Adjust font size for paragraphs */
    }

    .heading-policy p {
        font-size: 16px; /* Adjust font size for heading paragraphs */
        margin-bottom: 10px;
    }

    .left-margin {
        margin-right: 10px;
        width: 100%; /* Ensure full width on mobile */
    }

    .orange-link {
        font-size: 14px; /* Adjust font size for links */
    }

    .email-heading,
    .email-heading1 {
        font-size: 18px; /* Adjust font size for email headings */
    }

    .email-heading12 {
        font-size: 18px; /* Adjust font size for email heading */
    }

    .rte1 h3 {
        font-size: 18px; /* Adjust font size for section headings */
        margin-bottom: 12px;
    }

    .rte1 li {
        font-size: 16px; /* Adjust font size for list items */
    }

    .rte1 p {
        font-size: 16px; /* Adjust font size for paragraphs */
    }

    .rte2 p {
        font-size: 16px; /* Adjust font size for paragraphs */
        margin-left: 10px;
    }

    .rte2 li {
        font-size: 16px; /* Adjust font size for list items */
        margin-left: 20px;
    }

    .heading-term {
        font-size: 18px; /* Adjust font size for terms heading */
        margin-left: 10px;
    }

   
    .center-container {
        min-height: auto; /* Adjust minimum height for mobile */
        padding: 10px; /* Add padding for better appearance */
    }

    .center-form {
        max-width: 100%; /* Ensure form is full width */
        padding: 10px; /* Add padding for better appearance */
    }

    .field__input {
        font-size: 14px; /* Adjust font size for inputs */
    }
}

/* Style for valid input */
.field__input:valid {
  color: black; /* Ensure text color is black when valid */
}





.search-container1 {
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
}
 
       
     
/* Search results dropdown */
#search-results {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1001;
  width: 100%;
  max-height: 480px;
  overflow-y: auto;
  border-radius: 8px;
}

/* Dropdown items */
.dropdown-item {
  padding: 10px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

/* Clear search button */
.clear-search {
  position: absolute;
  right: 140px;
/*  top: 16px;
*/  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: black;
}

.clear-search:hover {
  color: gray;
}
@media (max-width: 768px) {
    .clear-search {
        right: 100px;  /* Move closer to the input field */
    }
}

/* Additional adjustment for very small screens */
@media (max-width: 480px) {
    .clear-search {
        right: 100px;   /* Further adjustment for narrow screens */
  
    }
}
/* Backdrop to dim the rest of the page */
.backdrop {
  position: fixed;
  top: 230px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .backdrop {
        top: 300px; /* Adjust top position for mobile */
        /* You might also want to adjust height if necessary */
    }
}

@media (max-width: 480px) {
    .backdrop {
        top: 300px; /* Further adjust top position for smaller screens */
    }
}

/* Disable page scroll when backdrop is visible */
body.no-scroll {
  overflow: hidden;
}

.search-form {
  display: flex; /* Align input and button horizontally */
  width: 85%; /* Full width for form */
  margin-left: 100px;
}

.search-form input {
  flex: 1; /* Allow input to take up remaining space */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px; /* Rounded corners on the left */
  font-size: 16px;
}

.search-form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-left: none; /* Remove left border to merge with input */
  border-radius: 0 4px 4px 0; /* Rounded corners on the right */
  background-color: #f4f4f4;
  cursor: pointer;
  font-size: 16px;
}

.search-form button i {
  font-size: 25px;
}
.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 60%;
  text-align: center;
  transform: translateY(-50%);
 margin-right: 30px;
}

.overlay .closebtn {
  position: absolute;
  top: 150px;
  right: 300px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type="text"] {
  padding: 15px;
  font-size: 17px;
  border: none;
  width: 80%;
  background: white;
  margin-bottom: 10px;
}

.overlay button {
  padding: 15px;
  background: rgb(253, 82, 0);
  font-size: 17px;
  border: none;
  cursor: pointer;
  height: 60px;
  color: white;
}

.overlay button:hover {
  background: #bbb;
  color: rgb(0, 0, 0);
}


/*.contact-box-sections {
    padding: 40px 0;
}*/

	.rows {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y)* -1);
  margin-left: 20px;
  margin-right: 20px;
}
.col-1214 {
    margin-top: 10px; /* Margin for spacing above the button */
            margin-left: 550px;

}

.btn-animation {
  background: #FF5722;
    
    color: rgb(255, 255, 255); /* Button text color */
    border: none; /* Removes border */
    padding: 10px 20px; /* Padding inside the button */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Transition for hover effect */
font-size: 16px;
}

.btn-animation:hover {
    background-color: rgb(0, 0, 0); /* Button hover color */
    color: white;
}
.left-sidebar-boxs {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.right-sidebar-boxs{
	 background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.contact-title h3, .heading-namescantact .title h2 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    font-size: 30px;
}

.contact-detail {
    margin-top: 40px;
    display: grid; /* Enables grid layout */
    grid-template-columns: repeat(2, 1fr); /* Creates two equal-width columns */
    
}

.contact-detail-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #FF5722;
    
}

.contact-detail-title h4 {
    margin-bottom: 5px;
    font-weight: bold;
}

.custom-form .form-label {
    font-weight: bold;
}

.custom-form input, .custom-form textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
}

.custom-form .btn-animation {
    background-color: #FF5722;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-form .btn-animation:hover {
    background-color: #FF5722;
}

.footer-block__details-content a {
            text-decoration: none; /* Remove underline */
        }
        .footer-block__details-content a:hover {
            color: rgb(255, 255, 255); /* Color when hovering */
        }
       /* Existing styles... */

/* Mobile-specific styles */
@media (max-width: 767px) {
    /* Style for valid input */
    .field__input:valid {
        color: black; /* Ensure text color is black when valid */
    }

    @media (max-width: 480px) {
    .search-container1 {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 10px !important;
    }
}
    .search-box {
        flex-direction: column; /* Stack input and button vertically */
    }

    #search-results {
/*        max-height: 300px;  Adjust height for smaller screens 
*/        width: 100%; /* Full width */
        margin-left: 0; /* Remove left margin */
    }

    .search-form {
        width: 100%; /* Full width */
        margin-left: 0; /* Remove left margin */
    }

    .search-form input {
        border-radius: 4px; /* Remove rounded corners on the left */
        margin-bottom: 10px; /* Add margin below input */
    }

    .search-form button {
        border-radius: 4px; /* Remove rounded corners on the right */
        width: 100%; /* Full width button */
    }

    .search-form button i {
        font-size: 20px; /* Adjust icon size */
    }

    .overlay {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .overlay-content {
        width: 90%; /* Full width for mobile */
        margin-right: 0; /* Remove right margin */
        padding: 20px; /* Add padding */
    }

    .overlay .closebtn {
        top: 10px;
        right: 10px;
        font-size: 40px; /* Adjust font size */
    }

    .overlay input[type="text"] {
        width: 100%; /* Full width */
        font-size: 16px; /* Adjust font size */
    }

    .overlay button {
        width: 100%; /* Full width */
        height: auto; /* Adjust height */
    }

    .contact-box-sections {
        padding: 20px 0; /* Reduce padding */
    }

    .rows {
        margin-left: 10px; /* Adjust margin for mobile */
        margin-right: 10px;
    }

    .col-1214 {
        margin-left: 0; /* Remove left margin */
    }

    .btn-animation {
        font-size: 14px; /* Adjust font size */
        padding: 8px 16px; /* Adjust padding */
    }

    .left-sidebar-boxs,
    .right-sidebar-boxs {
        padding: 15px; /* Adjust padding */
        margin-bottom: 15px; /* Adjust margin */
    }

    .contact-title h3,
    .heading-namescantact .title h2 {
        font-size: 24px; /* Adjust font size */
    }

    .contact-detail {
        grid-template-columns: 1fr; /* Stack columns vertically */
    }

  /*  .contact-detail-box {
        flex-direction: column;  Stack icon and text vertically 
    }*/

    .contact-icon {
        font-size: 20px; /* Adjust font size */
        margin-bottom: 10px; /* Add margin below icon */
    }

    .contact-detail-title h4 {
        font-size: 18px; /* Adjust font size */
    }

    .custom-form input,
    .custom-form textarea {
        font-size: 16px; /* Adjust font size */
    }

    .custom-form .btn-animation {
        font-size: 14px; /* Adjust font size */
        padding: 8px 16px; /* Adjust padding */
    }

    .footer-block__details-content a {
        font-size: 14px; /* Adjust font size */
    }
}
.button-style {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 250px; /* Fixed width for the button */
}

@media (max-width: 768px) {
    .button-style {
       /* width: ;  Full width on mobile */
        padding: 12px 15px; /* Adjust padding for better touch target */
        font-size: 14px; /* Smaller font size for mobile */
        
    }
}

@media (max-width: 480px) {
    .button-style {
        font-size: 12px; /* Further decrease font size for smaller screens */
        padding: 10px 12px; /* Adjust padding for small devices */
        border: 1px solid lightgray;
    }
}
.button-style:hover {
    background-color: rgb(227, 227, 227); /* Optional hover effect */
}

.vehicle-menu {
 
    margin-right: 16px;
    margin-left: 0;
   
}

.add-vehicle {
    flex: 2 1 auto; /* Flex properties for responsiveness */
    font-size: 12px; /* Set font size */
    max-width: 164px; /* Limit the width of the name */
    max-height: 30px; /* Limit the height to fit two lines */
    display: -webkit-box; /* Enable line clamping */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Show ellipsis for long text */
    text-align: left; /* Align text to the left */
    line-height: normal; /* Normal line height for readable text */
    letter-spacing: normal; /* Default letter spacing */
    visibility: visible; /* Ensure element is visible */
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical; /* Vertical box orientation for clamping */
    	margin-left: 10px;
font-family: HelveticaNeue-Medium, sans-serif;
color: #2b2121;
}

.button-content {
    display: flex; /* Use flexbox for horizontal layout */
    align-items: center; /* Center items vertically */
    padding: 0; /* Reset padding to avoid conflicts */
}

.icon-s {
    margin-right: 8px; /* Space between icon and text */
}


.arrow {
    margin-left: auto; /* Push arrow to the right */
}
.user-text {
    display: block; /* Make the user text a block element */
    text-align: center; /* Center the text */
    
        margin-top: -2px;
    font-weight: bold;
    color: white;
    margin-left: -10px
    }
 .usericons{
	margin-top: 10px;
	margin-left: 20px;
 }
.user-text span{
	margin-top: 5px;
	
}
.cart-div .cart-icon + span{
	color: white;
	margin-top: 5px;
	
	
}


.usericon{
	margin-top: 10px;
}
@media (max-width: 768px) { /* Adjust width as needed */
    .usericons {
        display: none !important; /* Force hiding */
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .user-text,.usericon {
        font-size: 14px; /* Adjust font size for mobile */
        margin-top: 15px; /* Reduce margin on mobile */
    }
.shopbutton{
	display: none;
}
    .cart-div .cart-icon {
        width: 30px; /* Adjust icon size */
    }

    .cart-heading {
        font-size: 14px; /* Adjust font size for the cart heading */
        display: none;
    }

    .cart-heading .cart-text {
        margin-top: 5px; /* Adjust spacing */
    }
}
.delete-item-btn {
    border-radius: 100px;
    background-color: rgb(255, 255, 255);
    width: 25px;
}


/* Cart Section */
.cart-section {
    margin-left: 35px;
    margin-right: 20px;
}

.cart-table .table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
.cart-table table tbody tr td.product-detail .product {
	
    display: -webkit-box;
    display: -ms-flexbox;
/*    display: flex;
*/    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
.cart-table .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.cart-table .table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

/*.product-box-contain {
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}*/


.product-box-contain .product-detail {
/*    display: flex;
*/    align-items: center;
}

.product-box-contain .product-detail .product-image {
    margin-right: 20px;
}

.product-box-contain .product-detail .product-image img {
    width: 80px;
    height: auto;
    object-fit: cover;
}

.product-box-contain .product-detail ul {
    list-style: none;
    padding: 0;
}

.product-box-contain .product-detail ul li.name a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}
.product-box-contain .product-detail ul li.name {
    max-width: 400px; /* Normal behavior for desktop */
    white-space: normal; /* Text wraps naturally */
}

@media (max-width: 768px) {
    .product-box-contain .product-detail ul li.name {
        max-width: 100%; /* Full width for mobile */
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden; /* Hide overflow */
        text-overflow: ellipsis; /* Add '...' if text overflows */
    }
}

.cart-table td{
	padding-top: 30px;
	padding-bottom: 30px;
}
 .mrp-price {
        font-size: 14px;        /* Set font size for MRP */
    }
.col-xxl-9{
	background-color: #f8f8f8;
	margin-top: 30px;
	border-radius: 6px;

}
 .return-shopping {
        margin: 10px 0; /* Add margin to separate from other elements */
    }

   

    .marker {
        margin-right: 8px;       /* Add some space between marker and text */
        font-size: 20px; 
    }
    .selling-price {
        font-size: 18px;        /* Set font size for selling price */
        color: red;             /* Selling price in red */
        font-weight: bold;      /* Optional: make selling price bold */
    }
.product-box-contain .product-detail ul li.name a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block; /* Make link a block element for better control */
    line-height: 1.2; /* Line height */
}


.product-box-contain .product-detail ul li.text-content {
    color: #666;
    font-size: 14px;
}

.product-box-contain .product-detail ul li.text-content .text-title {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.price h4, .subtotal h4, .quantity h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.price h6, .subtotal h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.subtotal h5.theme-color {
    color: #FF5722;
}

.quantity-price .cart_qty .input-group {
    display: flex;
    align-items: center;
}

.quantity-price .cart_qty .input-group button {
    background-color: #FF5722;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.quantity-price .cart_qty .input-group .qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
}

.save-remove h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.save-remove .remove {
    color: #FF5722;
    font-size: 20px;
    cursor: pointer;
}

.summery-box {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
}

.summery-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.summery-contain {
    margin-top: 20px;
}

.summery-contain .coupon-cart h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.summery-contain .coupon-box {
    display: flex;
}

.summery-contain .coupon-box input {
    width: calc(100% - 100px);
    padding: 10px;
    border: 1px solid #ddd;
}

.summery-contain .coupon-box button {
    padding: 10px;
    background-color: #FF5722;
    color: #fff;
    border: none;
    cursor: pointer;
}

.summery-contain ul {
    padding: 0;
    list-style: none;
}

.summery-contain ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summery-contain ul li h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.summery-contain ul li .price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.button-group ul {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.button-group ul li {
    margin-bottom: 10px;
}

.summery-total {
    margin-top: 20px; /* Space above the summary total */
    border-top: 1px solid #ccc; /* Solid top border for the whole container */
    padding-top: 10px; /* Space between the border and the content */
}

.summery-total li.list-total {
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space between items */
    font-size: 20px; /* Font size */
    font-weight: 700; /* Bold text */
    padding: 10px 0; /* Padding for top and bottom */
    border-top: 1px solid gainsboro;
}

.summery-total li.list-total .theme-color {
    color: #FF5722; /* Theme color for specific text */
    margin-right: -20px;
}


.button-group ul li .btn {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
}

.button-group ul li .btn-apply {
    background-color: #FF5722;
    color: #fff;
    cursor: pointer;
}

.btn-light {
    background-color: #f8f8f8;
    color: #333;
}
  .return-shopping {
        margin-top: 20px; /* Space above the button */
    }

    .btn.btn-lights {
        background-color: rgb(0, 0, 0); /* Yellow background for the button */
        color: rgb(255, 255, 255); /* Black text color */
       border-radius: 4px;
    }
.cart-title {
    font-size: 40px; /* Font size */
    font-weight: bold; /* Bold text */
    color: #333; /* Dark gray color for the text */
    text-transform: uppercase; /* Uppercase letters */
    margin-top: 20px;
    margin-bottom: -20px;
    margin-right: 20px;
    margin-left: 20px;
}

    .btn.btn-lights:hover {
        background-color: #FF5722; /* Change background color on hover */
    }

    .btn.btn-light i {
        margin-right: 8px; /* Space between icon and text */
    }
    .summery-box .summery-total li:last-child {
    border-top: 1px solid #ececec;
    padding: calc(12px +(16 - 12)*((100vw - 320px) /(1920 - 320))) 0;
}
/*.btn-animation {
    background-color: #ff6f61;
    color: #fff;
}*/
button.quantity-plus6.qty-btn:hover,
button.quantity-minus6.qty-btn:hover {
    background-color: #FF5722;
        color: #fff;

}

button.quantity-plus6.qty-btn {
    height: 35px;
    line-height: 35px;
    width: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-radius: 100px;
}
button.quantity-minus6.qty-btn {
    height: 35px;
    line-height: 35px;
    width: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-radius: 100px;
}
/* Checkout Section */
.checkout-section-2 {
    padding: 40px 0; /* Vertical padding for the section */
}

/* Container Styles */
.container-fluid-lg {
    max-width: 1400px; /* Max width for the container */
    margin: 0 auto; /* Center the container */
    
}

/* Column Styles */
.left-sidebar-checkout {
    background-color: #ffffff; /* White background for the left sidebar */
/*    border-radius: 10px;  Rounded corners 
*//*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  Subtle shadow 
*/    padding: 20px; /* Inner padding */
}
.btn-checkout{
	font-size: 16px;
}
.right-side-summery-box {
    background-color: #ffffff; /* White background for the summary box */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Inner padding */
    margin-top: 20px;
}

/* Button Styles */
.sep-btn .btn {
    background-color: #28a745; /* Green color for the button */
    border-radius: 5px; /* Slightly rounded button */
    padding: 10px 15px; /* Padding for button */
    transition: background-color 0.3s; /* Smooth background transition */
}

.sep-btn .btn:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Card Header Styles */
.card-header {
/*    background-color: #f1f1f1;  Light grey background for header 
*//*    padding: 15px;  Inner padding 
*/    border-bottom: 1px solid #ddd; /* Bottom border for separation */
}
.card-header h4{
	margin-top: 10px;
	font-size: 24px;
	}

.text-successs{
	color: red;
}
 label.required::after {
        content: " *";
        color: red;
    }
/* Form Styles */
.form-group {
    margin-bottom: 15px; /* Space between form elements */
}

.form-label {
    font-weight: 600; /* Bold labels */
}

/* Textarea */
textarea.form-control {
    resize: vertical; /* Allow vertical resizing only */
}

/* Summary Styles */
.summery-header {
    margin-bottom: 20px; /* Space below the header */
}

.summery-contain {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
}

.summery-contain li {
    display: flex; /* Flexbox for items */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Center items vertically */
    margin-bottom: 15px; /* Space between items */
}

.summery-total {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    border-top: 1px solid #ddd; /* Top border for totals */
    margin-top: 20px; /* Space above total section */
}

.summery-total li {
    display: flex; /* Flexbox for total items */
    justify-content: space-between; /* Space between items */
    font-size: 18px; /* Font size for total items */
    font-weight: 600; /* Bold text */
    margin-left: 20px;
    margin-right: 20px;
}

.summery-total li h4.price {
    color: #FF5722; /* Highlight price color */
}

/* Total List Item Style */
.total-title {
    font-weight: 700; /* Bold total text */
    margin-left: -20px;
}
#new-address-btn {
    background-color: rgb(244, 80, 0);; /* Blue background */
    color: white; /* White text color */
    border: none; /* Removes the default border */
    padding: 8px 16px; /* Adds padding inside the button */
    border-radius: 5px; /* Rounded corners */
    font-size: 1.5rem; /* Standard font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition effect */
    font-weight: 600;
    margin-left: 50px;
    }
#save_btn{
	    background-color: rgb(244, 80, 0);; /* Blue background */
 color: white; /* White text color */
    border: none; /* Removes the default border */
    padding: 8px 16px; /* Adds padding inside the button */
    border-radius: 5px; /* Rounded corners */
    font-size: 1.5rem; /* Standard font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition effect */
    font-weight: 600;
}

#save_btn:hover {
    background-color: black; /* Darker blue when hovered */
}
/* Change background color when hovering over the button */
#new-address-btn:hover {
    background-color: black; /* Darker blue when hovered */
}

/* Button active state (when clicked) */
#new-address-btn:active {
    background-color: black; /* Even darker blue when button is clicked */
}

/* Place Order Button */
.btn.theme-bg-color {
    background-color: #007bff; /* Blue color for place order button */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition */
}

.btn.theme-bg-color:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
/* Summary Contain Styles */
.summery-contain {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
}

/* Summary Item Styles */
.summery-contain li {
    display: flex; /* Flexbox for items */
    align-items: center; /* Center items vertically */
    margin-bottom: 10px; /* Reduce space between items */
}

/* Image Size */
.summery-contain li img.checkout-image {
    width: 50px; /* Adjust width to make images smaller */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between image and text */
}

/* Text Styles */
.summery-contain li h4 {
    font-size: 14px; /* Smaller font size for item names */
    margin: 0; /* Remove default margin */
}
.priced {
    font-size: 1.5rem; /* Adjust the font size as needed */
    color: #FF5722; /* Text color */
    font-weight: bold;
    font-family: 'Poppins';
}

/* Price Styles */
.summery-contain li h4.price {
    font-size: 14px; /* Same font size as item names for consistency */
    color: #FF5722; /* Price color */
}

/* Quantity Span Style */
.summery-contain li span {
    font-size: 12px; /* Smaller font size for quantity */
    color: #777; /* Lighter color for quantity */
}
@media (max-width: 480px) {
    .user-text {
        font-size: 16px;
        white-space: nowrap;
        color: white;
        font-weight: bold;
        margin-top: 1px;
        margin-right: -60px;
    }
}
@media (max-width: 768px) {
    .cart-icons {
        margin-top: 29px;
        margin-left: 30px;
    }
}
@media (max-width: 767px) {
    .cart-heading {
        top: 75px;
        }
        }/* Show the sidebar when it is active */
.sidemenu-wrappers.show {
    display: block;
    transform: translateX(0);
}
.filter-icon {
    width: 20px; /* Set the desired width */
    height: 20px; /* Set the desired height */
    margin-left: -10px; /* Space between the text and the icon */
        margin-top: -2px;
}
.filter-text {
    margin-right: 20px; /* Space between the text and the icon */
}
/* Filter button for mobile */
.filter-btn {
    display: none;
    position: absolute;
    
    right: 30px;
    background-color: white;
    color: black;
   
    font-size: 16px;
    
    border: 1px solid black;
    border-radius: 3px;
    padding: 2px;
   
    margin-top: 4px;
    flex-shrink: 0;
    height: 40px;
    width: 115px;
    margin-right: 10px;
    font-weight: bold;
}
.filter-btn:hover {
    background-color: orangered; /* Darker shade on hover */
    color: white;
}

.filter-btn i {
    margin-right: 5px;
}
@media screen and (max-width: 768px) {
    .filter-btn {
      
        font-size: 14px; /* Adjust font size for smaller screens */
        right: 15px; /* Adjust position */
    
    }
}
/* Only show the filter button and sidebar for mobile screens */
@media (max-width: 768px) {
    .filter-btn {
        display: block;
    }
    .st-breadcrumbs{
		margin-top: -5px;
	}
}
/* Close Button Style */
/* Style for Filter & Sort Title */
.filter-widget_title.mb-2 {
    background-color: #000; /* Black background */
    color: #fff;            /* White text color */
    padding: 30px 10px;     /* Padding around the title */
    text-align: center;     /* Center the title text */
    text-transform: uppercase; /* Transform text to uppercase */
    font-size: 22px; /* Font size override */
    font-weight: bold;      /* Make the title bold */
}

/* Close Button Styling */
.sidemenu-wrappers .closeButtons {
    position: absolute;
    top: 20px;
    background-color: #000; /* Black background */
    color: #fff;            /* White text color */
    border: none;           /* Remove border */
    width: 50px;
    height: 50px;
    border-radius: 50%;     /* Make the button circular */
    line-height: 50px;      /* Vertically center the icon */
    text-align: center;     /* Center the icon horizontally */
    font-size: 24px;        /* Icon size */
    transition: all 0.4s ease; /* Smooth transition for effects */
    z-index: 2;             /* Ensure it's on top */
}

/* Rotate the close icon (Optional) */
.sidemenu-wrappers .closeButtons i {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

/* Optional effect on hover (rotate icon) */
.sidemenu-wrappers .closeButtons:hover i {
    transform: rotate(180deg);
}

/* Styling for Apply Filter Button */


/* Icon inside the close button */
.closeButton i {
    font-size: 16px;           /* Font size of the icon */
}
/* General list styles */
.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-item, .price-item {
    padding: 10px 0;
}

/* Header for brand and price sections */
.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}
.dropdown-symbols {
    font-size: 18px;
    color: #333;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}
.sidebar-areas {
    flex: 0 0 300px;
    max-width: 150px;
    padding: 20px;
    overflow-y: auto;
    margin-left: -10px;
    margin-top: -35px;
}
/* Dropdown styles (initially hidden) */
.dropdown-wrapper {
    padding-left: 10px;
    margin-top: 10px;
}
.gtbs {
    background: orangered;
    color: #fff !important;
    border: 1px solid rgb(0, 0, 0);
    padding: 10px 25px;
    border-radius: 3px;
    width: 100%;
    font-size: 16px;
}
.menu-catgory {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    color: white;
}

/* Icons */
.icons {
    width: 24px; /* Adjust size as necessary */
    height: 24px; /* Adjust size as necessary */
    transition: opacity 0.3s ease;
}

/* Hide close icon initially */
.icon-close {
    display: none;
}

/* Drawer Styles */
.menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px; /* Width of the drawer */
    height: 100%; /* Full height */
    background: white; /* Background color */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5); /* Shadow effect */
    transform: translateX(-100%); /* Initially hidden */
    transition: transform 0.3s ease; /* Smooth transition */
    z-index: 999; /* Ensure it's above other content */
}

/* Show the drawer */
menu-drawer[open] .menu-drawer {
    transform: translateX(0); /* Slide in */
}

/* Inner Container Styles */
.menu-drawer__inner-container {
    padding: 20px; /* Inner padding */
}

/* Navigation Container Styles */
.menu-drawer__navigation-container {
    overflow-y: auto; /* Allow scrolling if content is too tall */
    height: calc(100% - 40px); /* Adjust based on other elements */
}

/* Navigation Styles */
.menu-drawer__navigation {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

/* Menu List Styles */
.menu-drawer__menu {
    padding: 0; /* Remove default padding */
}

.menu-drawer__menu li {
    padding: 10px 0; /* Spacing between items */
    font-size: 16px; /* Font size for items */
    border-bottom: 1px solid #eaeaea; /* Divider */
}

.menu-drawer__menu li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-drawer {
        width: 100%; /* Full width on smaller screens */
    }
}
.checkboxes-container {
    margin-top: 10px;
}

.checkbox-container {
    margin-bottom: 5px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 8px;
}
/* General Styles for Sidebar */
.sidemenu-wrapperss {
    position: fixed; /* Fixes the sidebar to the left side of the viewport */
    top: 0; /* Align to the top of the viewport */
    left: 0; /* Align to the left of the viewport */
    width: 300px; /* Set a fixed width for the sidebar */
    height: 100%; /* Full height */
    background-color: #ffffff; /* Background color for the sidebar */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease; /* Smooth transition for opening and closing */
    transform: translateX(-100%); /* Initially hidden off-screen */
    z-index: 1000; /* Ensure it's on top of other elements */
}

/* Show the sidebar when active */
.sidemenu-wrapperss.active {
    transform: translateX(0); /* Slide in */
}

/* Sidebar content styles */
.sidemenu-contents {
    padding: 20px; /* Padding inside the sidebar */
    overflow-y: auto; /* Scroll if content overflows */
    height: 100%; /* Full height */
}

/* Close button styles */
.closeButtonss {
    background: none; /* No background */
    border: none; /* Remove border */
    cursor: pointer; /* Pointer cursor on hover */
    margin-bottom: 20px; /* Space below the button */
    font-size: 24px; /* Font size for the icon */
}

/* Filter widget title styles */
.filter-widget_titles {
    font-size: 1.5rem; /* Title font size */
    font-weight: bold; /* Bold font */
    color: #333; /* Text color */
    margin-bottom: 15px; /* Space below the title */
}

.recent-post:last-child {
    margin-bottom: 0;
    margin-top: 10px;
}

        .slider-filter-bar {
            display: none; /* initially hide the sidebar */
        }
         .slider-filter-bar {
         
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
        }
        .slider-filter-bar.show {
          
    display: block;
    transform: translateX(0);
}
      .filter-widget_titles.mb-2 {
    background-color: #000; /* Black background */
    color: #fff;            /* White text color */
    padding: 30px 10px;     /* Padding around the title */
    text-align: center;     /* Center the title text */
    text-transform: uppercase; /* Transform text to uppercase */
    font-size: 22px; /* Font size override */
    font-weight: bold;      /* Make the title bold */
    margin-top: -10px;
}


/* Rotate the close icon (Optional) */
.slider-filter-bar .closeButtons i {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}


  .close-button.rotate {
            transform: rotate(180deg); /* Rotate the button when the class is added */
        }
         
        .close-buttons {
            color: white;
            border: none;
            cursor: pointer;
             position: absolute;
    top: 10px;
    background-color: #000;
  
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    transition: all 0.4s ease;
    z-index: 2;
        }
        .button {
            padding: 10px 15px;
            background-color: #4CAF50; /* Button color */
            color: white;
            border: none;
            cursor: pointer;
        }

.sidemenu-wrappers.open {
    transform: translateX(0); /* Slide in when open */
}


/* Scrollable container for brands or price items */
.checkboxes-containers {
    max-height: 150px; /* Set a max height */
   margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        overflow-x: auto; /* Allow horizontal scrolling if content overflows */
        white-space: nowrap; /* Prevent text wrapping */
        text-overflow: unset; /* Remove ellipsis if scrolling is enabled */
        box-sizing: border-box; /* Ensure padding is included in width */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .usericon img {
           margin-top: 20px;
    width: 50px;
    margin-left: 40px;
    }

    .usericon  span{
        font-size: 12px; /* Adjust text size for mobile */
    }
}
.cart-heading .cart-text {
    font-size: 16px;
    color: white;
    text-align: center;
    margin-left: 5px;
    font-weight: bold;
}
/* Media query for mobile screens */
@media (max-width: 768px) {
    .cart-icons {
margin-top: 25px;   
margin-left: 30px;
 }
@media (max-width: 768px) {
    .cart-icons {
margin-top: 20px;   
margin-left: 30px;
 }
}
    .user-text {
        font-size: 18px; /* Adjust text size for mobile */
            white-space: nowrap; /* Prevent line breaks */

    }
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-left: 200px;
}
@media (max-width: 480px) {
    .user-icons {
       margin-top: 10px; 
       width: 300%;
       display: none;
    }

    .user-text {
               font-size: 16px;
        white-space: nowrap;
        color: white;
        font-weight: bold;
        margin-top: 1px;
        margin-right: -60px;

    }
}

/* Mobile responsive */
@media (max-width: 575px) {
    .sidemenu-wrappers {
        width: 100%;
    }
}
.category-list{
	            margin-top: 20px;

}
.subcategory-list::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

.subcategory-list::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 10px; /* Rounded corners */
}

.subcategory-list::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar color */
    border-radius: 10px; /* Rounded corners */
}

.subcategory-list::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
}
.close-buttons:hover i {
    transform: rotate(190deg); /* Rotate when hovered */
}
.subcategory-list {
    list-style-type: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    .subcatgory-heading {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: -20px;
        overflow-x: auto; /* Allow horizontal scrolling if content overflows */
/*        white-space: nowrap;  Prevent text wrapping 
*/        text-overflow: unset; /* Remove ellipsis if scrolling is enabled */
        box-sizing: border-box; /* Ensure padding is included in width */
    }

  
   
}
/* Mobile styles */
@media only screen and (max-width: 768px) {
    .breadcrumb-container {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 10px;
        margin-bottom: 5px;
        height: 40px; /* Adjust this value based on your design */
        overflow-x: auto; /* Enable horizontal scrolling */
        white-space: nowrap; /* Prevent wrapping */
        box-sizing: border-box; /* Ensure padding is included in width */
    }

   
}
/* Styling for subcategory items */
.subcategory-list li {
    padding: 10px; /* Padding for each subcategory */
    cursor: pointer; /* Pointer cursor on hover */
}

.subcategory-list li:hover {
    background-color: #f0f0f0; /* Highlight on hover */
}
  .subcategory-item {
            margin-bottom: 10px;
        }
 .subcategory-header {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
    margin-right: 15px;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: black;
}
        .subcategory-link {
    color: black; /* Text color */
    text-decoration: none; /* Remove underline */
}

.subcategory-link:hover {
    color: white; /* Change color on hover (for example, blue) */
    cursor: pointer; /* Change cursor to pointer */
    background-color: orangered;
}

        .dropdown-wrapper {
           /*   display: none;Hide dropdown by default */
            padding-left: 10px; /* Indent subcategory items */
        }
        ul {
    list-style-type: none;
}
       .dropdown-wrapper ul {
        list-style-type: none; /* Remove bullet points */
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
    }
        .dropdown-wrapper li {
            padding: 5px 0;
            cursor: pointer;
        }
        .toggle-icon {
            transition: transform 0.3s; /* Smooth rotation */
        }
        .rotate {
            transform: rotate(90deg); /* Rotate icon when active */
        }
        
        .mobile-menu ul li span {
    color: white;
}
/* General Mobile Menu Styles */
.mobile-menu {
    background-color: #FF5722;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu li {
    text-align: center;
    padding: 10px;
}

.mobile-menu a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
}

.mobile-menu a:hover {
    color: #007bff;
}

/* Icon Styling */
.icli {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.mobile-menu li.active a {
    color: #007bff; /* Highlight active link */
}
/* Styling for Cart Icon */
#cartbars {
    position: relative;
    display: inline-block;
    text-align: center;
}

.icli {
    font-size: 20px;  /* Adjust icon size */
    color: #333;
}

@media (max-width: 768px) { /* For tablets and smaller screens */
#cartCountd {
    position: absolute;
    font-size: 15px;
    right: 133px;
    top: -10px;
    border-radius: 70%;
    /* border: 2px solid rgb(0, 0, 255); */
    padding: 0px;
    /* border: solid; */
    border-width: 1px;
    min-width: 20px;
    /* height: 20px; */
    /* border-radius: 50%; */
    /* background: rgb(255, 0, 0); */
    color: rgb(255, 255, 255);
    padding: 0;
    position: absolute;
    top: 30%;
    left: 1%;
    font-weight: 700;
    text-align: center;
    /* font-size: 12px; */
    line-height: 20px;
}
}
#cartCountd {
    /* Ensure it's always centered relative to the icon */
    transform: translate(50%, -50%);
}

/* Add spacing between items */
.mobile-menu li:not(.mobile-category) {
    margin-right: 10px;
}

@media (min-width: 768px) {
    /* Hide the mobile menu for larger screens */
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    /* Show the mobile menu on smaller screens */
    .mobile-menu.d-md-none {
        display: block;
    }
}
 .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 100px;
        z-index: 1;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    }

    .dropdown-content a {
        color: black;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
        font-size: 14px;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    #dropdown-btn {
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .toggle-icon {
        display: inline-block;
    }
/* Optional: Adjustments for icons or text alignment */
.mobile-menu i {
    display: block;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    #cartCountd {
        position: absolute;
        font-size: 15px;
        right: 146px;
        top: -10px;
        border-radius: 70%;
        padding: 0;
        border-width: 1px;
        min-width: 20px;
        color: rgb(255, 255, 255);
        font-weight: 700;
        text-align: center;
        line-height: 20px;
        top: 30%;
        left: 0%;
    }
}

@media (max-width: 480px) {
  #cartCountd {
        position: absolute;
        font-size: 15px;
        right: 130px;
        top: -10px;
        border-radius: 70%;
        padding: 0;
        border-width: 1px;
        min-width: 20px;
        color: rgb(255, 255, 255);
        font-weight: 700;
        text-align: center;
        line-height: 20px;
        top: 30%;
        left: 0%;
    }
}

/* Mobile responsive */
@media (max-width: 575px) {
		    #cartCountd {
		        position: absolute;
		        font-size: 15px;
		        border-radius: 70%;
		        padding: 0;
		        border-width: 1px;
		        min-width: 20px;
		        color: rgb(255, 255, 255);
		        font-weight: 700;
		        text-align: center;
		        line-height: 20px;
		        top: 30%;
		        left: 0%;
		    }
		
		    /* Position when 'User' text is shown */
		    #cartCountd.user-position {
		        right: 138px;
		    }
		
		    /* Position when 'You' text is shown */
		    #cartCountd.you-position {
		        right: 133px;
		    }
		}


/* For extra-large screens (≥1400px), center the content */
@media (min-width: 1400px) {

}
@media screen and (min-width: 750px) {
   
}
@media screen and (min-width: 750px) {
  
}
.col-1214 {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center; /* If it contains text */
    max-width: 1200px; /* Adjust max-width based on your layout */
    width: 100%; /* Ensures responsiveness */
}
@media (max-width: 1024px) {
    .col-1214 {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .col-1214 {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .col-1214 {
        max-width: 90%; /* Keeps it centered and responsive */
    }
}




.page-width--narrow {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px; /* Ensures it doesn’t exceed 1400px on large screens */
    width: 100%; /* Takes full width of the container */
    line-height: 1.6;
    padding: 0 20px; /* Prevents content from touching screen edges */
}

/* Adjustments for tablets and smaller screens */
@media (max-width: 1024px) {
    .page-width--narrow {
        max-width: 980px; /* Adjusts for tablets */
            padding: 0 30px; /* Prevents content from touching screen edges */

    }
}

@media (max-width: 990px) {
    .page-width--narrow {
        max-width: 900px;
            padding: 0 30px; /* Prevents content from touching screen edges */

    }
}

@media (max-width: 550px) {
    .page-width--narrow {
        max-width: 500px;
            padding: 0 30px; /* Prevents content from touching screen edges */

    }
}

@media (max-width: 440px) {
    .page-width--narrow {
        max-width: 95%; /* Uses percentage for very small screens */
        padding: 0 10px; /* Less padding for small screens */
    }
}


.rte3 ol {
    padding-left: 20px;
}

.rte3 li {
    margin-bottom: 15px;
}

.rte3 p {
    font-size: 20px;
    color: #333;
}
.main-page-title1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px; /* Ensures it doesn’t exceed 1400px on large screens */
    width: 100%; /* Takes full width of the container */
    text-align: left; /* Centers the title */
    font-size: 36px; /* Default font size */
    font-weight: bold;
    line-height: 1.4;
    padding: 1px 40px; /* Adds spacing around the text */
    color: #333; /* Adjust color as needed */
}
.shopbutton a {
  z-index: 10;
  position: relative;
  background-color: #FF5722;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  width: 150px;
  display: inline-block;
  text-align: center;
}
.shopbutton a:hover {
  background-color: black;
  color: white;
}
/* Adjustments for tablets */
@media (max-width: 1024px) {
    .main-page-title1 {
        font-size: 32px;
    }
}

@media (max-width: 990px) {
    .main-page-title1 {
        font-size: 30px;
    }
}

/* Adjustments for smaller screens */
@media (max-width: 550px) {
    .main-page-title1 {
        font-size: 26px;
    }
}

@media (max-width: 440px) {
    .main-page-title1 {
        font-size: 22px;
        padding: 10px;
    }
    
}
.header{
	background-color: black !important;
}
