/* =============================================
   Print N Award Store — Frontend Styles
   Brand: Burgundy #6B1A25 | Gold #C8922A
   ============================================= */

.pna-catalog { margin: 2rem 0; }
.pna-category-title { font-size: 1.6rem; color: #6B1A25; margin-bottom: 1.5rem; border-bottom: 2px solid #C8922A; padding-bottom: 0.5rem; }

.pna-grid { display: grid; gap: 1.5rem; }
.pna-cols-2 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.pna-cols-3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.pna-cols-4 { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

/* Product Card */
.pna-product-card { background: #fff; border: 1px solid #e8e0d5; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.pna-product-card:hover { box-shadow: 0 4px 20px rgba(107,26,37,0.12); transform: translateY(-2px); }
.pna-product-img { background: #f8f5f0; padding: 1rem; text-align: center; height: 180px; display: flex; align-items: center; justify-content: center; }
.pna-product-img img { max-height: 160px; max-width: 100%; object-fit: contain; }
.pna-product-body { padding: 1rem 1.25rem; }
.pna-sku { font-size: 11px; color: #999; letter-spacing: 0.1em; text-transform: uppercase; }
.pna-product-name { font-size: 14px; font-weight: 600; color: #1a0d10; margin: 4px 0 6px; line-height: 1.3; }
.pna-stock { font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 3px; display: inline-block; margin-bottom: 8px; }
.pna-in-stock { background: #e8f5e9; color: #2e7d32; }
.pna-limited-stock { background: #fff8e1; color: #f57f17; }
.pna-price { font-size: 1.4rem; font-weight: 700; color: #6B1A25; margin-bottom: 1rem; }
.pna-price::before { content: 'Starting at '; font-size: 11px; font-weight: 400; color: #999; display: block; }

/* Card Buttons */
.pna-card-actions { display: flex; gap: 8px; }
.pna-btn-add-cart, .pna-btn-quote { flex: 1; padding: 8px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; cursor: pointer; border: none; letter-spacing: 0.04em; transition: background 0.15s; }
.pna-btn-add-cart { background: #6B1A25; color: #fff; }
.pna-btn-add-cart:hover { background: #8B2535; }
.pna-btn-quote { background: transparent; color: #6B1A25; border: 1px solid #6B1A25; }
.pna-btn-quote:hover { background: #f5ede0; }

/* Cart */
.pna-cart { background: #fff; border: 1px solid #e8e0d5; border-radius: 8px; padding: 1.5rem; margin: 2rem 0; }
.pna-cart h3 { color: #6B1A25; margin-bottom: 1rem; font-size: 1.2rem; }
.pna-empty-cart { color: #999; font-style: italic; }
.pna-cart-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f0e8e0; }
.pna-cart-item-name { font-size: 14px; font-weight: 500; flex: 1; }
.pna-cart-item-qty { display: flex; align-items: center; gap: 6px; }
.pna-cart-item-qty input { width: 50px; text-align: center; border: 1px solid #ddd; border-radius: 4px; padding: 4px; }
.pna-cart-item-price { font-weight: 700; color: #6B1A25; min-width: 70px; text-align: right; }
.pna-cart-item-remove { color: #999; cursor: pointer; padding: 0 8px; font-size: 18px; background: none; border: none; }
.pna-cart-total-row { display: flex; justify-content: space-between; padding: 12px 0; font-size: 1.1rem; border-top: 2px solid #6B1A25; margin-top: 10px; }
.pna-cart-checkout { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pna-btn-checkout { background: #C8922A; color: #fff; border: none; padding: 12px 24px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; }
.pna-btn-checkout:hover { background: #b07d22; }
.pna-btn-quote-cart { background: transparent; color: #6B1A25; border: 1px solid #6B1A25; padding: 12px 24px; border-radius: 4px; font-size: 14px; cursor: pointer; }

/* Forms */
.pna-form, .pna-quote-standalone { background: #fff; border: 1px solid #e8e0d5; border-radius: 8px; padding: 2rem; margin: 2rem 0; }
.pna-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.pna-form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.pna-form-field label { font-size: 12px; font-weight: 600; color: #6B1A25; letter-spacing: 0.06em; text-transform: uppercase; }
.pna-form-field input, .pna-form-field select, .pna-form-field textarea { border: 1px solid #ddd; border-radius: 4px; padding: 10px 12px; font-size: 14px; transition: border-color 0.15s; }
.pna-form-field input:focus, .pna-form-field select:focus, .pna-form-field textarea:focus { border-color: #C8922A; outline: none; box-shadow: 0 0 0 2px rgba(200,146,42,0.15); }
.pna-radio-group { display: flex; gap: 1.5rem; }
.pna-radio { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 14px; }
.pna-form-submit { margin-top: 1.5rem; }
.pna-btn-submit { background: #6B1A25; color: #fff; border: none; padding: 13px 36px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; letter-spacing: 0.06em; }
.pna-btn-submit:hover { background: #8B2535; }

/* Messages */
#pna-form-message, #pna-quote-message { margin-top: 1rem; padding: 12px 16px; border-radius: 4px; font-size: 14px; display: none; }
#pna-form-message.success, #pna-quote-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
#pna-form-message.error, #pna-quote-message.error { background: #fce4ec; color: #b71c1c; border: 1px solid #f48fb1; display: block; }

/* Notice */
.pna-notice { background: #fff8e1; border-left: 4px solid #C8922A; padding: 12px 16px; margin: 1rem 0; }

/* Checkout form */
#pna-checkout-form { background: #fff; border: 1px solid #e8e0d5; border-radius: 8px; padding: 2rem; margin: 1.5rem 0; }
#pna-checkout-form h3 { color: #6B1A25; margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 600px) {
    .pna-form-row { grid-template-columns: 1fr; }
    .pna-cols-3, .pna-cols-4 { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .pna-radio-group { flex-direction: column; }
}
