/* WP PayPal Shop 前端样式 */

/* 商品列表 */
.pps-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.pps-product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.2s;
}
.pps-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pps-product-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}
.pps-product-title {
    font-size: 16px;
    margin: 8px 0;
}
.pps-product-price {
    font-size: 20px;
    color: #0070ba;
    font-weight: bold;
    margin: 8px 0;
}

/* 按钮 */
.pps-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #0070ba;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.pps-btn:hover { background: #005ea6; }
.pps-btn-primary { background: #0070ba; }
.pps-add-cart-btn { width: 100%; padding: 8px; }

/* 购物车 */
.pps-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.pps-cart-table th,
.pps-cart-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}
.pps-cart-table th {
    background: #f8f8f8;
    font-weight: 600;
}
.pps-qty-input {
    width: 60px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.pps-remove-btn {
    background: none;
    border: none;
    color: #d9534f;
    cursor: pointer;
    font-size: 18px;
}
.pps-cart-total {
    text-align: right;
    font-size: 18px;
    padding: 16px 0;
}

/* 结账 */
.pps-checkout {
    max-width: 700px;
    margin: 20px auto;
}
.pps-checkout-summary {
    margin-bottom: 24px;
}
.pps-form-group {
    margin-bottom: 16px;
}
.pps-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
.pps-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
#paypal-button-container {
    margin-top: 20px;
}
#pps-checkout-msg {
    margin-top: 12px;
    color: #d9534f;
}
.pps-order-received {
    text-align: center;
    padding: 40px;
}
.pps-order-received code {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
}

/* 购物车数量徽章 */
.pps-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d9534f;
    color: #fff;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 18px;
    text-align: center;
}

/* 直接购买页 */
.pps-direct-buy {
    max-width: 500px;
    text-align: center;
}
.pps-buy-product-info {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.pps-product-img-large {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}
.pps-product-desc {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
}
.pps-product-price-large {
    font-size: 28px;
    color: #0070ba;
    font-weight: bold;
    margin: 12px 0;
}
.pps-buy-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    box-sizing: border-box;
}

/* 产品详情页内嵌购买区 */
.pps-product-buy-section {
    max-width: 500px;
    margin: 30px auto;
    padding: 24px;
    border: 2px solid #0070ba;
    border-radius: 12px;
    background: #f8fbff;
    text-align: center;
}
.pps-product-buy-section .pps-product-price-large {
    font-size: 32px;
    margin: 0 0 16px;
}
