.sp-4675-wrapper {
    font-family: 'Roboto', sans-serif;
    margin: 20px 0;
    width: 100%;
}

.sp-4675-title {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    font-weight: 600;
    color: #54595F; /* Secondary Theme Color */
    margin-bottom: 25px;
    text-align: center;
}

/* Swiper structural fixes */
.sp-4675-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 5px 20px 5px;
    box-sizing: border-box;
}

.sp-4675-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.sp-4675-slider .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

/* Card Design */
.sp-4675-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.sp-4675-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.sp-4675-img {
    display: block;
    overflow: hidden;
    background: #fdfdfd;
    position: relative;
    width: 100%;
}

.sp-4675-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sp-4675-card:hover .sp-4675-img img {
    transform: scale(1.05);
}

.sp-4675-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.sp-4675-prod-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.sp-4675-prod-title a {
    color: #54595F;
    text-decoration: none;
    transition: color 0.2s;
}

.sp-4675-prod-title a:hover {
    color: #CC0000; /* Red brand hover */
}

.sp-4675-price {
    font-size: 16px;
    font-weight: bold;
    color: #000000; /* Updated to Black as requested */
    margin-bottom: 15px;
}

.sp-4675-price del {
    color: #7A7A7A; 
    font-weight: normal;
    font-size: 14px;
    margin-right: 5px;
}

.sp-4675-atc {
    margin-top: auto;
}

/* Updated Button Styles based on visual reference */
.sp-4675-atc .button {
    background-color: #CC0000; /* Dark Red matching visual reference */
    color: #ffffff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 6px; /* Slightly more rounded */
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: auto;
}

.sp-4675-atc .button:hover {
    background-color: #A30000; /* Darker red on hover */
    transform: translateY(-2px);
}