.acpp-store-btn {
    height: 85px;
    margin: 5px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.acpp-store-btn:hover {
    transform: scale(1.05);
}

.acpp-swiper {
    padding: 20px;
}

.acpp-swiper .swiper-slide {
    width: auto;
}

.acpp-swiper img {
    height: 500px;
    /* border-radius: 20px; */
}

.acpp-wrapper {
    text-align: center;
    margin: 20px 0;
}

.acpp-icon {
    width: 200px;
    border-radius: 30px;
    /* background: #e8d3a8; */
    /* padding: 10px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}

.acpp-buttons {
    margin: 15px 0;
}

.acpp-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e8d3a8;
    border-radius: 20px;
    margin: 5px;
    text-decoration: none;
    color: #000;
}

.acpp-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px;
}

.acpp-slider img {
    width: 100%;
    height: auto;
    /* border-radius: 20px; */
}
.acpp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.acpp-card {
    border-radius: 10px;
    overflow: hidden;
}

/* 🔥 Square card */
.acpp-card-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;

    background-size: cover;
    background-position: center;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

/* overlay */
.acpp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* 🔥 Bottom container */
.acpp-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ✅ Title LEFT aligned */
.acpp-title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* ✅ Buttons CENTER aligned */
.acpp-card-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.acpp-card-buttons img {
    height: 50px;
}