.text-white {
  color: #fff !important;
}

.text-dark {
  color: #000 !important;
}

.text-orange {
  color: #e85c0d !important;
}

.fs-35 {
  font-size: 35px !important;
}

.bg-dark {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-red {
  background-color: red !important;
}

.rounded-5 {
  border-radius: 5px !important;
}

.white-line {
  color: #ffffff !important;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  z-index: 9999;
  min-width: 140px;
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-button span {
  font-size: 16px;
  user-select: none;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
}

@media (max-width: 400px) {
  .whatsapp-button {
    padding: 10px 16px;
    min-width: 120px;
    font-size: 14px;
  }

  .whatsapp-button i {
    font-size: 20px;
  }

  .whatsapp-button span {
    font-size: 14px;
  }
}

table,
th,
td {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
th,
td {
  padding: 10px;
  text-align: center;
}
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 6px;
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
}

table th {
  background: #f8f9fa;
  font-weight: bold;
}
/*tablo*/
.product-box {
  width: 280px;
  border: 1px solid transparent;
  padding: 10px;
}
.product-box h2 {
  color: #e85c0d;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.product-spec span {
  display: block;
  font-size: 20px;
  color: #333;
}
.product-spec strong {
  display: block;
  font-size: 25px;
  color: #000;
}
.divider {
  border-bottom: 1px solid #ccc;
  margin: 15px 0;
}
.fs-20 {
  font-size: 20px;
}

.navbar {
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 5px 10px;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #007bff;
}
.navbar a.active {
  font-weight: bold;
}

.cat-section {
  padding: 30px 0;
}

.cat-grid {
  display: grid;
  gap: 24px;
}

.cat-item {
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cat-item:hover {
  transform: translateY(-5px);
}

.cat-avatar {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid #eee;
}

.cat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.cat-item:hover img {
  transform: scale(1.05);
}

.cat-icon-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #888;
}

.cat-name {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.cat-count {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 3px;
}

.grid-desktop-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-desktop-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-desktop-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-desktop-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-desktop-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-desktop-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-desktop-8 {
  grid-template-columns: repeat(8, 1fr);
}

@media (max-width: 992px) {
  .grid-tablet-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-tablet-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-tablet-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-tablet-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-mobile-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-mobile-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-mobile-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-mobile-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
