
* {
  box-sizing: border-box;
}
    .top-bar {
      background: #f8f9fa;
      font-size: 14px;
      border-bottom: 1px solid #e3e3e3;
    }
    .top-bar a {
      color: #333;
      margin-right: 15px;
      text-decoration: none;
    }
    .top-bar a:hover {
      text-decoration: underline;
    }
    .main-header {
      padding: 10px 0;
      background: #fff;
      border-bottom: 1px solid #e5e5e5;
    }
    .logo {
      font-size: 26px;
      font-weight: bold;
      color: #0044cc;
    }
    .search-bar input {
      width: 100%;
    }
    .main-nav {
      background-color: #0044cc;
    }
    .main-nav a.nav-link {
      color: white !important;
      padding: 10px 20px;
      transition: background 0.3s ease;
    }
    .main-nav a.nav-link:hover {
      background-color: #005ce6;
      border-radius: 5px;
    }
    .phone-number {
      color: #fff;
      font-weight: bold;
      margin-left: auto;
      padding-right: 20px;
    }
    .hero-section img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
    }
    .features-bar {
      background: #2f3e50;
      color: white;
    }
    .features-bar .feature-icon {
      font-size: 30px;
      margin-bottom: 10px;
    }
	.product-hover-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-hover-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blur-active body > *:not(.search-overlay) {
  filter: blur(5px) brightness(0.6);
  transition: filter 0.3s ease;
}


.search-overlay {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.search-results-box {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
}
/* Dropdown menu style */
#productsDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  min-width: 250px;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show the dropdown with fade */
#productsDropdown.active {
  display: block;
  opacity: 1;
}

/* Blur effect on everything except navbar and dropdown */
body.blur-background > *:not(nav):not(#productsDropdown):not(script) {
  filter: blur(5px) brightness(0.6);
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* Make sure dropdown isn't affected */
#productsDropdown,
#productsMenuBtn {
  pointer-events: auto;
  z-index: 10000;
}


/* Hover animation for brand boxes */
.hoverable-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hoverable-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Bouncing arrow under PRODUCTS button */
.arrow-down-animation {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0d6efd;
  animation: bounce 1.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(5px); }
}
.sticky-scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
html, body {
   max-width: 100%;
  overflow-x: hidden;
}
.latest-carousel-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.latest-carousel-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: 0;
}

.latest-carousel-section .container {
  position: relative;
  z-index: 1;
}


.product-quickview-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 18px;
  display: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-card:hover .product-quickview-btn {
  display: block;
}


.bg-pattern {
  background-color: #f8f9fa; /* subtle gray */
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px;
}

.pattern-bg {
  background: url('images/dots-bg.png') repeat;
  background-size: contain;
}

.modal-backdrop {
  z-index: 1050;
}
.modal {
  z-index: 1060;
}
.view-icon {
  transition: all 0.3s;
}



.product-card {
	border: 1px solid #ddd;         /* Light gray border */
  border-radius: 8px;             /* Rounded corners */
  padding: 10px;
  background-color: #fff;         /* Optional for better contrast */
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.product-card .view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.product-card:hover .view-icon {

  opacity: 1;
}
.footer ul li a {
  text-decoration: none;
  color: #007bff;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer .social-icons a {
  font-size: 20px;
  color: #444;
  margin: 0 6px;
  transition: 0.2s ease-in-out;
}

.footer .social-icons a:hover {
  color: #0d6efd;
}

.breadcrumb-bar {
  background: linear-gradient(to right, #ffffff, #f7f7f7);
  font-size: 14px;
  padding: 8px 16px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Limit product card width */


.mySwiper2,
.mySwiper2 .swiper-wrapper,
.mySwiper2 .swiper-slide {
  width: 100%;
  min-height: 250px; /* Adjust if needed */
  box-sizing: border-box;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}


.product-card img {
  max-height: 180px;
  object-fit: contain;
}
.top-links a {
  color: inherit;
  text-decoration: none;
  margin-right: 10px;
}

.top-links a:hover {
  color: #007bff;
  text-decoration: underline;
}
.card img {
  max-height: 180px;
  object-fit: contain;
}
.latest-carousel-section,
.latest-products-section {
  width: 100%;
  overflow: visible;
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 1000;
  box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav a {
  text-align: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.mobile-bottom-nav a .icon-wrapper {
  background: #f0f0f0;
  padding: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
  transition: background 0.3s;
}

.mobile-bottom-nav a.active .icon-wrapper,
.mobile-bottom-nav a:hover .icon-wrapper {
  background: #7ed6df;
  color: white;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: #7ed6df;
}
.link-top {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: 0.2s;
  background-color: rgba(0, 0, 0, 0.03);
}

.link-top:hover {
  background-color: #7ed6df;
  color: white;
}

.link-top2 {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.2s;
    background-color: rgba(0, 0, 0, 0.03);
}

.link-top2:hover {
    background-color: #7ed6df;
    color: white;
}
.small-code {
  font-size: 15px;
  width: 125px;
  word-break: break-word;
}
