.elementor-198 .elementor-element.elementor-element-1f672fb{--display:flex;--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;}@media(min-width:768px){.elementor-198 .elementor-element.elementor-element-1f672fb{--content-width:1250px;}}/* Start custom CSS for shortcode, class: .elementor-element-1686f52 *//* ============================================================
   DS PRODUCT CARDS – SHARPER, MATCHED TO REFERENCE
   ============================================================ */

/* GRID LAYOUT */
.ds-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 40px 0;
}

/* PRODUCT CARD */
.ds-product-card {
  background: #ffffff;
  border-radius: 16px;                       /* sharper corners */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f1f1;                 /* thin light border */
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);  /* soft shadow */
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ds-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

/* IMAGE WRAPPER */
.ds-product-image-wrap {
  position: relative;
  background: #fafafa;
}

/* top corners same radius as card */
.ds-product-image-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* SAVE BADGE */
.ds-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #00c58a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* PRODUCT INFO */
.ds-product-info {
  padding: 14px 16px 18px;
}

/* TITLE */
.ds-product-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #222;
}

.ds-product-title a {
  color: inherit;
  text-decoration: none;
}

.ds-product-title a:hover {
  text-decoration: underline;
}

/* PRICES */
.ds-product-price {
  margin-bottom: 14px;
}

.ds-price-sale {
  color: #02a887;
  font-size: 14px;
  font-weight: 700;
  margin-right: 6px;
}

.ds-price-regular {
  color: #7f7f7f;
  text-decoration: line-through;
  font-size: 13px;
}

.ds-price-normal {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

/* BUTTON WRAPPER */
.ds-product-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   BUTTON BASE STYLE (BOTH BUTTONS)
   ============================================================ */

.ds-btn,
.ds-product-card .add_to_cart_button {
  position: relative;
  z-index: 0;
  overflow: hidden;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  width: 100%;
  height: 44px;
  padding: 0 12px;

  border-radius: 6px;
  border: 2px solid transparent;
  background: transparent;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

/* Remove Woo default styling inside card */
.ds-product-card .button {
  background: transparent;
  box-shadow: none;
  margin: 0;
}

/* ============================================================
   NORMAL COLORS (FULL SOLID BUTTONS)
   ============================================================ */

/* Add to cart – solid teal */
.ds-product-card .add_to_cart_button,
.ds-btn-add {
  background: #009688 !important;
  border-color: #009688 !important;
  color: #ffffff !important;
}

/* Order now – solid red */
.ds-btn-order {
  background: #e53935 !important;
  border-color: #e53935 !important;
  color: #ffffff !important;
}

/* ============================================================
   GATE PANELS (SAME ANIMATION BOTH BUTTONS)
   ============================================================ */

/* our own pseudo elements (override Woo icons) */
.ds-btn::before,
.ds-btn::after,
.ds-product-card .add_to_cart_button::before,
.ds-product-card .add_to_cart_button::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: -1;

  transform: translateX(0);
  transition: transform 0.45s ease;
}

/* left / right placement */
.ds-btn::before,
.ds-product-card .add_to_cart_button::before { left: 0; }
.ds-btn::after,
.ds-product-card .add_to_cart_button::after { right: 0; }

/* panel colors – teal for add, red for order */
.ds-btn-add::before,
.ds-btn-add::after,
.ds-product-card .add_to_cart_button::before,
.ds-product-card .add_to_cart_button::after {
  background: #009688;
}

.ds-btn-order::before,
.ds-btn-order::after {
  background: #e53935;
}

/* ============================================================
   HOVER / TAP – GATE OPENS, WHITE + OUTLINE
   ============================================================ */

/* gate slides out */
.ds-btn:hover::before,
.ds-product-card .add_to_cart_button:hover::before,
.ds-btn:active::before,
.ds-product-card .add_to_cart_button:active::before {
  transform: translateX(-100%);
}

.ds-btn:hover::after,
.ds-product-card .add_to_cart_button:hover::after,
.ds-btn:active::after,
.ds-product-card .add_to_cart_button:active::after {
  transform: translateX(100%);
}

/* hover look – white bg + colored border + colored text */
.ds-product-card .add_to_cart_button:hover,
.ds-product-card .add_to_cart_button:active,
.ds-btn-add:hover,
.ds-btn-add:active {
  background: #ffffff !important;
  color: #009688 !important;
  border-color: #009688 !important;
}

.ds-btn-order:hover,
.ds-btn-order:active {
  background: #ffffff !important;
  color: #e53935 !important;
  border-color: #e53935 !important;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablet: 3 columns */
@media (max-width: 1200px) {
  .ds-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet: 3 columns, slightly smaller image */
@media (max-width: 1024px) {
  .ds-products-grid {
    gap: 20px;
  }

  .ds-product-image-wrap img {
    height: 210px;
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .ds-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
  }

  .ds-product-card {
    border-radius: 14px;
  }

  .ds-product-image-wrap img {
    height: 170px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  .ds-product-info {
    padding: 12px 10px 14px;
  }

  .ds-product-title {
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  .ds-price-sale {
    font-size: 13px;
  }

  .ds-price-regular {
    font-size: 12px;
  }

  .ds-btn,
  .ds-product-card .add_to_cart_button {
    height: 40px;
    font-size: 13px;
    padding: 0 8px;
  }

  .ds-badge {
    font-size: 10px;
    padding: 3px 10px;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .ds-products-grid {
    gap: 10px;
  }

  .ds-product-image-wrap img {
    height: 155px;
  }

  .ds-btn,
  .ds-product-card .add_to_cart_button {
    height: 38px;
    font-size: 12.5px;
  }
}/* End custom CSS */


