/* ========================================
   Shop Coming Soon Page
   ======================================== */

.shop-page { padding-top: 120px; padding-bottom: 80px; }

.shop-coming { text-align: center; max-width: 700px; margin: 0 auto; }
.shop-coming-icon { width: 160px; height: 160px; margin: 0 auto 40px; }
.shop-coming-icon img { width: 100%; height: 100%; object-fit: contain; }
.shop-coming h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 20px; }
.shop-coming p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; margin-bottom: 40px; }

/* Countdown placeholder */
.shop-countdown { display: flex; justify-content: center; gap: 24px; margin-bottom: 48px; }
.shop-countdown-item { text-align: center; }
.shop-countdown-num { font-family: var(--font-en); font-size: 2.5rem; font-weight: 900; color: var(--primary); background: #111111; border: 1px solid rgba(255,107,43,0.15); border-radius: 16px; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(255,107,43,0.08); }
.shop-countdown-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }

/* Products preview */
.shop-preview { margin-top: 80px; }
.shop-preview-title { text-align: center; font-size: 1.4rem; font-weight: 900; margin-bottom: 40px; }
.shop-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shop-preview-card { background: #111111; border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 32px 24px; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.shop-preview-card::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.4; }
.shop-preview-card:hover { transform: translateY(-4px); }
.shop-preview-card-icon { font-size: 3rem; margin-bottom: 16px; }
.shop-preview-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.shop-preview-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.shop-preview-card-badge { position: absolute; top: 12px; left: 12px; font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; background: rgba(255,107,43,0.15); color: var(--primary); }

/* Notify form */
.shop-notify { max-width: 500px; margin: 48px auto 0; text-align: center; }
.shop-notify p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 20px; }
.shop-notify-form { display: flex; gap: 12px; }
.shop-notify-input { flex: 1; padding: 14px 20px; border-radius: 50px; border: 1px solid var(--border); background: var(--bg-surface); color: var(--text); font-family: var(--font-fa); font-size: 0.9rem; outline: none; transition: border-color 0.3s ease; }
.shop-notify-input:focus { border-color: var(--primary); }
.shop-notify-input::placeholder { color: var(--text-muted); }
.shop-notify-btn { padding: 14px 28px; border-radius: 50px; background: var(--primary); color: #fff; font-weight: 700; font-family: var(--font-fa); font-size: 0.9rem; border: none; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
.shop-notify-btn:hover { background: #e55a1f; box-shadow: 0 8px 24px rgba(255,107,43,0.3); }

/* Responsive */
@media (max-width: 1024px) { .shop-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .shop-preview-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .shop-countdown { gap: 12px; }
  .shop-countdown-num { width: 60px; height: 60px; font-size: 1.8rem; }
  .shop-notify-form { flex-direction: column; }
}
