/* Main layout */
.featured-section {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Left image side */
.image-wrapper {
  height: 583px;
  flex: 1 0 0;
  border-radius: 8px;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.save-badge {
  display: flex;
  padding: 2px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 4px;
  background: var(--brand1, #fde6d2);
}

/* Right info side */
.product-info-wrapper {
  display: flex;
  width: 650px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
}

.title-tags-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* price */
.featured-price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.featured-price del {
  color: var(--grey1);
  text-decoration: line-through;
}
.featured-price ins {
  text-decoration: none;
  color: var(--black1);
}

/* description */
.short-description {
  align-self: stretch;
  color: var(--grey1);
}

/* Btn */
.featured-buttons {
  display: flex;
}

.view-product {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.view-product:hover {
  color: var(--grey1);
}

/* responsive */
@media (max-width: 1333px) {
  .product-info-wrapper {
    width: 550px;
  }
}

@media (max-width: 1090px) {
  .featured-section {
    flex-direction: column;
    gap: 24px;
  }
  .image-wrapper {
    width: 100%;
    height: unset;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .product-info-wrapper {
    width: 100%;
    gap: 24px;
  }
}

@media (max-width: 440px) {
  .featured-buttons {
    width: 100%;
  }

  .featured-buttons > a {
    flex: 1;
  }
}

@media (max-width: 360px) {
  .image-wrapper,
  .image-wrapper img {
    height: 318px;
  }
}

@media (max-width: 329px) {
  .featured-buttons {
    flex-direction: column;
  }
}
