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

:root {
    /* Auth page colors - Purple/Pink gradient theme */
    --primary-color: #6366f1;
    --primary-hover: #8b5cf6;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --accent-hover: #f472b6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --bg-dark: #667eea;
    --bg-feature: #764ba2;
    --border-color: rgba(139, 92, 246, 0.3);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    
    /* Background gradient colors from auth page */
    --gradient-start: #667eea;
    --gradient-mid: #764ba2;
    --gradient-end: #f093fb;
    
    /* Dark mode variables - Purple gradient style */
    --bg-primary: #667eea;
    --bg-secondary: #764ba2;
    --bg-tertiary: #8b5cf6;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --border-primary: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-primary: #e5e7eb;
    --primary-color: #6366f1;
    --primary-hover: #8b5cf6;
}

[data-theme="light"] body {
    background: linear-gradient(135deg, #f8f9ff 0%, #f3f0ff 50%, #fef3ff 100%);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .site-name {
    color: #1f2937;
    text-shadow: none;
}

[data-theme="light"] .hero-title {
    color: #1f2937;
    text-shadow: none;
}

[data-theme="light"] .hero-description {
    color: #6b7280;
}

[data-theme="light"] .section-title {
    color: #1f2937;
    text-shadow: none;
}

[data-theme="light"] .feature-number {
    color: #6366f1;
    text-shadow: none;
}

[data-theme="light"] .feature-text {
    color: #6b7280;
}

[data-theme="light"] .features {
    background: rgba(248, 249, 255, 0.5);
}

[data-theme="light"] .footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .nav-link {
    color: #1f2937;
}

[data-theme="light"] .nav-link:hover {
    color: #6366f1;
}

html {
    height: 100%;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    zoom: 1;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

html * {
    -webkit-tap-highlight-color: transparent;
}

html input,
html textarea,
html select,
html button {
    -webkit-user-select: auto;
    user-select: auto;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-size: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    transition: background 0.5s ease, color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

/* Animated background particles similar to auth page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}

[data-theme="light"] body::before {
    display: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: rgba(102, 126, 234, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 768px) {
    .header {
        z-index: 10000;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

    .logo-section {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex: 1;
        min-width: 0;
    }

.logo {
    width: 60px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.site-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    background: transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-icon svg {
    color: var(--text-primary);
    stroke: var(--text-primary);
}

.cart-icon:hover {
    background: var(--bg-tertiary);
}

.cart-amount {
    font-weight: 600;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: lowercase;
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    text-decoration: underline;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-auth-btn {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    display: inline-block;
}

.header-auth-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-auth-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    white-space: nowrap;
}

.header-auth-btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #f472b6);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
}

.header-admin-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.header-admin-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.notification-icon,
.profile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10002;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.profile-icon img,
.profile-icon svg {
    pointer-events: none;
}

.notification-icon.purple-icon {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.3);
}

.profile-icon.orange-icon {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification-icon:hover,
.profile-icon:hover {
    transform: scale(1.1);
    background: var(--bg-secondary);
}

/* Theme Toggle Button */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: relative;
    z-index: 10001;
}

@media (max-width: 768px) {
    .profile-dropdown {
        z-index: 10002;
    }
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #6F52D9;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(111, 82, 217, 0.3);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.profile-dropdown:hover .dropdown-menu,
.profile-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-icon {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.dropdown-item {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: none;
    font-weight: 400;
}

.dropdown-item:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding-left: 1.75rem;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 4rem 0;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: rgba(118, 75, 162, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.feature-box {
    background: transparent;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-box:hover::before {
    animation: shine 1.5s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-number {
    transform: scale(1.1);
}

.feature-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: transparent;
    transition: background-color 0.3s ease;
    flex: 1;
    position: relative;
    z-index: 1;
}

.products-section.full-page {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.no-products {
    text-align: center;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 3rem 1rem;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    margin: 2rem auto;
    max-width: 600px;
}

.service-divider {
    grid-column: 1 / -1;
    margin: 2rem 0 1rem 0;
    position: relative;
    text-align: center;
}

.service-divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    margin: 0 auto;
    max-width: 400px;
}

.service-divider-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: -1rem;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
    padding: 0;
}

@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        max-width: 1200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        max-width: 800px;
    }
}

.product-card {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.5rem;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    z-index: 1;
    transform: scale(1) translateY(0);
    max-width: 100%;
    width: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Ripple effect for click/touch */
.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.product-card:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.08) rotateY(3deg);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.8), 
                0 0 60px rgba(139, 92, 246, 0.6),
                0 0 120px rgba(236, 72, 153, 0.5),
                inset 0 0 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 1);
    z-index: 10;
}

.product-card:active {
    transform: translateY(-8px) scale(1.04) rotateY(2deg);
    transition: transform 0.2s ease;
}

.product-card:hover::before {
    opacity: 1;
}

/* Mobile touch animation */
@media (hover: none) and (pointer: coarse) {
    .product-card:active {
        transform: translateY(-4px) scale(0.98);
        transition: transform 0.2s ease;
    }
    
    .product-card:active::after {
        width: 200px;
        height: 200px;
    }
}

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-logo-box {
    width: 60px;
    height: 60px;
    background: rgba(55, 48, 163, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4), inset 0 0 20px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.product-logo-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(236, 72, 153, 0.6));
    opacity: 0.5;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.product-card:hover .product-logo-box {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6), 
                inset 0 0 30px rgba(139, 92, 246, 0.3),
                0 0 20px rgba(236, 72, 153, 0.4);
}

.product-card:hover .product-logo-box::after {
    opacity: 0.8;
    filter: blur(12px);
}

.product-card:active .product-logo-box {
    transform: scale(1.05) rotateZ(-2deg);
    transition: transform 0.2s ease;
}

.product-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.product-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.product-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.product-stock-badge {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.product-stock-badge.in-stock {
    background: #10b981;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.product-stock-badge.out-of-stock {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.product-card:hover .product-name {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
}

.product-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    text-align: center;
}

.product-price {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 10px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.2) !important;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    transform: scale(1.05);
    text-shadow: 0 4px 15px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.4) !important;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: translateX(0);
    opacity: 1;
}

.product-card:hover .product-feature-item {
    transform: translateX(5px);
}

.product-card:hover .product-feature-item:nth-child(1) {
    transition-delay: 0.05s;
}

.product-card:hover .product-feature-item:nth-child(2) {
    transition-delay: 0.1s;
}

.product-card:hover .product-feature-item:nth-child(3) {
    transition-delay: 0.15s;
}

.feature-check {
    color: #8b5cf6;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.6));
    transition: all 0.3s ease;
    transform: scale(1);
}

.product-card:hover .feature-check {
    color: #ec4899;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.8));
    transform: scale(1.2) rotate(360deg);
}

.product-card-footer {
    margin-top: auto;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.75rem;
}

.product-card-footer .btn-buy-now:only-child,
.product-card-footer .btn-view-samples:only-child {
    width: 100%;
}

.btn-buy-now,
.btn-add-cart,
.btn-view-samples {
    flex: 1;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.product-card:hover .btn-buy-now:not(:disabled),
.product-card:hover .btn-add-cart,
.product-card:hover .btn-view-samples {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6),
                0 0 30px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #f472b6, #a78bfa);
}

.product-card:active .btn-buy-now:not(:disabled),
.product-card:active .btn-add-cart,
.product-card:active .btn-view-samples {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.btn-buy-now::before,
.btn-add-cart::before,
.btn-view-samples::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-buy-now:hover,
.btn-add-cart:hover,
.btn-view-samples:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-buy-now:hover::before,
.btn-add-cart:hover::before,
.btn-view-samples:hover::before {
    opacity: 1;
}

.btn-buy-now span,
.btn-add-cart span,
.btn-view-samples span {
    position: relative;
    z-index: 1;
}

.btn-buy-now:active,
.btn-add-cart:active,
.btn-view-samples:active {
    transform: translateY(0);
}

.btn-buy-now {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-buy-now::before {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.btn-buy-now:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-view-samples {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-view-samples::before {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.btn-view-samples:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.no-products {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    padding: 3rem;
    grid-column: 1 / -1;
}

/* Footer */
.footer {
    background: rgba(102, 126, 234, 0.8);
    backdrop-filter: blur(15px);
    color: var(--text-primary);
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 -2px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.footer-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: var(--text-secondary);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Prevent zoom on input focus (iOS Safari) */
input,
textarea,
select {
    font-size: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Prevent double-tap zoom */
* {
    touch-action: manipulation;
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header {
        padding: 0.75rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 0.5rem;
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .logo {
        width: 50px;
        height: 35px;
    }
    
    .site-name {
        font-size: 1.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
        flex-shrink: 0;
        order: 2;
        position: relative;
        z-index: 10001;
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    .mobile-menu-toggle:active {
        background: rgba(255, 255, 255, 0.4) !important;
        transform: scale(0.95);
    }
    
    .logo-section {
        order: 1;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        gap: 0.5rem;
    }
    
    .nav-menu {
        order: 4;
    }
    
    .header-actions {
        order: 3;
        flex-shrink: 0;
        gap: 0.25rem;
        position: relative;
        z-index: 10000;
    }
    
    /* Prevent elements from sticking together */
    .header-content > * {
        margin: 0;
        padding: 0;
    }
    
    .logo-section,
    .mobile-menu-toggle,
    .nav-menu,
    .header-actions {
        margin: 0;
        padding: 0;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(102, 126, 234, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 9999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex !important;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        pointer-events: auto;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        position: relative;
        z-index: 10000;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .nav-link:active {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .header-actions {
        gap: 0.5rem;
        position: relative;
        z-index: 1000;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    .header-actions > * {
        flex-shrink: 0;
    }
    
    .theme-toggle,
    .profile-dropdown,
    .header-auth-btn {
        min-width: 40px;
        min-height: 40px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .header-auth-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .cart-icon {
        padding: 0.4rem 0.6rem;
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
    
    .cart-icon .cart-amount {
        font-size: 0.75rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        display: grid !important;
        padding: 0 10px;
    }
    
    .product-card {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
        word-wrap: break-word;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin: 0 auto;
    }
    
    .product-name,
    .product-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .product-card-header,
    .product-card-body,
    .product-card-footer {
        width: 100%;
        max-width: 100%;
    }
    
    .product-card-footer {
        flex-direction: column;
    }
    
    .btn-buy-now,
    .btn-add-cart,
    .btn-view-samples {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Dropdown menu mobile */
    .profile-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        border-radius: 8px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .profile-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Prevent horizontal scroll */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Forms mobile */
    .form-container {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.75rem;
    }
    
    /* Buttons mobile */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Tables mobile */
    table {
        font-size: 0.875rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    th, td {
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
    
    /* Announcement bar mobile */
    .announcement-bar {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .announcement-item {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Chat mobile */
    .chat-container {
        padding: 1rem;
    }
    
    .chat-messages {
        max-height: calc(100vh - 250px);
    }
    
    .chat-input-container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .chat-upload-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .chat-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Modals mobile */
    .modal {
        padding: 1rem;
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
    }
    
    /* Admin pages mobile */
    .admin-container {
        flex-direction: column;
    }
    
    .admin-nav {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .admin-nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .admin-nav-menu .nav-item {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-box {
        padding: 1rem 0.75rem;
    }
    
    .feature-number {
        font-size: 1.75rem;
    }
    
    .feature-text {
        font-size: 0.7rem;
    }
    
    .site-name {
        font-size: 1.1rem;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo {
        width: 45px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .logo-section {
        min-width: 0;
        overflow: hidden;
    }
    
    .header-auth-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
}

/* Tablet - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
        gap: 1.5rem;
        max-width: 800px;
        justify-content: center;
        display: grid !important;
    }
}

/* Desktop - 3 columns */
@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
        gap: 2rem;
        max-width: 1200px;
        justify-content: center;
        display: grid !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animation Classes for Page Elements */
.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-content {
    animation: fadeInUp 0.5s ease-out;
    will-change: transform, opacity;
}

.features-grid .feature-box {
    animation: fadeInUp 0.4s ease-out;
    will-change: transform, opacity;
}

.features-grid .feature-box:nth-child(1) {
    animation-delay: 0.05s;
}

.features-grid .feature-box:nth-child(2) {
    animation-delay: 0.1s;
}

.features-grid .feature-box:nth-child(3) {
    animation-delay: 0.15s;
}

.features-grid .feature-box:nth-child(4) {
    animation-delay: 0.2s;
}

.products-grid .product-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
    backface-visibility: hidden;
    visibility: visible;
    display: flex;
}

/* Animation only if JavaScript adds animated class */
.products-grid .product-card:not(.animated) {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.products-grid .product-card.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    animation: cardFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0) scale(0.95) rotateY(-5deg);
    }
    50% {
        transform: translate3d(0, -5px, 0) scale(1.02) rotateY(2deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
    }
}

/* Staggered animation delays for product cards */
.products-grid .product-card:nth-child(1) {
    transition-delay: 0.05s;
}

.products-grid .product-card:nth-child(2) {
    transition-delay: 0.1s;
}

.products-grid .product-card:nth-child(3) {
    transition-delay: 0.15s;
}

.products-grid .product-card:nth-child(4) {
    transition-delay: 0.2s;
}

.products-grid .product-card:nth-child(5) {
    transition-delay: 0.25s;
}

.products-grid .product-card:nth-child(6) {
    transition-delay: 0.3s;
}

.products-grid .product-card:nth-child(7) {
    transition-delay: 0.35s;
}

.products-grid .product-card:nth-child(8) {
    transition-delay: 0.4s;
}

/* Notification Toast Styles */
.notification-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translate3d(400px, 0, 0);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.notification-toast.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.notification-toast.hide {
    opacity: 0;
    transform: translate3d(400px, 0, 0);
}

.notification-toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
    will-change: transform;
}

@keyframes pulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1);
    }
}

.notification-toast-content {
    flex: 1;
}

.notification-toast-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.notification-toast-message {
    font-size: 0.875rem;
    opacity: 0.9;
}

.notification-toast-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Menu Link Animation */
.nav-link {
    position: relative;
    transition: transform 0.2s ease;
    will-change: transform;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transition: width 0.2s ease;
    will-change: width;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:active {
    transform: scale(0.95);
}

/* Page Load Animation */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.header {
    animation: slideInFromTop 0.4s ease-out;
    will-change: transform, opacity;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Product Card Stagger Animation - Reduced delays */
.products-grid .product-card:nth-child(1) {
    transition-delay: 0.05s;
}

.products-grid .product-card:nth-child(2) {
    transition-delay: 0.1s;
}

.products-grid .product-card:nth-child(3) {
    transition-delay: 0.15s;
}

.products-grid .product-card:nth-child(4) {
    transition-delay: 0.2s;
}

.products-grid .product-card:nth-child(5) {
    transition-delay: 0.25s;
}

.products-grid .product-card:nth-child(6) {
    transition-delay: 0.3s;
}

/* Responsive Notification */
@media (max-width: 768px) {
    .notification-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification-toast.show {
        transform: translateY(0);
    }
    
    .notification-toast.hide {
        transform: translateY(-100px);
    }
}
