.elementor-64 .elementor-element.elementor-element-6e22d8f{--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;--padding-top:50px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-64 .elementor-element.elementor-element-6e22d8f:not(.elementor-motion-effects-element-type-background), .elementor-64 .elementor-element.elementor-element-6e22d8f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-64 .elementor-element.elementor-element-0d842b3 .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:40px;font-weight:700;text-transform:capitalize;}.elementor-64 .elementor-element.elementor-element-92fe075{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-64 .elementor-element.elementor-element-92fe075:not(.elementor-motion-effects-element-type-background), .elementor-64 .elementor-element.elementor-element-92fe075 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-64 .elementor-element.elementor-element-67ce0e3{--display:flex;--min-height:50px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-64 .elementor-element.elementor-element-67ce0e3:not(.elementor-motion-effects-element-type-background), .elementor-64 .elementor-element.elementor-element-67ce0e3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-64 .elementor-element.elementor-element-93da72c{--display:flex;}.elementor-64 .elementor-element.elementor-element-93da72c:not(.elementor-motion-effects-element-type-background), .elementor-64 .elementor-element.elementor-element-93da72c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-64 .elementor-element.elementor-element-fa0964a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-fc19e0c *//* 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 */