/** Shopify CDN: Minification failed

Line 8:10 Expected identifier but found whitespace
Line 8:133 Unterminated string token
Line 253:0 Unexpected "`"

**/
Of course. Let's give those recommendation cards a powerful, modern, and professional look that suits the Dongcheng power tool brand.

This new design introduces several enhancements:
*   **Modern Card Shape:** A clean white background with a subtle border and rounded corners.
*   **Interactive Hover Effect:** The card will gently lift and cast a shadow when a user hovers over it, creating a dynamic feel.
*   **Image Zoom:** The product image will slightly zoom in on hover, drawing attention to the product.
*   **Professional Typography:** The product title is made bolder and clearer. Prices are styled to easily distinguish between the sale price and the original price.
*   **Refined Colors:** Using a palette of clean whites, strong grays, and an accent color for sales and prices to match a professional brand identity.
*   **Updated Navigation Arrows:** The slider arrows are restyled to be cleaner and more modern.

Here is the complete, updated CSS. Simply replace all the old CSS for this section with the code below.

```css
/* =================================================================== */
/*  Product Recommendations Styling (Original + 5-Item Layout + Modern Card)
/* =================================================================== */

.product-recommendations {
  display: block;
  overflow: hidden;
}
.product-recommendations__list {
  margin-top: 2.4rem;
  position: relative;
}
@media (min-width: 1200px) {
  .product-recommendations__list {
    margin-top: 4.8rem;
  }
}
@media (min-width: 1360px) {
  .product-recommendations__list {
    margin-top: 5.6rem;
  }
}
.product-recommendations__list .swiper-wrapper {
  box-sizing: border-box;
}
.product-recommendations__list:not(.swiper-initialized) .product-recommendations__product.swiper-slide {
  margin-right: 8px;
  width: 100%;
}
@media (min-width: 576px) {
  .product-recommendations__list:not(.swiper-initialized) .product-recommendations__product.swiper-slide {
    width: calc((100% - 8px) / 2);
  }
}
@media (min-width: 750px) {
  .product-recommendations__list:not(.swiper-initialized) .product-recommendations__product.swiper-slide {
    margin-right: 24px;
    width: calc((100% - 48px) / 3);
  }
}


.product-recommendations__slider-nav {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-inline: 0.8rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 1200px) {
  .product-recommendations__slider-nav {
    left: -3rem;
    right: -3rem;
    padding: 0;
  }
}
.product-recommendations__slider-nav .swiper-button-prev,
.product-recommendations__slider-nav .swiper-button-next {
  width: 4.4rem;
  height: 4.4rem;
  pointer-events: all;
}
@media (min-width: 1200px) {
  .product-recommendations__slider-nav .swiper-button-prev,
  .product-recommendations__slider-nav .swiper-button-next {
    width: 5.2rem;
    height: 5.2rem;
  }
}
.product-recommendations__slider-nav .swiper-button-prev.swiper-button-disabled,
.product-recommendations__slider-nav .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.product-recommendations.complementary-products {
  overflow: visible;
}
.product-recommendations__item {
  position: relative;
}
.product-recommendations__item--border {
  padding-top: 4rem;
  border-top: 0.1rem solid rgb(var(--color-border));
}
.product-recommendations__heading {
  margin: 0;
}
.product-recommendations .grid__item {
  padding-bottom: 0;
}

/*
 * Section: Layout Override for 5 Items
 * This section adjusts the Swiper slider to display more items on larger screens.
 */

/* Default: 3-item view for tablets and smaller desktops */
@media (min-width: 750px) {
  .product-recommendations__list .product-recommendations__product.swiper-slide {
    width: calc((100% - 48px) / 3) !important; /* (100% - 2 gaps * 24px) / 3 items */
    margin-right: 24px !important;
  }
}

/* Large screens: 5-item view */
@media (min-width: 1200px) {
  .product-recommendations__list .product-recommendations__product.swiper-slide {
    width: calc((100% - 96px) / 5) !important; /* (100% - 4 gaps * 24px) / 5 items */
    margin-right: 24px !important;
  }
}


/* =================================================================== */
/*  Section: Ultra Modern & Professional Card Styling
/* =================================================================== */

/* Main Card Container Styling */
.product-recommendations .card-wrapper {
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb; /* Subtle, clean border */
  border-radius: 8px; /* Modern rounded corners */
  overflow: hidden; /* Ensures content stays within the rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Make cards in a row equal height */
  display: flex;
  flex-direction: column;
}

/* Card Hover Effect */
.product-recommendations .card-wrapper:hover {
  transform: translateY(-8px); /* Lifts the card up slightly */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Softer, more pronounced shadow */
}

/* Image container styling */
.product-recommendations .card__media {
  overflow: hidden; /* Hides the part of the image that zooms out */
  background-color: #f7f8f8; /* Light gray background to pop the product image */
}

/* Image hover effect */
.product-recommendations .card-wrapper:hover .card__media img {
  transform: scale(1.05); /* Slightly zooms the image */
}

.product-recommendations .card__media img {
  transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}

/* Card content area (title, price, etc.) */
.product-recommendations .card__content {
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows this area to fill the remaining space */
}

/* Product title styling */
.product-recommendations .card__heading {
  font-size: 1.5rem; /* Slightly larger for better readability */
  font-weight: 600; /* Bolder for a stronger look */
  color: #1a202c; /* Dark charcoal color for text */
  margin: 0 0 1rem;
  line-height: 1.3;
  flex-grow: 1; /* Pushes the price to the bottom */
}
.product-recommendations .card__heading a {
  text-decoration: none;
  color: inherit;
}
.product-recommendations .card__heading a:hover {
  color: #1a569e; /* Brand blue on hover */
}


/* Price styling */
.product-recommendations .price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: auto; /* Pushes price to the bottom of the card */
}

.product-recommendations .price .price-item--sale {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a569e; /* Brand's primary blue */
}

.product-recommendations .price .price-item--regular s {
  font-size: 1.4rem;
  color: #718096; /* Lighter gray for original price */
  text-decoration: line-through;
}

/* Sale Badge Styling */
.product-recommendations .badge--sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #E9292D; /* A strong, attention-grabbing red */
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Modern Slider Navigation Arrows */
.product-recommendations__slider-nav .swiper-button-prev,
.product-recommendations__slider-nav .swiper-button-next {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #1a202c;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.product-recommendations__slider-nav .swiper-button-prev:hover,
.product-recommendations__slider-nav .swiper-button-next:hover {
  background-color: #1a569e; /* Brand blue on hover */
  color: #ffffff;
}
```