.top-strip {
  font-size: 0.75rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

header img {
  max-height: 55px;
  padding: 10px 0;
}

.icons-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 48px;
  }

  .icons-desktop {
    display: none !important;
  }
}

.search-input-desktop {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 6px 10px;
  width: 240px;
}

.mobile-nav {
  display: none;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid #ccc;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  z-index: 9999;
}

.mobile-nav a {
  text-align: center;
  color: #333;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex !important;
  }
}

.mobile-search {
  position: fixed;
  bottom: 48px;
  width: 100%;
  display: none;
  padding: 8px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

.carousel-item img {
  height: 350px;
  object-fit: cover;
}

.product-card img {
  height: 220px;
  object-fit: cover;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-caption {
  background-color: #FFFFFF70;
  padding-left: 30px;
  border-radius: 5px;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.product-card {
  min-width: 180px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card img {
  height: 220px;
  object-fit: cover;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card button {
  margin-top: auto;
}

footer a:hover {
  color: #ffc107 !important;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ffc107;
  color: #fff !important;
  border-color: #ffc107;
  transform: scale(1.1);
}

.side-action {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1025;
}

.side-action .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #0d6efd;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s;
}

.side-action .action-btn:hover {
  transform: scale(1.1);
}

.card {
  cursor: pointer;
}
@media (max-width: 768px) {
  .side-action {
    bottom: 50px;
    right: 5px;
  }
  #chatModal,
  #reviewsModal {
    padding-bottom: 48px;
  }
}
/* Chat Model */
#chatMessages {
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  word-break: break-word;
}

.help-category {
  flex: 1 1 auto;
  min-width: 100px;
}

@media (max-width: 576px) {
  #chatMessages {
    max-height: calc(100vh - 180px);
  }
}
