/* Dynamic Product Page */
.wlpp { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 2rem; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
@media (max-width: 768px) { .wlpp { grid-template-columns: 1fr; gap: 1.5rem; padding: 1rem; } }

.wlpp-gallery { border-radius: 16px; overflow: hidden; background: #f5f5f5; }
.wlpp-img { width: 100%; display: block; }
.wlpp-img-placeholder { height: 400px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: #ccc; }

.wlpp-tags { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.wlpp-tag { background: #f0f0f0; color: #555; font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.03em; }

.wlpp-name { font-size: 2rem; font-weight: 800; color: #1a1a1a; margin-bottom: 0.75rem; line-height: 1.2; }

.wlpp-pricing { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.wlpp-price { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; }
.wlpp-compare { font-size: 1.1rem; color: #999; text-decoration: line-through; }
.wlpp-save { font-size: 0.75rem; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 3px 10px; border-radius: 20px; }

.wlpp-section-label { display: block; font-size: 0.8rem; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

/* Purchase Options (one-time vs subscribe) */
.wlpp-purchase-options { margin-bottom: 1.5rem; }
.wlpp-purchase-option { display: flex; align-items: center; gap: 0.75rem; padding: 12px 16px; border: 2px solid #e5e5e5; border-radius: 10px; margin-bottom: 0.5rem; cursor: pointer; transition: all 0.15s; }
.wlpp-purchase-option:hover { border-color: #ccc; }
.wlpp-purchase-option.active { border-color: #1a1a1a; background: #fafafa; }
.wlpp-purchase-option input { display: none; }
.wlpp-po-content { display: flex; justify-content: space-between; flex: 1; align-items: center; }
.wlpp-po-label { font-weight: 600; font-size: 0.9rem; color: #1a1a1a; }
.wlpp-po-price { font-weight: 700; font-size: 0.95rem; color: #1a1a1a; }
.wlpp-po-badge { font-size: 0.7rem; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }

/* Variant Options */
.wlpp-option-group { margin-bottom: 1.25rem; }
.wlpp-option-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.wlpp-opt-btn { padding: 10px 20px; border: 2px solid #e5e5e5; border-radius: 8px; background: #fff; font-size: 0.88rem; cursor: pointer; transition: all 0.15s; color: #333; font-weight: 500; }
.wlpp-opt-btn:hover { border-color: #aaa; }
.wlpp-opt-btn.active { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }

/* Quantity Offers */
.wlpp-offers { margin-bottom: 1.5rem; }
.wlpp-offer { display: flex; align-items: center; gap: 0.75rem; padding: 12px 16px; border: 2px solid #e5e5e5; border-radius: 10px; margin-bottom: 0.5rem; cursor: pointer; transition: all 0.15s; }
.wlpp-offer:hover { border-color: #ccc; }
.wlpp-offer.active { border-color: #1a1a1a; background: #fafafa; }
.wlpp-offer input { display: none; }
.wlpp-offer-info { flex: 1; display: flex; justify-content: space-between; }
.wlpp-offer-label { font-weight: 600; font-size: 0.9rem; }
.wlpp-offer-price { color: #555; font-size: 0.88rem; }
.wlpp-offer-badge { font-size: 0.7rem; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }

/* Qty */
.wlpp-qty-row { margin-bottom: 1.5rem; }
.wlpp-qty { display: inline-flex; align-items: center; border: 2px solid #e5e5e5; border-radius: 8px; overflow: hidden; }
.wlpp-qty-btn { width: 44px; height: 44px; border: none; background: #f5f5f5; font-size: 1.2rem; cursor: pointer; color: #333; transition: background 0.15s; }
.wlpp-qty-btn:hover { background: #e5e5e5; }
.wlpp-qty-val { min-width: 44px; text-align: center; font-weight: 700; font-size: 1rem; }

/* ATC Button */
.wlpp-atc { width: 100%; padding: 16px 24px; border: none; border-radius: 10px; background: #1a1a1a; color: #fff; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-bottom: 1.5rem; }
.wlpp-atc:hover { background: #333; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/* Description */
.wlpp-description { border-top: 1px solid #eee; padding-top: 1.5rem; }
.wlpp-description h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #1a1a1a; }
.wlpp-description p { font-size: 0.95rem; color: #555; line-height: 1.7; }
