/* ===========================================
   FULL FIXED PRODUCT CARD (NO HTML CHANGES)
   Modern UI + Smooth Animations + Price Effects
   =========================================== */

/* Hide hover overlays (your behavior) */
.ec-product-inner:hover .ec-product-hover,
.ec-product-inner:hover .pro-hidden-block {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Remove rating (your behavior) */
.ec-product-inner .ec-pro-content .ec-pro-rating {
  display: none !important;
  margin-bottom: 5px;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  align-items: center;
  justify-content: center;
}

/* Column layout inner wrapper */
.ec-product-inner .ec-pro-content .ec-pro-rat-pri-inner {
  height: auto !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
}

/* disable pointer events only for overlay images (safe) */
.ec-product-inner .ec-product-hover,
.ec-product-inner .hover-image {
  pointer-events: none;
}

/* new price base */
.ec-product-inner .ec-pro-content .ec-price span.new-price {
  font-size: 14px !important;
  color: var(--primary-color);
  font-weight: 700;
}

/* icons size */
.ec-pro-actions svg {
  height: 19px !important;
}

/* actions position */
.ec-product-inner .ec-pro-image .ec-pro-actions .wishlist,
.ec-product-inner .ec-pro-image .ec-pro-actions .add-to-cart {
  right: 0 !important;
}

/* ===============================
   ✅ MAIN CARD (FULL FIXED)
   =============================== */
.ec-product-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  /* IMPORTANT: it was pointer-events:none => hover never works */
  pointer-events: auto !important;

  /* modern look */
  padding: 0px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 16px !important;
  background-color: #fff !important;
  overflow: hidden !important;

  /* modern shadow */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10) !important;

  position: relative;
  isolation: isolate;
  transform: translateZ(0);

  max-width: 97vw;
  margin: auto;

  transition: transform 0.28s cubic-bezier(.2,.85,.2,1),
              box-shadow 0.28s cubic-bezier(.2,.85,.2,1),
              border-color 0.28s cubic-bezier(.2,.85,.2,1);
}

/* soft premium glow overlay */
.ec-product-inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(900px 240px at 15% 0%,
      rgba(52,116,212,0.16),
      rgba(255,255,255,0) 55%),
    radial-gradient(700px 240px at 95% 110%,
      rgba(255,132,0,0.10),
      rgba(255,255,255,0) 55%);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.2,.85,.2,1);
  z-index: 0;
  pointer-events: none;
}

/* keep content above glow */
.ec-product-inner .ec-pro-image,
.ec-product-inner .ec-pro-image-outer,
.ec-product-inner .ec-pro-content {
  position: relative;
  z-index: 1;
}

/* hover / focus / tap */
@media (hover:hover) {
  .ec-product-inner:hover,
  .ec-product-inner:focus-within {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 55px rgba(0,0,0,0.16) !important;
    border-color: rgba(52,116,212,0.18) !important;
  }

  .ec-product-inner:hover::before,
  .ec-product-inner:focus-within::before {
    opacity: 1;
  }
}

/* tap feedback */
.ec-product-inner:active {
  transform: scale(0.995);
}

/* Keep actions visible and clickable (your behavior) */
.ec-product-inner:hover .ec-pro-image .ec-pro-actions {
  transform: none;
}

.ec-product-inner .ec-pro-image a.quickview,
.ec-product-inner .ec-pro-image .ec-pro-actions {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* ===============================
   IMAGE AREA (WITH SHINE ANIMATION)
   =============================== */
.ec-product-inner .ec-pro-image {
  position: relative;
  overflow: hidden;
  object-fit: contain;
  margin: 0 auto;
}

.ec-product-inner .ec-pro-image .image {
  position: relative;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 220px;
}

.ec-product-inner .ec-pro-image .image.loaded {
  background-color: transparent !important;
}

/* shimmer loader */
.ec-product-inner .ec-pro-image .image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 245, 245, 0.1) 0%,
    rgba(230, 230, 230, 0.8) 50%,
    rgba(245, 245, 245, 0.1) 100%
  );
  animation: shimmer 2s infinite;
  z-index: 1;
}

.ec-product-inner .ec-pro-image .image.loaded::before {
  display: none;
}

.ec-product-inner .ec-pro-image .image img {
  z-index: 1;
  max-width: 100%;
  transition: transform 0.5s cubic-bezier(.2,.85,.2,1);
  object-fit: contain;
  display: none;
  height: 95% !important;
}

.ec-product-inner .ec-pro-image .image.loaded img {
  display: inline-block;
}

.ec-product-inner .ec-pro-image .image img.hover-image {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  opacity: 0;
}

/* outer wrapper */
.ec-product-inner .ec-pro-image-outer {
  transition: all 0.3s ease 0s;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 32%;
  width: 100%;
}

/* shine sweep */
.ec-product-inner .ec-pro-image-outer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 38%,
    rgba(255,255,255,0) 70%
  );
  transform: translateX(-140%);
  transition: transform 0.65s cubic-bezier(.2,.85,.2,1);
  pointer-events: none;
  z-index: 2;
}

@media (hover:hover) {
  .ec-product-inner:hover .ec-pro-image-outer::after {
    transform: translateX(140%);
  }

  .ec-product-inner:hover .ec-pro-image .image img {
    transform: scale(1.06);
  }
}

/* hover layer stays hidden (your behavior) */
.ec-product-inner .ec-product-hover {
  transition: all 0.3s ease-in-out;
  position: absolute;
  inset: 0;
  visibility: hidden;
  background-color: #fff;
  opacity: 0;
  border-radius: 14px;
  z-index: 9;
  border: 1px solid #d9d9d9;
}

/* ===============================
   CONTENT AREA (MODERN)
   =============================== */
.ec-product-inner .ec-pro-content {
  width: 100%;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 3;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 12px 10px 10px !important;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

/* hidden block */
.ec-product-inner .pro-hidden-block {
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: calc(100% - 4px);
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

/* actions */
.ec-product-inner .ec-pro-actions {
  display: flex;
  align-items: center;
  margin: 11px auto 0;
  justify-content: space-evenly;
}

.ec-product-inner .ec-pro-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: #202020;
  margin: 0;
  border-radius: 10px;
}

@media (hover:hover) {
  .ec-product-inner .ec-pro-actions a:hover {
    transform: translateY(-2px);
  }
}

/* title */
.ec-product-inner .ec-pro-content .ec-pro-title {
  margin: 0 0 3px;
  font-family: "Tajawal-Bold";
  font-size: 14px;
}

.ec-product-inner .ec-pro-content .ec-pro-title a {
  width: 100%;
  text-decoration: none;
  color: #202020;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 13.3px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.ec-product-inner .ec-pro-content .ec-pro-title a:hover {
  color: #0d4fcf;
}

/* subtitle */
.ec-product-inner .ec-pro-content .ec-pro-stitle {
  text-decoration: none;
  color: #202020;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 12px;
}

/* ===============================
   PRICE (COOL ANIMATIONS)
   =============================== */
.ec-product-inner .ec-pro-content .ec-price {
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d4fcf;
  gap: 10px;
}

/* NEW price: pop + gradient text */
.ec-product-inner .ec-pro-content .ec-price span.new-price {
  display: inline-block;
  font-weight: 900 !important;
  transform: translateY(12px) scale(0.94);
  opacity: 0;
  animation: pricePop 0.55s cubic-bezier(.2,.85,.2,1) forwards;
  animation-delay: 0.08s;

  background: linear-gradient(90deg,#111827 0%, var(--primary-color) 55%, #111827 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* OLD price: line draws instead of default */
.ec-product-inner .ec-pro-content .ec-price span.old-price {
  font-size: 14px;
  color: #4b5563;
  margin-left: 9px;
  text-decoration: none !important;

  position: relative;
  display: inline-block;
  transform: translateY(10px);
  opacity: 0;
  animation: oldFade 0.45s cubic-bezier(.2,.85,.2,1) forwards;
  animation-delay: 0.18s;
}

html[dir="ltr"] .ec-product-inner .ec-pro-content .ec-price span.old-price {
  margin-right: 9px;
  margin-left: 0;
}

/* animated strike line */
.ec-product-inner .ec-pro-content .ec-price span.old-price::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 50%;
  height: 1.6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(75,85,99,0.08) 0%,
    rgba(75,85,99,0.75) 16%,
    rgba(75,85,99,0.75) 84%,
    rgba(75,85,99,0.08) 100%
  );
  box-shadow: 0 0 0.4px rgba(75,85,99,0.6);
  transform-origin: right center;
  transform: translateY(-50%) scaleX(0) rotate(-2deg);
  animation: strikeDraw 0.55s cubic-bezier(.2,.85,.2,1) forwards;
  animation-delay: 0.26s;
}

html[dir="ltr"] .ec-product-inner .ec-pro-content .ec-price span.old-price::after {
  transform-origin: left center;
}

/* rat price block */
.ec-product-inner .ec-pro-content .ec-pro-rat-price {
  overflow: hidden;
  height: 30px;
  line-height: 30px;
}

/* description */
.ec-product-inner .ec-pro-content .ec-pro-desc {
  line-height: 22px;
  color: #999;
  letter-spacing: 0.2px;
  font-size: 12px;
}

.ec-product-inner .ec-pro-content .btn {
  margin: 0 auto;
  border-radius: 30px;
  height: 40px;
  line-height: 40px;
  font-size: 10px;
  padding: 0 10px;
}

/* loading overlay */
.ec-product-inner .ec-pro-image.pro-loading:before {
  position: absolute;
  z-index: 98;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  opacity: 0.5;
}

/* percentage badge */
.percentage {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  font-size: 12px;
  line-height: 24px;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

html[dir="ltr"] .percentage {
  left: auto;
  right: 10px;
}

/* Wishlist */
a.wishlist .svg_img.pro_svg {
  height: 19px;
}
.wishlist {
  pointer-events: all;
}

/* ===============================
   LIST VIEW (KEEP YOUR BEHAVIOR)
   =============================== */
.list-view .dataAll {
  grid-template-columns: 1fr !important;
}

.list-view .ec-product-inner {
  align-items: center;
  flex-direction: row;
  column-gap: 5px;
  height: 228;
  position: relative;
}

.list-view .ec-product-inner .ec-pro-image .image {
  height: 110px !important;
}

.list-view .percentage {
  top: 8px;
  right: 8px;
  border-radius: 6px;
  padding: 4px 8px;
}
html[dir="ltr"] .list-view .percentage {
  right: auto;
  left: 8px;
  border-radius: 6px;
  padding: 4px 8px;
}


  .list-view .wishlist {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
html[dir="ltr"] .list-view .wishlist {
    right: 16px;
    left: initial;
    transform: translateY(-50%);
}

html[dir="rtl"] .list-view .ec-pro-content {
    margin-left: 48px;
}

html[dir="ltr"] .list-view .ec-pro-content {
    margin-right: 48px;
}

.list-view .catProduct {
  height: 120px;
}

/* title clamp in list view + category */
.list-view .ec-product-inner .ec-pro-content .ec-pro-title a,
.ec-product-inner.categProduct .ec-pro-content .ec-pro-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  max-height: 36px;
  overflow: hidden;
  line-height: 18px;
}

.ec-product-inner.categProduct .ec-pro-content .ec-pro-title a {
  min-height: 36px;
}

/* grid */
.shop-pro-inner .dataAll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  margin-top: 0px !important;
}
.shop-pro-inner .dataAll > * {
  min-width: 0;
}
@media (min-width: 786px) {
  .shop-pro-inner .dataAll {
    grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
  }
}

/* daily offers title + price sizing (your custom) */
#daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a {
  font-size: 15.3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  min-height: 2.3em;
  max-height: 2.3em;
}
#daily_offers .ec-product-inner .ec-pro-content .ec-price span.new-price {
  font-size: 16px !important;
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes pricePop {
  0% { opacity: 0; transform: translateY(14px) scale(0.93); filter: blur(2px); }
  60% { opacity: 1; transform: translateY(-2px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes oldFade {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes strikeDraw {
  0% { transform: translateY(-50%) scaleX(0) rotate(-2deg); opacity: 0.2; }
  100% { transform: translateY(-50%) scaleX(1) rotate(-2deg); opacity: 1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ec-product-inner,
  .ec-product-inner::before,
  .ec-product-inner .ec-pro-image-outer::after,
  .ec-product-inner .ec-pro-content .ec-price span.new-price,
  .ec-product-inner .ec-pro-content .ec-price span.old-price,
  .ec-product-inner .ec-pro-content .ec-price span.old-price::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .ec-product-inner .ec-pro-image-outer::after {
    display: none !important;
  }
}

/* =========================================================
   Product Card Redesign (reference style)
   - Rounded clean card
   - Top-left discount pill
   - Top-right wishlist
   - Centered + action, title, and price
   ========================================================= */
#daily_offers .ec-product-inner,
#second_product_section .ec-product-inner,
#third_product_section .ec-product-inner,
#relatedItemsSection .ec-product-inner,
.shop-pro-inner:not(.list-view) .ec-product-inner,
.ec-product-inner.product-card-redesign {
  border-radius: 16px !important;
  border: 1px solid #ececec !important;
  background: #ffffff !important;
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.08) !important;
  overflow: hidden !important;
  transform: none !important;
}

#daily_offers .ec-product-inner::before,
#second_product_section .ec-product-inner::before,
#third_product_section .ec-product-inner::before,
#relatedItemsSection .ec-product-inner::before,
.shop-pro-inner:not(.list-view) .ec-product-inner::before,
.ec-product-inner.product-card-redesign::before,
#daily_offers .ec-product-inner .ec-pro-image-outer::after,
#second_product_section .ec-product-inner .ec-pro-image-outer::after,
#third_product_section .ec-product-inner .ec-pro-image-outer::after,
#relatedItemsSection .ec-product-inner .ec-pro-image-outer::after,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer::after,
.ec-product-inner.product-card-redesign .ec-pro-image-outer::after {
  display: none !important;
}

@media (hover: hover) {
  #daily_offers .ec-product-inner:hover,
  #second_product_section .ec-product-inner:hover,
  #third_product_section .ec-product-inner:hover,
  #relatedItemsSection .ec-product-inner:hover,
  .shop-pro-inner:not(.list-view) .ec-product-inner:hover,
  .ec-product-inner.product-card-redesign:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(20, 20, 20, 0.12) !important;
    border-color: #e2e2e2 !important;
  }
}

#daily_offers .ec-product-inner .ec-pro-image-outer,
#second_product_section .ec-product-inner .ec-pro-image-outer,
#third_product_section .ec-product-inner .ec-pro-image-outer,
#relatedItemsSection .ec-product-inner .ec-pro-image-outer,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer,
.ec-product-inner.product-card-redesign .ec-pro-image-outer {
  border-radius: 16px 16px 0 0 !important;
  background: #f4f4f4 !important;
  border-bottom: 1px solid #ececec !important;
}

#daily_offers .ec-product-inner .ec-pro-image .image,
#second_product_section .ec-product-inner .ec-pro-image .image,
#third_product_section .ec-product-inner .ec-pro-image .image,
#relatedItemsSection .ec-product-inner .ec-pro-image .image,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image .image,
.ec-product-inner.product-card-redesign .ec-pro-image .image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #f2f2f2 !important;
}

#daily_offers .ec-product-inner .ec-pro-image .image img,
#second_product_section .ec-product-inner .ec-pro-image .image img,
#third_product_section .ec-product-inner .ec-pro-image .image img,
#relatedItemsSection .ec-product-inner .ec-pro-image .image img,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image .image img,
.ec-product-inner.product-card-redesign .ec-pro-image .image img,
#daily_offers .ec-product-inner .ec-pro-image-outer img,
#second_product_section .ec-product-inner .ec-pro-image-outer img,
#third_product_section .ec-product-inner .ec-pro-image-outer img,
#relatedItemsSection .ec-product-inner .ec-pro-image-outer img,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer img,
.ec-product-inner.product-card-redesign .ec-pro-image-outer img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
  padding: 0 !important;
}

#daily_offers .ec-product-inner .ec-pro-content,
#second_product_section .ec-product-inner .ec-pro-content,
#third_product_section .ec-product-inner .ec-pro-content,
#relatedItemsSection .ec-product-inner .ec-pro-content,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content,
.ec-product-inner.product-card-redesign .ec-pro-content {
  position: relative !important;
  text-align: right !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding: 10px 14px 14px 56px !important;
  min-height: 112px !important;
  letter-spacing: 0 !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-pro-title,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-title,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-title,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title {
  margin: 4px 0 8px !important;
  width: 100% !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
  color: #333333 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  min-height: 2.7em !important;
  max-height: 2.7em !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price {
  height: auto !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  margin: 0 !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price span.new-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price span.new-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price span.new-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price span.new-price,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price span.new-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price span.new-price {
  order: 1 !important;
  color: #2f2f2f !important;
  background: none !important;
  -webkit-text-fill-color: #2f2f2f !important;
  font-size: clamp(16px, 4.2vw, 22px) !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price span.old-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price span.old-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price span.old-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price span.old-price,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price span.old-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price span.old-price {
  order: 2 !important;
  color: #8b8b8b !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: line-through !important;
  white-space: nowrap !important;
  margin: 0 !important;
  animation: none !important;
  transform: none !important;
  opacity: 1 !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price span.old-price::after,
#second_product_section .ec-product-inner .ec-pro-content .ec-price span.old-price::after,
#third_product_section .ec-product-inner .ec-pro-content .ec-price span.old-price::after,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price span.old-price::after,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price span.old-price::after,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price span.old-price::after {
  display: none !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-pro-actions,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-actions,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-actions,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-actions,
#daily_offers .ec-product-inner .ec-pro-image .ec-pro-actions,
#second_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
#third_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
#relatedItemsSection .ec-product-inner .ec-pro-image .ec-pro-actions,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image .ec-pro-actions,
.ec-product-inner.product-card-redesign .ec-pro-image .ec-pro-actions {
  position: absolute !important;
  left: 12px !important;
  right: auto !important;
  bottom: 12px !important;
  top: auto !important;
  width: auto !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  z-index: 6 !important;
}

#daily_offers .ec-product-inner .ec-pro-actions .ec-btn-group,
#second_product_section .ec-product-inner .ec-pro-actions .ec-btn-group,
#third_product_section .ec-product-inner .ec-pro-actions .ec-btn-group,
#relatedItemsSection .ec-product-inner .ec-pro-actions .ec-btn-group,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-actions .ec-btn-group,
.ec-product-inner.product-card-redesign .ec-pro-actions .ec-btn-group,
#daily_offers .ec-product-inner .ec-pro-content .btn,
#second_product_section .ec-product-inner .ec-pro-content .btn,
#third_product_section .ec-product-inner .ec-pro-content .btn,
#relatedItemsSection .ec-product-inner .ec-pro-content .btn,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .btn,
.ec-product-inner.product-card-redesign .ec-pro-content .btn {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  background: #6b4320 !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(34, 21, 8, 0.24) !important;
  color: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#daily_offers .ec-product-inner .ec-pro-actions .ec-btn-group .product-open-btn__plus,
#second_product_section .ec-product-inner .ec-pro-actions .ec-btn-group .product-open-btn__plus,
#third_product_section .ec-product-inner .ec-pro-actions .ec-btn-group .product-open-btn__plus,
#relatedItemsSection .ec-product-inner .ec-pro-actions .ec-btn-group .product-open-btn__plus,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-actions .ec-btn-group .product-open-btn__plus,
.ec-product-inner.product-card-redesign .ec-pro-actions .ec-btn-group .product-open-btn__plus {
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  margin-top: -3px !important;
}

#daily_offers .ec-product-inner .wishlist,
#second_product_section .ec-product-inner .wishlist,
#third_product_section .ec-product-inner .wishlist,
#relatedItemsSection .ec-product-inner .wishlist,
.shop-pro-inner:not(.list-view) .ec-product-inner .wishlist,
.ec-product-inner.product-card-redesign .wishlist {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #ececec !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 8 !important;
  box-shadow: 0 2px 8px rgba(20, 20, 20, 0.09) !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content,
html[dir="ltr"] .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content {
  text-align: left !important;
  padding: 10px 56px 14px 14px !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-price {
  justify-content: flex-start !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-image .ec-pro-actions {
  right: 12px !important;
  left: auto !important;
}

/* Fix skeleton haze for redesigned cards */
#daily_offers .ec-product-inner .ec-pro-image .image::before,
#second_product_section .ec-product-inner .ec-pro-image .image::before,
#third_product_section .ec-product-inner .ec-pro-image .image::before,
#relatedItemsSection .ec-product-inner .ec-pro-image .image::before,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image .image::before,
.ec-product-inner.product-card-redesign .ec-pro-image .image::before {
  display: none !important;
  animation: none !important;
}

#daily_offers .ec-product-inner .wishlist .svg_img,
#second_product_section .ec-product-inner .wishlist .svg_img,
#third_product_section .ec-product-inner .wishlist .svg_img,
#relatedItemsSection .ec-product-inner .wishlist .svg_img,
.shop-pro-inner:not(.list-view) .ec-product-inner .wishlist .svg_img,
.ec-product-inner.product-card-redesign .wishlist .svg_img,
#daily_offers .ec-product-inner .wishlist svg,
#second_product_section .ec-product-inner .wishlist svg,
#third_product_section .ec-product-inner .wishlist svg,
#relatedItemsSection .ec-product-inner .wishlist svg,
.shop-pro-inner:not(.list-view) .ec-product-inner .wishlist svg,
.ec-product-inner.product-card-redesign .wishlist svg,
#daily_offers .ec-product-inner .wishlist img,
#second_product_section .ec-product-inner .wishlist img,
#third_product_section .ec-product-inner .wishlist img,
#relatedItemsSection .ec-product-inner .wishlist img,
.shop-pro-inner:not(.list-view) .ec-product-inner .wishlist img,
.ec-product-inner.product-card-redesign .wishlist img {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
}

#daily_offers .ec-product-inner .percentage,
#second_product_section .ec-product-inner .percentage,
#third_product_section .ec-product-inner .percentage,
#relatedItemsSection .ec-product-inner .percentage,
.shop-pro-inner:not(.list-view) .ec-product-inner .percentage,
.ec-product-inner.product-card-redesign .percentage {
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  transform: none !important;
  min-width: 0 !important;
  height: 24px !important;
  line-height: 24px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  background: #efb302 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.12) !important;
}

/* =========================================================
   Final Card Polish
   - Hide favorite buttons (per request)
   - Make title/new/old price stack clearly
   - Keep layout stable and design-only changes
   ========================================================= */

/* Hide favorite button everywhere in cards and product section */
.ec-product-inner .wishlist,
.ec-product-inner .ec-btn-group.wishlist,
.ec-single-qty .wishlist,
.ec-single-qty .wishlistm {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Better card spacing and cleaner typography */
#daily_offers .ec-product-inner .ec-pro-content,
#second_product_section .ec-product-inner .ec-pro-content,
#third_product_section .ec-product-inner .ec-pro-content,
#relatedItemsSection .ec-product-inner .ec-pro-content,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content,
.ec-product-inner.product-card-redesign .ec-pro-content {
  padding: 12px 14px 14px 56px !important;
  min-height: 120px !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-pro-title,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-title,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-title,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title {
  margin: 0 0 8px !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
  color: #2f2f2f !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  min-height: 2.6em !important;
}

/* Stack price lines vertically: title > new price > old price */
#daily_offers .ec-product-inner .ec-pro-content .ec-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  margin-top: 2px !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price span.new-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price span.new-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price span.new-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price span.new-price,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price span.new-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price span.new-price {
  order: 1 !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  color: #2d2d2d !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price span.old-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price span.old-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price span.old-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price span.old-price,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price span.old-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price span.old-price {
  order: 2 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #8a8a8a !important;
  text-decoration: line-through !important;
}

/* Hide old price for non-offer cards while preserving card/price block height */
.ec-product-inner .ec-pro-content .ec-price.no-offer-price .old-price-placeholder {
  order: 2 !important;
  display: block !important;
  font-size: 15px !important;
  line-height: 1 !important;
  min-height: 1em !important;
  visibility: hidden !important;
  pointer-events: none !important;
  user-select: none !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-price {
  align-items: flex-start !important;
}

/* Keep + button clean and non-overlapping */
#daily_offers .ec-product-inner .ec-pro-content .ec-pro-actions,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-actions,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-actions,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-actions {
  left: 12px !important;
  bottom: 12px !important;
}

@media (max-width: 576px) {
  #daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
  #second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
    font-size: 16px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content .ec-price span.new-price,
  #second_product_section .ec-product-inner .ec-pro-content .ec-price span.new-price,
  #third_product_section .ec-product-inner .ec-pro-content .ec-price span.new-price,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price span.new-price,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price span.new-price,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-price span.new-price {
    font-size: 24px !important;
  }
}

/* =========================================================
   Premium Final Touch
   ========================================================= */
#daily_offers .ec-product-inner,
#second_product_section .ec-product-inner,
#third_product_section .ec-product-inner,
#relatedItemsSection .ec-product-inner,
.shop-pro-inner:not(.list-view) .ec-product-inner,
.ec-product-inner.product-card-redesign {
  border-radius: 18px !important;
  border: 1px solid #e9e9e9 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%) !important;
  box-shadow: 0 10px 22px rgba(30, 30, 30, 0.08) !important;
}

#daily_offers .ec-product-inner .ec-pro-image-outer,
#second_product_section .ec-product-inner .ec-pro-image-outer,
#third_product_section .ec-product-inner .ec-pro-image-outer,
#relatedItemsSection .ec-product-inner .ec-pro-image-outer,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer,
.ec-product-inner.product-card-redesign .ec-pro-image-outer {
  border-bottom: 1px solid #efefef !important;
  background: #f7f7f7 !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
.shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
  letter-spacing: 0.1px !important;
}

/* Discount badge on top-right (requested) */
#daily_offers .ec-product-inner .percentage,
#second_product_section .ec-product-inner .percentage,
#third_product_section .ec-product-inner .percentage,
#relatedItemsSection .ec-product-inner .percentage,
.shop-pro-inner:not(.list-view) .ec-product-inner .percentage,
.ec-product-inner.product-card-redesign .percentage {
  right: 10px !important;
  left: auto !important;
  top: 10px !important;
  background: linear-gradient(135deg, #ffbc00 0%, #e59d00 100%) !important;
  box-shadow: 0 6px 14px rgba(229, 157, 0, 0.35) !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .percentage,
html[dir="ltr"] #second_product_section .ec-product-inner .percentage,
html[dir="ltr"] #third_product_section .ec-product-inner .percentage,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .percentage,
html[dir="ltr"] .shop-pro-inner:not(.list-view) .ec-product-inner .percentage,
html[dir="ltr"] .ec-product-inner.product-card-redesign .percentage {
  right: 10px !important;
  left: auto !important;
}

/* List-view badge + prices polish */
.list-view .ec-product-inner .percentage {
  right: 10px !important;
  left: auto !important;
  top: 10px !important;
}

html[dir="ltr"] .list-view .ec-product-inner .percentage {
  right: 10px !important;
  left: auto !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 3px !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-price .new-price {
  font-weight: 900 !important;
  font-size: 22px !important;
  line-height: 1.05 !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-price .old-price {
  font-size: 14px !important;
  color: #8a8a8a !important;
  text-decoration: line-through !important;
}

/* =========================================================
   Final + Button Position & Style
   ========================================================= */
#daily_offers .ec-product-inner .ec-pro-content .ec-pro-actions,
#second_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
#third_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-actions,
.shop-pro-inner .ec-product-inner .ec-pro-content .ec-pro-actions,
#daily_offers .ec-product-inner .ec-pro-image .ec-pro-actions,
#second_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
#third_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
#relatedItemsSection .ec-product-inner .ec-pro-image .ec-pro-actions,
.shop-pro-inner .ec-product-inner .ec-pro-image .ec-pro-actions {
  left: 12px !important;
  right: auto !important;
  bottom: 12px !important;
  top: auto !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-image .ec-pro-actions {
  left: 12px !important;
  right: auto !important;
}

#daily_offers .ec-product-inner .ec-pro-actions .ec-btn-group,
#second_product_section .ec-product-inner .ec-pro-actions .ec-btn-group,
#third_product_section .ec-product-inner .ec-pro-actions .ec-btn-group,
#relatedItemsSection .ec-product-inner .ec-pro-actions .ec-btn-group,
.shop-pro-inner .ec-product-inner .ec-pro-actions .ec-btn-group {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: linear-gradient(145deg, #7a4b22 0%, #5f3a1a 100%) !important;
  box-shadow: 0 7px 16px rgba(56, 33, 12, 0.28) !important;
}

#daily_offers .ec-product-inner .ec-pro-actions .ec-btn-group:hover,
#second_product_section .ec-product-inner .ec-pro-actions .ec-btn-group:hover,
#third_product_section .ec-product-inner .ec-pro-actions .ec-btn-group:hover,
#relatedItemsSection .ec-product-inner .ec-pro-actions .ec-btn-group:hover,
.shop-pro-inner .ec-product-inner .ec-pro-actions .ec-btn-group:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 18px rgba(56, 33, 12, 0.34) !important;
}

/* =========================================================
   Screenshot Style Card (Horizontal / List View)
   ========================================================= */
.list-view .ec-product-inner {
  flex-direction: row !important;
  align-items: center !important;
  min-height: 104px !important;
  border-radius: 18px !important;
  border: 1px solid #e4e4e4 !important;
  background: #f8f8f8 !important;
  box-shadow: 0 6px 14px rgba(24, 24, 24, 0.08) !important;
  overflow: hidden !important;
}

.list-view .ec-product-inner .ec-pro-image-outer {
  flex: 0 0 106px !important;
  width: 106px !important;
  min-width: 106px !important;
  max-width: 106px !important;
  height: 86px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #efefef !important;
  overflow: hidden !important;
}

.list-view .ec-product-inner .ec-pro-image .image {
  width: 100% !important;
  height: 86px !important;
  aspect-ratio: auto !important;
  border-radius: 14px !important;
  background: #efefef !important;
}

.list-view .ec-product-inner .ec-pro-image .image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.list-view .ec-product-inner .ec-pro-content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  min-height: 86px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 10px 14px 10px 58px !important;
  margin: 0 !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-pro-title {
  margin: 0 0 6px !important;
  width: 100% !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-pro-title a {
  color: #2f2f2f !important;
  font-size: clamp(16px, 2vw, 22px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  max-height: 2.5em !important;
  white-space: normal !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-price {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  margin: 0 !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-price .new-price {
  color: #6a3f1d !important;
  font-size: clamp(18px, 2.2vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-price .old-price {
  color: #8d8d8d !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: line-through !important;
}

.list-view .ec-product-inner .ec-pro-content .ec-pro-actions,
.list-view .ec-product-inner .ec-pro-image .ec-pro-actions {
  left: 12px !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}

.list-view .ec-product-inner .ec-pro-actions .ec-btn-group {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  border: 0 !important;
  background: linear-gradient(145deg, #7a4b22 0%, #5f3a1a 100%) !important;
  box-shadow: 0 8px 18px rgba(56, 33, 12, 0.3) !important;
}

.list-view .ec-product-inner .ec-pro-actions .ec-btn-group .product-open-btn__plus {
  color: #fff !important;
  font-size: 30px !important;
  line-height: 1 !important;
  margin-top: -3px !important;
}

/* =========================================================
   Responsive Card Pack
   ========================================================= */

/* Small phones */
@media (max-width: 360px) {
  #daily_offers .ec-product-inner,
  #second_product_section .ec-product-inner,
  #third_product_section .ec-product-inner,
  #relatedItemsSection .ec-product-inner,
  .shop-pro-inner:not(.list-view) .ec-product-inner,
  .ec-product-inner.product-card-redesign {
    border-radius: 14px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-image-outer,
  #second_product_section .ec-product-inner .ec-pro-image-outer,
  #third_product_section .ec-product-inner .ec-pro-image-outer,
  #relatedItemsSection .ec-product-inner .ec-pro-image-outer,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer,
  .ec-product-inner.product-card-redesign .ec-pro-image-outer {
    height: 120px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content,
  #second_product_section .ec-product-inner .ec-pro-content,
  #third_product_section .ec-product-inner .ec-pro-content,
  #relatedItemsSection .ec-product-inner .ec-pro-content,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content,
  .ec-product-inner.product-card-redesign .ec-pro-content {
    min-height: 96px !important;
    padding: 10px 10px 10px 50px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
  #second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
    font-size: 14px !important;
    line-height: 1.28 !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content .ec-price .new-price,
  #second_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
  #third_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price .new-price,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price .new-price,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-price .new-price {
    font-size: 20px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-actions .ec-btn-group,
  #second_product_section .ec-product-inner .ec-pro-actions .ec-btn-group,
  #third_product_section .ec-product-inner .ec-pro-actions .ec-btn-group,
  #relatedItemsSection .ec-product-inner .ec-pro-actions .ec-btn-group,
  .shop-pro-inner .ec-product-inner .ec-pro-actions .ec-btn-group {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
  }

  .list-view .ec-product-inner {
    min-height: 92px !important;
    border-radius: 14px !important;
  }

  .list-view .ec-product-inner .ec-pro-image-outer {
    flex: 0 0 84px !important;
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    height: 70px !important;
  }

  .list-view .ec-product-inner .ec-pro-image .image {
    height: 70px !important;
  }

  .list-view .ec-product-inner .ec-pro-content {
    min-height: 76px !important;
    padding: 8px 10px 8px 48px !important;
  }

  .list-view .ec-product-inner .ec-pro-content .ec-pro-title a {
    font-size: 14px !important;
  }

  .list-view .ec-product-inner .ec-pro-content .ec-price .new-price {
    font-size: 18px !important;
  }
}

/* Mobile */
@media (min-width: 361px) and (max-width: 575px) {
  #daily_offers .ec-product-inner .ec-pro-image-outer,
  #second_product_section .ec-product-inner .ec-pro-image-outer,
  #third_product_section .ec-product-inner .ec-pro-image-outer,
  #relatedItemsSection .ec-product-inner .ec-pro-image-outer,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer,
  .ec-product-inner.product-card-redesign .ec-pro-image-outer {
    height: 136px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content,
  #second_product_section .ec-product-inner .ec-pro-content,
  #third_product_section .ec-product-inner .ec-pro-content,
  #relatedItemsSection .ec-product-inner .ec-pro-content,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content,
  .ec-product-inner.product-card-redesign .ec-pro-content {
    min-height: 55px !important;
    padding: 10px 12px 12px 52px !important;
  }

  .list-view .ec-product-inner .ec-pro-image-outer {
    flex: 0 0 94px !important;
    width: 94px !important;
    min-width: 94px !important;
    max-width: 94px !important;
    height: 76px !important;
  }

  .list-view .ec-product-inner .ec-pro-image .image {
    height: 76px !important;
  }

  .list-view .ec-product-inner .ec-pro-content {
    min-height: 84px !important;
    padding: 9px 12px 9px 52px !important;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
  #daily_offers .ec-product-inner .ec-pro-image-outer,
  #second_product_section .ec-product-inner .ec-pro-image-outer,
  #third_product_section .ec-product-inner .ec-pro-image-outer,
  #relatedItemsSection .ec-product-inner .ec-pro-image-outer,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-image-outer,
  .ec-product-inner.product-card-redesign .ec-pro-image-outer {
    height: 170px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
  #second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
    font-size: 16px !important;
  }

  .list-view .ec-product-inner .ec-pro-image-outer {
    flex: 0 0 112px !important;
    width: 112px !important;
    min-width: 112px !important;
    max-width: 112px !important;
    height: 90px !important;
  }
}

/* Desktop wide polish */
@media (min-width: 1200px) {
  #daily_offers .ec-product-inner .ec-pro-content .ec-pro-title a,
  #second_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #third_product_section .ec-product-inner .ec-pro-content .ec-pro-title a,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-title a,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-pro-title a,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-title a {
    font-size: 18px !important;
  }

  #daily_offers .ec-product-inner .ec-pro-content .ec-price .new-price,
  #second_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
  #third_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
  #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price .new-price,
  .shop-pro-inner:not(.list-view) .ec-product-inner .ec-pro-content .ec-price .new-price,
  .ec-product-inner.product-card-redesign .ec-pro-content .ec-price .new-price {
    font-size: 30px !important;
  }
}

/* Grid view only: keep prices on the right side */
#dataAll:not(.list-view) .ec-product-inner .ec-pro-content {
  align-items: stretch !important;
  text-align: right !important;
}

#dataAll:not(.list-view) .ec-product-inner .ec-pro-content .ec-price {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  text-align: right !important;
}

#dataAll:not(.list-view) .ec-product-inner .ec-pro-content .ec-price .new-price,
#dataAll:not(.list-view) .ec-product-inner .ec-pro-content .ec-price .old-price {
  width: 100% !important;
  text-align: right !important;
}

/* =========================================================
   Final Price Alignment
   Keep prices on the right in slider + all product cards
   ========================================================= */
#daily_offers .ec-product-inner .ec-pro-content,
#second_product_section .ec-product-inner .ec-pro-content,
#third_product_section .ec-product-inner .ec-pro-content,
#relatedItemsSection .ec-product-inner .ec-pro-content,
.shop-pro-inner .ec-product-inner .ec-pro-content,
#dataAll .ec-product-inner .ec-pro-content,
.ec-product-inner.product-card-redesign .ec-pro-content,
.list-view .ec-product-inner .ec-pro-content {
  text-align: right !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price,
.shop-pro-inner .ec-product-inner .ec-pro-content .ec-price,
#dataAll .ec-product-inner .ec-pro-content .ec-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price,
.list-view .ec-product-inner .ec-pro-content .ec-price {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  text-align: right !important;
  gap: 3px !important;
}

#daily_offers .ec-product-inner .ec-pro-content .ec-price .new-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price .new-price,
.shop-pro-inner .ec-product-inner .ec-pro-content .ec-price .new-price,
#dataAll .ec-product-inner .ec-pro-content .ec-price .new-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price .new-price,
.list-view .ec-product-inner .ec-pro-content .ec-price .new-price,
#daily_offers .ec-product-inner .ec-pro-content .ec-price .old-price,
#second_product_section .ec-product-inner .ec-pro-content .ec-price .old-price,
#third_product_section .ec-product-inner .ec-pro-content .ec-price .old-price,
#relatedItemsSection .ec-product-inner .ec-pro-content .ec-price .old-price,
.shop-pro-inner .ec-product-inner .ec-pro-content .ec-price .old-price,
#dataAll .ec-product-inner .ec-pro-content .ec-price .old-price,
.ec-product-inner.product-card-redesign .ec-pro-content .ec-price .old-price,
.list-view .ec-product-inner .ec-pro-content .ec-price .old-price {
  width: 100% !important;
  text-align: right !important;
}

/* =========================================================
   LTR (English) Layout
   - Price on the left
   - + button on the right
   ========================================================= */
html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-content,
html[dir="ltr"] #dataAll .ec-product-inner .ec-pro-content,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content,
html[dir="ltr"] .list-view .ec-product-inner .ec-pro-content {
  text-align: left !important;
}

html[dir="ltr"] .list-view .ec-product-inner .ec-pro-content {
  padding: 10px 58px 10px 14px !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] #dataAll .ec-product-inner .ec-pro-content .ec-price,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-price,
html[dir="ltr"] .list-view .ec-product-inner .ec-pro-content .ec-price {
  align-items: flex-start !important;
  text-align: left !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] #dataAll .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-price .new-price,
html[dir="ltr"] .list-view .ec-product-inner .ec-pro-content .ec-price .new-price,
html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-price .old-price,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-price .old-price,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-price .old-price,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-price .old-price,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-content .ec-price .old-price,
html[dir="ltr"] #dataAll .ec-product-inner .ec-pro-content .ec-price .old-price,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-price .old-price,
html[dir="ltr"] .list-view .ec-product-inner .ec-pro-content .ec-price .old-price {
  text-align: left !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #dataAll .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-content .ec-pro-actions,
html[dir="ltr"] .list-view .ec-product-inner .ec-pro-content .ec-pro-actions,
html[dir="ltr"] #daily_offers .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #second_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #third_product_section .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] #dataAll .ec-product-inner .ec-pro-image .ec-pro-actions,
html[dir="ltr"] .ec-product-inner.product-card-redesign .ec-pro-image .ec-pro-actions,
html[dir="ltr"] .list-view .ec-product-inner .ec-pro-image .ec-pro-actions {
  right: 12px !important;
  left: auto !important;
}

html[dir="ltr"] #daily_offers .ec-product-inner .percentage,
html[dir="ltr"] #second_product_section .ec-product-inner .percentage,
html[dir="ltr"] #third_product_section .ec-product-inner .percentage,
html[dir="ltr"] #relatedItemsSection .ec-product-inner .percentage,
html[dir="ltr"] .shop-pro-inner .ec-product-inner .percentage,
html[dir="ltr"] #dataAll .ec-product-inner .percentage,
html[dir="ltr"] .ec-product-inner.product-card-redesign .percentage,
html[dir="ltr"] .list-view .ec-product-inner .percentage {
  left: 10px !important;
  right: auto !important;
}

/* =========================================================
   Quick Add Button Animations (+)
   ========================================================= */
.ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn {
  position: relative !important;
  overflow: hidden !important;
  transform: translateZ(0);
  will-change: transform, box-shadow, filter;
}

.ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.56) 0%,
    rgba(255, 255, 255, 0) 72%
  );
  opacity: 0;
  transform: scale(0.35);
  pointer-events: none;
}

.ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-press {
  animation: quickAddPress 220ms cubic-bezier(0.22, 0.86, 0.34, 1) both;
}

.ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-loading {
  animation: quickAddLoading 900ms ease-in-out infinite;
}

.ec-product-inner
  .ec-pro-actions
  .ec-btn-group.add-to-cart.product-open-btn.qa-loading
  .product-open-btn__plus {
  animation: quickAddPlusPulse 900ms ease-in-out infinite;
}

.ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-added {
  animation: quickAddAdded 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ec-product-inner
  .ec-pro-actions
  .ec-btn-group.add-to-cart.product-open-btn.qa-added::after {
  animation: quickAddRipple 620ms ease-out;
}

@keyframes quickAddPress {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.86);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes quickAddLoading {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.07);
    filter: brightness(1.08);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes quickAddPlusPulse {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-0.5px) scale(1.12);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes quickAddAdded {
  0% {
    transform: scale(1);
    filter: saturate(1);
  }
  42% {
    transform: scale(1.14);
    filter: saturate(1.24) brightness(1.12);
  }
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes quickAddRipple {
  0% {
    opacity: 0.7;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-press,
  .ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-loading,
  .ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-added,
  .ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-loading .product-open-btn__plus,
  .ec-product-inner .ec-pro-actions .ec-btn-group.add-to-cart.product-open-btn.qa-added::after {
    animation: none !important;
  }
}
