.b2b-products {
  max-width: 1920px;
  padding-left: 4.16%;
  padding-right: 4.16%;
}

.sticky-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #673AB7;  /* Match icon background */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
}

.sticky-icon img {
  width: 60px;
  height: 60px;
}

/* Show email icon on desktop */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .desktop-only {
      display: none;
  }

  .desktop-only img{
      display: none;
  }

  .mobile-only {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px;
      border-radius: 50px;
  }

  .mobile-only img {
      width: 60px;
      height: 60px;
  }

}

/* background: #f8f8f8; */
/* b2b labforty styles*/

.b2b-products {
  background: #f8f8f8;
}

.custom-header {
  background-color: #f8f8f8;
  position: relative;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  /* padding: 16px 32px; */
  font-family: 'Manrope', sans-serif; /* Set font family */
  max-width: 1920px;
  padding-left: 4.16%;
  padding-right: 4.16%;
  z-index: 1000;
  height: 120px;
}

/* Sticky header on desktop */
@media (min-width: 1024px) { /* Adjust breakpoint if needed */
  .custom-header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000; /* Make sure it's on top of other elements */
      background: white; /* Background color to cover content underneath */
  }
}

@media screen and (max-width: 768px) {
  .custom-header.site-header {
      display: none;
  }
}

/* Hide mobile header on desktop */
.mobile-header {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-header {
      display: block;
      background: white;
      padding: 10px;
      margin-bottom: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
  }

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

  .mobile-icons {
      display: flex;
      gap: 8px;
  }

  .mobile-icons img {
      width: 24px;
      height: 32px;
      cursor: pointer;
  }
  /* Search Bar */
  /* Mobile Search Bar */
  /* Ensure search container is properly hidden initially */
  .mobile-search-icon {
    background: white;
  }
  .mobile-search-container {
    display: none;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    flex-direction: column;
    z-index: 1000;
  }

  /* Style for the search wrapper */
  .mobile-search-container .search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  /* Style for the search input */
  .mobile-search-container .search-input {
    flex: 1;
    padding: 8px;
    width: 100%;
  }

  /* Suggestions box */
  .mobile-search-container .suggestions {
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
  }

  /* Close button */
  .mobile-search-container .close-search {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }


  /* Locale Switcher Styling */
  .mobile-locale-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .locale-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
  }

  .locale-toggle img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .menu-toggle {
    background: white;
  }

  /* Mobile Menu */
  .mobile-menu {
      display: none;
      position: fixed;
      top: 79px;
      right: 63px;
      width: 245px;
      height: 36%;
      background: white;
      box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.25);
      border-radius: 15px;
      padding: 20px;
      flex-direction: column;
      gap: 10px;
  }

  .mobile-menu .menu-item {
      display: block;
      padding: 10px;
      font-size: 16px;
      border-bottom: 1px solid #ddd;
      text-decoration: none;
      color: black;
  }

  .close-menu {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
  }
}


.header-container {
  display: flex;
  flex-direction: row; /* Arrange items horizontally */
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-search {
  display: flex;
  align-items: center;
  gap: 20px;  /* Space between logo and search */
  flex: 1;  /* Allow the logo and search to take available space */
}
/* ============== b2b hero banner section ============*/
/* B2B Section Styling */
.b2b-section {
  border-radius: 10px;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 60px;
  overflow: hidden;
}

/* Dark Overlay */
.b2b-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4); /* Darker overlay */
}

/* Content Container */
.b2b-content {
  position: relative; /* Ensures content appears above the overlay */
  max-width: 500px;
  color: white;
  text-align: left;
  z-index: 1; /* Keeps content above overlay */
}

/* Logo */
.b2b-logo {
  width: 200px;
  margin-bottom: 10px;
}

/* Titles */
.b2b-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 5px;
}

.b2b-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Features Section */
.b2b-features {
  display: flex;
  flex-direction: row; /* Keep features side by side */
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

/* Feature Item */
.b2b-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.b2b-feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

.b2b-feature span {
  font-size: 17px;
  font-weight: bold;
}

/* Button */
.b2b-button {
  display: inline-block;
  background-color: #6a0dad;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.b2b-button:hover {
  background-color: #550aa0;
}

/* ======== Mobile View: Change Background Image ======== */
@media screen and (max-width: 768px) {
  .b2b-section {
    height: 500px;  /* Mobile background */
  }

  .b2b-content {
    max-width: 90%;
    text-align: center; /* Center text content */
    margin: 0 auto; /* Ensure full width is centered */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all elements horizontally */
    justify-content: center; /* Center content vertically if needed */
  }

  .b2b-features {
    /* flex-direction: column; Stack features vertically on mobile */
    gap: 15px;
  }
}

/* ============ product suggestions result ========= */

.nothing-found {
  padding: 12px;
  color: #888;
  font-size: 14px;
  text-align: center;
}

/* Search Wrapper */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 350px; /* Control max width */
  border: 1px solid #ccc;
  border-radius: 50px;
  background: #f8f8f8;
  padding-left: 40px;
  transition: all 0.3s ease;
}

/* Search Icon */
.search-icon {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon .icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

/* Search Input */
.search-input {
  width: 100%;
  padding: 10px 15px;
  padding-left: 35px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  outline: none;
  border-radius: 50px;
}

/* Placeholder Style */
.search-input::placeholder {
  color: #888;
  font-size: 14px;
}

/* Focus Effect */
.search-wrapper:focus-within {
  border-color: #6a4caf;
  background: #fff;
  box-shadow: 0 0 6px rgba(106, 76, 175, 0.3);
}

/* ============ Product Suggestions (Dropdown) ========== */
.suggestions {
  position: absolute;
  top: calc(44% + 10px); /* Position it right below the search-wrapper */
  left: 100px;
  width: 43%; /* Align width with search-wrapper */
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none; /* Hidden by default */
}

/* Show suggestions when input is focused */
.search-wrapper:focus-within + .suggestions {
  display: block;
}

/* Suggestions List */
.suggestions .list {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

/* Suggestion Item */
.suggestions .suggestion-item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease-in-out;
}

.suggestions .suggestion-item:hover {
  background: #f5f5f5;
}

/* No Results Message */
.nothing-found {
  padding: 12px;
  color: #888;
  font-size: 14px;
  text-align: center;
}

/* ============ Arrow (Caret) for Suggestions ========== */
.suggestions::before {
  content: "";
  position: absolute;
  top: -10px; /* Position above suggestions box */
  left: 20px; /* Adjust to align with input */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white; /* Triangle pointing down */
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0; /* Prevent shrinking */
}

.contact-btn {
  background-color: #6a4caf;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #4b2a7d;
}

.back-to-addit {
  font-size: 14px;
  color: #6a4caf;
  text-decoration: none;
  border: 2px solid #6a4caf; /* Border color */
  padding: 8px 16px;
  border-radius: 20px;
}

.back-to-addit:hover {
  text-decoration: underline;
  background-color: #f1f1f1;
}

.heart-icon {
  width: 24px;
  height: 24px;
  fill: red;
}

.locale-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
}

.locale-flag {
  width: 20px;
  height: 20px;
}

.locale-text {
  font-size: 14px;
  color: #333;
}

/* Default Category Navigation */
.category-nav {
  display: flex;
  flex-wrap: nowrap; /* Prevents wrapping */
  gap: 20px;
  margin-top: 10px;
}

/* Ensure Category Items Stay Inline */
.category {
  font-family: 'Manrope', sans-serif;
  display: inline-block; /* Ensure categories remain inline */
  flex-shrink: 0; /* Prevents items from shrinking */
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  white-space: nowrap; /* Prevents text from breaking */
}

/* Mobile View: Horizontal Scrolling */
@media screen and (max-width: 768px) {
  .category-nav {
    display: flex;
    flex-direction: row; /* Ensures categories stay in a row */
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    scrollbar-width: thin; /* Firefox scrollbar */
    padding-bottom: 10px; /* Prevents cutoff */
  }

  /* Custom Scrollbar */
  .category-nav::-webkit-scrollbar {
    height: 6px; /* Small scrollbar */
  }

  .category-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .category-nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
}

.category:hover {
  color: #2182f7;  /* Change text color to blue on hover */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: fill;  /* Ensures the image covers the full area */
  opacity: 1; /* Make sure opacity is set properly */
}

/* Override .site-content styles for the B2B page */
.site-content {
  --headerHeight: 0px !important;
  --fullScreenWithoutHeader: 100vh !important;
  margin-top: 0px !important;
}

@media (max-width: 768px) {
  .site-content {
    margin-top: 80px !important;
  }
  
}

/* Mobile styles for header */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    padding: 10px;
  }

  .logo-search {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .suggester {
    width: 90%;
    max-width: none; /* Allow full width */
  }

  .suggester input {
    padding-left: 40px; /* Adjust padding for icon */
  }

  .suggester .go-search {
    left: 15px;
  }

  .user-actions {
    flex-direction: row; /* Keep actions inline */
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .contact-btn,
  .back-to-addit {
    font-size: 12px;
    padding: 6px 12px;
  }

  .locale-switcher {
    justify-content: center;
  }

}
/*popup companies-tech */

/* partners carousel */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.carousel-title {
  font-family: 'Manrope', sans-serif; /* Set font family */
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}
.carousel-container {
  display: flex;
  width: max-content;
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 100s linear infinite;
  white-space: nowrap;
}
.carousel-track img {
  max-height: 60px;
  margin: 0 30px;
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.3));
  display: inline-block;
}
@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-33.33%);
  }
}

/* business benefits section */
.business-benefits {
  text-align: center;
  padding: 40px 15px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}

/* Make images responsive */
.benefit-item img {
  width: 40px;
  height: auto;
  margin-bottom: 8px;
}

.benefit-item p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #333;
}

/* Adjust heading size for better mobile experience */
.business-benefits h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 25px;
}

/* Make 2 columns on smaller screens */
@media (max-width: 768px) {
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets & smaller */
    gap: 20px;
  }

  .benefit-item {
    max-width: 100%;
  }

  .business-benefits h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

/* Stack in 1 column for very small screens */
@media (max-width: 480px) {
  .benefits-container {
    grid-template-columns: auto auto; /* Single column for small screens */
  }
}


/****!!! Product Carousel Section!!!!! *****/
.product-carousel {
  text-align: center;
  padding: 50px 20px;
  margin: 0 auto;
}

/* Title Styling */
.product-carousel-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .product-carousel-title {
    font-size: 34px;
    line-height: 39px;
  }
}

/* Carousel Wrapper */
.product-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 5px;
  border-radius: 15px;
}

/* Blurred edges */
.product-carousel-wrapper::before,
.product-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px; /* Adjust width for more or less blur */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Left blur */
.product-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

/* Right blur */
.product-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

/* Carousel Container */
.product-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Carousel Track */
.product-carousel-track {
  display: flex;
  gap: 15px; /* Reduce space between items */
  /* transition: transform 1s ease-in-out;
  animation: scroll 30s linear infinite; */
  width: 100%; /* Fixed width prevents layout breaking */
}

/* Ensure each item fits properly */
.product-carousel-item {
  flex: 0 0 calc(100% / 3.8); /* Adjust for correct spacing */
  box-sizing: border-box;
  padding: 10px;
}

/* Product Card */
.product-card {
  position: relative; /* Enable absolute positioning inside */
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center all items horizontally */
  justify-content: center; /* Center content vertically */
  min-height: 400px;
  transition: transform 0.3s ease-in-out;
  max-width: 460px; /* Slightly smaller than 500px to fit layout */
  width: 100%; /* Responsive width */
}

/* Position the heart icon in the top-right corner */
.product-carousel-item .heart {
  position: absolute;
  top: 10px; /* Distance from the top edge */
  right: 10px; /* Distance from the right edge */
  z-index: 10; /* Ensure it's above other elements */
  background: rgba(255, 255, 255, 0.9); /* Optional: white background for better visibility */
  border-radius: 50%; /* Optional: makes it circular */
  padding: 5px; /* Optional: adds spacing around the icon */
  transition: transform 0.2s ease;
}

/* Optional: Add a hover effect */
.product-carousel-item .heart:hover {
  transform: scale(1.1); /* Slight zoom effect */
}

/* Product Image */
.photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.photo img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 10px;
}

/* Product Name */
.product-name {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
  min-height: 50px;
}

/* Product Card - Ensures Proper Spacing */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Ensures spacing between elements */
  padding: 20px;
  width: 100%;
  max-width: 460px; /* Keeps consistent width */
  text-align: center;
}

/* Ensure .info expands properly */
/* Product Info - Ensure Proper Spacing */
.info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns content to the top */
  flex-grow: 1; /* Allows .product-description to expand */
  align-items: center;
  width: 100%;
}

/* Product Description - Force Exactly 4 Lines */
.product-description {
  font-size: 14px;
  color: #666;
  text-align: center;
  max-height: 120px; /* Adjusted to ensure 4 lines */
  min-height: 130px;
  line-height: 18px; 
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  margin-bottom: 10px; /* Space between description and pricing */
}


/* Pricing Section */
/* Pricing Section - Align Everything Properly */
/* Align periods properly */
.pricing-periods {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 0;
}

/* Default (inactive) container */
.periods-container {
  background: #ffffff;
  border-radius: 25px;
  padding: 5px 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 1.1);
  display: flex;
  align-items: right;
  justify-content: right;
  width: 120px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: -60px;
  z-index: 1; /* Ensure container stays below */
}

/* When clicked, shift the container */
.periods-container.clicked {
  align-items: left;
  justify-content: left;
  margin-left: 0px;
  margin-right: -70px;
}

.periods-container span {
  transition: margin 0.3s ease;
}

/* Active badge state */
.periods-badge {
  background: #6A5ACD;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2; /* Higher z-index to stay above */
  margin-right: -10px;
  pointer-events: none; /* Prevents clicking the badge */
}

.periods-badge.active small {
  display: block;
}

/* Small text inside the badge */
.periods-badge small {
  font-size: 10px;
  font-weight: 400;
  display: none;
}


/* Active badge should always be on top */
.periods-badge.active {
  z-index: 2;
}

/* Center Price & Monthly Label */
/* Ensure Price & First Month are on separate lines */
.pricing {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  line-height: 28.8px;
  letter-spacing: -0.04em;
}

/* Price (Main Value) */
.price {
  font-weight: 700;
  font-size: 24px;
  color: #2680F8;
  text-align: center;
  display: block; /* Forces it onto a new line */
}

/* First Month Pricing */
.first-month {
  font-weight: 400;
  font-size: 17px;
  color: #2680F8;
  text-align: center;
  display: block; /* Forces it onto a new line */
}

/* Center Button */
.pricing-btn {
  font-family: 'Manrope', sans-serif;
  background: transparent;
  border: 2px solid #6A5ACD;
  color: #592ABA;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.info-icon {
  font-size: 14px;
  color: #592ABA;
}

/* View All Button */
.view-all-btn {
  background: #592ABA;
  color: white;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 20px;
  display: inline-block;
}

/* Carousel Navigation Buttons */
/* Fix: Ensure controls are positioned correctly */
.product-carousel-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
  margin-right: 25px;
}

.carousel-btn {
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 50%; /* Makes the button circular */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow */
  transition: background 0.3s ease;
}

.carousel-btn img {
  width: 100%; /* Adjust arrow size */
  height: auto;
  filter: invert(0%); /* Black arrow */
  transition: filter 0.3s ease;
}

.carousel-btn:hover {
  background-color: #f0f0f0; /* Light gray background on hover */
}

.carousel-btn:hover img {
  filter: invert(12%); /* Turns arrow grey on hover */
}

.categories-text-center {
  padding-top: 15px;
}

/* Responsive Adjustments */
/* Mobile: Show only one product per slide */
@media screen and (max-width: 768px) {
  .product-carousel-item {
      flex: 0 0 100%; /* Show only one product per view */
  }
}

/* =================== DAAS SECTION ================== */

/* =================== DAAS SECTION ================== */

/* Section Container */
.daas-table-section {
  padding: 20px;
}

.daas-container {
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
}

/* Section Title */
.daas-section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 32px; /* Slightly reduced for smaller screens */
  line-height: 40px;
  margin: 0 auto 20px;
  text-align: center;
  width: 100%;
}

/* Table Container */
.daas-table-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Category Title */
.daas-table-container .category {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
  background-color: #f8f8f8;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

/* Table Row */
.daas-table-container .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Feature Column */
.daas-table-container .feature {
  background-color: #ffffff;
  flex: 1;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 8px;
  min-width: 160px;
}

/* Header Feature Column */
.daas-table-header .feature {
  background-color: #f8f8f8 !important;
}

/* Header Cells */
.daas-table-header .cell {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 220px;
}

/* Active Header */
.daas-table-header .daas {
  background-color: #6A5ACD !important;
  color: white !important;
}

/* Default Headers */
.daas-table-header .lease,
.daas-table-header .ownership {
  background-color: #e5e7eb !important;
  color: #333 !important;
}

/* Hover effect */
.daas-table-header .cell:hover {
  background-color: #d1d5db;
  cursor: pointer;
}

/* Table Cells */
.daas-table-container .cell {
  background-color: #ffffff;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 4px;
  border-radius: 8px;
  font-size: 13px;
  min-width: 220px;
  height: auto;
}

/* Text and Icon Spacing */
.daas-table-container .cell span {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.cell img {
  max-width: 24px;
  margin-bottom: 4px;
}

/* Specific DaaS Column */
.daas-table-container .row:not(.daas-table-header) .cell.daas {
  background-color: #fcfbff !important;
  border: 2px solid #7e5bcd !important;
  color: #333;
}

/* Mobile View */
@media screen and (max-width: 768px) {
  /* Enable horizontal scroll */
  .daas-table-container {
    display: block;
    width: 100%;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thin;
    padding-bottom: 10px;
  }

  /* Scrollbar Styling */
  .daas-table-container::-webkit-scrollbar {
    height: 6px;
  }

  .daas-table-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  /* Section Title Adjustments */
  .daas-section-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
    padding: 0 10px;
  }

  /* Category Title */
  .daas-table-container .category {
    font-size: 14px;
    padding: 10px;
    text-align: left;
    margin: 15px 0;
    border-radius: 6px;
  }

  /* Table Row */
  .daas-table-container .row {
    flex-wrap: nowrap;
    min-height: 120px; /* Increased height for better spacing */
  }

  /* Feature Column */
  .daas-table-container .feature {
    font-size: 14px;
    min-width: 160px;
    min-height: 110px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%; /* Occupy full height */
    word-break: break-word;
  }

  /* Header and Cells */
  .daas-table-header .cell,
  .daas-table-container .cell {
    font-size: 13px;
    min-width: 220px; /* Wider cells for better readability */
    padding: 10px;
    height: auto; /* Adjust height to fit content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.4;
  }

  /* Text and Icon Adjustments */
  .daas-table-container .cell span {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
  }

  .cell img {
    max-width: 24px;
    margin-bottom: 6px;
  }

  /* Specific DaaS Column */
  .daas-table-container .row:not(.daas-table-header) .cell.daas {
    min-width: 220px;
  }
}

/* =================== Company types SECTION ================== */


.company-types-section {
  text-align: center;
  padding: 70px 20px;
}

.company-types-section h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0%;
  padding-bottom: 31px;
}

.company-types-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.company-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.company-card.large {
  grid-column: span 3;
  height: 300px; /* Reduce height for remote work card */
}

.company-card.large .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 40px); /* Оставя малко място от краищата */
}

.company-card.large .card-content h3 {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0;
}

.company-card.large .card-content a {
  position: relative;
  bottom: 0;
  right: 0;
  margin: 0;
}

.company-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.company-card.freelance img.img-freelance {
  transform: scale(1.9);
  object-position: bottom 106px right 55px;
}

.company-card.corporation img.img-corporation {
  transform: scale(1.1);
  object-position: bottom 17px right 10px;
}

.company-card.large img.img-remotework {
  object-fit: cover;
  transform: scale(1.1);
  object-position: bottom -187px right 10px;
}

.card-content {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-weight: bold;
  text-align: left;
}

.card-content h3 {
  font-family: 'Manrope', sans-serif; /* Set font family */
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: left;
}

.card-content p {
  font-family: 'Manrope', sans-serif; /* Set font family */
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 10px 15px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-icon {
  width: 6px !important;
  height: 6px !important;;
  position: relative;
  top: 0;
  left: 0;
  /* transform: rotate(90deg); */
  border-width: 1.5px;
}

@media (max-width: 768px) {
  .company-types-container {
      grid-template-columns: 1fr;
  }
  .company-card.large {
      grid-column: span 1;
  }
}

/* =================== Approval Process SECTION ================== */

.approval-process {
  max-width: 1000px;
  margin: 50px auto;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  position: relative;
}
.approval-title {
  font-family: 'Manrope', sans-serif; /* Set font family */
  font-weight: 600;
  font-size: 43px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 31px;
}

.border-box {
  border: 1px solid #592ABA;
  padding: 20px;
  border-radius: 10px;
  background: #fcfbff;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}
.steps-title {
  font-size: 24px;
  font-weight: bold;
  margin-left: 20px;
}
.cta-button {
  background-color: #6a1b9a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}
.cta-button:hover {
  background-color: #4a148c;
}
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}
.step {
  flex: 1;
  padding: 20px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.step-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.arrow {
  font-size: 30px;
  font-weight: bold;
  color: #6a1b9a;
  margin-left: 10px;
}
.step-number {
  font-size: 33px;
  font-weight: bold;
  color: #6a1b9a;
  margin-bottom: 5px;
}

.steps-container h3 {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .approval-process {
    padding: 15px;
  }

  .approval-process .approval-title {
    font-size: 32px;
    line-height: 40px;
  }

  .approval-process .border-box {
    padding: 15px;
  }

  .approval-process .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .approval-process .steps-title {
    font-size: 22px;
    margin-bottom: 10px;
    margin-right: 26px;
  }

  .approval-process .cta-button {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 10px;
  }

  .approval-process .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .approval-process .step {
    max-width: 100%;
    width: 90%;
    padding: 15px;
    text-align: start;
  }

  .step-four {
    margin-right: 30px;
  }

  .approval-process .step-header {
    justify-content: center;
  }
}

/* =================== ESG SECTION ================== */
/* =================== ESG SECTION ================== */

.esg-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 10px;
}

.esg-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 33px;
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
}

.esg-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px; /* Add gap for better spacing */
  max-width: 1200px;
  margin: 0 auto;
}

.esg-stat {
  flex: 1 1 280px; /* Flexible width for better responsiveness */
  max-width: 360px;
  text-align: center;
  margin-bottom: 30px;
}

.esg-stat img {
  display: block;
  margin: 0 auto 15px auto;
}

.esg-stat h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 8px;
}

.esg-stat p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 auto;
  max-width: 320px; /* Prevents text from stretching too wide */
}

.esg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin: 0 auto;
  gap: 30px;
}

.esg-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  text-align: left;
  flex-wrap: wrap;
}

.esg-block img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 10px;
  margin: 0;
}

.esg-text {
  max-width: 600px;
  width: 100%;
}

.esg-text h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-align: left;
}

.esg-text p {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
  margin: 0;
}

@media (min-width: 1024px) {
  .esg-bottom .esg-text {
      padding-left: 50px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .esg-title {
    font-size: 26px;
    line-height: 38px;
  }

  .esg-stats {
    flex-direction: column;
    align-items: center;
  }

  .esg-stat {
    max-width: 100%;
  }

  .esg-block {
    flex-direction: column;
    text-align: center;
  }

  .esg-block img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .esg-text {
    max-width: 100%;
    text-align: center;
  }

  .esg-text h3 {
    font-size: 24px;
    text-align: center;
  }

  .esg-text p {
    font-size: 15px;
    line-height: 26px;
    text-align: center;
  }

}

/* =================== FAQs SECTION ================== */

.faq-wrapper-section .faq .faq-wrapper {
  border-radius: 22px;
  padding: 2.5rem 3.12rem;
}

.faq-wrapper-section .faq .dots-wrapper {
  margin-bottom: 1.25em;
}

.faq-wrapper-section .faq .questions {
  --paddingTB: 2.5em;
}

.faq-wrapper-section .faq .questions .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-right: 0.5625rem;
}

.faq-wrapper-section .faq .questions .faq-item:last-of-type {
  border-bottom: none;
}

.faq-wrapper-section .faq .questions .faq-item .question {
  padding: 1.625em 0;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.faq-wrapper-section .faq .questions .faq-item .question .sign {
  margin-right: 1.687em;
  margin-left: 0.437em;
  width: 1.25em;
}

.faq-wrapper-section .faq .questions .faq-item .answer {
  transition: 0.3s all ease-in-out;
  opacity: 0;
  margin-left: 3.625em;
  border-left: 3px solid #6D44C6;
  padding-left: 1.875em;
  margin-bottom: var(--paddingTB);
  line-height: 1.75;
}

@media screen and (max-width: 960px) {
  .faq-wrapper-section .faq .questions .faq-item .answer {
    margin-left: 0.925em;
  }
}

.faq-wrapper-section .faq .questions .faq-item .answer.animated {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .faq-wrapper-section {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 3rem;
  }
}

/* =========== b2b contact form styles =========*/
.b2b-contact-form {
  font-family: 'Manrope', sans-serif;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 20px;
  max-width: 100%;
}

.supp-description {
  padding-bottom: 20px;
}

/* Form Container */
.b2b-contact-form .form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px auto;
  max-width: 900px;
  width: 100%;
}

/* Left & Right Sections */
.b2b-contact-form .form-left, 
.b2b-contact-form .form-right-desktop {
  flex: 1;
  min-width: 300px;
}

/* Mobile View */
@media (max-width: 768px) {
  .b2b-contact-form .form-container {
    flex-direction: column;
  }

  .b2b-contact-form .form-left, 
  .b2b-contact-form .form-right-desktop {
    width: 100%;
  }
}

.b2b-contact-form .form-group-mobile {
  margin-bottom: 10px;
}

/* Form Inputs */
.b2b-contact-form .form-group {
  margin-bottom: 15px;
}

.b2b-contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.b2b-contact-form input, 
.b2b-contact-form select, 
.b2b-contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 11px;
  font-size: 16px;
}

/* =========== SEARCH INPUT & ICON ========== */
.b2b_ctf_suggester {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 11px;
  padding: 2px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Search Icon inside input */
.b2b_ctf_suggester .icon {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Input styling */
.b2b_ctf_suggester input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px 10px 10px 40px;
  background: transparent;
}

/* Focus Effect */
.b2b_ctf_suggester input:focus {
  outline: none;
  border-color: #6D44C6;
  box-shadow: 0px 3px 8px rgba(109, 68, 198, 0.2);
}

/* ========== SUGGESTION BOX ========== */
.b2b_ctf_suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  padding: 5px 0;
}

/* Individual Suggestion Item */
.b2b_ctf_suggestions .suggestion-item {
  padding: 12px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  display: flex;
  align-items: center;
}

/* Hover Effect */
.b2b_ctf_suggestions .suggestion-item:hover {
  background: #f0f0f0;
}

/* No Results Found Message */
.b2b_ctf_suggestions .nothing-found {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #999;
}

/* Checkbox Container */
.b2b-contact-form .checkbox-container {
  display: flex;
  align-items: normal;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.b2b-contact-form .checkbox-container #terms {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

/* Label Styling */
.b2b-contact-form .checkbox-label {
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

/* Ensure inline links */
.b2b-contact-form .checkbox-label a {
  display: inline;
  text-decoration: underline;
  color: #2680F8;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
  .b2b-contact-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
  }

  .b2b-contact-form .checkbox-label {
    display: block;
  }
}

/* Submit Button */
.b2b-contact-form .submit-button {
  background: #6D44C6;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
}

.b2b-contact-form .submit-button:hover {
  background: #5a37b0;
}

/* ========== DEVICE LIST ========== */
.device-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  margin-top: 15px;
}

/* Individual Device Item */
.device-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e5efff;
  border: 1px solid #2680F8;
  border-radius: 16px;
  padding: 10px 15px;
  color: #2680F8;
  font-size: 16px;
  font-weight: 500;
}

/* Device Name */
.device-item span:first-child {
  flex: 1; /* Allows text to take up remaining space */
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Increase & Decrease Buttons */
.device-item .decrease,
.device-item .increase {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2680F8;
  color: white;
  font-size: 17px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}

.device-item .decrease:hover,
.device-item .increase:hover {
  background: #1a5fb4;
}

/* Quantity Input */
.device-item .quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin: 0 5px;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .device-item {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .device-item .quantity-input {
    width: 60px;
  }
}

/* Error Messages */
.b2b-contact-form .error-text {
  color: #d9534f;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

/* Error Styling */
.b2b-contact-form .form-group input.is-invalid,
.b2b-contact-form .form-group textarea.is-invalid,
.b2b-contact-form .form-group select.is-invalid {
  border: 2px solid #d9534f !important;
  background-color: #fbeaea !important;
  box-shadow: 0 0 5px rgba(217, 83, 79, 0.5);
}

/* Error Messages Alignment */
.b2b-contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.b2b-contact-form .error-text {
  position: relative;
  bottom: unset;
}

/* Checkbox Error Styling */

.b2b-contact-form .checkbox-container .error-text {
  color: #d9534f;
  font-size: 14px;
  margin-top: 3px;
  display: block;
}

/* =========== Category Single Styles ========= */
.b2b-category-single {
  padding: 50px;
}


.b2b-category-single .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.b2b-category-single .b2b-category-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 30px;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .b2b-category-single {
      padding: 30px;
  }
  
  .b2b-category-single .products-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
      gap: 15px;
  }

  .b2b-category-single .b2b-category-text {
      font-size: 36px;
      line-height: 40px;
      margin-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .b2b-category-single {
      padding: 20px;
  }

  .b2b-category-single .products-grid {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
      gap: 10px;
  }

  .b2b-category-single .b2b-category-text {
      font-size: 28px;
      line-height: 35px;
      text-align: center;
      margin-bottom: 6px;
  }
}

.b2b-category-single .selected-product {
  box-shadow: 0px 0px 20px rgba(89, 42, 186, 0.8);
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 12px;
}

.b2b-category-single .selected-product::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(45deg, rgba(89, 42, 186, 0.5), rgba(255, 255, 255, 0.1));
  z-index: -1;
  opacity: 0.6;
  filter: blur(10px);
  animation: pulseGlow 1.8s infinite alternate;
}

@keyframes pulseGlow {
  0% {
      opacity: 0.4;
      filter: blur(8px);
  }
  100% {
      opacity: 0.7;
      filter: blur(15px);
  }
}

@media (max-width: 768px) {
  .b2b-category-single .selected-product:hover {
      transform: none;
  }
}

.b2b-category-single .selected-product:hover {
  transform: scale(1.08);
  box-shadow: 0px 0px 30px rgba(89, 42, 186, 1);
}

@media (max-width: 480px) {
  .b2b-category-single .selected-product {
      box-shadow: 0px 0px 15px rgba(89, 42, 186, 0.6);
  }
}

/* =========== B2B Categories Styles ========= */
.b2b-grid-mt10 {
  margin-top: 30px;
}

.b2b-categories .b2b-category-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 30px;
  letter-spacing: 0;
}

.b2b-categories {
  padding: 50px;
  text-align: center;
}

.b2b-categories .content {
  max-width: 1200px;
  margin: 0 auto;
}

.b2b-categories .dots-wrapper {
  margin-bottom: 20px;
}

.b2b-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px;
  justify-content: center;
}

.b2b-categories .category-item {
  text-align: center;
}

.b2b-categories .category-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.b2b-categories .category-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.b2b-categories .category-image img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.b2b-categories .category-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .b2b-categories .categories-grid {
      grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 768px) {
  .b2b-categories .categories-grid {
      grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .b2b-categories .categories-grid {
      grid-template-columns: repeat(1, 1fr); 
  }
}

.locale-switcher {
  display: flex;
  align-items: center;
}

.locale-flag {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.locale-links {
  display: flex;
  align-items: center;
}

.locale-links a {
  color: #2d3748; /* Equivalent to Tailwind's text-gray-800 */
  text-decoration: none;
  transition: color 0.2s ease;
}

.locale-links a:hover {
  color: #2d3748; /* Keeps the same color on hover, matching Tailwind behavior */
}

.locale-links a.active {
  font-weight: bold;
}

.locale-links span {
  color: #a0aec0; /* Equivalent to Tailwind's text-gray-500 */
  margin: 0 8px;
}
