/* Offer Card Container - CSS Grid for auto-adjustment */
.aop-offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Each Offer Card */
.aop-offer-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.aop-offer-card:hover {
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

/* Product Details */
.aop-offer-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    text-align: center;
}

.aop-offer-price {
    font-size: 28px;
    font-weight: 800;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.aop-offer-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #ff4757; /* Attractive Red */
    color: white;
    padding: 5px 35px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

.aop-offer-list {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
    flex-grow: 1;
}

.aop-offer-list li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.aop-check {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

/* Inquiry Button */
.aop-offer-footer {
    text-align: center;
}

.aop-inquiry-btn {
    display: inline-block;
    background-color: #0056b3; /* Professional blue */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.aop-inquiry-btn:hover {
    background-color: #004494;
    transform: scale(1.02);
}
