.elementor-3304 .elementor-element.elementor-element-51c4d9d6{--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-3304 .elementor-element.elementor-element-51c4d9d6:not(.elementor-motion-effects-element-type-background), .elementor-3304 .elementor-element.elementor-element-51c4d9d6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-3304 .elementor-element.elementor-element-52b6ef2f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 10px) 0px;}.elementor-3304 .elementor-element.elementor-element-52b6ef2f .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:40px;font-weight:700;text-transform:capitalize;}.elementor-3304 .elementor-element.elementor-element-32a663b2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3304 .elementor-element.elementor-element-32a663b2:not(.elementor-motion-effects-element-type-background), .elementor-3304 .elementor-element.elementor-element-32a663b2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-3304 .elementor-element.elementor-element-5d882718{--display:flex;}.elementor-3304 .elementor-element.elementor-element-5d882718:not(.elementor-motion-effects-element-type-background), .elementor-3304 .elementor-element.elementor-element-5d882718 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-3304 .elementor-element.elementor-element-555fba78{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-1791fc5e *//* GRID LAYOUT */
.apc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
  align-items: stretch;
}

/* CARD STYLING */
.apc-product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.apc-product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apc-product-image img {
  max-height: 160px;
  width: auto;
  margin-bottom: 20px;
}

.apc-product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apc-product-price {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.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;
  margin-top: auto;
}

.apc-buy-btn:hover {
  background: #d7c27d;
  color: #000;
}

/* RESPONSIVE FIXES */
@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; }
}

/* DIVIDER LINE UNDER CARD */
.apc-product-card::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #e5e5e5;
  margin: 20px auto;
}/* End custom CSS */