.apg-main-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.apg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.apg-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    padding-bottom: 20px;
    text-align: center;
    overflow: hidden;
}

.apg-img-wrap {
    position: relative;
    background: #f1f1f1;
    padding: 25px;
}

.apg-img-wrap img {
    width: 100%;
    height: auto;
}

.apg-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .3s;
}

.apg-img-wrap:hover .apg-hover-btn {
    opacity: 1;
}

.apg-hover-btn a {
    background: #ffeb3b;
    padding: 10px 20px;
    font-weight: 600;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
}

.apg-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.apg-price {
    color: #555;
    margin-top: 7px;
}
