.angie-bs-header {
    text-align: center;
    margin-bottom: 40px;
}

.angie-bs-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.angie-bs-header p {
    font-size: 1.1em;
    color: #666;
    margin: 0;
}

.angie-bs-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* space for pagination */
}

.angie-bs-card {
    position: relative;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.angie-bs-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.angie-bs-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}

.angie-bs-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

/* Hover Effect: Scale up and slight translate Z for depth */
.angie-bs-card:hover .angie-bs-img-wrap img {
    transform: scale(1.1);
}

.angie-bs-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.angie-bs-title {
    font-size: 1.1em;
    margin: 0 0 10px;
    line-height: 1.3;
}

.angie-bs-title a {
    text-decoration: none;
    color: inherit;
}

.angie-bs-price {
    margin-bottom: 15px;
    font-weight: 600;
    color: #111;
}

.angie-bs-action {
    margin-top: auto;
}

.angie-bs-action .button {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8em;
    border-radius: 3px;
    z-index: 2;
}

.swiper-container.angie-bs-slider {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    height: auto; /* ensure all cards match height */
}
