.aipcb-product-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.aipcb-product {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #e5e5e5;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.aipcb-product:hover {
    box-shadow: 0 4px 12px rgba(125, 88, 96, 0.15);
}

.aipcb-product img {
    width: 100%;
    max-width: 383px;
    height: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.aipcb-product .aipcb-identifier {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #ff0037;
    padding: 8px 15px;
    margin: -20px -20px 15px -20px; /* Extend to edges of product box */
    letter-spacing: 1px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(255, 0, 55, 0.2);
}

.aipcb-product h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 10px 0 15px;
    color: #111;
    min-height: 50px;
}

.aipcb-product .price {
    font-size: 20px;
    font-weight: 700;
    color: #7D5860;
    margin: 10px 0;
}

.aipcb-product .price.unavailable {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.aipcb-product .aipcb-star-rating {
    display: inline-block;
    margin: 8px 0;
}

.aipcb-product .reviews {
    font-size: 14px;
    color: #555;
    margin: 5px 0 15px;
}

.aipcb-amazon-button {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
    background-color: #FFD814;
    border: 1px solid #FCD200;
    color: #0F1111;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    margin: 15px auto 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease;
}

.aipcb-amazon-button:hover {
    background-color: #F7CA00;
    border-color: #F2C200;
}

.aipcb-product .disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* Tablet */
@media (max-width: 1024px) {
    .aipcb-product-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .aipcb-product {
        padding: 15px;
    }
    
    .aipcb-product h3 {
        font-size: 16px;
        min-height: 45px;
    }
    
    .aipcb-product .price {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .aipcb-product-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .aipcb-product {
        max-width: 100%;
        padding: 20px;
    }
    
    .aipcb-product img {
        max-width: 100%;
    }
    
    .aipcb-product h3 {
        font-size: 18px;
        min-height: auto;
    }
    
    .aipcb-product .price {
        font-size: 20px;
    }
    
    .aipcb-amazon-button {
        max-width: 100%;
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .aipcb-product-box {
        gap: 15px;
    }
    
    .aipcb-product {
        padding: 15px;
    }
    
    .aipcb-product h3 {
        font-size: 16px;
    }
}