body {
  margin: 0;
}

a {
    color: rgb(3 4 4);
    text-decoration: none;
    font-weight: 400;
}
.header {
  background: url("/wp-content/themes/fastway/images/bg-image.jpg") no-repeat
    center center fixed;
  background-size: cover;
     height: 923px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: white;
}

.light-grey-text {
	color: #6C6D70;
}

.dark-red {
	color: #2D2D2D;
}

.check {
	width: 30px;
}

.with-check {
    position: relative;
    padding-left: 60px; /* Adjust based on the size of the image */
}

.with-check::before {
    content: url('/wp-content/themes/fastway/images/check.png');
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    width: 20px; /* Adjust based on the actual size of your image */
    height: 20px; /* Adjust based on the actual size of your image */
	margin-top:24px;
}


.showcase-content {
	background-color: #1E1E1E;
   
	border-radius: 12px;
	color: #fff;
	padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure the parent div has a height for space-between to work properly */
}

.gradient-bg {
    background: 
        url('../images/globe.png') no-repeat center center, /* Background image */
        linear-gradient(to right, #000000, #74061A); /* Gradient background */
    background-size: cover; /* Ensure the background image covers the element */
    color: #fff;
    text-align: center;
    padding: 20px; /* Optional: add padding for better spacing */
}


h1.main {
	color: #2D2D2D;
}

h5 {
	color: #2D2D2D;
}

.our-products-overview {
	background-color: #1E1E1E;
	color: white;
}

p {
    font-size: 1rem;
}
ul { font-size: 1rem}
.button-primary {
	border-radius: 24px;
	background-color: #484646;
	color: white;
	text-decoration: none;
	padding: 10px 18px;
	border: none;
}

.button-primary:hover {
	border-radius: 24px;
	background-color: #484646;
	color: white;
	text-decoration:none;
	padding: 10px 18px;
	border: none;
}

.button-secondary {
	border-radius: 24px;
	background-color: none;
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid #F2F2F2;
}

.button-secondary:hover {
	border-radius: 24px;
	background-color: none;
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid #F2F2F2;
}

.button-full-cover:hover {
	border-radius: 24px;
	background-color: #fff;
	color: #000;
	text-decoration: none;
	padding: 8px 16px;
	border: none;
}

.button-full-cover {
	border-radius: 24px;
	background-color: #fff;
	color: #000;
	text-decoration: none;
	padding: 8px 16px;
	border: none;
}

.button-light {
	border-radius: 24px;
	background-color: #fff;
	color: #1E1E1E;
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid #1E1E1E;
}

.button-light:hover {
	border-radius: 24px;
	background-color: #fff;
	color: #1E1E1E;
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid #1E1E1E;
}

.product-gradient {
    background: linear-gradient(to bottom right, #888888, #ffffff); /* Medium grey to white */
}

.subheader {
    background: no-repeat center center fixed;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    position: relative;
    color: white;
    overflow: hidden; /* Ensure the pseudo-element doesn't overflow */
    z-index: 1;
}

.subheader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: -1; /* Ensure the overlay is behind the content */
}

.home .header .container .home-row-custom-class {
  max-width: 700px;
}

.home .header .container .text-left-home-custom-class {
  text-align: left !important;
}


.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.header-content {
  z-index: 1;
}

.navbar {
  padding: 0.5rem 1rem;
  z-index: 1;
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav {
  background: rgba(255, 255, 255, 0.2) !important;
  /* Semi-transparent white background */
  border-radius: 25px;
  padding: 12px;
}

.nav-link {
  color: white !important;
  padding: 0 25px !important;
}

.menu-item a {
  color: white !important;
  padding: 0 25px !important;
  text-decoration:none !important;
}

.menu-item a:hover {
  color: white !important;
  padding: 0 25px !important;
  text-decoration:none;
}

.nav-link:hover {
  color: white !important;
  padding: 0 25px !important;
  text-decoration: none;
}

.nav-icons {
  display: flex;
  align-items: center;
}

.nav-icons i,
.btn-contact {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  margin: 0 10px;
  padding: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.dark-nav-icons i,
.dark-btn-contact {
  background-color: #e6e6e6 !important;
  border-radius: 50%;
  color: #2e2e2e;
  font-size: 1rem;
  margin: 0 10px;
  padding: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* Change the navbar toggler icon to white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Change the navbar toggler border to white */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}


.dark-nav-icons i,
.dark-btn-contact {
  background: rgba(255, 255, 255);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  margin: 0 10px;
  padding: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.btn-contact {
  border-radius: 24px;
  padding: 10px 20px;
  width: auto;
  height: auto;
  margin-left: 10px;
  text-decoration: none;
  position: relative;
}

.dark-btn-contact {
  border-radius: 24px;
  padding: 10px 20px;
  width: auto;
  height: auto;
  margin-left: 10px;
  text-decoration: none;
  position: relative;
  background-color:#e6e6e6;
}

.dark-btn-contact:hover {
  
  padding: 10px 20px;
  width: auto;
  height: auto;
  margin-left: 10px;
 
  position: relative;
  background-color:#e6e6e6;
}


.btn-contact:hover {
  background-color:#e6e6e6;
  border-radius: 24px;
  padding: 10px 20px;
  width: auto;
  height: auto;
  margin-left: 10px;
  text-decoration: none;
  position: relative;
}

.btn-contact:hover::after {
  width: 100%;
  left: 0;
}

.main-content {
  padding: 20px 0;
  margin-top: 20px;
  z-index: 1;
  position: relative;
  color: white;
}

.product-categories-contain {
  width: 100%;
}

.product-shop-categories {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin-top: 60px;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
}

.product-shop-categories div {
  padding: 12px 24px;
  cursor: pointer;
  align-self: center;
} 

.product-shop-categories div a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.product-shop-categories div.active {
  background-color: #1E1E1E;
  color: white;
  border-radius: 100px;
}

.product-shop-categories div.active a {
  color: white;
}

.wps-product-image-wrapper img {
  width: auto;
}

.category-list-contain {
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  height: fit-content;
}

.category-list-contain ul {

  text-align: left;
}

.category-list-contain ul li a {
  text-decoration: none;
  color: #2D2926;
  font-weight: 400 !important;
}

.footer {
  background: #18181c;
  padding: 20px 0;
  width: 100%;
}

.footer .container {
  max-width: 1140px;
  margin: auto}

.footer-column {
  padding: 10px;
}

.footer-bottom {
  background: #000000;
  padding: 10px 0;
  width: 100%;
  color: #cccccc;
}

.footer-bottom .container {
  max-width: 1140px;
  margin: auto;
}

.title {
  font-size: 4rem;
}

.center-content {
    margin-top: 5%;
}

.subheader .center-content {
    margin-top: 5%;
}




.white-cta:hover {
  background-color: white;
  color: black;
  font-size: 1rem;
  border-radius: 25px;
  padding: 10px 20px;
  text-decoration: none;
}

.blurred-div {
border: 1px solid white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(10px);
    padding: 16px;
    margin: 0;
    color: #ffffff;
    width: 100%;
}

.blurred-div .col-9 p {
  display: -webkit-box; /* Flexbox with webkit box model */
  -webkit-box-orient: vertical; /* Vertical orientation */
  -webkit-line-clamp: 2; /* Number of lines to show */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Add ellipsis (...) */
}

.buy-now-slider {
  background: none;
  border: none;
  text-decoration: none !important;
  color: white;
  padding: 0;
}

.buy-now-slider:hover {
  background: none;
  border: none;
  color: white;
  text-decoration: none !important;
}

.carousel-inner {
  display: flex;
  justify-content: flex-start;
}

.carousel-item {
  flex: 0 0 auto;
  width: 100%; /* Original width + 100px for the quarter view */
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: flex;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
}

.wps-breadcrumbs-inner {
    display: flex;
    padding: 0;
    margin: 2em 0;
    list-style: none;
}

.footer-link:hover {
  color: #cccccc;
  text-decoration: none;
}

.footer-header {
  color: white;
}

.footer-header a {
 color: white;
}

.footer-header-white {
  color: #fff;
}

/* Style the search container to appear below the search icon */
.nav-icons {
    position: relative; /* Ensure the container is relative for absolute positioning */
}
.alert {
    background-color: #000000 !important;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
#search-dropdown {
    position: absolute;
    top: 100%; /* Position it right below the search icon */
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    width: 300px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


/* Add spacing between navbar items in mobile view */
@media (max-width: 1200px) { /* Adjust max-width as needed for your breakpoint */
    .navbar-nav .nav-item {
        margin-bottom: 15px; /* Add space between items */
    }

    .navbar-nav .nav-item .nav-link {
        padding: 10px 15px; /* Add padding around the nav link */
    }

    /* Optionally, center the nav items */
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
		line-height:2.5rem;
    }
	
	.nav-icons {
		margin-top:20px;
	}
}

@media (max-width: 1513px) {
.category-list-contain ul {
padding: 12px 9px !important;
}
}

/* Add spacing between search input and button in mobile view */
@media (max-width: 1200px) {
	#search-dropdown {
    position: relative;
    top: 100%; /* Position it right below the search icon */
    background: rgba(0, 0, 0, 1);
    padding: 10px;
    border-radius: 5px;
    width: 300px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


    .searchform #search-input,
    .searchform #searchsubmit {
        width: 100%;
        margin-bottom: 10px; /* Add space between items */
    }

    .search-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
	
	/* Style the search input field */
	.searchform #search-input {
		background: rgba(0, 0, 0, 0.2);
		border: none;
		color: white;
		padding: 10px 15px;
		border-radius: 25px;
		width: 100%;
	}

	.searchform #search-input::placeholder {
		color: white;
		opacity: 0.7;
	}

	/* Style the "GO" button */
	.searchform #searchsubmit {
		background: rgba(255, 255, 255, 0.2);
		border: none;
		color: white;
		padding: 10px 20px;
		border-radius: 25px;
		
		cursor: pointer;
		text-decoration: none;
	}

	.searchform #searchsubmit:hover {
		background: rgba(255, 255, 255, 0.4);
		color: white;
		text-decoration: none;
	}
}


/* Hide the homepage title */
body.home .entry-title {
    display: none;
}

.navbar-nav-dark {
	background-color: #e6e6e6 !important; /* Example background color */
	border-radius: 25px;
    padding: 12px;
}

.navbar-nav-dark .menu-item a {
    color: #333 !important; /* Example text color for links */
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.navbar-nav-dark .menu-item a:hover,
.navbar-nav-dark .menu-item a:focus {
    color: #000; /* Example text color on hover */
}

/* Ensure navbar-toggler is styled correctly in dark mode */
.navbar-nav-dark .navbar-toggler {
    background-color: #d4d4d4;
    border-radius: 5px;
    border: none;
}

/* Dark mode icon styles */
.dark-nav-icons i {
    color: #333 !important;
    cursor: pointer;
    padding: 0.5rem;
}

.dark-nav-icons a {
    color: #333 !important;
    margin-left: 10px;
    border-color: #333; /* Ensure border color matches text color */
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(51, 51, 51, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.blog-header {
	background-color: #1e1e1e;
}

.overflow-hidden {
	overflow: hidden;
}


#respond {
	display:none;
}

.new-products-fastway {

}

.rounded-big {
	border-radius: 1em !important; 
background-color: #e9e9e9;
}


.rounded-big img {
	width:100%;
	border-radius:16px !important;
}

.wp-paginate .title {
display: none;
}

.wp-block-atbs-tabs .tabs-titles .tab-title.active {
    background-color: #f8f8f8;
    color: #EE3A41;
    font-weight: bold;
}

li.tab-title.icon_left.active {}

.tab-title {
background-color: #ffffff;
    color: #000000 !important;
    
    border-radius: 5px;
    margin: 0 12px;
    font-weight: 500;
    padding: 8px;
    border: thin solid #d6d6d6;
}

.tab-title:hover {
background-color:#fbfbfb;
}

.wp-block-atbs-tabs .tabs-content {
    background-color: #fff;
    box-sizing: border-box;
    padding: 15px;
}

.wp-block-button__link {
    color: #fff;
    background-color: #000000;
    border-radius: 5px;
    box-shadow: none;
    text-decoration: none;
    padding: 10px;
    min-width: 124px;
    font-size: 1.125em;
}

.wp-block-button__link:hover {
    color: #fff;
       background-color: #3b3b3b;
    border-radius: 5px;
    box-shadow: none;
    text-decoration: none;
    padding: 10px;
    min-width: 124px;
    font-size: 1.125em;
    text-decoration: none;
}

.wp-block-atbs-tabs .tabs-titles .tab-title.active {
    background-color: #f8f8f8;
    color: #EE3A41;
    font-weight: bold;
}

.manual-item {
    border: thin solid #e8e8e8 !important;
    padding: 24px;
    background-color: #fdfdfd;
    border-radius: 5px !important;
margin-bottom:20px;
}

.manual-title {
color:black !important;
}

.manual-item btn-danger {
background-color: black !important;
}

.single-tab .manual-item {
min-height:250px;
border: thin solid #e8e8e8 !important;padding: 24px;background-color: #fdfdfd;border-radius: 5px !important;
}

.accordion .btn.equal {
     border: 1px solid black;
    text-decoration: none;
    color: black;
    width: 100%;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;

}
.accordion .btn.equal.activetab {
background-color:black;
color:white;
}

.wp-block-atbs-tabs .tabs-titles {
    background-color: white !important;
 
}

.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hpproductsfeed {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
       display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
}

.swp-product-image-feat-wrapper {

    justify-content: center !important ;

}

.swp-items-wrapper {

    max-width: 100% !important;
    margin: 0 0 !important;
}

.swp-item {
    max-width: 400px;
    max-width: 100% !important;
    min-width: 0;
    width: 100%;
}

.swp-product-image-feat-wrapper {

    width: 100% !important;

}

.navbar-contain {
max-width: 90% !important;
}

.fastway-wide-container {
max-width: 90% !important;
}

.fw-featured-product-card {
    min-height: 566px;      min-width: 371px;   padding: 33px;
    max-width: 368px;   background: linear-gradient(to bottom, rgb(0 0 0 / 41%) 57%, rgb(91 0 0) 100%); padding-top:24px; padding-bottom:4px;
}
.store-btn-fw {
    color: white; 
    border: 1px solid white;
    border-radius: 20px;
    float: right;
    margin-right: 46px;padding:15px;
}
@media only screen and (max-width: 400px) { 

#postheader {
 padding: 5px !important;
}

.blog-header-image {
margin-top:25px !important;
}
.store-btn-fw {
     width: 100%;
    max-width: 152px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
float:unset;
}
  .fw-featured-product-card {
    width:100%; min-width:100%;
  }
.hpproductsfeed {
    justify-content: center;
}
}

.suggestion-img-holder {
    display: inline-block;
    text-align: center;
    min-height: 66px;
}
.suggestedcartitems p {
    font-size: 12px;
}

.suggestedimg {
    max-width: 63px;
    max-height: 63px;
}

@media only screen and (max-width: 767px) {
.category-list-contain ul {
text-align:center;
}
#search-dropdown{
    display: block;
    position: absolute;
            top: 49px;}
.navbar-nav {
    background: rgb(0 0 0 / 57%) !important;
    border-radius: 25px;
    padding: 12px;
}
.menu-item a {
color:white !important;
}

.menu-item a:hover {
text-decoration: none !important;
}

    .searchform #search-input {
        background:rgb(61 61 61 / 98%);
        border: none;
        color: white;
        padding: 10px 15px;
        border-radius: 25px;
        width: 100%;
    }

.hp-product-slider-container {
margin-top: -59px;
}
.fw-featured-product-card  {
min-width:100% !important;
}
.store-btn-fw {
width:100%;
margin:0;
margin-top:20px;
}
.swp-cart-icon-fixed { 
height: 70px !important;
width: 49px !important;
}

.menu-header-menu-container {
margin-top:  15px;
}

}

.embed-container, .video-container{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 * 100) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
  .fastway-nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #fbfbfb;;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom:25px;
}

.fastway-nav-menu {
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 60%;
    margin-bottom:0;
}

.fastway-nav-item {
    display: inline-block;
}

.fastway-nav-item a {
    text-decoration: none;
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    display: block;
    border-radius: 30px;
}

.fastway-active a {
    background-color: #333;
    color: white;
    font-weight: 700;
}

.fw-category-tile:hover .btn-container {
    bottom: 10px; /* Slide the button up */
}

.fw-category-tile:hover .btn {
    background-color: black; /* Change button background on hover */
    color: #000000; /* Change button text color on hover */
    font-weight:bold;
}
.navbar-nav-dark .menu-item a:hover { 
text-decoration:none;
}

.fastway-nav-item a:hover {
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.dark-icons #search-icon, .dark-icons #close-icon {
       background-color: #e6e6e6 !important;
color:black !important;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {

.dark-nav-icons a {
    color: white !important;
    margin-left: 10px;
    border-color: #333;
}

.dark-btn-contact {
        background-color: rgb(0 0 0 / 50%) !important;
      
        border-radius: 14px;
        color: white !important;
        font-size: 1rem;
        margin: 0 10px;
        padding: 10px;
        text-align: center;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
}


.nav-icons.dark-icons i  {
    background: rgb(0 0 0 / 50%);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    margin: 0 10px;
    padding: 10px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
    .fastway-nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .fastway-nav-item {
        margin-bottom: 10px;
    }

    .fastway-nav-item a {
        padding: 12px 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fastway-nav-container {
        padding: 5px;
    }

    .fastway-nav-item a {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}

.category-type-container {
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: flex-start;
    align-items: center;
}

.fw-products-ct-title {
 position:absolute; top:0; padding: 20px;
        font-weight: bold; background: linear-gradient(to bottom, rgb(0 0 0 / 52%) 50%, rgb(0 0 0 / 0%) 100%);
        width: 100%;
        min-height: 91px;
}

.fw-pp-related-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: center;
}

.swp-collection-description {
display: none;
}

#search-input {
    padding: 5px;
}

#searchsubmit {
background-color:black;
border-color:black;
    margin-top: -3px;
}

.c-specs-table {
    width: 100%;
    border: 1px solid #7b7777;
    border-collapse: collapse;
    border-spacing: 5px
}

.c-specs-table tr {
    background-color: #474545;
    color: #fff;
    border: none;
    border-collapse: collapse
}

.c-specs-table tr:nth-child(odd) {
    background-color: #dfdfdf;
    color: #474545
}

.c-specs-table tr td {
    padding: 8px;
    text-align: center;
    border-right: 1px solid #7b7777;
    border-collapse: collapse
}

.c-specs-table tr td:last-child {
    border-right: none
}

#video-containter {
margin-top: 55px;
} 

#video-containter iframe {
    aspect-ratio: 16 / 9;
}

.swp-cart-sku {
font-size: 12px;
}

.pad-top-support {
margin-top:40px;
}

#supportcenterbox {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    padding: 10px !important;
    margin-top: -30px !important;
}



/* Styling for the menu */
.menu-header-menu-container {
  position: relative;
}

#menu-header-menu {
  display: flex;
  justify-content: space-between;
  position: relative; /* Relative positioning to ensure hover bubble is confined here */
  list-style: none;
  padding: 0;
  margin: 0;
}

.hover-bubble {
     position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 0;
    border-radius: 33px;
    background-color: rgba(12, 12, 12, 0.31);
    transition: all 0.4s ease;
    z-index: -1;
top: 2px;
}

#menu-header-menu li {
  position: relative;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.4s ease;
}

#menu-header-menu li a {
  text-decoration: none;
  color: inherit;
}


#menu-header-menu li:hover a {
  color: white;
}

#menu-header-menu li:hover ~ .hover-bubble {
  width: 100px; /* Adjust based on item size */
}

.form-check-input:checked {
    background-color: black;
    border-color: black;
}

.btn-primary {
  background-color: black !important;
border-color:black !important;
}

.btn-contact {
    background: rgba(255, 255, 255, 0.2) !important;
    font-weight: bold;
    text-decoration: none;
}

.btn-contact:hover {
text-decoration: none !important;
background-color: black;
}


.product-height {
    padding: 23px;
    margin-top: 10px;
}

.white-cta {
  background-color: white !important;
  color: black;
  font-size: 1rem;
  border-radius: 25px;
  padding: 10px 20px;
  text-decoration: none;
}

.list-unstyled {
    font-size: 15px;
}

.row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

.hp-featured-product {
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column-reverse; 
    flex-wrap: nowrap;
    padding:15px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.entry-content .row, .container .row{

    --bs-gutter-x: 1.5rem !important;
}

.swp-cart-contents {
    overflow: scroll;
}
