* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0b0f19;
    --card: rgba(255,255,255,0.08);
    --text: #ffffff;
    --subtext: #a0a0a0;
    --border: rgba(255,255,255,0.1);
    --accent: #4f9cff;
}
body.light {
    --bg: #f6f7fb;
    --card: #ffffff;
    --text: #111;
    --subtext: #555;
    --border: #e5e5e5;
    --accent: #2563eb;
}

:root {
    --primary: #007AFF;
    --secondary: #5856D6;
    --success: #34C759;
    --warning: #FF9500;
    --danger: #FF3B30;
    --bg-primary: #000000;
    --bg-secondary: #1C1C1E;
    --bg-tertiary: #2C2C2E;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: var(--bg);
color: var(--text);

}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Glassmorphism Base */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.9);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2rem;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.icon-btn:active {
    transform: scale(0.95);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.2), transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* Page Hero */
.page-hero {
    padding: 150px 2rem 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Featured Banner */
.featured-banner {
    padding: 80px 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    margin: 2rem 0;
    text-align: center;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Categories */
.categories {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
}

/* Products */
.products {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-rating {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Features */
.features {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Newsletter */
.newsletter {
    padding: 100px 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: rgba(102, 126, 234, 0.5);
}

.newsletter-form button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-primary);
}

.cart-total {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Products Page */
.products-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.sidebar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.products-content {
    width: 100%;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sort-select {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
}

/* Categories Page */
.category-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.category-large-card {
    position: relative;
    height: 350px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-large-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    transition: opacity 0.3s ease;
}

.category-large-card:hover .category-overlay {
    opacity: 0.8;
}

.category-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.category-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.category-large-card:hover .category-icon-large {
    transform: scale(1.2) rotate(5deg);
}

.category-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.category-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.category-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Trending Section */
.trending-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trending-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
}

.trending-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Page */
.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}






/* ===== Premium Glow & Depth ===== */
.glow-card:hover {
    box-shadow:
        0 0 20px rgba(102,126,234,0.6),
        0 0 40px rgba(118,75,162,0.4),
        inset 0 0 20px rgba(255,255,255,0.05);
}

.product-card,
.category-card,
.feature-card,
.team-card,
.stat-card,
.sustainability-card {
    position: relative;
    overflow: hidden;
}

.product-card::after,
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
      transparent 40%,
      rgba(255,255,255,0.15),
      transparent 60%);
    transform: translateX(-100%);
    transition: 0.6s;
}

.product-card:hover::after,
.category-card:hover::after {
    transform: translateX(100%);
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.hero-content,
.feature-card,
.category-card {
  animation: float 6s ease-in-out infinite;
}
body {
    opacity: 0;
    animation: fadePage 1s forwards;
}

@keyframes fadePage {
    to { opacity: 1; }
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg,#667eea,#764ba2);
    border-radius: 10px;
}
/* ===== ABOUT PAGE ===== */

.about-story {
    padding: 120px 5%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    background: linear-gradient(135deg,#667eea,#764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    height: 420px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(102,126,234,.4), rgba(118,75,162,.3));
    backdrop-filter: blur(30px);
    box-shadow: 0 40px 80px rgba(102,126,234,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

/* Mission Vision */
.mission-vision {
    padding: 100px 5%;
}

.mission-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.mission-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid var(--glass-border);
    transition: .5s;
}

.mission-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px rgba(102,126,234,.4);
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Team */
.team-section {
    padding: 120px 5%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 50px;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: .4s;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(118,75,162,.4);
}

.team-avatar {
    font-size: 5rem;
    margin-bottom: 15px;
}

.team-role {
    color: var(--text-secondary);
}

/* Stats */
.stats-section {
    padding: 100px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(102,126,234,.3), rgba(118,75,162,.3));
    padding: 50px;
    border-radius: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    background: linear-gradient(135deg,#667eea,#764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* ===== CONTACT PAGE ===== */

.contact-page {
    padding: 120px 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3rem;
    background: linear-gradient(135deg,#667eea,#764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    transition: .4s;
}

.contact-method:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(102,126,234,.4);
}

.method-icon {
    font-size: 3rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid var(--glass-border);
}

.contact-form-detailed input,
.contact-form-detailed textarea,
.contact-form-detailed select {
    width: 100%;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: white;
    margin-bottom: 20px;
    outline: none;
}

.contact-form-detailed input:focus,
.contact-form-detailed textarea:focus,
.contact-form-detailed select:focus {
    border-color: #667eea;
    box-shadow: 0 0 30px rgba(102,126,234,.5);
}

.submit-btn-large {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(102,126,234,.5);
}

.submit-btn-large:hover {
    transform: translateY(-3px);
}
/* ========== PREMIUM UI BOOSTER (SAFE ADD) ========== */

/* Floating glass glow */
.about-container > div,
.mission-card,
.team-card,
.stat-card,
.sustainability-card,
.contact-method,
.contact-form-wrapper {
    position: relative;
    overflow: hidden;
}

.about-container > div::after,
.mission-card::after,
.team-card::after,
.contact-method::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent 40%,
        rgba(255,255,255,0.12),
        transparent 60%);
    transform: translateX(-100%);
    transition: .8s;
}

.about-container > div:hover::after,
.mission-card:hover::after,
.team-card:hover::after,
.contact-method:hover::after {
    transform: translateX(100%);
}

/* Premium hover depth */
.mission-card:hover,
.team-card:hover,
.contact-method:hover,
.stat-card:hover {
    box-shadow:
        0 30px 80px rgba(102,126,234,.4),
        0 0 30px rgba(118,75,162,.3);
}

/* Soft glow behind headings */
.about-text h2,
.section-title,
.contact-info h2 {
    text-shadow: 0 0 25px rgba(102,126,234,.5);
}

/* Stats counter glow */
.stat-number {
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0%,100% { text-shadow: 0 0 10px rgba(102,126,234,.4); }
    50% { text-shadow: 0 0 30px rgba(118,75,162,.8); }
}

/* Form focus premium */
.contact-form-detailed input:focus,
.contact-form-detailed textarea:focus,
.contact-form-detailed select:focus {
    background: rgba(102,126,234,.1);
    box-shadow: 
        0 0 0 2px rgba(102,126,234,.4),
        0 0 40px rgba(102,126,234,.5);
}

/* Button neon effect */
.submit-btn-large,
.chat-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn-large::after,
.chat-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
      transparent 40%,
      rgba(255,255,255,.4),
      transparent 60%);
    transform: translateX(-100%);
    transition: .6s;
}

.submit-btn-large:hover::after,
.chat-btn:hover::after {
    transform: translateX(100%);
}

/* FAQ premium accordion */
.faq-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.1);
}

.faq-question {
    cursor: pointer;
    padding: 25px;
    transition: .3s;
}

.faq-question:hover {
    background: rgba(102,126,234,.15);
}

/* Map card */
.map-placeholder {
    background: linear-gradient(135deg, rgba(102,126,234,.2), rgba(118,75,162,.2));
    border-radius: 30px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(102,126,234,.5);
}
/* ================================
   PREMIUM UI BOOSTER – HOME / CATEGORY / PRODUCTS
   (Safe Add-on – does not overwrite)
================================ */

/* ---- Hero Ultra Glow ---- */
.hero-title,
.page-hero h1 {
    text-shadow:
        0 0 40px rgba(102,126,234,.8),
        0 0 80px rgba(118,75,162,.5);
}

/* Hero glass halo */
.hero::after {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at center,
        rgba(102,126,234,.15),
        transparent 60%);
    pointer-events:none;
}

/* ---- Category Cards Glow ---- */
.category-card,
.category-large-card,
.trending-card {
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    transition: .5s cubic-bezier(.22,.61,.36,1);
}

.category-card:hover,
.category-large-card:hover,
.trending-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow:
        0 30px 80px rgba(102,126,234,.6),
        0 0 40px rgba(118,75,162,.4);
}

/* Light sweep on hover */
.category-card::after,
.category-large-card::after,
.product-card::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(120deg,
        transparent 40%,
        rgba(255,255,255,.18),
        transparent 60%);
    transform: translateX(-100%);
    transition:.8s;
}

.category-card:hover::after,
.category-large-card:hover::after,
.product-card:hover::after {
    transform: translateX(100%);
}

/* ---- Product Cards Premium ---- */
.product-card {
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.product-card:hover {
    box-shadow:
        0 40px 100px rgba(102,126,234,.6),
        0 0 60px rgba(118,75,162,.4);
}

/* Product Image glow */
.product-image {
    position: relative;
}

.product-image::before {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle,
        rgba(102,126,234,.25),
        transparent 70%);
    opacity:0;
    transition:.5s;
}

.product-card:hover .product-image::before {
    opacity:1;
}

/* ---- Price glow ---- */
.product-price {
    text-shadow: 0 0 25px rgba(102,126,234,.8);
}

/* ---- Add to cart neon ---- */
.add-to-cart-btn {
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(120deg,
      transparent 40%,
      rgba(255,255,255,.5),
      transparent 60%);
    transform: translateX(-100%);
    transition:.6s;
}

.add-to-cart-btn:hover::after {
    transform: translateX(100%);
}

/* ---- Sidebar Filters Premium ---- */
.sidebar,
.filter-section {
    box-shadow:
        inset 0 0 30px rgba(102,126,234,.1),
        0 20px 60px rgba(0,0,0,.6);
}

/* Checkbox glow */
.filter-list input:checked + label {
    color: #667eea;
    text-shadow: 0 0 15px rgba(102,126,234,.8);
}

/* ---- Sort dropdown ---- */
.sort-select {
    background: rgba(102,126,234,.15);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(102,126,234,.5);
}

/* ---- Trending Cards ---- */
.trending-card {
    background: linear-gradient(135deg,
        rgba(102,126,234,.25),
        rgba(118,75,162,.25));
}

/* ---- Scroll reveal smoothness ---- */
.product-card,
.category-card,
.category-large-card,
.trending-card {
    will-change: transform;
}

/* ---- Featured banner glow ---- */
.featured-banner {
    box-shadow:
        inset 0 0 100px rgba(102,126,234,.2),
        0 30px 100px rgba(118,75,162,.4);
}

/* ---- Page transition polish ---- */
.products-page,
.categories-page {
    animation: fadeSlide 1s ease;
}

@keyframes fadeSlide {
    from {
        opacity:0;
        transform: translateY(40px);
    }
    to {
        opacity:1;
        transform: translateY(0);
    }
}
/* =============================
   PREMIUM FOOTER & ICONS
   Safe Add-On
============================= */

/* Footer background glow */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(102,126,234,.25),
        transparent 60%);
    pointer-events: none;
}

/* Footer sections glass cards */
.footer-section {
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px;
    transition: .4s;
}

.footer-section:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 60px rgba(102,126,234,.4),
        0 0 40px rgba(118,75,162,.3);
}

/* Footer headings glow */
.footer-section h3,
.footer-section h4 {
    text-shadow: 0 0 20px rgba(102,126,234,.6);
}

/* Footer links hover */
.footer-section a {
    position: relative;
    transition: .3s;
}

.footer-section a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    transition:.3s;
}

.footer-section a:hover::after {
    width:100%;
}

/* Social icons – iOS style */
.social-icons a {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px rgba(255,255,255,.05),
                0 10px 30px rgba(0,0,0,.6);
    transition:.4s;
}

.social-icons a:hover {
    background: linear-gradient(135deg,#667eea,#764ba2);
    color:white;
    transform: translateY(-8px) scale(1.15);
    box-shadow:
        0 0 40px rgba(102,126,234,.8),
        0 20px 60px rgba(118,75,162,.6);
}

/* Footer bottom neon line */
.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background: linear-gradient(90deg,#667eea,#764ba2,#667eea);
    box-shadow: 0 0 20px rgba(102,126,234,.7);
}







/* ===============================
   MOBILE RESPONSIVE MASTER PACK
   Safe Add-On (No break)
================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* -------- Phone View -------- */
@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    /* Header */
    header {
        padding: 12px 0;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .nav-icons {
        gap: 10px;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }

    /* Categories */
    .category-grid,
    .category-large-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Products */
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 240px;
    }

    /* Product Page Layout */
    .products-page {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    /* About Page */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Page */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .hero-title {
        font-size: 2.1rem;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}
/* Auth UI */
.auth-box {
    max-width: 400px;
    text-align: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,.05);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 20px;
}

.auth-tab.active {
    background: linear-gradient(135deg,#667eea,#764ba2);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 14px;
    border-radius: 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: white;
}

.auth-btn {
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.hidden {
    display: none;
}
.icon-btn i {
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.icon-btn:hover i {
    color: #667eea;
    transform: scale(1.2);
}
/* Luxury glass panels */
.hero,
.products,
.categories,
.features,
.newsletter {
    position: relative;
}

.hero::after,
.products::after,
.categories::after,
.features::after {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 50% 0,
      rgba(102,126,234,.15),
      transparent 60%);
    pointer-events:none;
}
.reveal {
  opacity:0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(.22,.61,.36,1);
}
.reveal.show {
  opacity:1;
  transform: translateY(0);
}
.logo {
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* FORCE VISIBILITY OF ICONS */
.icon-btn {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
}

.icon-btn i {
    color: white !important;
    font-size: 18px !important;
    opacity: 1 !important;
    display: block !important;
}

.icon-btn:hover i {
    color: #667eea !important;
    transform: scale(1.2);
}
.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 8px 14px;
  border-radius: 30px;
  gap: 10px;
  box-shadow: 0 0 30px rgba(102,126,234,.4);
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 160px;
}

.search-box input::placeholder {
  color: rgba(255,255,255,.6);
}
:root {
  --bg: #0a0a12;
  --text: white;
}

body.light {
  --bg: #f4f6fb;
  --text: #111;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: 0.4s;
}
button, .product-card, .category-card {
  transition: 0.4s cubic-bezier(.22,.61,.36,1);
}

button:hover {
  transform: translateY(-3px);
}

body.light .product-card {
  background: white;
  color: #111;
}
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
