.aps-product-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
width: 100%;
max-width: 500px;
padding: 20px;
border: 1px solid #e2e2e2;
border-radius: 8px;
background: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
text-align: center;
}
.aps-product-card.aps-error {
color: #b00020;
border-color: #f3c6c6;
background: #fff5f5;
}
.aps-product-image {
display: block;
width: 100%;
}
.aps-product-image img {
width: 100%;
max-width: 320px;
height: auto;
border-radius: 4px;
margin: 0 auto;
}
.aps-product-body {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
width: 100%;
}
.aps-product-title {
margin: 0;
font-size: 16px;
line-height: 1.3;
}
.aps-product-title a {
color: #111;
text-decoration: none;
}
.aps-product-title a:hover {
text-decoration: underline;
}
.aps-product-rating {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
font-size: 13px;
color: #555;
}
.aps-stars {
color: #ff9900;
font-size: 15px;
letter-spacing: 1px;
}
.aps-product-price {
font-size: 20px;
font-weight: 700;
color: #B12704;
}
.aps-price-wrap {
display: flex;
align-items: baseline;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
}
.aps-price-original {
font-size: 13px;
color: #767676;
text-decoration: line-through;
}
.aps-price-current {
font-size: 20px;
font-weight: 700;
color: #067D06;
}
.aps-discount-badge {
font-size: 13px;
font-weight: 700;
color: #067D06;
}
.aps-product-availability {
font-size: 13px;
color: #007600;
}
.aps-buy-now-button,
.aps-buy-now-button:link,
.aps-buy-now-button:visited,
.aps-buy-now-button:hover,
.aps-buy-now-button:focus,
.aps-buy-now-button:active {
display: inline-block;
width: 100%;
max-width: 320px;
margin-top: 4px;
padding: 12px 18px;
background: #ff9900;
color: #ffffff !important;
font-weight: 600;
text-align: center;
text-decoration: none !important;
border-radius: 24px;
transition: background 0.15s ease-in-out;
}
.aps-buy-now-button:hover,
.aps-buy-now-button:focus {
background: #e68a00;
}