/* =====================
    BANNER
===================== */
.custom-shop-banner {
    background: url(https://am-devices.com/wp-content/uploads/2026/01/compliance-security_hero_bg.webp);
    padding: 120px 4px;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
 
}

.custom-shop-banner h1 {
  color: #fff;
  font-size: 42px;
  margin: 0;
}

/* =====================
    GRID & CARDS
===================== */
.custom-shop-products .container {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border: 2px solid #c5c5c5;
  text-align: left;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
	
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  transition: 0.2s;
}

.product-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product-title {
  font-size: 18px;
  margin: 0;
  min-height: 50px;
}

.product-title a {
	color: #222222;
}


.product-title a:hover {
	color: #222222 !important;
}

.product-sku {
    font-size: 16px;
    color: #333;
    margin-bottom: 0px;
	font-weight: 600;
}


.product-price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}

/* =====================
    BUTTONS
===================== */
.btn {
  display: block;
  padding: 12px;
  margin-top: 8px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.btn-quote {
  background: #104FA9;
}

.btn-call {
  background: #272727;
}

/* Hover Effects */
.btn:hover {
  opacity: 0.85;
  color: #ffffff;
  background: #272727;
}

/* =====================
    PAGINATION
===================== */
.custom-pagination {
  text-align: center;
  margin-top: 40px;
}

.custom-pagination a,
.custom-pagination span {
  padding: 10px 16px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.custom-pagination .current {
  background: #272727;
  color: #fff;
  border-color: #272727;
}

.custom-pagination a:hover {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

/* =====================
    RESPONSIVE
===================== */


@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
