/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #7c3aed;
}

.badge {
    background: #e5e7eb;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #666;
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    font-size: 14px;
}

.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 10px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav {
    display: flex;
    gap: 5px;
    border-top: 1px solid #e5e5e5;
    padding: 10px 0;
    overflow-x: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-item:hover,
.nav-item.active {
    background: #f3f4f6;
}

.nav-icon {
    font-size: 18px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav a {
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: #f3f4f6;
}

/* Sections */
section {
    padding: 40px 0;
}

.section-tag {
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
}

.section-header {
    margin-bottom: 30px;
}

.section-flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.see-all {
    color: #7c3aed;
    font-weight: 600;
    font-size: 16px;
}

/* Explore Section */
.explore-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

.category-circles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 100%;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.circle-item:hover .circle-icon {
    transform: scale(1.05);
}

.circle-item p {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.product-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 1;
    background: #f9fafb;
}

.product-info {
    padding: 12px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

.add-btn {
    width: 100%;
    padding: 8px;
    background: #fff;
    border: 2px solid #ec4899;
    border-radius: 8px;
    color: #ec4899;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.add-btn:hover {
    background: #ec4899;
    color: #fff;
}

.notify-btn {
    border-color: #6b7280;
    color: #6b7280;
}

/* Featured Section */
.featured-section {
    padding: 50px 0;
}

.coffee-bg {
    background: linear-gradient(135deg, #fef3e2 0%, #fff 100%);
}

.wholesome-bg {
    background: linear-gradient(135deg, #f3e8ff 0%, #fff 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.featured-left {
    position: sticky;
    top: 100px;
}

.featured-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #92400e;
    margin-bottom: 20px;
}

.wholesome-bg .featured-title {
    color: #6b21a8;
}

.more-btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #92400e;
    border-radius: 10px;
    color: #92400e;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
}

.more-btn:hover {
    background: #92400e;
    color: #fff;
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.product-card-horizontal {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-card-horizontal .product-image {
    aspect-ratio: 1;
    background: #f9fafb;
}

.product-details {
    padding: 12px;
}

.price-badge {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.strike {
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 5px;
}

.product-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 12px;
    color: #16a34a;
    margin-bottom: 4px;
}

.rating {
    font-size: 12px;
    color: #16a34a;
    margin-bottom: 10px;
}

/* Banner Section */
.banner-section {
    padding: 30px 0;
}

.banner {
    padding: 60px 40px;
    border-radius: 20px;
    color: #fff;
}

.paan-banner {
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: #1f2937;
}

.banner h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.order-btn {
    padding: 12px 30px;
    background: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

/* Promo Section */
.promo-section {
    padding: 30px 0;
}

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

.promo-card {
    padding: 80px 40px;
    border-radius: 20px;
    color: #fff;
}

.super-sonic {
    background: linear-gradient(135deg, #1f2937 0%, #000 100%);
}

.beauty-lit {
    background: linear-gradient(135deg, #ffc0cb 0%, #ff69b4 100%);
}

.promo-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.promo-card p {
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #f9fafb;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e5e5;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #6b7280;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #7c3aed;
}

.small-text {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    font-size: 24px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.app-btn:hover {
    border-color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-left {
        position: static;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-wrap: wrap;
    }
    
    .search-bar {
        display: none;
    }
    
    .user-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .category-circles {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .circle-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .featured-products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .banner {
        padding: 40px 20px;
    }
    
    .banner h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .location {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .category-circles {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-products {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Page Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Filter Section */
.filter-section {
    padding: 20px 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e5e5;
}

.filter-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-btn.active {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}

.filter-btn:hover {
    border-color: #7c3aed;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Categories Page */
.categories-page-section {
    padding: 40px 0;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.category-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #7c3aed;
}

.category-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1f2937;
}

.category-item p {
    font-size: 14px;
    color: #6b7280;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-section {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 15px;
}

.visual-box {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: #fff;
}

.visual-box h3 {
    font-size: 80px;
    margin-bottom: 10px;
}

.visual-box p {
    font-size: 24px;
    font-weight: 700;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #f9fafb;
}

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

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
}

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

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1f2937;
}

.cta-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: #1f2937;
    color: #fff;
    border-radius: 12px;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    font-size: 32px;
}

.cta-text {
    text-align: left;
}

.cta-text small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.cta-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive for Additional Pages */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .filter-bar {
        justify-content: flex-start;
    }
    
    .category-list {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .visual-box {
        padding: 40px;
    }
    
    .visual-box h3 {
        font-size: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .stat-card h3 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
