.product-details-content :is(h2, h3, h4, h5, h6) {
    margin-bottom: 12px;
    font-family: var(--body-font);
}
.product-details-content p {
    margin-bottom: 10px;
}
.CartBtn {
  width: 155px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background-color: rgb(255, 208, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: .5s;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.103);
  position: relative;
}

.IconContainer {
  position: absolute;
  left: -50px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: .5s;
}

.icon {
  border-radius: 1px;
}

.text {
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(17, 17, 17);
  z-index: 1;
  transition-duration: .5s;
  font-size: 1.04em;
  font-weight: 600;
}

.CartBtn:hover .IconContainer {
  transform: translateX(58px);
  border-radius: 40px;
  transition-duration: .5s;
}

.CartBtn:hover .text {
  transform: translate(10px,0px);
  transition-duration: .5s;
}

.CartBtn:active {
  transform: scale(0.95);
  transition-duration: .5s;
}


/*Old wishlist button*/
.btn-wishlist{
    border: 1px solid #ff0000;
    border-radius: 50%;
        width: 50px;
    height: 50px;
    background: rgba(255, 0,0, 0.1);
}


/*Old wishlist button*/




/* ========================================   ACTION LIST======================================== */

.action-list {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}

/* ========================================
   ACTION ITEM
======================================== */

.action-list__item {
  position: relative;
  list-style: none;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #ffffff;

  cursor: pointer;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

  transition:
    width 0.45s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover State */
.action-list__item:hover {
  width: 190px;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   GRADIENT BACKGROUND
======================================== */

.action-list__item::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );

  opacity: 0;
  transition: opacity 0.45s ease;
}

.action-list__item:hover::before {
  opacity: 1;
}

/* Glow Effect */
.action-list__item::after {
  content: "";

  position: absolute;
  inset: 8px;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );

  filter: blur(18px);
  z-index: -1;

  opacity: 0;
  transition: opacity 0.45s ease;
}

.action-list__item:hover::after {
  opacity: 0.6;
}

/* ========================================
   ICON
======================================== */

.action-list__icon {
  position: absolute;

  font-size: 1.7rem;
  color: #666;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    color 0.35s ease;

  transition-delay: 0.15s;

  z-index: 2;
}

.action-list__item:hover .action-list__icon {
  transform: scale(0);
  opacity: 0;
  color: #ffffff;

  transition-delay: 0s;
}

/* ========================================
   TITLE
======================================== */

.action-list__title {
  position: relative;
  z-index: 2;

  font-size: 0.95rem;
  font-weight: 600;

  color: #ffffff;

  text-transform: uppercase;
  letter-spacing: 1px;

  transform: scale(0.5);
  opacity: 0;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;

  transition-delay: 0s;
}

.action-list__item:hover .action-list__title {
  transform: scale(1);
  opacity: 1;

  transition-delay: 0.2s;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 576px) {
  .action-list {
    gap: 16px;
    flex-wrap: wrap;
  }

  .action-list__item {
    width: 56px;
    height: 56px;
  }

  .action-list__item:hover {
    width: 160px;
  }

  .action-list__icon {
    font-size: 1.4rem;
  }

  .action-list__title {
    font-size: 0.8rem;
  }
}