body { font-family: 'Segoe UI', sans-serif; background: #f4f7f9; margin: 0; padding: 10px; display: flex; justify-content: center; }
.container { width: 100%; max-width: 600px; background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
h2 { text-align: center; color: #1a73e8; margin-bottom: 20px; }

/* SLIDER CSS */
.slider-container { width: 100%; height: 250px; position: relative; overflow: hidden; border-radius: 15px; background: #000; margin-bottom: 20px; }
.slider-track { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.slider-item { min-width: 100%; height: 100%; position: relative; }
.slider-item img { width: 100%; height: 100%; object-fit: contain; background: #222; }
.slider-item p { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.7); color: #fff; padding: 10px; margin: 0; text-align: center; font-size: 14px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.3); color: white; border: none; padding: 15px 10px; cursor: pointer; font-size: 20px; z-index: 10; }
.slider-btn:hover { background: rgba(255,255,255,0.5); }
.prev { left: 0; border-radius: 0 5px 5px 0; }
.next { right: 0; border-radius: 5px 0 0 5px; }
.slider-dots { position: absolute; bottom: 40px; width: 100%; display: flex; justify-content: center; gap: 5px; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.dot.active { background: #fff; transform: scale(1.2); }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 15px; padding: 10px; display: flex; flex-direction: column; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.product-card img { width: 100%; height: 120px; object-fit: contain; background: #fafafa; border-radius: 10px; margin-bottom: 8px; cursor: pointer; }
.product-card h4 { font-size: 14px; margin: 5px 0 2px; height: 36px; overflow: hidden; line-height: 1.2; }
.item-details-text { font-size: 11px; color: #777; margin-bottom: 8px; }
.price-tag { color: #28a745; font-weight: bold; font-size: 13px; margin-bottom: 10px; }

/* ADMIN & MODALS */
.admin-header { display: flex; justify-content: space-between; align-items: center; background: #2c3e50; padding: 10px 15px; border-radius: 12px; color: #fff; margin-bottom: 15px; }
#adminSection { display: none; background: #f8f9fa; padding: 15px; border-radius: 12px; margin-bottom: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.row { display: flex; gap: 8px; }
input, select, textarea { padding: 12px; border: 1px solid #ddd; border-radius: 10px; font-size: 14px; width: 100%; box-sizing: border-box; }
.opt-btn { border: none; padding: 8px; border-radius: 8px; font-size: 11px; font-weight: bold; cursor: pointer; color: #fff; width: 100%; }
.btn-pc { background: #1a73e8; margin-bottom: 5px; }
.btn-box { background: #28a745; }
#basketFloat { position: fixed; bottom: 20px; right: 20px; background: #28a745; width: 60px; height: 60px; border-radius: 30px; display: none; align-items: center; justify-content: center; font-size: 24px; color: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.2); z-index: 999; cursor: pointer; }
#basketCount { position: absolute; top: 0; right: 0; background: red; font-size: 11px; width: 22px; height: 22px; border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 2px solid #fff; }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000; justify-content: center; align-items: center; padding: 10px; }
.modal-content { background: #fff; width: 100%; max-width: 400px; border-radius: 20px; padding: 20px; box-sizing: border-box; overflow-y: auto; max-height: 90vh; }
.view-img-large { width: 100%; max-height: 250px; object-fit: contain; margin-bottom: 15px; }
.btn-wa { background: #25d366; color: #fff; padding: 12px; border-radius: 10px; width: 100%; cursor: pointer; border: none; }
.btn-msgr { background: #0084ff; color: #fff; padding: 12px; border-radius: 10px; width: 100%; cursor: pointer; border: none; }
.status-badge { font-size: 10px; padding: 3px 8px; border-radius: 5px; color: #fff; font-weight: bold; text-transform: uppercase; }
.in-stock { background: #28a745; }
.out-stock { background: #dc3545; }

