Account Deletion | Swarg Food :root { --swarg-green: #2e7d32; --swarg-gold: #f9a825; --swarg-bg: #f8fcf8; --text-dark: #2c3e50; --white: #ffffff; --border-color: #e0e0e0; }
.swarg-deletion-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; color: var(--text-dark); background: var(--swarg-bg); border-radius: 10px; }
/* --- TOGGLE TABS --- */ .tab-container { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.tab-btn { padding: 12px 24px; font-size: 16px; font-weight: 600; border: 2px solid var(--swarg-green); border-radius: 30px; cursor: pointer; background: transparent; color: var(--swarg-green); transition: all 0.3s ease; }
.tab-btn.active { background: var(--swarg-green); color: white; box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2); }
/* --- SECTIONS --- */ .content-section { display: none; /* Hidden by default */ animation: fadeIn 0.5s; } .content-section.active { display: block; /* Show when active */ }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* --- FORM STYLES --- */ .web-form-box { background: var(--white); padding: 30px; border-radius: 12px; border: 1px solid #ddd; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.form-intro { background-color: #e8f5e9; padding: 15px; border-radius: 6px; font-size: 14px; margin-bottom: 20px; border-left: 4px solid var(--swarg-green); }
/* --- APP GUIDE STYLES --- */ .app-guide-box { background: var(--white); padding: 25px; border-radius: 12px; border: 1px solid #ddd; }
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.step-card { text-align: center; }
.img-frame { background-color: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 12px; overflow: hidden; aspect-ratio: 9/16; margin-bottom: 10px; }
.img-frame img { width: 100%; height: 100%; object-fit: contain; }
.step-desc { font-size: 14px; color: #555; padding: 10px; background: #f9f9f9; border-radius: 6px; }
/* --- POLICY SECTION (Always Visible) --- */ .policy-section { margin-top: 50px; padding-top: 30px; border-top: 2px solid var(--border-color); font-size: 14px; color: #444; }
.policy-section h3 { color: var(--swarg-green); margin-bottom: 15px; } .policy-section ul { padding-left: 20px; margin-bottom: 20px; } .policy-section li { margin-bottom: 8px; }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } .tab-container { flex-direction: column; } .tab-btn { width: 100%; text-align: center; } }
Account Deletion Request Please select how you would like to delete your account:
I don't have the App (Web Form) I have the App (Guide)
Request Deletion Online: Use this form if you have already uninstalled the app. We will verify your registered phone number and process the deletion.
Delete directly from the App If you have the app installed, this is the fastest way to delete your data. 1. Tap Profile Icon (Top Right)
2. Select Account Settings
3. Tap Delete Account
4. Click Delete to Confirm
Data Deletion & Retention Policy Effect of Deletion: Once confirmed, your account is permanently deactivated. This action is irreversible.
Data that will be deleted: Personal Identity: Name, Phone Number, Email, and saved addresses. Wallet Funds: Any unused balance in your Swarg Wallet will be forfeited. Subscriptions: Active milk/food subscriptions will be cancelled immediately.
Data that will be retained: Invoices & Transaction Logs: We retain financial transaction history for 5 years strictly for tax compliance and auditing purposes (as required by Indian Law).
Timeframe: Account access is revoked immediately. Complete removal of personal data from active servers is completed within 90 days.
function openTab(tabName, btnElement) { // 1. Hide all content sections var sections = document.getElementsByClassName("content-section"); for (var i = 0; i < sections.length; i++) { sections.classList.remove("active"); }
// 2. Remove 'active' class from all buttons var buttons = document.getElementsByClassName("tab-btn"); for (var i = 0; i < buttons.length; i++) { buttons.classList.remove("active"); }
// 3. Show the selected section document.getElementById(tabName).classList.add("active");
// 4. Highlight the clicked button btnElement.classList.add("active"); }
