/* Store Page - Modern E-commerce */

/* Sub Hero */
.sub-hero { background: var(--primary); padding: 50px 40px 40px; }
.sub-hero h1 { color: var(--dark); font-size: 42px; font-weight: 700; }
.store-sub-hero { padding-bottom: 30px; }
.sub-hero-desc { color: rgba(255,255,255,0.75); font-size: 16px; margin-top: 8px; }

/* Category Bar */
.cat-bar { background: white; padding: 22px 40px; border-bottom: 1px solid #eee; position: sticky; top: 65px; z-index: 50; }
.cat-bar-inner { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.cat-chip { background: #f0f0f0; border: none; font-family: 'Fredoka', sans-serif; font-size: 14px; color: #666; padding: 10px 22px; border-radius: 25px; cursor: pointer; transition: all 0.3s; }
.cat-chip:hover { background: var(--primary); color: white; }
.cat-chip.active { background: var(--primary); color: white; }

.search-bar { display: flex; align-items: center; gap: 8px; background: #f0f0f0; border-radius: 25px; padding: 8px 18px; min-width: 200px; transition: all 0.3s; border: 2px solid transparent; }
.search-bar:focus-within { background: white; border-color: var(--primary); box-shadow: 0 2px 12px rgba(0,153,204,0.15); }
.search-bar svg { opacity: 0.5; flex-shrink: 0; }
.search-bar input { border: none; background: none; font-family: 'Fredoka', sans-serif; font-size: 14px; color: #333; outline: none; width: 100%; }

/* Products */
.products { background: #f5f7fa; padding: 50px 40px; min-height: 60vh; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }

.prod-card { background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.prod-image { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.prod-badge { position: absolute; top: 12px; left: 12px; background: #E91E63; color: white; font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 15px; }
.prod-badge.sale { background: #E74C3C; }
.prod-emoji { font-size: 70px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2)); transition: transform 0.3s; }
.prod-card:hover .prod-emoji { transform: scale(1.08); }
.prod-info { padding: 22px; }
.prod-info h3 { font-size: 17px; color: var(--dark); margin-bottom: 4px; }
.prod-info h3 .prod-link { color: var(--dark); transition: color 0.2s; }
.prod-info h3 .prod-link:hover { color: var(--primary); }
.prod-info .prod-short { font-size: 13px; color: #888; margin-bottom: 6px; }
.prod-rating { color: #F39C12; font-size: 12px; margin-bottom: 6px; }
.prod-rating span { color: #ccc; }
.prod-stock { display: block; font-size: 11px; color: #27AE60; font-weight: 500; margin-bottom: 12px; }
.prod-stock.low { color: #E74C3C; font-weight: 600; }
.prod-stock.out { color: #999; }
.prod-bottom { display: flex; justify-content: space-between; align-items: center; }
.prod-price { font-size: 18px; font-weight: 600; color: var(--dark); }
.prod-price s { color: #aaa; font-size: 13px; margin-right: 5px; }
.add-btn { background: var(--primary); border: none; font-family: 'Fredoka', sans-serif; font-size: 13px; color: white; padding: 10px 20px; border-radius: 25px; cursor: pointer; transition: all 0.3s; }
.add-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.add-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }

/* Cart Sidebar */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 200; backdrop-filter: blur(2px); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; max-width: 100%; height: 100%; background: white; box-shadow: -5px 0 30px rgba(0,0,0,0.2); transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 201; display: flex; flex-direction: column; }
.cart-sidebar.active { right: 0; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid #f0f0f0; }
.cart-head h3 { font-size: 18px; color: var(--dark); }
.close-cart { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.close-cart:hover { background: #f0f0f0; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 50px 20px; color: #999; }
.cart-empty p:first-child { font-size: 40px; margin-bottom: 10px; }

.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f5f5f5; align-items: center; }
.cart-item-img { width: 55px; height: 55px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.cart-item-info .cart-item-price { font-size: 15px; font-weight: 600; color: var(--primary); }
.cart-qty { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1.5px solid #e0e0e0; background: white; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: 'Fredoka', sans-serif; transition: all 0.2s; color: #555; }
.qty-btn:hover { border-color: var(--primary); color: var(--primary); background: #f0f8ff; }
.cart-qty span { font-weight: 600; min-width: 24px; text-align: center; font-size: 14px; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 18px; padding: 4px; transition: color 0.2s; }
.cart-item-remove:hover { color: #E74C3C; }

.cart-foot { padding: 20px 24px; border-top: 1px solid #f0f0f0; background: #fafafa; }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.checkout-btn { width: 100%; background: linear-gradient(135deg, #E91E63, #C2185B); border: none; font-family: 'Fredoka', sans-serif; font-size: 16px; color: white; padding: 16px; border-radius: 14px; cursor: pointer; transition: all 0.3s; font-weight: 600; }
.checkout-btn:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(233,30,99,0.3); }
.cart-count { background: #E91E63; color: white; font-size: 11px; padding: 2px 7px; border-radius: 10px; margin-left: 4px; }

/* Modal Overlay */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 250; padding: 20px; backdrop-filter: blur(3px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: white; border-radius: 22px; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes modalIn { from { transform: scale(0.92) translateY(10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.06); border: none; width: 38px; height: 38px; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 5; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: rgba(0,0,0,0.12); }

/* Product Modal */
.product-modal-content { max-width: 780px; width: 100%; }
.product-modal-content .modal-body { display: flex; }
.modal-image { flex: 0 0 300px; min-height: 320px; display: flex; align-items: center; justify-content: center; border-radius: 22px 0 0 22px; }
.modal-emoji { font-size: 100px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2)); }
.modal-details { flex: 1; padding: 35px 30px; overflow-y: auto; max-height: 80vh; }
.modal-badge { background: #E91E63; color: white; font-size: 10px; font-weight: 700; padding: 5px 14px; border-radius: 15px; display: inline-block; margin-bottom: 10px; }
.modal-details h2 { font-size: 24px; color: var(--dark); margin-bottom: 6px; }
.modal-rating { color: #F39C12; font-size: 14px; margin-bottom: 10px; }
.modal-desc { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.modal-stock { margin-bottom: 12px; }
.stock-ok { color: #27AE60; font-size: 13px; font-weight: 500; }
.stock-low { color: #E74C3C; font-size: 13px; font-weight: 600; }
.modal-price-area { margin-bottom: 16px; }
.modal-price { font-size: 28px; font-weight: 700; color: var(--dark); }

/* Qty Selector */
.modal-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.modal-qty-label { font-size: 14px; color: #555; font-weight: 500; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 2px solid #e8e8e8; border-radius: 12px; overflow: hidden; }
.qty-btn-lg { width: 40px; height: 40px; border: none; background: #f8f8f8; font-size: 20px; cursor: pointer; font-family: 'Fredoka', sans-serif; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn-lg:hover { background: #e8f4f8; color: var(--primary); }
.qty-value { width: 40px; text-align: center; font-size: 16px; font-weight: 600; }

/* Modal Shipping */
.modal-shipping { background: #f8f9fa; border-radius: 12px; padding: 14px; margin-bottom: 18px; }
.modal-ship-input { display: flex; gap: 8px; }
.modal-ship-input input { flex: 1; padding: 10px 14px; border: 2px solid #e8e8e8; border-radius: 10px; font-family: 'Fredoka', sans-serif; font-size: 14px; outline: none; }
.modal-ship-input input:focus { border-color: var(--primary); }
.modal-ship-input button { background: var(--dark); color: white; border: none; padding: 10px 16px; border-radius: 10px; font-family: 'Fredoka', sans-serif; font-size: 13px; cursor: pointer; white-space: nowrap; }
.modal-ship-input button:hover { background: #1a252f; }
.modal-ship-results { margin-top: 10px; font-size: 13px; }
.ship-result-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #eee; }
.ship-result-item:last-child { border-bottom: none; }

.modal-add-btn { width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: none; font-family: 'Fredoka', sans-serif; font-size: 16px; color: white; padding: 16px; border-radius: 14px; cursor: pointer; transition: all 0.3s; font-weight: 600; margin-bottom: 20px; }
.modal-add-btn:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(0,153,204,0.3); }
.modal-add-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; box-shadow: none; }

/* Reviews */
.modal-reviews { border-top: 1px solid #f0f0f0; padding-top: 18px; }
.modal-reviews h4 { font-size: 15px; color: var(--dark); margin-bottom: 10px; }
.review-item { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.review-header { display: flex; justify-content: space-between; align-items: center; }
.review-header strong { font-size: 13px; }
.review-stars { color: #F39C12; font-size: 13px; }
.review-item p { color: #666; font-size: 13px; margin-top: 3px; }
.review-item small { color: #aaa; font-size: 11px; }
.no-reviews { color: #999; font-size: 13px; font-style: italic; }
.review-form-toggle { margin-top: 12px; }
.review-form-toggle summary { cursor: pointer; color: var(--primary); font-size: 13px; font-weight: 600; }
.review-form { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.review-form input, .review-form select, .review-form textarea { padding: 9px 12px; border: 2px solid #e8e8e8; border-radius: 8px; font-family: 'Fredoka', sans-serif; font-size: 13px; outline: none; }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { border-color: var(--primary); }
.review-form button { background: var(--primary); color: white; border: none; padding: 9px 18px; border-radius: 8px; font-family: 'Fredoka', sans-serif; font-size: 13px; cursor: pointer; align-self: flex-start; }

/* ============ CHECKOUT MODAL ============ */
.checkout-modal-content { max-width: 960px; width: 100%; max-height: 92vh; }
.checkout-layout { display: grid; grid-template-columns: 340px 1fr; min-height: 500px; }
.checkout-left { background: #f8f9fa; padding: 30px 25px; border-radius: 22px 0 0 22px; overflow-y: auto; max-height: 90vh; }
.checkout-left h3 { font-size: 16px; color: var(--dark); margin-bottom: 16px; }
.checkout-items { margin-bottom: 16px; }
.ck-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid #eee; align-items: center; }
.ck-item-emoji { font-size: 24px; }
.ck-item-info { flex: 1; }
.ck-item-info h5 { font-size: 13px; color: var(--dark); margin-bottom: 2px; }
.ck-item-info span { font-size: 12px; color: #888; }
.ck-item-price { font-size: 14px; font-weight: 600; color: var(--dark); }

.checkout-coupon { margin-bottom: 16px; }
.coupon-row { display: flex; gap: 6px; }
.coupon-row input { flex: 1; padding: 9px 12px; border: 2px solid #e0e0e0; border-radius: 10px; font-family: 'Fredoka', sans-serif; font-size: 13px; outline: none; text-transform: uppercase; }
.coupon-row input:focus { border-color: var(--primary); }
.coupon-row button { background: var(--dark); color: white; border: none; padding: 9px 14px; border-radius: 10px; font-size: 12px; cursor: pointer; font-family: 'Fredoka', sans-serif; }
.coupon-msg { margin-top: 6px; font-size: 12px; }
.coupon-ok { color: #27AE60; font-weight: 600; }
.coupon-err { color: #E74C3C; }

.checkout-totals { background: white; border-radius: 12px; padding: 16px; }
.checkout-totals .total-line { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: #555; }
.checkout-totals .total-line.big { font-size: 18px; font-weight: 700; color: var(--dark); padding-top: 10px; margin-top: 8px; border-top: 2px solid #eee; }
.checkout-totals .total-line.green { color: #27AE60; }

/* Checkout Right / Form */
.checkout-right { padding: 30px 28px; overflow-y: auto; max-height: 90vh; }
.form-group { margin-bottom: 14px; position: relative; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #666; margin-bottom: 4px; }
.form-group input { width: 100%; padding: 12px 14px; border: 2px solid #e8e8e8; border-radius: 12px; font-family: 'Fredoka', sans-serif; font-size: 14px; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,153,204,0.1); }
.form-group input.valid { border-color: #27AE60; }
.form-group input.invalid { border-color: #E74C3C; }
.field-status { position: absolute; right: 14px; top: 32px; font-size: 14px; }

.form-row-2 { display: flex; gap: 12px; }
.form-row-2 .form-group { flex: 1; }
.form-row-2 .flex-3 { flex: 3; }
.form-row-2 .flex-1 { flex: 1; }

/* PF/PJ Toggle */
.person-toggle { display: flex; gap: 0; margin-bottom: 18px; background: #f0f0f0; border-radius: 12px; padding: 4px; }
.toggle-btn { flex: 1; background: none; border: none; font-family: 'Fredoka', sans-serif; font-size: 14px; padding: 10px; border-radius: 10px; cursor: pointer; transition: all 0.3s; color: #888; font-weight: 500; }
.toggle-btn.active { background: white; color: var(--primary); font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.section-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }

/* CEP */
.cep-input-row { display: flex; align-items: center; gap: 8px; }
.cep-input-row input { flex: 1; }
.cep-loading { font-size: 16px; }

/* Shipping Options */
.shipping-options { margin-bottom: 18px; }
.shipping-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px solid #e8e8e8; border-radius: 12px; margin-bottom: 8px; cursor: pointer; transition: all 0.2s; }
.shipping-option:hover { border-color: var(--primary); }
.shipping-option.selected { border-color: var(--primary); background: #f0f8ff; }
.shipping-option input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; }
.shipping-option .ship-name { flex: 1; font-size: 13px; font-weight: 500; }
.shipping-option .ship-days { color: #888; font-size: 12px; margin-right: 8px; }
.shipping-option .ship-price { font-weight: 600; font-size: 14px; color: var(--primary); }
.shipping-option .ship-free { color: #27AE60; font-weight: 600; font-size: 13px; }

/* Payment */
.payment-section { margin-bottom: 20px; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px solid #e8e8e8; border-radius: 12px; margin-bottom: 8px; cursor: pointer; transition: all 0.2s; }
.payment-option:hover { border-color: var(--primary); }
.payment-option.selected { border-color: var(--primary); background: #f0f8ff; }
.payment-option input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; }
.payment-option .pay-icon { font-size: 20px; }
.payment-option .pay-name { flex: 1; font-size: 14px; font-weight: 500; }

/* Submit Button */
.submit-order-btn { width: 100%; background: linear-gradient(135deg, #E91E63, #C2185B); border: none; font-family: 'Fredoka', sans-serif; font-size: 17px; color: white; padding: 18px; border-radius: 14px; cursor: pointer; transition: all 0.3s; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; }
.submit-order-btn:hover { transform: scale(1.02); box-shadow: 0 8px 25px rgba(233,30,99,0.3); }
.submit-order-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* Success */
.success-content { max-width: 420px; padding: 50px 35px; text-align: center; width: 100%; }
.success-animation { margin-bottom: 20px; }
.success-circle { width: 80px; height: 80px; background: linear-gradient(135deg, #27AE60, #2ECC71); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: white; margin: 0 auto; animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes successPop { from { transform: scale(0); } to { transform: scale(1); } }
.success-content h2 { font-size: 24px; color: var(--dark); margin-bottom: 8px; }
.success-content p { color: #666; font-size: 14px; margin-bottom: 8px; }
.success-order-id { background: #f0f8ff; padding: 12px 20px; border-radius: 10px; font-weight: 600; color: var(--primary); display: inline-block; margin: 12px 0 20px; font-size: 15px; }
.track-link { display: block; background: white; border: 2px solid var(--primary); color: var(--primary); padding: 14px 24px; border-radius: 12px; font-weight: 600; font-size: 14px; margin-bottom: 12px; transition: all 0.2s; }
.track-link:hover { background: var(--primary); color: white; }
.btn-back-store { width: 100%; background: #f0f0f0; border: none; font-family: 'Fredoka', sans-serif; font-size: 14px; color: #666; padding: 14px; border-radius: 12px; cursor: pointer; }
.btn-back-store:hover { background: #e8e8e8; }

/* Notifications */
.notif { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--dark); color: white; padding: 16px 32px; border-radius: 14px; font-family: 'Fredoka', sans-serif; font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); z-index: 300; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateX(-50%) translateY(20px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 900px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-left { border-radius: 22px 22px 0 0; max-height: none; }
    .checkout-right { max-height: none; }
    .checkout-modal-content { max-width: 95%; }
}

/* Mobile */
@media (max-width: 768px) {
    .sub-hero { padding: 30px 16px 20px; }
    .sub-hero h1 { font-size: 26px; }
    .sub-hero-desc { font-size: 13px; }

    .cat-bar { padding: 14px 16px; top: 56px; }
    .cat-bar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 8px; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .cat-chip { font-size: 13px; padding: 9px 16px; white-space: nowrap; flex-shrink: 0; min-height: 40px; }
    .search-bar { min-width: 140px; flex-shrink: 0; }

    .products { padding: 20px 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .prod-emoji { font-size: 42px; }
    .prod-info { padding: 14px; }
    .prod-info h3 { font-size: 13px; }
    .prod-info h3 .prod-link { font-size: 13px; }
    .prod-short { font-size: 11px !important; }
    .prod-price { font-size: 14px; }
    .prod-price s { font-size: 11px; }
    .add-btn { font-size: 11px; padding: 8px 12px; min-height: 36px; }
    .prod-stock { font-size: 10px; }
    .prod-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

    .cart-sidebar { width: 100%; right: -100%; }
    .cart-head { padding: 16px; }
    .cart-items { padding: 12px 16px; }
    .cart-foot { padding: 16px; }
    .cart-item-img { width: 45px; height: 45px; font-size: 22px; }

    .product-modal-content { max-width: 100%; max-height: 95vh; border-radius: 16px; margin: 8px; }
    .product-modal-content .modal-body { flex-direction: column; }
    .modal-image { flex: none; min-height: 180px; border-radius: 16px 16px 0 0; }
    .modal-emoji { font-size: 70px; }
    .modal-details { padding: 20px 16px; max-height: none; }
    .modal-details h2 { font-size: 20px; }
    .modal-desc { font-size: 13px; }
    .modal-price { font-size: 24px; }
    .modal-add-btn { font-size: 15px; padding: 14px; }

    .checkout-modal-content { max-width: 100%; max-height: 95vh; border-radius: 16px; margin: 8px; }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-left { padding: 20px 16px; border-radius: 16px 16px 0 0; }
    .checkout-right { padding: 20px 16px; }
    .form-row-2 { flex-direction: column; gap: 0; }
    .form-row-2 .flex-3, .form-row-2 .flex-1 { flex: 1; }
    .form-group input { font-size: 16px; padding: 14px; }
    .submit-order-btn { font-size: 15px; padding: 16px; }
    .toggle-btn { font-size: 13px; padding: 9px; }
    .shipping-option, .payment-option { padding: 10px 12px; }

    .success-content { padding: 35px 20px; }
    .success-circle { width: 60px; height: 60px; font-size: 28px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .prod-emoji { font-size: 36px; }
    .prod-info { padding: 10px; }
    .prod-info h3 { font-size: 12px; }
    .prod-price { font-size: 13px; }
    .add-btn { width: 100%; text-align: center; }

    .modal-overlay { padding: 4px; }
    .checkout-left { padding: 16px 12px; }
    .checkout-right { padding: 16px 12px; }
    .coupon-row { flex-direction: column; gap: 8px; }
    .coupon-row button { width: 100%; padding: 12px; }
}

@media (max-width: 360px) {
    .products-grid { grid-template-columns: 1fr; }
    .prod-bottom { flex-direction: row; align-items: center; }
    .add-btn { width: auto; }
}
