 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Lato';
  src: url('/fonts/lato/lato-regular.woff2') format('woff2'),
       url('/fonts/lato/lato-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: white;
  color: #333333;
}

ul.nav-menu {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 0 !important;
}

h2{
	color: #2b2927;
}

.header {
  background: white;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
  border-bottom: 1px solid #eeeeee;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.2s ease-in-out;
}

.header.hide {
  top: -100px; /* Adjust depending on header height */
}



.nav-container {
  max-width: 100%;
  margin: 0 40px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 70px;
  width: auto;
}

.main-nav {
  flex-grow: 1;
  display: flex;
  margin-left: 9%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #000;
}

.language-container {
  min-width: 100px;
  display: flex;
  justify-content: flex-end;
}

.language-selector {
  padding: 5px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  color: #333;
  cursor: pointer;
}

.hero-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/*.container {
  max-width: 100%;
  margin: 0 10%;
  padding: 0 20px;
}*/

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 80px;
}

.partner-logo {
    flex: 1 1 150px;
    max-width: 250px;
    /* height: 230px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 250px;
    width: auto;
    object-fit: contain;
}
.carousel-item {
    overflow: hidden;
}

.company-info {
    max-width: 100%;
    margin: 0 10%;
    text-align: left;
}

.company-title {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.company-description {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.financing-section {
  text-align: center;
}

.financing-title {
  font-size: 32px;
  font-weight: 300;
  color: #333;
}

.financing-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.financing-logos img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.scroll-top:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}
html {
  scroll-behavior: smooth;
}

/* ---------------- RESPONSIVE ------------------ */
@media (max-width: 1024px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .partners-grid {
    flex-direction: column;
    gap: 30px;
  }

  .company-title {
    font-size: 20px;
  }

  .financing-logos {
    flex-direction: column;
    gap: 40px;
  }

  .financing-logos img {
    max-height: 200px;
  }
}

.header {
  /* background: #f9f5ef; */
  padding: 5px 15px;
  border-bottom: 1px solid #eee;
}

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



.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

#hero-slider {
  width: 100%;
  height: 100vh; /* Make it full viewport height */
  overflow: hidden;
  position: relative;
}


#hero-slider .slick-slide {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the banner fits like the example */
}

.slide-btn {
  position: absolute;
  bottom: 32%; /* Position button above bottom */
  background: linear-gradient(to right, #f7941e, #ff6600);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.slide-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.slick-dots li button:before {
  color: #fff;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* Transparent overlay */
  z-index: 1000;
}

/* Ensure dots are visible */
.slick-dots li button:before {
  color: white !important;
  font-size: 14px;
  opacity: 1;
}
/* Prevent image distortion */
.banner-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slide-image-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slick-hero {
  position: relative;
  overflow: hidden;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100vh;
  text-align: center;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-below-logo {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slide-btn-below {
  background: linear-gradient(to right, #f7941e, #ff6600);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.slide-btn-below:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.carousel-caption {
  bottom: 30% !important;
  right: 16% !important;

}
.centered-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 2rem;
	max-width: 90%;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
	/* color: red !important; */
    background-size: 100% 100%;
    width: 2rem;   /* Increased size */
    height: 2{
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}rem;
    border-radius: 50%; /* Make it circular */
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
  .button-below-logo {
    margin-top: -60px;
  }

  .slide-btn-below {
    font-size: 14px;
    padding: 10px 20px;
  }

  #hero-slider, #hero-slider .slick-slide {
    height: 50vh; /* Adjust for smaller screens */
  }
      .slide-btn {
        font-size: 10px;
        padding: 10px 20px;
        bottom: 32%;
    }
	
	.partner-logo {
    flex: 1 1 150px;
    max-width: 300px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.financing-section {
    padding: 0px 0;
}
	
	
	.logo img {
  max-height: 70px;
  display: block;
}
  .language-container {
    display: none;
  }


.nav-container {
    margin: 0 12px;
}

financing-section.container {
    max-width: 100%;
    margin: 0 5%;
    padding: 0 20px;
}

  .hamburger {
    display: block;
  }

  .nav-container {
    justify-content: center; /* centers logo */
    position: relative;
  }

  .hamburger {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    background: white;
    width: 100%;
    margin-top: 10px;
    border-top: 1px solid #eee;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
  }
  /* .container {
  
    padding: 0 0px; 
} */
}
button.btn.btn-primary {
    background: #8e24aa;
    border-color: #8e24aa;
    color: #fff;
}

button.btn.btn-primary:hover {
    background: #6a1b9a;
    border-color: #6a1b9a;
    color: #fff;
}
.btn-edit {
    background-color: #3f51b5;
    border-color: #3f51b5;
    color: #fff;
}
.btn-edit:hover {
    background-color: #303f9f;
    border-color: #303f9f;
	color: #fff;
}

.btn-delete {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}
.btn-delete:hover {
    background-color: #b02a37;
    border-color: #b02a37;
	color: #fff;
}

.btn {
    border-radius: 0.375rem;
    padding: 0.35rem 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-add-logo {
    background-color: #43a047; /* Elegant green */
    border-color: #43a047;
    color: #fff;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out;
}

.btn-add-logo:hover {
    background-color: #388e3c;
    border-color: #388e3c;
	color: #fff;
}
.btn-add-section {
    background-color: #1e88e5; /* Elegant blue */
    border-color: #1e88e5;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out;
}

.btn-add-section:hover {
    background-color: #1565c0;
    border-color: #1565c0;
	color: #fff;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
    box-shadow: none;
}
.logo-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	height: 140px;
}
.partner-logo {
	width: 100%;
	/* height: 150px; */
	object-fit: contain;
}

/* Contact Page */
.contact-section {
max-width: 1400px;
margin: 100px auto;
padding: 0 20px;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 50px;
}

.customer-section {
max-width: 1400px;
margin: 100px auto;
padding: 0 20px;
/* display: flex; */
flex-wrap: wrap;
align-items: center;
gap: 50px;
}
/* .contact-section img {
max-width: 650px;
height: auto;
flex-shrink: 0;
} */
.contact-text {
flex: 1;
min-width: 250px;
	 text-align: left;
}
.contact-text h1 {
font-size: 28px;
color: #333;
margin-bottom: 20px;
}
.contact-text p {
color: #555;
line-height: 1.6;
font-size: 16px;
}
.contact-info {
margin-top: 20px;
}
.contact-info p {
margin: 10px 0;
font-size: 16px;
}
/* Responsive */
@media (max-width: 768px) {
.contact-section {
	flex-direction: column;
	text-align: center;
}
.contact-section img {
	max-width: 290px;
}
.contact-text h1 {
	font-size: 24px;
}
}
#mobile-nav .nav-menu li a {
    text-decoration: none;
    color: #7b7c7e;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
}
a.nav-link {
	font-size: 11px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #7B7C7E !important;
}
.lbpro {
    margin-bottom: 10rem !important;
}
.download-section {
  padding: 40px 20px;
}
.download-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align:center;
}
.download-list {
  list-style-type: none;
  padding: 0;
}
.download-list li {
margin-bottom: 20px;
}
.download-list a {
  color: #303030;
  transition: color 0.2s ease-in-out;
  text-decoration: underline;
}
.download-list a:hover {
  /*color: #F06C00;*/
  color: #514b4b;
  text-decoration: underline;
}
.contact-info p {
  margin-bottom: 10px;
}
.logo-image {
  max-width: 100%;
  height: auto;
}
.align-items-center {
align-items: center !important;
/*margin-top:80px;*/
}
.download-section {
max-width: 1400px;
margin: 100px auto;
padding: 0 20px;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 50px;
}
a.btn.btn-edit {
    color: #fff;
}

.partners-section {
   /*  background-color: #f8f9fa; */
    border-radius: 10px;
}

.partner-logo {
    transition: transform 0.3s ease;
    padding: 15px;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    transition: all 0.3s ease;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logo {
        max-width: 50% !important;
    }
    
    .partner-logo img {
        height: auto !important;
    }
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .partner-logo {
        max-width: 100% !important;
        margin-bottom: 15px;
    }
}

.arrow-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*div#logoCarousel {
    margin: 0 40px;
    padding: 0 30px;
}*/

/*0508css*/

div#heroSlider {
    background: #ffff;
}
.carousel-control-next, .carousel-control-prev {
    width: 35%;
}
.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff; /* Optional: uniform background */
    border-radius: 8px; /* Optional: rounded edges */
    overflow: hidden;
}

.partner-logo img.logo-img {
    object-fit: contain;
    padding: 5px; /* Optional: some internal spacing */
}
section{
	background-color: #fff;
}

h2 {
    font-size: 28px !important;
}
hr {
    margin: 0rem 0 !important;
}

.more-info-btn {
    z-index: 15;
    background: linear-gradient(rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%);
    font-family: Roboto, sans-serif;
    text-align: center;
    line-height: 50px;
    font-weight: 500;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    padding: 0px 40px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
}
.more-info-btn:hover {
    opacity: 0.85;
}
/* Mobile (max-width: 576px) */

@media (max-width: 576px) {
  #heroSlider {
    margin-top: 24%;
  }
}

/* Tablets (577px to 991px) */
@media (min-width: 577px) and (max-width: 1024px) {
  #heroSlider {
    margin-top: 5%;
  }
}

.logo-row {
    flex-wrap: wrap !important;
}
@media (max-width: 767px) {
    .logo-row {
        justify-content: flex-start !important;
        padding: 0 10px;
    }
	.hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .main-nav {
        display: none; /* Hide nav by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff; /* Match nav background */
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block; /* Show nav when active */
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .language-container {
        margin: 1rem 0 0;
    }
	.more-info-btn{
		font-size : 15px;
		padding : 0px 15px;
	}
}


/* Add this CSS to your style.min.css file or in a <style> tag */

//* Updated CSS for compact mobile header */

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 1.2rem; /* Slightly smaller */
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-shrink: 0; /* Prevent shrinking */
    width: 40px; /* Fixed width */
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Compact header for mobile */
    .nav-container {
        padding: 0.5rem 1rem; /* Even more compact on mobile */
        min-height: 50px; /* Smaller header height */
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: block;
        order: 1; /* First item */
    }
    
    /* Center logo */
    .logo {
        order: 2; /* Second item */
        text-align: center;
    }
    
    .logo img {
        max-height: 35px; /* Even smaller logo on mobile */
    }
    
    /* Language selector on the right */
    .language-container {
        order: 3; /* Third item */
    }
    
    .language-selector {
        font-size: 0.8rem; /* Smaller text */
        padding: 0.2rem 0.4rem; /* Smaller padding */
        min-width: 70px; /* Smaller minimum width */
    }
    
    /* Hide main navigation by default on mobile */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        order: 4; /* Last item when shown */
    }
    
    /* Show navigation when active */
    .main-nav.active {
        display: block;
    }
    
    /* Stack menu items vertically on mobile */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.75rem 0; /* Slightly smaller padding */
        font-size: 0.9rem; /* Smaller font */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.4rem 0.75rem; /* Even more compact */
        min-height: 45px; /* Smallest header height */
    }
    
    .hamburger {
        font-size: 1.1rem;
        width: 35px;
    }
    
    .logo img {
        max-height: 60px; /* Smallest logo */
    }
    
    .language-selector {
        font-size: 0.75rem;
        min-width: 60px;
        padding: 0.15rem 0.3rem;
    }
}

p{
	color: #7B7B7B;
	font-size: 14px;
}
.contact-text p {
    color: #797979;
	font-size: 14px;
}
a{
	color: #797979;
	font-size: 14px;
}

/* Wrapper for Orders menu */
.custom-orders-dropdown {
    position: relative;
}

/* First-level submenu */
.custom-orders-dropdown > .custom-orders-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #ccc;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.custom-orders-dropdown:hover > .custom-orders-submenu {
    display: block;
}

/* Nested submenu items */
.custom-orders-submenu-item {
    position: relative;
}

.custom-orders-submenu-item > .custom-orders-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 220px;
    border: 1px solid #ccc;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.custom-orders-submenu-item:hover > .custom-orders-submenu {
    display: block;
}

/* Links */
.custom-orders-submenu a,
.custom-orders-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
}

.custom-orders-submenu a:hover,
.custom-orders-link:hover {
    background-color: #f7f7f7;
}
.padd-0{
	padding:0px;
}
.title-set {
	font-size : 18px !important;
}
label.form-label.text-set {
    font-size: 15px;
}
.text-set {
    font-size: 14px;
}
.btn-update-details {
    background: #fff;
	border: 1px solid #00B8A9;
    color: #00B8A9;
}

.btn-update-details:hover {
    background: #00B8A9;
	border: 1px solid #00B8A9;
    color: #fff;
}

.order-btn {
    padding: 10px 30px;
    border: 1px solid #F39912;
    cursor: pointer !important;
    transition: background 0.3s ease;
	color: #F39912;
    border-color: #F39912;
    font-size: 12px;
    height: 38px;
    font-style: normal;
    font-weight: 600;
    background-color: #FFFFFF;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-width: 1px;
}
.order-btn:hover {
    background-color: #F39912;
    color: #FFFFFF;
    border: 1px solid #F39912;
}
.container {
    margin: 100px auto !important;
}

.product-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none;
    background: #fff;
}
.product-card img {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.product-card:hover img {
    transform: scale(1.05);
}
.add-to-cart-btn {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #FF9900;
    color: #fff;
    padding: 10px 20px;
    border: none;
    opacity: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
    width: 50%;
}
.add-to-cart-btn:hover {
    background: #514B4B;
    color: #fff;
}
.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translate(-50%, 0);
}
.product-info {
    margin-top: 10px;
}
.product-info h5 {
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
	font-size: 17px;
    letter-spacing: 2px;
    color: #2B2927;
    text-align: left;
}
.product-info p {
	margin: 5px 0;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
	color: #777;
}
.text-orange{
	color: #F39912;
	letter-spacing: 3px;
	text-transform : uppercase;
}
.anchor-link{
	text-decoration:none;
	font-size: 15px;
}
.label-size {
	font-size: 15px;
}
.logo-flex {
    display: flex;
    align-items: center;
    gap: 20px; 
}
.cutom_bg{
    background: linear-gradient(rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%);
	color: #fff;
}
.list-group-item.active {
    background: linear-gradient(rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%) !important;
	border-color:#ff6f00 !important;
}
.btn-outline-orange{
    border-color: #ff6f00;
    color: #ff6f00;	
	
}
.btn-outline-orange:hover{
    background: linear-gradient(rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%);
    color: #fff;	
	
}

.btn-light-orange{
    background: linear-gradient(rgb(255, 149, 0) 0%, rgb(255, 94, 58) 100%);
    color: #fff;
}

.orange{
color: #ff6f00;	
	
}
.border-orange{
	border-color:#ff6f00;
}

.cart-icon-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.cart-link {
    color: #333;
    font-size: 20px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-link:hover {
    color: #007bff;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #ff0000;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 50%;
    line-height: 1;
}
