* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--background-white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Region Indicator */
.region-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background: var(--background-white);
}

.region-indicator:hover {
    border-color: var(--primary-color);
    background: var(--background-light);
}

.region-indicator .fi {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.placeholder-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Region Badge 
.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
*/
.retailer-badges {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.retailer-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ad Sections */
.ad-section {
    padding: 2rem 0;
}

.admob-banner, .admob-interstitial {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-placeholder {
    background: var(--background-white);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    width: 100%;
}

.ad-placeholder.large {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-placeholder small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--background-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--background-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--background-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: var(--background-white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Region Notice */
.region-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.region-notice .fi {
    font-size: 1.5rem;
}

.region-notice a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.region-notice a:hover {
    text-decoration: underline;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.product-content {
    padding: 1.5rem;
}

.product-retailer {
    display: inline-block;
    padding: 4px 8px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-retailer.amazon { background: #ff9900; }
.product-retailer.walmart { background: #0071ce; }
.product-retailer.flipkart { background: #047bd5; }

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.product-discount {
    color: #dc2626;
    font-weight: 600;
    margin-left: 0.5rem;
}

.btn-product {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-product:hover {
    background: var(--primary-dark);
}

/* Retailers Info Section */
.retailers-info {
    padding: 80px 0;
    background: var(--background-light);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.retailer-info-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.retailer-info-card.amazon { border-left-color: #ff9900; }
.retailer-info-card.walmart { border-left-color: #0071ce; }
.retailer-info-card.flipkart { border-left-color: #047bd5; }

.retailer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.retailer-logo {
    font-size: 2rem;
    font-weight: bold;
}

.retailer-logo.amazon { color: #ff9900; }
.retailer-logo.walmart { color: #0071ce; }
.retailer-logo.flipkart { color: #047bd5; }

.retailer-features {
    list-style: none;
    margin-top: 1rem;
}

.retailer-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.retailer-features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Geo Location Banner */
.geo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.geo-banner.show {
    transform: translateY(0);
}

.geo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.geo-icon {
    font-size: 1.2rem;
}

.geo-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-geo {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-geo:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-geo.secondary {
    background: transparent;
}

/* Region Selector Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 1.5rem;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.region-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    gap: 1rem;
}

.region-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.region-card .fi {
    font-size: 2rem;
    border-radius: 4px;
}

.region-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.region-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Admin Authentication Styles */
.admin-access-btn {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
}

.btn-admin-access {
    padding: 10px 15px;
    background: #6b7280;
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-admin-access:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Login Form Styles */
.login-form {
    padding: 1rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

.login-error {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: none;
}

/* Forgot Password Section */
.forgot-password-section {
    padding: 1rem 0;
}

.admin-contact {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.admin-contact p {
    margin: 0.5rem 0;
}

/* Session Timer */
.session-timer {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #f59e0b;
    color: white;
    padding: 8px 0;
    z-index: 1000;
    text-align: center;
}

.session-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.btn-session {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-session:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-session.logout {
    background: #dc2626;
}

.btn-session.logout:hover {
    background: #b91c1c;
}

/* Enhanced Admin Panel */
.admin-panel {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 50px;
    overflow: hidden;
    display: none;
}

.admin-panel.expanded {
    width: 300px;
}

.btn-admin {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.admin-icon {
    font-size: 1rem;
}

.admin-content {
    padding: 1rem;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.admin-panel.expanded .admin-content {
    display: block;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-logout-small {
    padding: 2px 8px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.7rem;
}

.admin-section {
    margin-bottom: 1.5rem;
}

.admin-section h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.admin-section .btn {
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    padding: 8px 12px;
}

.system-info {
    background: var(--background-light);
    padding: 0.75rem;
    border-radius: var(--border-radius);
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    color: white;
}

.loading-content {
    text-align: center;
    background: white;
    color: var(--text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* Link Input Section */
.link-input-section {
    margin-bottom: 2rem;
}

.link-input-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.link-input-section input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.link-examples {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.link-examples ul {
    margin: 0.5rem 0 0 1rem;
    color: var(--text-light);
}

.link-examples li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* Product Preview */
.product-preview {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.preview-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin: 1rem 0;
    background: var(--background-light);
}

.preview-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.preview-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--border-radius);
}

.product-emoji {
    font-size: 2rem;
}

.preview-content {
    flex: 1;
}

.preview-content h4 {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.preview-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preview-original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

.preview-discount {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* Session Warning */
.session-warning {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 1rem;
    z-index: 2000;
    box-shadow: var(--shadow-lg);
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warning-content button {
    padding: 4px 8px;
    border: 1px solid #f59e0b;
    background: white;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
    max-width: 300px;
    border-left: 4px solid var(--primary-color);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-info {
    border-left-color: var(--primary-color);
}

.notification button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--background-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
        justify-content: center;
    }

    .nav-controls {
        gap: 1rem;
    }

    .region-indicator {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .region-indicator .fi {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-grid {
        grid-template-columns: 1fr;
    }

    .retailers-grid {
        grid-template-columns: 1fr;
    }

    .geo-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .admin-panel.expanded {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }
    
    .session-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admin-access-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
    }
    
    .admin-panel {
        top: auto;
        bottom: 80px;
    }
    
    .session-timer {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /*.region-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }*/

    .retailer-badges {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Terms of Service Specific Styles */
.terms-hero {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.terms-notice {
    background: linear-gradient(135deg, #3730a3, #312e81);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.terms-notice .notice-icon {
    font-size: 3rem;
}

.terms-notice .notice-content h3 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.terms-notice .notice-content p {
    margin: 0;
    opacity: 0.9;
}

/* Prohibited Activities */
.prohibited-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.activity-category {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #dc2626;
}

.activity-category h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.activity-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* IP Notice */
.ip-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.ip-notice p {
    margin: 0;
    color: #92400e;
}

/* Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-details .contact-method {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-details .contact-method h4 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.contact-details .contact-method p {
    margin: 0;
    color: var(--text-light);
}

/* Acceptance Section */
.acceptance-section {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
    border: 2px solid var(--primary-color);
}

.acceptance-section h3 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.acceptance-section p {
    margin: 0 0 2rem 0;
    color: var(--text-light);
}

.acceptance-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Numbering */
.policy-section h2 {
    counter-increment: section;
    position: relative;
    padding-left: 3rem;
}

.policy-section h2::before {
    content: counter(section) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.policy-section h3 {
    counter-increment: subsection;
    position: relative;
    padding-left: 2rem;
}

.policy-section h3::before {
    content: counter(section) "." counter(subsection);
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9em;
}

/* Reset counters for each section */
.policy-section {
    counter-reset: subsection;
}

/* Enhanced Legal Navigation */
.legal-nav a {
    position: relative;
    transition: var(--transition);
}

.legal-nav a::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.legal-nav a:hover::before,
.legal-nav a.active::before {
    opacity: 1;
}

/* Enhanced Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .prohibited-activities {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .acceptance-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .acceptance-actions .btn {
        width: 200px;
    }
    
    .policy-section h2 {
        padding-left: 2.5rem;
    }
    
    .policy-section h3 {
        padding-left: 1.5rem;
    }
    
    .terms-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .policy-section h2 {
        font-size: 1.5rem;
        padding-left: 2rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
        padding-left: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Legal Pages Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.page-hero-content {
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Legal Content Layout */
.legal-content {
    padding: 80px 0;
    background: var(--background-light);
}

.legal-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-sidebar h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.legal-nav {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.legal-main {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.policy-section h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.policy-section h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.policy-section strong {
    color: var(--text-dark);
}

/* Last Updated */
.last-updated {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

/* Disclosure Notice */
.disclosure-notice {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notice-icon {
    font-size: 3rem;
}

.notice-content h3 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.notice-content p {
    margin: 0;
    opacity: 0.9;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.partner-card.amazon {
    border-left-color: #ff9900;
}

.partner-card.walmart {
    border-left-color: #0071ce;
}

.partner-card.flipkart {
    border-left-color: #047bd5;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 120px;
}

.partner-info h4 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.partner-details {
    background: var(--background-white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Commission Table */
.commission-table {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.table-header .table-col,
.table-row .table-col {
    padding: 1rem;
    display: flex;
    align-items: center;
}

.table-row:nth-child(even) {
    background: var(--background-light);
}

.commission-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.right-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.right-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Promise Grid */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.promise-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.promise-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.promise-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-method h4 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.contact-method p {
    margin: 0;
    color: var(--text-light);
}

/* Cookies Table */
.cookies-table {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 1rem 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border-color);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-type {
    padding: 1rem;
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-desc {
    padding: 1rem;
    color: var(--text-light);
}

/* Disclosure Closing */
.disclosure-closing {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
    border-left: 4px solid #10b981;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design for Legal Pages */
@media (max-width: 968px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-main {
        padding: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
    }
    
    .disclosure-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .legal-main {
        padding: 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .rights-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
}
/* Content Guides Section */
.content-guides {
    padding: 80px 0;
    background: var(--background-light);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.guide-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.guide-card ul {
    list-style: none;
    padding: 0;
}

.guide-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.guide-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Seasonal Deals Section */
.seasonal-deals {
    padding: 80px 0;
    background: var(--background-white);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.seasonal-category {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seasonal-category h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.seasonal-category p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.trend-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Enhanced Product Cards with Ratings */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.rating-stars {
    color: #f59e0b;
}

.review-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

.product-features {
    margin: 0.5rem 0;
}

.feature-tag {
    display: inline-block;
    background: var(--background-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 2px;
}
/* Slogan Badge */
/*Newly added*/
.slogan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.slogan-icon {
    font-size: 1.2rem;
}

.slogan-text {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.highlight-icon {
    font-size: 1rem;
}

/* Button Icons */
.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Slogan Display in Hero Image */
.slogan-display {
    text-align: center;
    color: white;
    padding: 2rem;
}

.hindi-slogan {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hindi-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.hindi-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.hindi-features span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pulse Animation for Slogan */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Enhanced Region Badge */
.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Responsive Design for Hindi Text */
@media (max-width: 768px) {
    .slogan-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .hindi-slogan {
        font-size: 2rem;
    }
    
    .hindi-subtitle {
        font-size: 1.2rem;
    }
    
    .hindi-features {
        font-size: 1rem;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .slogan-badge {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .hindi-slogan {
        font-size: 1.5rem;
    }
    
    .hindi-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .hindi-features span {
        font-size: 0.9rem;
    }
}

/* Font Support for Hindi Characters */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

.hero-content {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}
/* Footer Slogan Section */
.footer-slogan {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
}

.slogan-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-slogan-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.footer-slogan-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.footer-slogan-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0;
}

/* Footer Features */
.footer-features {
    margin-top: 1.5rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #cbd5e1;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.2rem;
}

/* Newsletter Footer */
.newsletter-footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-footer p {
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.btn-newsletter {
    width: 100%;
    padding: 10px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer Bottom Brand */
.footer-brand {
    margin-bottom: 1rem;
}

.brand-slogan-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-weight: 600;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-heart {
    color: #ff6b6b;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Enhanced Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Responsive Design for Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .slogan-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-slogan-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-slogan {
        padding: 2rem 0;
    }
    
    .footer-slogan-content h3 {
        font-size: 1.3rem;
    }
    
    .footer-slogan-content p {
        font-size: 1rem;
    }
    
    .footer-slogan-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-slogan-content h3 {
        font-size: 1.2rem;
    }
    
    .footer-slogan-icon {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .brand-slogan-mini {
        font-size: 0.9rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 15px 30px;
    white-space: nowrap;
    font-weight: 600;
    background: var(--accent-color);
    border: none;
}

.newsletter-form button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.newsletter-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
    .newsletter-header h2 {
        font-size: 2rem;
    }
    
    .newsletter-header p {
        font-size: 1.1rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-width: auto;
    }
    
    .newsletter-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .newsletter-header h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-header p {
        font-size: 1rem;
    }
    
    .newsletter-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
/* Error States */
.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 1rem 0;
}

.loading-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-products .loading-spinner {
    margin: 0 auto 1rem;
}

/* Loading States */
.loading-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-products .loading-spinner {
    margin: 0 auto 1rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-products h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-products p {
    margin-bottom: 1.5rem;
}

.region-loading {
    pointer-events: none;
}

.region-loading::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-loading::before {
    content: "Loading...";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}
/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.mission-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.mission-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.milestone-timeline {
    position: relative;
}

.milestone {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.milestone:not(:last-child):after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background: #e9ecef;
}

.milestone-year {
    background: #667eea;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

.milestone-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.milestone-content p {
    color: #666;
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 40px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.mv-card.mission {
    border-top: 4px solid #667eea;
}

.mv-card.vision {
    border-top: 4px solid #764ba2;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #666;
}

.mission-points, .vision-points {
    list-style: none;
    padding: 0;
}

.mission-points li, .vision-points li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.mission-points li:before, .vision-points li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Values Section */
.our-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* How We Work */
.how-we-work {
    padding: 80px 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.member-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-cta h3 {
    margin-bottom: 1rem;
    color: #333;
}

.team-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
    line-height: 1.6;
}

/* Community Impact */
.community-impact {
    padding: 80px 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.impact-stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

.user-testimonials h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Future Roadmap */
.future-roadmap {
    padding: 80px 0;
    background: #f8f9fa;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-phase {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.phase-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.phase-header h3 {
    color: #333;
    margin: 0;
    flex: 1;
}

.phase-date {
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phase-features {
    list-style: none;
    padding: 0;
}

.phase-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.phase-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}