  :root {
            --primary-color: #2563eb; /* رنگ اصلی برند */
            --bg-color: #f8fafc;
            --card-bg: #ffffff;
            --text-main: #1e293b;
            --text-sec: #64748b;
            --price-color: #059669;
        }
header , footer{
	display:none !important;
}
        * { box-sizing: border-box; margin: 0; padding: 0; } /* فونت فارسی مناسب جایگزین شود */
        
        body { background-color: var(--bg-color); color: var(--text-main); padding-bottom: 80px; }
        
        .container { max-width: 575px; margin: 0 auto; background: var(--card-bg); min-height: 100vh; box-shadow: 0 0 20px rgba(0,0,0,0.05); }

        /* Header & Logo */
        .header { text-align: center; padding: 30px 20px; background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%); }
        .logo-box { width: 100px; height: 100px; border-radius: 50%; background: #ddd; margin: 0 auto 15px; overflow: hidden; border: 3px solid white; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        .logo-box img { width: 100%; height: 100%; object-fit: cover; }
        .biz-name { font-size: 1.5rem; font-weight: bold; margin-bottom: 5px; }
        .biz-tag { color: var(--text-sec); font-size: 0.9rem; }

        /* Action Buttons (Sticky) */
        .actions { display: flex; gap: 10px; padding: 15px 20px; position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); z-index: 100; border-bottom: 1px solid #eee; }
        .btn { flex: 1; padding: 12px; border: none; border-radius: 12px; font-weight: bold; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; transition: transform 0.1s; text-decoration: none; }
        .btn-call { background-color: #22c55e; color: white; }
        .btn-map { background-color: #3b82f6; color: white; }
        .btn:active { transform: scale(0.96); }

        /* Loyalty Form */
        .club-section { background: #f0f9ff; margin: 20px; padding: 20px; border-radius: 16px; border: 1px dashed #3b82f6; text-align: center; }
        .club-title { font-weight: bold; color: #1e40af; margin-bottom: 10px; }
        .input-group { display: flex; gap: 5px; margin-top: 10px; }
        .input-field { flex: 1; padding: 10px; border: 1px solid #cbd5e1; border-radius: 8px; text-align: center; }
        .btn-submit { background: #1e40af; color: white; padding: 10px 20px; border: none; border-radius: 8px; cursor: pointer; }

        /* Product List */
        .products { padding: 0 20px; }
        .section-title { font-size: 1.2rem; margin: 20px 0 15px; border-right: 4px solid var(--primary-color); padding-right: 10px; }
        .product-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #f1f5f9; }
        .prod-info h4 { font-size: 1rem; margin-bottom: 4px; }
        .prod-desc { font-size: 0.8rem; color: var(--text-sec); }
        .prod-price { font-weight: bold; color: var(--price-color); white-space: nowrap; }

        /* Footer & QR */
        .footer-info { text-align: center; padding: 30px 20px; background: #f8fafc; margin-top: 30px; }
        .qr-box { width: 120px; height: 120px; background: white; padding: 10px; margin: 0 auto 15px; border-radius: 10px; }
        .map-container { width: 100%; height: 150px; background: #eee; border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
        
        .sajac-credit { font-size: 0.8rem; color: #94a3b8; margin-top: 20px; display: block; text-decoration: none; }