/* CSS Variables - Glass OS Theme - Forest Green Variant */
:root {
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --glass-blur: blur(20px);
    --primary-gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --secondary-gradient: linear-gradient(135deg, #82e0aa 0%, #58d68d 100%);
    --accent-gradient: linear-gradient(135deg, #2ecc71 0%, #1e8449 100%);
    --success-gradient: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --bg-gradient: linear-gradient(135deg, #0d1f0d 0%, #1a3a1a 50%, #0f2910 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(46, 204, 113, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(39, 174, 96, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(2deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(0.9) rotate(-2deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}



/* Glass Card Base */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

.section {
    padding: 80px 0;
    scroll-margin-top: 150px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: #1a1a2e;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Header Styles - Floating Glass */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
}

.header-top {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    color: var(--white);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-timing, .delivery-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.delivery-badge {
    background: rgba(46, 204, 113, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-image:hover {
    animation: logoPulse 0.5s ease;
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 12px;
    opacity: 0.7;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(67, 233, 123, 0.5);
    box-shadow: 0 0 20px rgba(67, 233, 123, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: var(--white);
    font-family: inherit;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar button {
    padding: 14px 22px;
    background: var(--accent-gradient);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: #27ae60;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Show menu toggle only on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-gradient);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    background: transparent;
    border-top: 1px solid var(--glass-border);
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-list a {
    display: block;
    padding: 16px 0;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list a:hover {
    color: var(--white);
}

.nav-list a:hover::after {
    width: 30px;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgba(165, 235, 195, 0.267) 0%, rgba(39, 174, 96, 0.85) 100%),
                url('GettyImages-1448794844_54_990x660.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Glassmorphism glow effects */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
    border: 1px solid var(--glass-border);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.feature i {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section - Glass Cards */
.about {
    background: transparent;
}

/* REMOVE GRID → make everything center */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

/* OPTIONAL: hide image if not needed */
.about-image {
    display: none;
}

/* TEXT CENTER */
.about-text {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* FEATURES CENTER */
.about-features {
    margin-top: 25px;
    padding: 0;
}

/* 🔥 IMPORTANT FIX */
.about-features li {
    display: flex;
    align-items: center;
    justify-content: center; /* keeps whole line centered */
    gap: 10px;
    margin-bottom: 12px;
    list-style: none;
    text-align: left;
}
.about-features li i {
    width: 22px;
    height: 22px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--white);
    flex-shrink: 0; /* important */
}

/* Categories Section - Glass Cards */
.categories {
    background: transparent;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Products Section - Glass Cards */
.products {
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.product-card:hover .product-image::before {
    left: 100%;
}

.product-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.product-price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    text-decoration: line-through;
    -webkit-text-fill-color: var(--text-muted);
    margin-left: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(67, 233, 123, 0.5);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-gradient);
}

.quantity-value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
}

.add-to-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Offers Section - Glass Cards */
.offers {
    background: transparent;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--success-gradient);
}

.offer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.offer-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.offer-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.offer-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
}

.offer-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

/* Delivery Section - Glass Cards */
.delivery {
    background: transparent;
}

.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.delivery-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.delivery-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.delivery-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.delivery-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.delivery-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Reviews Section - Glass Cards */
.reviews {
    background: transparent;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.review-rating {
    color: #fbbf24;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-rating i {
    font-size: 14px;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section - Glass Cards */
.contact {
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.contact-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-form-section {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.contact-form-section h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

/* Better spacing & alignment */
.contact-form .form-group {
    margin-bottom: 18px;
    position: relative;
}

/* All inputs + textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--white);
}

/* Focus effect (smooth glow) */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2ecc71;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.25);
}

/* Placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

/* Equal height for phone & email */
.contact-form input[type="tel"],
.contact-form input[type="email"] {
    height: 40px;
    padding: 0 16px;           /* vertical padding remove */
    line-height: 40px;         /* text center vertically */
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Textarea resize control */
.contact-form textarea {
    min-height: 120px;
    resize: none;
}

/* Hover effect (subtle) */
.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(46, 204, 113, 0.3);
}

.map-section {
    margin-top: 40px;
    grid-column: 1 / -1;
    width: 100%;
}

.map-section h3 {
    margin-bottom: 15px;
}

/* 🔥 Rectangle box */
.map-container {
    width: 100%;
    height: 350px; /* adjust height */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* iframe full fit */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(1.15) brightness(0.75);
}

/* .map-section h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
} */

/* Footer - Glass Style */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-links h4 {
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 8px 20px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #2ecc71;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Cart Modal - Glass Style */
.cart-modal, .checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal.active, .checkout-modal.active {
    display: flex;
}

.cart-content, .checkout-content {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cart-header, .checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.cart-header h3, .checkout-header h3 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}


.cart-item-info {
    flex: 1;
}

/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #111;
    color: #fff;
}

/* Logo section */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo image */
.logo img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFC107;
}

/* Title text */
.logo span {
    font-size: 22px;
    font-weight: bold;
    color: #FFC107;
    letter-spacing: 1px;
}


/* Hover effect 🔥 */
.logo:hover {
    transform: scale(1.05);
    transition: 0.3s;
}
/* Overlay */
.dialog {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup box */
.dialog-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 280px;

    /* 🔥 animation */
    transform: scale(0.8);
    opacity: 0;
    animation: popup 0.3s ease forwards;

    /* soft shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Success text */
.dialog-box p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Button */
.dialog-box button {
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    background: linear-gradient(135deg, #28a745, #34d058);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect */
.dialog-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,167,69,0.4);
}

/* Animation */
@keyframes popup {
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.cart-item-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-actions button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.cart-item-actions button:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-gradient);
}

.cart-item-quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    border-color: #e74c3c !important;
}

.remove-item:hover {
    background: #e74c3c !important;
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.empty-cart i {
    font-size: 60px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    width: 100%;
}

.checkout-btn {
    width: min(100%, 280px);
    justify-content: center;
}

/* Checkout Form - Glass Style */
.checkout-content {
    max-width: 550px;
}

.checkout-form {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

/* Select Styling */
.form-group select {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.form-group select:hover {
    border-color: #FFC107;
}

/* Focus effect */
.form-group select:focus {
    border-color: #FFC107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

/* Placeholder (first option) style */
.form-group select:invalid {
    color: #888;
}

/* Dropdown text color */
.form-group select option {
    color: #000;
}

.checkout-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--white);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
    border-color: rgba(46, 204, 113, 0.5);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.checkout-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.checkout-summary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 24px;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid var(--glass-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    padding-top: 12px;
    border-top: 2px solid var(--glass-border);
}

.place-order-btn {
    width: min(100%, 280px);
    justify-content: center;
    display: flex;
    margin: 0 auto;
}

/* Notification - Glass Style */
.notification {
    position: fixed;
    top: 20px;
    right: -400px; /* hide initially */
    background: #28a745;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    z-index: 9999;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
}

.cart-details {
    flex: 1;
}


.product-card:hover {
  border-color: #FFC107;
}
.notification {
    max-width: 300px;   /* control width */
    word-wrap: break-word;
    white-space: normal;
}

.notification.show {
    right: 20px; /* slide in */
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content i {
    font-size: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Back to Top - Glass Style */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.5);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #27ae60;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-top-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 2;
    }
    
    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }
    
    /* Navigation - Mobile Menu */
    .nav-menu {
        position: relative;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 31, 13, 0.98);
        backdrop-filter: blur(30px);
        padding: 15px;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        text-align: center;
    }
    
    .nav-list a {
        padding: 12px 0;
        display: block;
    }
    
    /* Hero */
    .hero {
        padding-top: 220px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature {
        width: 100%;
        justify-content: center;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-img-wrapper {
        height: 250px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .category-card h3 {
        font-size: 14px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-image {
        height: 140px;
        font-size: 40px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .add-to-cart-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    /* Offers */
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Delivery */
    .delivery-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .delivery-card {
        padding: 20px;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 20px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* Cart Modal */
    .cart-content {
        max-height: 90vh;
    }
    
    .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
   /* 🔥 remove old gap */
}
    
    .cart-item-info {
        flex: 1 1 60%;
    }
    
    .cart-details {
    flex: 1;
}
    .cart-item-actions {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    /* Checkout */
    .checkout-content {
        max-height: 90vh;
        margin: 10px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 26px;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .cart-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .search-bar input {
        padding: 12px 15px;
    }
    
    .search-bar button {
        padding: 12px 15px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* iOS Micro-interactions */
@media (hover: hover) {
    .btn-primary:active,
    .btn-secondary:active,
    .add-to-cart-btn:active,
    .cart-btn:active {
        transform: scale(0.95);
    }
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(46, 204, 113, 0.3); }
    50% { box-shadow: 0 0 40px rgba(46, 204, 113, 0.6); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Apply animations to elements */
.category-card:hover .category-icon {
    animation: bounce 0.5s ease infinite;
}

.product-card:hover .product-image {
    animation: pulse 1s ease infinite;
}

/* Logo animation already defined above */

.feature {
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    animation: glow 1s ease infinite;
}

.category-card {
    animation: slideUp 0.6s ease backwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }

.product-card {
    animation: fadeIn 0.5s ease backwards;
}

.review-card {
    animation: slideUp 0.6s ease backwards;
}

.delivery-card {
    animation: slideUp 0.6s ease backwards;
}

/* Loading animation */
.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: rotate-glow 1s linear infinite;
}
