/* Index Page - E-Zigaretten Händler */
/* Korrigiertes Farbschema: Weiß, Rot, Neongrün */

:root {
    --primary-white: #ffffff;
    --accent-red: #dc2626;
    --accent-neon: #00ff88;
    --dark-gray: #1f1f1f;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.2);
    --shadow-red-glow: 0 0 20px rgba(220, 38, 38, 0.3);
    --shadow-neon-glow: 0 0 30px rgba(0, 255, 136, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--accent-red), #b91c1c);
    --gradient-secondary: linear-gradient(135deg, var(--accent-neon), #059669);
    --text-primary: var(--dark-gray);
    --text-secondary: var(--medium-gray);
    --text-accent: var(--accent-red);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(220, 38, 38, 0.2);
}

/* Global Overrides for Index */
.homepage {
    background: var(--primary-white);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-white) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--accent-red), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--accent-neon), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--medium-gray), transparent);
    background-size: 120px 120px, 80px 80px, 150px 150px;
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-red);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    text-shadow: var(--shadow-red-glow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1s both;
}

.hero-trust {
    font-size: 0.875rem;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-red);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

.btn-glow {
    box-shadow: var(--shadow-red-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--accent-red);
}

.btn-glass:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.btn-outline-accent {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.btn-outline-accent:hover {
    background: var(--accent-red);
    color: var(--primary-white);
    box-shadow: var(--shadow-red-glow);
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-accent {
    color: var(--accent-red);
}

.text-accentb2b {
    color: #00ff88;;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Showcase */
.categories-showcase {
    background: linear-gradient(180deg, var(--primary-white) 0%, var(--light-gray) 100%);
}

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

.category-card {
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-red-glow);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 1rem;
    text-shadow: 0 0 10px var(--accent-red);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.category-card:hover .category-overlay {
    opacity: 0.05;
}

/* Features Section */
.features-section {
    background: var(--light-gray);
    position: relative;
}

.features-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.features-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

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

.feature-card {
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-neon);
    box-shadow: var(--shadow-neon-glow);
}

.feature-icon {
    position: relative;
    margin-bottom: 2rem;
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--accent-neon);
    color: var(--primary-white);
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Products Showcase */
.products-showcase {
    background: var(--primary-white);
}

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

.product-card-modern {
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-red-glow);
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(0, 255, 136, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    font-size: 3rem;
    color: var(--accent-red);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-bestseller {
    background: var(--accent-neon);
    color: var(--primary-white);
}

.badge-featured {
    background: var(--accent-red);
    color: var(--primary-white);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--accent-red);
    color: var(--primary-white);
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.product-brand {
    color: var(--accent-red);
    font-weight: 600;
}

.product-sku {
    color: var(--text-secondary);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--accent-red);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 16px;
    height: 16px;
    background: var(--text-secondary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.active {
    background: var(--accent-neon);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-price {
    margin-bottom: 1.5rem;
}

.price-b2b {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.25rem;
}

.price-msrp {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.btn-product-view {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-product-view:hover {
    background: var(--accent-red);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* Brands Showcase */
.brands-showcase {
    background: var(--light-gray);
}

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

.brand-card {
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-red-glow);
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
}

.brand-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--primary-white);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.brand-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.brand-link:hover {
    text-shadow: 0 0 10px var(--accent-red);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-red), #b91c1c);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(3px 3px at 100px 50px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 200px 150px, var(--accent-neon), transparent),
        radial-gradient(1px 1px at 300px 100px, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200px 200px, 150px 150px, 250px 250px;
    animation: float-reverse 25s ease-in-out infinite;
    opacity: 0.4;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--primary-white);
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-neon);
    color: var(--primary-white);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--accent-neon);
    font-size: 1.25rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--accent-neon);
}

/* Vape-spezifische Effekte */
.vape-smoke-effect {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.smoke-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(102, 102, 102, 0.4);
    border-radius: 50%;
    animation: smokeRise 4s ease-out infinite;
}

.smoke-particle:nth-child(1) { animation-delay: 0s; left: -10px; }
.smoke-particle:nth-child(2) { animation-delay: 0.8s; left: -5px; }
.smoke-particle:nth-child(3) { animation-delay: 1.6s; left: 0px; }
.smoke-particle:nth-child(4) { animation-delay: 2.4s; left: 5px; }
.smoke-particle:nth-child(5) { animation-delay: 3.2s; left: 10px; }

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.notification {
    background: var(--primary-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.removing {
    transform: translateX(100%);
    opacity: 0;
}

.notification-success {
    border-left: 4px solid var(--accent-neon);
}

.notification-error {
    border-left: 4px solid var(--accent-red);
}

.notification-warning {
    border-left: 4px solid #f59e0b;
}

.notification-info {
    border-left: 4px solid var(--medium-gray);
}

.notification-icon {
    font-size: 1.25rem;
    font-weight: bold;
}

.notification-success .notification-icon {
    color: var(--accent-neon);
}

.notification-error .notification-icon {
    color: var(--accent-red);
}

.notification-warning .notification-icon {
    color: #f59e0b;
}

.notification-info .notification-icon {
    color: var(--medium-gray);
}

.notification-message {
    flex: 1;
    color: var(--text-primary);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--accent-red);
}

/* Modal System */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-red);
    color: var(--primary-white);
}

/* Quick View Modal */
.modal.quick-view-modal .modal-content {
    max-width: 800px;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quick-view-image {
    position: relative;
}

.quick-view-image img {
    width: 100%;
    border-radius: 8px;
}

.vape-glow-effect {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    animation: glowRotate 3s linear infinite;
}

.quick-view-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-view-info .product-brand {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.875rem;
}

.quick-view-info .product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.quick-view-info .product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-red);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-red);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.quick-view-actions .btn {
    flex: 1;
    justify-content: center;
}

.loading-spinner {
    text-align: center;
    color: var(--medium-gray);
    padding: 2rem 0;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-neon));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%, 43% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}

@keyframes grid-move {
    from { transform: translateX(0); }
    to { transform: translateX(50px); }
}

@keyframes smokeRise {
    0% {
        opacity: 0.7;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(2);
    }
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeOutScale {
    from { opacity: 1; transform: scale(1) translateY(0); }
    to { opacity: 0; transform: scale(0.8) translateY(-20px); }
}

@keyframes imageReveal {
    from { opacity: 0; filter: blur(10px) brightness(0.8); }
    to { opacity: 1; filter: blur(0) brightness(1); }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .categories-grid,
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features,
    .cta-actions,
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }

    .quick-view-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .notification-container {
        left: 20px;
        right: 20px;
        top: 10px;
        max-width: none;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .category-card,
    .feature-card,
    .product-card-modern {
        margin: 0 1rem;
    }

    .quick-view-actions {
        flex-direction: column;
    }

    .quick-view-actions .btn {
        width: 100%;
    }
}