/* Homepage product sections — 2×2 grid on mobile, carousel on desktop */
.new-products-section .product-default {
  opacity: 1;
}

/* Index — ORDER PRODUCT button */
.home-index-products .product-action .btn-add-cart,
.home-index-products .product-action .btn-add-cart span {
  color: #000;
  font-weight: 700;
}

.home-index-products .product-default:hover .product-action .btn-add-cart,
.home-index-products .product-default:hover .product-action .btn-add-cart span {
  color: #000;
  background: #f4f4f4;
  border-color: #e0e0e0;
}

@media (max-width: 991.98px) {
  .home-products-grid {
    margin-left: -8px;
    margin-right: -8px;
  }

  .home-products-grid > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }

  .home-products-grid .product-default {
    height: 100%;
    margin-bottom: 0;
  }

  .home-products-grid .product-default figure img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
  }

  .home-products-grid .product-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.4rem;
  }

  .home-products-grid .product-details {
    padding-top: 0.75rem;
  }

  .home-products-grid .price-box {
    margin-bottom: 0.5rem;
  }

  .home-products-grid .product-action .btn-icon-wish,
  .home-products-grid .product-action .btn-quickview {
    display: none;
  }

  .home-products-grid .product-action .btn-add-cart {
    width: 100%;
    justify-content: center;
  }
}

/* Homepage call CTA above Hoverboards */
.home-call-cta {
  padding-top: 0.25rem;
}

.home-call-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem 0.65rem 0.85rem;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(8, 140, 204, 0.08) 0%, rgba(8, 140, 204, 0.02) 100%);
  border: 1px solid rgba(8, 140, 204, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-call-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(8, 140, 204, 0.35);
  box-shadow: 0 10px 24px rgba(8, 140, 204, 0.16);
}

.home-call-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08c 0%, #2a95cb 100%);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  animation: home-call-glow 2s ease-in-out infinite;
}

.home-call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}

.home-call-label {
  display: block;
  margin-bottom: 0.15rem;
  color: #08c;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-call-number {
  display: block;
  color: #222529;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-call-link:hover .home-call-number {
  color: #08c;
}

@keyframes home-call-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(8, 140, 204, 0.55);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(8, 140, 204, 0);
  }
}

@media (max-width: 575.98px) {
  .home-call-link {
    gap: 0.85rem;
    padding: 0.55rem 1rem 0.55rem 0.75rem;
  }

  .home-call-icon-wrap {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .home-call-number {
    font-size: 1.35rem;
  }
}
