.elementor-7297 .elementor-element.elementor-element-12ded57a{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:0px;--margin-bottom:10px;--margin-left:0px;--margin-right:0px;--padding-top:50px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7297 .elementor-element.elementor-element-12ded57a:not(.elementor-motion-effects-element-type-background), .elementor-7297 .elementor-element.elementor-element-12ded57a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-7297 .elementor-element.elementor-element-3bece10e .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:40px;font-weight:700;text-transform:capitalize;}.elementor-7297 .elementor-element.elementor-element-323b0df{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7297 .elementor-element.elementor-element-323b0df:not(.elementor-motion-effects-element-type-background), .elementor-7297 .elementor-element.elementor-element-323b0df > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-7297 .elementor-element.elementor-element-242208b0{--display:flex;}.elementor-7297 .elementor-element.elementor-element-242208b0:not(.elementor-motion-effects-element-type-background), .elementor-7297 .elementor-element.elementor-element-242208b0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-7297 .elementor-element.elementor-element-2af66692{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-7285be87 *//* GRID */
.apc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* CARD */
.apc-product-card {
  text-align: center;
}

/* IMAGE */
.apc-product-image img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
}

/* TITLE */
.apc-product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* PRICE */
.apc-product-price {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* DIVIDER */
.apc-product-card::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #e5e5e5;
  margin: 20px auto;
}

/* BUTTON */
.apc-buy-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s ease;
}

.apc-buy-btn:hover {
  background: #d7c27d;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .apc-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .apc-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .apc-product-image img {
    max-width: 120px; /* smaller so 2 fit nicely */
  }
}

/* ================================
   FORCE EQUAL HEIGHT CARDS
================================ */

.apc-products-grid {
  align-items: stretch;
}

.apc-product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* IMAGE AREA */
.apc-product-image {
  height: 180px; /* LOCK IMAGE HEIGHT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.apc-product-image img {
  max-height: 160px;
  width: auto;
}

/* TITLE FIX (prevents uneven rows) */
.apc-product-title {
  min-height: 44px; /* ensures 2 lines space */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* PRICE */
.apc-product-price {
  margin-bottom: 15px;
}

/* BUTTON ALWAYS SAME POSITION */
.apc-buy-btn {
  margin-top: auto;
}/* End custom CSS */