/* CSS Reset and Basic Styles */
body {
  margin: 0;
  font-family: "Inter" !important;
  background: rgba(247, 250, 252, 1) !important;
  width: 100%;
  color: #505050;
}

.mobile-view-only {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #0d6efd;
}

.footer-wrapper {
  width: 100%;
  background-color: #ffffff;
  padding-top: 25px;
}

/* Main Footer Container */
.footer-container {
  margin: 20px auto;
  /* padding: 0 20px; */
}

/* Top Section of the Footer */
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 0.7fr 0.7fr 0.7fr 0.7fr 1.5fr;
  padding-bottom: 52px;
}

.footer-brand {
  margin-left: 40%;
}

/* Brand Column Styles */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 40px;
  height: 40px;
}

.footer-brand .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #8cb7f5;
}

.footer-brand .description {
  font-size: 16px;
  line-height: 1.5;
  color: #505050;
  margin-bottom: 20px;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

/* General Link Column Styles */
.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer-column ul {
  padding-left: 0;
}

.footer-links li {
  list-style: none;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 400;
  color: #505050;
}

/* App Buttons */
.app-buttons a {
  display: block;
  margin-bottom: 10px;
}

.app-buttons img {
  max-width: 140px;
  height: auto;
  background-color: #1c1c1c;
  padding: 5px;
  border-radius: 5px;
}

/* Bottom Section of the Footer */
.footer-bottom {
  background-color: #f7fafc;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  width: 1180px;
  margin: 0 auto;
  padding: 0 90px;
}

.copyright {
  font-size: 16px;
  color: #606060;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1c;
}

/* Responsive Adjustments */
/* @media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 0.5fr 0.5fr;
  }

  .footer-brand,
  .footer-get-app {
    grid-column: 1 / -1;
  }
} */

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 0.5fr;
  }
}

/* @media (max-width: 576px) {

  .footer-wrapper,
  .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .logo,
  .social-icons {
    justify-content: center;
  }

  .footer-brand .description {
    margin-left: auto;
    margin-right: auto;
  }

  .app-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
} */

.newsletter-section {
  background-color: #EFF2F4;
  min-width: 100%;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 45px;
  box-sizing: border-box;
}

.newsletter-content {
  max-width: 500px;
}

.newsletter-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 8px 0;
}

.newsletter-section p {
  font-size: 16px;
  color: #606060;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.email-icon {
  position: absolute;
  left: 12px;
  pointer-events: none;
  color: #8B96A5;
}

.newsletter-form input[type="email"] {
  height: 40px;
  width: 280px;
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF;
  padding-left: 40px;
  padding-right: 15px;
  border-radius: 6px;
  color: #8B96A5;
  outline: none;
  box-sizing: border-box;
}

.newsletter-form input[type="email"]::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #8B96A5;
}

.newsletter-form button {
  width: 110px;
  height: 40px;
  border: none;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  background-color: #0D6EFD;
  color: #FFFFFF;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #0259d5;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .newsletter-section {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .newsletter-form .input-wrapper {
    justify-content: center;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 350px;
    border-radius: 6px;
    border-right: 1px solid #E0E0E0;
  }

  .newsletter-form button {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 6px;
  }
}


.suppliers-container {
  max-width: 1180px;
  margin: 20px auto;
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  /* border-radius: 8px; */
}

.suppliers-container h2 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
}

/* Grid Layout */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px 40px;
}

/* Individual Supplier Item */
.supplier-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.supplier-info {
  display: flex;
  flex-direction: column;
}

.country-name {
  font-size: 16px;
  font-weight: 400;
}

.shop-name {
  font-weight: 400;
  font-size: 13px;
  color: #868e96;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .suppliers-container {
    padding: 20px;
  }

  .suppliers-container h2 {
    font-size: 24px;
  }

  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
  }
}

.extra-services {
  max-width: 1180px;
  /* max-height: 256px; */
  margin: 20px auto;
  padding-top: 20px;
}

.extra-services h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.services-grid {
  display: flex;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 280px;
  height: 200px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
  font-size: 14px;
}

.service-card>img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #1C1C1C;
}

.icon-overlay {
  position: absolute;
  top: 95px;
  right: 16px;
  background: #e6f1ff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.service-card p {
  padding: 12px 16px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.recommended-items-container {
  padding: 0 20px 0 20px;
  background-color: #f5f8fc;
  border-radius: 8px;
  max-width: 1180px;
  max-height: 696px;
  margin: 20px auto;
  overflow: hidden;
}

.header-section {
  padding: 10px 0;
  margin-bottom: 8px;
}

.recommended-items-container h2 {
  color: #333;
  font-size: 22px;
  margin: 0;
  padding-left: 0;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 0.2fr));
  gap: 10px;
  justify-content: center;
}

.item-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-width: 220px;
  max-height: 280px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

.item-image-placeholders {
  background: transparent;
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  mix-blend-mode: multiply;

}

.item-image-placeholder {
  margin-bottom: 15px;
  border-radius: 4px;
  color: #999;
  font-size: 12px;
  background: transparent;
  mix-blend-mode: multiply;
}

.item-details {
  width: 100%;
  padding: 0 5px;
}

.item-price {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0px;
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
}

.item-description {
  font-size: 16px;
  font-weight: 400;
  color: #8b96a5;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Main section container based on provided dimensions and position hints */
.send-quote-section {
  margin: 20px auto;
  position: relative;
  max-width: 1180px;
  min-height: 420px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* Slight border radius */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/image 102.png');
  background-size: cover;
  background-position: center;
}

/* 2. We use a pseudo-element for the gradient overlay */
.background-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(94.99deg, #2C7CF1 7.19%, rgba(0, 209, 255, 0.5) 89.49%);
}

.content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: start;
  justify-content: space-between;
  padding: 0 50px;
  gap: 40px;
}

.text-block {
  flex: 1;
  color: #fff;
  max-width: 450px;
  padding-right: 20px;
}

.main-heading {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 0;
}

.quote-form-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.form-title {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: calc(100% - 22px);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.quantity-fields {
  display: flex;
  gap: 10px;
  align-items: start;
}

.quantity-input {
  flex: none;
  width: 206px !important;
}

.custom-select-wrapper {
  flex: 1;
  position: relative;
  width: auto;
}

.custom-select {
  width: 111px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  cursor: pointer;
  padding-right: 30px;
}

.select-arrow {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

.send-inquiry-button {
  padding: 12px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.send-inquiry-button:hover {
  background-color: #0056b3;
}

/* Main section container based on provided dimensions */
.category-display-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  position: relative;
  width: 1180px;
  height: 257px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.consumer-electronics-panel {
  flex-shrink: 1;
  background-color: #e6eaf0;
  padding: 15px 20px 15px 20px;
  display: flex;
  width: 280px;
  height: 257px;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  position: relative;
  color: #333;
  opacity: 0.8;
}


/* Placeholder for the background graphics/imagery within the panel */
.panel-graphics-placeholder {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}


.consumer-electronics-panel .panel-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.source-now-button {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.source-now-button:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.product-categories-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}

.category-item {
  display: flex;
  align-items: start;
  padding: 15px 5px;
  width: 224px;
  height: 127px;
  box-sizing: border-box;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.item-details {
  flex-grow: 1;
  text-align: left;
  margin-right: 10px;
}

.category-name {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin: 0 0 5px 0;
  white-space: nowrap;
}

.price-range {
  font-size: 12px;
  color: #666;
  font-weight: 200;
  margin: 0;
  white-space: nowrap;
}

.item-image-placeholder {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 10px;
  overflow: hidden;
}

.category-item:nth-child(4n) {
  border-right: none;
}

.category-item:nth-child(n+5) {
  border-bottom: none;
}

/* Main section container based on provided dimensions */
.deals-offers-section {
  padding: 0 40px px 40px;
  margin: 20px auto;
  position: relative;
  width: 1180px;
  height: 240px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  overflow: hidden;
}

.deals-info-panel {
  flex-shrink: 0;
  width: 250px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-right: 1px solid #eee;
}

.deals-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
}

.deals-category {
  font-size: 14px;
  color: #777;
  margin: 0 0 20px 0;
}

.countdown-timer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.time-unit {
  background-color: #616161;
  color: #fff;
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.time-unit .value {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.time-unit .label {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

.products-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
}

.product-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-left: 1px solid #eee;
  text-align: center;
  position: relative;
}

.product-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;

}

.discount-tag {
  background-color: #ffe6e6;
  color: #eb4132;
  width: fit-content;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
}

.item-image-placeholderss {
  width: 140px;
  height: 140px;
}

/* Main section container based on provided dimensions */
.hero-section-wrapper {
  margin: 20px auto;
  position: relative;
  max-width: 1180px;
  max-height: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-content-area {
  display: flex;
  height: 100%;
}

/* --- Categories Sidebar --- */
.categories-sidebar {
  flex-shrink: 0;
  width: 250px;
  padding: 12px 0;
  background-color: #fff;
}

.category-items {
  padding: 10px 30px;
  font-size: 15px;
  cursor: pointer;
}

.category-item:hover {
  background-color: #f5f5f5;
  color: #333;
}

.category-items.active {
  background-color: #e3f2fd;
  color: #333;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 6px;
  position: relative;
}

/* --- Main Banner --- */
.main-banner {
  flex-grow: 1;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.banner-background-placeholder {
  padding: 5px;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 660px;
  height: 373px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.banner-text-block {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 350px;
  color: #333;
}

.banner-heading {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 25px 0;
  font-weight: 100;
}

.banner-heading strong {
  font-weight: bold;
}

.learn-more-button {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.learn-more-button:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* --- Side Widgets --- */
.side-widgets {
  flex-shrink: 0;
  width: 230px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 10px;
  background-color: #fff;
}

.widget {
  background: rgba(227, 240, 255, 1);
  border-radius: 6px;
  padding: 8px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.user-icon {
  background: rgb(203, 227, 251);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-icon-placeholder {
  width: 50px;
  height: 50px;
  background-color: #e3f2fd;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btns-user {
  display: flex;
  flex-direction: column;

}


.greeting {
  font-size: 15px;
  color: #333;
  margin: -121px;
  margin-left: 16px;
  line-height: 1.1;
  text-align: left;
}

.action-button {
  width: 100%;
  padding: 6px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.join-now-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  margin-bottom: 10px;
}

.join-now-button:hover {
  background-color: #0056b3;
}

.log-in-button {
  background-color: #fff;
  color: #007bff;
  border: 1px solid rgba(114, 113, 113, 0.356);
}

.log-in-button:hover {
  background-color: #f0f7ff;
  border-color: #0056b3;
  color: #0056b3;
}

.promo-card {
  display: flex;
  align-items: center;
  min-height: 80px;
}

.promo-card p {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.promo-orange {
  background-color: #ff914d;
}

.promo-orange:hover {
  background-color: #e67d3e;
}

.promo-teal {
  background-color: #55c2bb;
}

.promo-teal:hover {
  background-color: #43a8a2;
}

/* Main container for the entire top navigation bar */
.top-navbar-container {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.navbar-content {
  width: 100%;
  padding: 0 40px px 40px;
  margin: 20px auto;
  position: relative;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-section {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-left .nav-item {
  margin-right: 15px;
}

.nav-right .nav-item {
  margin-left: 15px;
}


.nav-item {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 2px;
  cursor: pointer;
  transition: color 0.2s ease;
  height: 100%;
}

.nav-item:hover {
  color: #007bff;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
  margin-right: 20px;
}

.hamburger-icon .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4a4a4a;
  border-radius: 1px;
}

.has-dropdown .dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 13px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #888;
}

.german-flag {
  display: inline-block;
  width: 20px;
  height: 12px;
  vertical-align: middle;
  margin-left: 8px;
  flex-shrink: 0;
}

.main-header-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.brand-section {
  display: flex;
  align-items: center;
  width: 150px;
  height: 46%;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 20px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CSS for shopping bag icon */
.brand-icon .bag-handle {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 6px;
  border: 2px solid #fff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
  box-sizing: border-box;
}

.brand-icon .bag-body {
  position: absolute;
  bottom: 9px;
  width: 22px;
  border-radius: 2px;
}

.brand-name {
  font-size: 24px;
  font-weight: bold;
  color: rgba(140, 183, 245, 1);
  white-space: nowrap;
}

/* --- Search Section --- */
.search-section {
  display: flex;
  flex-grow: 1;
  max-width: 665px;
  height: 40px;
  border: 1px solid #7e57f1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(126, 87, 241, 0.1);
}

.search-input {
  flex-grow: 1;
  border: none;
  padding: 0 15px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.category-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-left: 1px solid #eee;
  flex-shrink: 0;
}

.category-select {
  width: 140px;
  padding: 0 15px;
  padding-right: 28px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
}

/* Custom dropdown arrow for the select */
.category-dropdown .dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #777;
  pointer-events: none;
}

.search-button {
  display: inline-block;
  width: 22%;
  background-color: #4a8df3;
  text-align: center;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  outline: none;
  padding: 10px 0;
  box-sizing: border-box;
}

.search-button:hover {
  background-color: #0e3c785a;
}

.user-actions {
  display: flex;
  align-items: center;
  width: 228px;
  height: 41px;
  gap: 30px;
  flex-shrink: 0;
  padding-left: 20px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  width: 37px;
  height: 41px;
  font-size: 13px;
  gap: 10px;
  transition: color 0.2s ease;
}

.action-item:hover {
  color: #007bff;
}

.icon-placeholder {
  width: 24px;
  height: 24px;
  position: relative;

}


.cart-icon {
  background-color: transparent;
}

.action-item span {
  display: block;
  white-space: nowrap;
}

.action-item>i {
  transform: scale(1.5);
  color: rgba(139, 150, 165, 1);
}


/* Main container for the breadcrumb section */
.breadcrumb-container {
  padding: 0 20px 20px 20px;
  margin: 20px auto;
  position: relative;
  max-width: 1440px;
  height: 35px;
  background: rgba(247, 250, 252, 1);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: flex-start;
}

.breadcrumb-nav {
  padding-left: 2px;
  padding-right: 20px;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.breadcrumb-item {
  font-size: 14px;
  color: #6c757d;
  white-space: nowrap;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #6c757d;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #007bff;
}

/* Add separator (>) using pseudo-element for items that are not the last */
.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  color: #b0b8c0;
}

/* Styling for the last item (current page), which typically is not a link */
.breadcrumb-item.current {
  font-weight: 500;
  color: #6c757d;
}


/* Main container for the filter/sort bar */
.filter-sort-bar-container {
  position: relative;
  /* margin: 15px 0 12px 396px; */
  width: 100%;
  height: 62px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
}

.item-count-info {
  font-size: 15px;
  color: #444;
  flex-shrink: 0;
}

.item-count-info strong {
  font-weight: bold;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Custom Checkbox --- */
.checkbox-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Checked state */
.checkbox-container input:checked~.checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

/* Create the checkmark icon using a pseudo-element (white bold tick) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

/* --- Custom Select/Dropdown --- */
.custom-select-wrapper {
  position: relative;
  display: inline-block;
}

.custom-select {
  display: block;
  width: 120px;
  padding: 8px 10px;
  padding-right: 28px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #444;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

/* --- View Toggle Buttons --- */
.view-toggle-buttons {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.view-button {
  background-color: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
  flex-wrap: wrap;
  gap: 2px;
}

.view-button.active {
  background-color: #fff;
  border-right: 1px solid #ddd;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.view-button:last-child.active {
  border-right: none;
}


/* Grid View Icon */
.grid-view .grid-square {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #444;
}

/* Main Sidebar Filter Panel Container */
.sidebar-filter-panel {
  margin: -82px 0 0 67px;
  width: 240px;
  height: 1448px;
  overflow-y: auto;
  border-radius: 8px;
  box-sizing: border-box;
}

.filter-group {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 20px;
}

.filter-group:last-child {
  border-bottom: none;
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.group-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.arrow-icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transition: transform 0.2s ease;
}

.arrow-icon.up {
  border-bottom: 5px solid #888;
  transform: translateY(-2px);
}

.arrow-icon.down {
  border-top: 5px solid #888;
  transform: translateY(2px);
}

.group-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-list li {
  font-size: 14px;
  cursor: pointer;
}

.category-list li:hover {
  color: #333;
}

.see-all-link {
  font-size: 14px;
  color: #2196F3;
  text-decoration: none;
  margin-top: 5px;
  display: block;
}

.see-all-link:hover {
  text-decoration: underline;
}

/* Custom Checkbox/Radio Button Styles */
.custom-checkbox-container,
.custom-radio-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  user-select: none;
  margin-bottom: 0;
}

/* Hide native inputs */
.custom-checkbox-container input,
.custom-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Checkmark Box Style */
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Checked state of checkmark */
.custom-checkbox-container input:checked~.checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

/* Checkmark icon (drawn with border trick) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox-container input:checked~.checkmark:after {
  display: block;
}

/* Radio Button Style */
.radiomark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all 0.2s ease;
}

/* Checked state of radiomark (inner circle) */
.custom-radio-container input:checked~.radiomark {
  background-color: #fff;
  border-color: #2196F3;
}

.radiomark:after {
  content: '';
  position: absolute;
  display: none;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2196F3;
}

.custom-radio-container input:checked~.radiomark:after {
  display: block;
}

/* Price Range Slider (simplified static view) */
.range-slider {
  position: relative;
  width: calc(100% - 10px);
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin: 10px auto 20px auto;
}

.slider-track {
  position: absolute;
  left: 10%;
  right: 20%;
  height: 100%;
  background-color: #2196F3;
  border-radius: 2px;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.slider-handle.left {
  left: calc(10% - 8px);
}

.slider-handle.right {
  right: calc(20% - 8px);
}

.price-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.price-input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price-input-wrapper .label {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.price-inputs input[type="text"] {
  width: calc(100% - 20px);
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  outline: none;
  box-sizing: border-box;
}

.apply-button {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  color: #2196F3;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.apply-button:hover {
  background-color: #f0f8ff;
}

/* Rating Stars */
.rating-option {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  font-size: 18px;
  line-height: 1;
  display: flex;
}

.star-filled {
  color: #FFC107;
}

.star-empty {
  color: #cccccc;
}

/* Main container for the product list */
/* This container mimics the boundaries if it were part of a larger list as in previous requests */
.product-list-container-single-item {
  display: flex;

  width: 920px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.product-list-item {
  display: flex;
  padding: 20px 25px;
  position: relative;
  align-items: flex-start;
}

.item-image-wrapper {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  margin-right: 20px;
  padding: 5px;
  box-sizing: border-box;
}

/*  */

.item-details-content {
  flex-grow: 1;
  text-align: left;
  margin-right: 40px;
}

.item-title {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 5px 0;
}

.price-info {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.current-price {
  font-size: 19px;
  font-weight: bold;
  color: #333333;
  margin-right: 10px;
}

.old-price {
  font-size: 15px;
  color: #999999;
  text-decoration: line-through;
}

.meta-info {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #666666;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.rating-stars {
  color: #FFC107;
  font-size: 16px;
  line-height: 1;
}

.rating-stars .star-empty {
  color: #cccccc;
}

.rating-value {
  font-weight: bold;
  color: #333333;
  margin-left: 5px;
}

.meta-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #bbbbbb;
  border-radius: 50%;
  margin: 0 8px;
  flex-shrink: 0;
}

.shipping-info {
  color: #28A745;
  font-weight: 500;
}



.view-details-link {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.view-details-link:hover {
  text-decoration: underline;
}

/*
==================================================
========== MOBILE RESPONSIVE STYLES ==============
==================================================
*/
@media (max-width: 800px) {
  .bodr-chk {
    border: 1px solid black !important;
  }

  /* --- Mobile-Only Hamburger Icon --- */
  /* .brand-section {
    position: relative;
    padding-left: 30px;
    margin-top: -20px;
  } */

  .hamburger {
    display: flex;
    cursor: pointer;
  }

  /* --- General Body and Container Adjustments --- */
  body {
    min-width: 360px;
    background-color: #ffffff;
    padding: 0px !important;

  }

  /* Reduce horizontal padding on all main sections */
  .top-navbar-container,
  .main-header-navbar {
    padding: 0 10px;
  }

  .deals-offers-section,
  .category-display-section,
  .send-quote-section .content-wrapper,
  .recommended-items-container,
  body {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* sections that are not included */
  /* index.html */
  .extra-services,
  .suppliers-container,
  .newsletter-section,
  .footer-wrapper,
  /* result.html contents */
  .breadcrumbs,
  .main-content .sidebar,
  .right-side .item-count-info,
  .right-side .checkbox-container {
    display: none;
  }

  /* --- Main Header & Search Bar --- */

  .category-dropdown,
  .search-button {
    display: none;
  }

  .main-header-navbar .navbar-content {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    gap: 15px;
  }

  .main-header-navbar {
    border: none;
    /* height: fit-content; */
  }

  .brand-section {
    width: auto;
    padding: 0;
    gap: 15px;
  }

  .search-section {
    order: 3;
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    border: 1px solid #DEE2E7;

  }

  .search-input {
    background-color: #F7FAFC;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238B96A5' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 16px 16px;
    padding: 0 15px 0 40px;

  }

  .user-actions {
    width: auto;
    padding-left: 0;
    margin-top: 10px;
    gap: 10px;
    display: flex;
    flex-direction: row-reverse;
  }

  .nav-left {
    overflow-x: scroll;
    scrollbar-width: none;
  }

  .top-navbar-container {
    border: none;
    margin: -24px 0px -10px -20px;
  }

  .nav-item {
    display: flex;
    align-items: center;
    padding: 9px 6px 9px 6px;
    box-sizing: border-box;
    border-radius: 6px;
    background-color: #EFF2F4;
    font-size: 14px;
    color: #0D6EFD;
    white-space: nowrap;
  }

  .nav-item .nav-left {
    margin: 0px;
  }

  /* Hiding items in top navbar */
  .nav-right,
  .hamburger-icon,
  .action-item span,
  .user-actions>a:nth-child(2),
  .user-actions>a:nth-child(3) {
    display: none;
  }

  /* --- Hero Section --- */

  .side-widgets {
    display: none;
  }

  .hero-section-wrapper {
    margin: 0px;
    max-height: none;
    border: none;
    border-radius: 0px;
  }

  .banner-text-block {
    font-size: small;
  }

  .learn-more-button {
    color: #0D6EFD;
  }

  /* Hide the category sidebar on mobile */
  .hero-content-area .categories-sidebar {
    display: none;
  }

  .main-banner {
    /* padding: 20px; */
    min-height: 240px;
    background-color: #E5F1FF;
    /* Fallback color */
  }

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

  .banner-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .learn-more-button {
    font-size: 14px;
    padding: 12px 20px;
  }

  /* --- Deals, Home, and Other Product Sections --- */

  .deals-offers-section,
  .category-display-section {
    flex-direction: column;
    height: auto;
  }

  .deals-info-panel,
  .consumer-electronics-panel {
    width: 100%;
    border-right: none;
    background-color: #ffffff;
    /* border-bottom: 1px solid #eee; */
    padding: 0 0 0 30px;
    /* margin-bottom: 15px; */
    align-items: flex-start;
    height: auto;
  }

  .deals-info-panel {
    flex-direction: row;
    justify-content: space-around;
    margin: 0px;
    padding: 10px 0 0 0;
    align-items: center;
  }

  .time-unit {
    background-color: #EFF2F4;
    color: #8B96A5;
  }

  .time-unit .value {
    font-weight: normal;
  }

  .countdown-timer {
    grid-template-rows: auto;
  }


  .time-unit:first-child {
    display: none;
  }

  .products-grid,
  .product-categories-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  /* Hide scrollbar for Chrome, Safari, and Opera */
  .products-grid::-webkit-scrollbar,
  .product-categories-grid::-webkit-scrollbar {
    display: none;
  }

  .product-item-card,
  .category-item {
    flex: 0 0 150px;
    width: 150px;
    height: auto;
    border: 1px solid #eee;
    justify-content: flex-start;
    padding: 10px;
  }

  .category-item .item-details {
    align-items: center;
    text-align: center;
  }

  .panel-graphics-placeholder,
  .source-now-button {
    display: none;
  }

  .category-display-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0%;
    border: 1px solid #eee;
  }

  .consumer-electronics-panel {
    display: contents;
  }

  .panel-title {
    order: 1;
    color: black;
    margin-left: 10px;
  }

  .product-categories-grid {
    order: 2;
    border: 1px solid #eee
  }

  .source-now-button :hover {
    background-color: none;
  }

  .source-now-button {
    display: block;
    order: 3;
    width: fit-content;
    background: none;
    border: none;
    padding: 10px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 500;
    color: #0d6efd;
  }

  .source-now-button::after {
    content: '→';
    margin-left: 0.5em;
  }

  .category-item {
    flex-direction: column-reverse;
    align-items: center;
    height: 155px;
  }

  .time-unit {
    text-align: center;
  }

  .category-name {
    font-size: 14px;
  }

  .item-image-placeholder {
    margin-right: 0;
  }

  /* .send-quote-section */

  .send-quote-section {
    border-radius: 0%;
    padding: 0%;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .send-quote-section .main-heading {
    font-family: Inter;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0px;
  }

  .send-quote-section .quote-form-card {
    display: contents;
  }

  .send-quote-section .form-title,
  .form-group,
  .description {
    display: none;
  }

  /* recommended-section */
  .recommended-items-container {
    margin: 5px;
    padding: 0%;
    max-height: max-content;
  }

  .items-grid {
    /* flex-grow: 1; */
    max-height: fit-content;
    padding: 5px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    overflow-y: auto;
  }

  .filter-sort-bar-container {
    border-radius: 0px;
  }
}