/* ================= Skeleton Loader ================= */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.category-skeleton {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pulse 1.5s infinite ease-in-out;
}

.category-skeleton-circle {
  width: 100px;
  height: 100px;
  background-color: #e0e0e0;
  border-radius: 50%;
  margin-bottom: 12px;
}

.category-skeleton-text {
  width: 70%;
  height: 12px;
  background-color: #ddd;
  border-radius: 4px;
}

.skeleton-card {
  background-color: #f2f2f2;
  border-radius: 1rem;
  animation: pulse 1.5s infinite ease-in-out;
  height: 360px;
}

.skeleton-image {
  height: 180px;
  background-color: #e0e0e0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.skeleton-lines {
  padding: 15px;
}

.skeleton-line {
  height: 12px;
  margin-bottom: 10px;
  background-color: #ddd;
  border-radius: 4px;
  width: 100%;
}

.skeleton-line.short {
  width: 60%;
}

/* ================= Product Image ================= */
.img-product {
  object-fit: cover;
  padding: 4px;
  background-color: white;
}

@media (max-width: 576px) {
  .img-product {
    height: auto !important;
    max-height: 260px;
    object-fit: contain;
    background-color: #fff;
  }
}

/* ================= General Utilities ================= */
.bg-light-custom {
  background-color: #f8f9fa;
}

.text-blue {
  color: #2b65d9;
}

.blurred {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.card h6 {
  line-height: 1.3;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ================= Info Banners ================= */
.info-banner h2 {
  font-size: 4.5rem;
}

.info-banner p.text-uppercase {
  font-size: 2.3rem;
}

/* ================= Feature Items ================= */
.feature-item {
  padding: 20px 10px;
  transition: transform 0.2s ease-in-out;
}

.feature-icon {
  background-color: #e7f0ff;
  border-radius: 50%;
  padding: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-hover {
  color: #2b65d9;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-icon:hover .icon-hover {
  transform: scale(1.2);
  color: #1a3fa1;
}

.feature-item h5 {
  font-size: 1.65rem;
}

.feature-item p {
  font-size: 1.15rem;
}

/* ================= Carousel Category ================= */
.category-carousel-wrapper {
  margin: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .category-carousel-wrapper {
    max-width: 50%;
  }
}

.category-item {
  text-align: center;
  padding: 10px 0;
}

.img-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  overflow: hidden;
}

.img-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-item .text-muted {
  font-size: 1.00rem;
  color: #6c757d;
}

/* ================= Owl Carousel Nav ================= */
.owl-nav {
  display: flex !important;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  width: 30px !important;
  height: 30px !important;
  border: none !important;
  background-color: #f2f7ff !important; /* light-primary */
  border-radius: 50% !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
  font-size: 18px !important;
  color: #2b65d9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #d6e4ff !important;
  color: #1f4db8 !important;
}
