.recommendation-section {
    max-width: 1220px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 0 20px 0;
}
.recommendation-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.recommendation-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}
.recommendation-section__label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 0;
    color: #23282d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.recommendation-section__title {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #23282d;
}

.recommendation-row-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    justify-content: center;
}
.recommendation-row {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 1171px;
    flex: 0 0 1171px;
    max-width: 100%;
    padding: 8px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.recommendation-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Webkit */
}

.recommendation-section__item {
    width: 287px;
    flex: 0 0 287px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    margin-right: 9px;
    transition: transform 0.2s ease;
}

.recommendation-section__item:hover {
    transform: translateY(-2px);
}
.recommendation-section__item:last-child {
    margin-right: 0;
}

.recommendation-section__img {
    width: 287px;
    height: 287px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
}
.recommendation-arrow {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    margin: 0;
}
.recommendation-arrow.left {
    left: -48px;
}
.recommendation-arrow.right {
    right: -48px;
}
.recommendation-arrow:hover {
    background: #333;
}

.recommendation-arrow img {
    width: 16px;
    height: 16px;
}

.recommendation-arrow.left img {
    transform: rotate(180deg);
}

.recommendation-section__info {
    width: 100%;
    margin-top: 8px;
}
.recommendation-section__code {
    font-size: 12px;
    color: #5F5F5F;
    margin-bottom: 2px;
    text-align: left;
}
.recommendation-section__name {
    font-size: 14px;
    color: #222222;
    text-align: left;
    font-weight: 500;
}

.recommendation-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    min-height: 24px;
    gap: 10px;
}
.recommendation-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #222;
    background: #fff;
    margin: 0 4px;
    padding: 0;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
    display: inline-block;
}
.recommendation-dot.active {
    background: #222;
    border-color: #222;
}

@media (max-width: 900px) {
    .recommendation-section__header { margin-left: 20px; }
    .recommendation-section__label { font-size: 13px; }
    .recommendation-section__title { font-size: 18px; }
    .recommendation-section__img { height: 120px; }
    .recommendation-section__item { width: 180px; flex: 0 0 180px; }
}

.ev-recommendation-bg {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}