/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #3fe455;
    --primary-light: #aee5b5;
    --primary-dark: #0bb121;
    --primary-vibrant: #25fe42;
    
    /* Secondary Colors */
    --secondary-color: #68df8d;
    --secondary-light: #98e1af;
    --secondary-dark: #18aa46;
    
    /* Accent Colors */
    --accent-color: #e515b8;
    --accent-light: #e076c9;
    --accent-dark: #da10ae;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #86ea93, #3fe473);
    --gradient-secondary: linear-gradient(135deg, #67e990, #dc47bc);
    --gradient-accent: linear-gradient(90deg, #3fe455, #68df8d, #e515b8);
    --gradient-vibrant: linear-gradient(45deg, #25fe42, #e515b8);
    --gradient-soft: linear-gradient(180deg, #aee5b5, #98e1af);
    
    /* Status Colors */
    --success-color: #23cd2b;
    --success-light: #32cd49;
    --success-dark: #10ad28;
    --warning-color: #eeb52f;
    --warning-light: #e7b455;
    --warning-dark: #d7a614;
    --error-color: #ec3e27;
    --error-light: #e94735;
    --danger-color: #ec3e27;
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #6a6a6a;
    --text-muted: #9a9a9a;
    --text-inverse: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-inverse: #1a1a1a;
    --bg-overlay: rgba(255, 255, 255, 0.9);
    --bg-overlay-light: rgba(255, 255, 255, 0.2);
    
    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --border-dark: #c0c0c0;
    
    /* Overlay Colors */
    --overlay-light: rgba(255, 255, 255, 0.1);
    --overlay-medium: rgba(255, 255, 255, 0.2);
    --overlay-dark: rgba(0, 0, 0, 0.1);
    --overlay-darker: rgba(0, 0, 0, 0.2);
    
    /* Shadow Colors */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 30px #3fe45533;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.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.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Header Styles */

.header-magnetic {
    background: var(--bg-primary);
    padding: 2rem 0;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-magnetic .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[data-magnetic] {
    transition: transform 0.3s ease;
    will-change: transform;
}

.logo-magnetic {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.logo-inner {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.logo-inner::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-magnetic:hover .logo-inner::after {
    transform: scaleX(1);
}

.nav-magnetic {
    display: flex;
    gap: 3rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120%;
    height: 40px;
    background: var(--primary-color);
    border-radius: 20px;
    opacity: 0.1;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-hover {
    transform: translate(-50%, -50%) scale(1);
}

.nav-item:hover .nav-text {
    color: var(--primary-color);
}

.cart-magnetic {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 16px;
    padding: 0.875rem 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cart-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.cart-magnetic::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
}

.cart-magnetic:hover::before {
    width: 150%;
    height: 150%;
}

/* Hero Styles */

.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-bg {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 10s ease-out;
}

.hero-video:hover .parallax-bg {
    transform: scale(1.1) translateY(-5%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-video .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-video {
    text-align: center;
    color: white;
}

.hero-title-video {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.title-word {
    display: inline-block;
    position: relative;
    animation: slideInWord 0.8s ease-out backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInWord {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.title-word.gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glitch 3s linear infinite;
    opacity: 0;
}

.title-word:hover::before {
    opacity: 1;
}

@keyframes glitch {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-description-video {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.7s both;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

.btn-video-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.btn-video-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.btn-video-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-video-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

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

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

.scroll-text {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0.5rem auto 0;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    opacity: 0.7;
}

/* Footer Styles */

.footer-glass {
    position: relative;
    margin-top: 5rem;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.glass-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glass-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    filter: blur(40px);
}

.glass-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: float-glass 20s ease-in-out infinite;
}

.glass-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: float-glass 25s ease-in-out infinite reverse;
}

.glass-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-glass 30s ease-in-out infinite;
}

@keyframes float-glass {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.glass-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glass-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.glass-socials {
    display: flex;
    gap: 1rem;
}

.glass-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.glass-social:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px) rotate(5deg);
}

.glass-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.glass-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.glass-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.glass-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.glass-nav a::before {
    content: "▸";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.glass-nav a:hover {
    color: white;
    padding-left: 15px;
}

.glass-nav a:hover::before {
    left: 0;
    opacity: 1;
}

.glass-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.glass-contacts p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.glass-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .glass-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Card Styles */

.card-hover-reveal {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.card-hover-reveal:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.reveal-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.reveal-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.primary-image,
.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.secondary-image {
    opacity: 0;
}

.card-hover-reveal:hover .primary-image {
    opacity: 0;
    transform: scale(1.1);
}

.card-hover-reveal:hover .secondary-image {
    opacity: 1;
    transform: scale(1.05);
}

.reveal-quick-shop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.card-hover-reveal:hover .reveal-quick-shop {
    opacity: 1;
    transform: translateY(0);
}

.reveal-quick-shop h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.quick-view-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-view-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.quick-add-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-add-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.reveal-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.badge-sale {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.reveal-actions {
    position: absolute;
    top: 1rem;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.3s ease;
}

.card-hover-reveal:hover .reveal-actions {
    right: 1rem;
}

.action-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.action-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reveal-info {
    padding: 1.25rem;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.reviews {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.reveal-title {
    margin-bottom: 0.75rem;
}

.reveal-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.reveal-title a:hover {
    color: var(--primary-color);
}

.reveal-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Button Styles */

/* Base button styles */
.btn {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: all 0.15s ease;
}

/* 3D Press Effect */
.btn-primary, .btn-3d-press {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 
        0 6px 0 var(--primary-dark),
        0 8px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.btn-primary:hover, .btn-3d-press:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 0 var(--primary-dark),
        0 10px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:active, .btn-3d-press:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 0 var(--primary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: 
        0 6px 0 var(--secondary-dark),
        0 8px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.btn-secondary:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 0 var(--secondary-dark),
        0 10px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 0 var(--secondary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cart and Product Buttons */
.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    box-shadow: 
        0 4px 0 #16a34a,
        0 6px 8px rgba(0, 0, 0, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 5px 0 #16a34a,
        0 7px 10px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.add-to-cart:active, .product-btn:active, .cart-button:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 0 #16a34a,
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Outline Button */
.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: 
        0 4px 0 var(--border-color),
        0 6px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 
        0 5px 0 var(--primary-color),
        0 7px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 0 var(--primary-color),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Button Group 3D */
.btn-group {
    display: inline-flex;
    gap: 1rem;
    perspective: 500px;
}

.btn-group .btn {
    transform: rotateX(-10deg) translateY(-4px);
}

.btn-group .btn:hover {
    transform: rotateX(0deg) translateY(-6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #3fe455;
    --primary-light: #aee5b5;
    --primary-dark: #0bb121;
    --primary-vibrant: #25fe42;
    
    /* Secondary Colors */
    --secondary-color: #68df8d;
    --secondary-light: #98e1af;
    --secondary-dark: #18aa46;
    
    /* Accent Colors */
    --accent-color: #e515b8;
    --accent-light: #e076c9;
    --accent-dark: #da10ae;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #86ea93, #3fe473);
    --gradient-secondary: linear-gradient(135deg, #67e990, #dc47bc);
    --gradient-accent: linear-gradient(90deg, #3fe455, #68df8d, #e515b8);
    --gradient-vibrant: linear-gradient(45deg, #25fe42, #e515b8);
    --gradient-soft: linear-gradient(180deg, #aee5b5, #98e1af);
    
    /* Status Colors */
    --success-color: #23cd2b;
    --success-light: #32cd49;
    --success-dark: #10ad28;
    --warning-color: #eeb52f;
    --warning-light: #e7b455;
    --warning-dark: #d7a614;
    --error-color: #ec3e27;
    --error-light: #e94735;
    --danger-color: #ec3e27;
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #6a6a6a;
    --text-muted: #9a9a9a;
    --text-inverse: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-inverse: #1a1a1a;
    --bg-overlay: rgba(255, 255, 255, 0.9);
    --bg-overlay-light: rgba(255, 255, 255, 0.2);
    
    /* Border Colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --border-dark: #c0c0c0;
    
    /* Overlay Colors */
    --overlay-light: rgba(255, 255, 255, 0.1);
    --overlay-medium: rgba(255, 255, 255, 0.2);
    --overlay-dark: rgba(0, 0, 0, 0.1);
    --overlay-darker: rgba(0, 0, 0, 0.2);
    
    /* Shadow Colors */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 10px 30px #3fe45533;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.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.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Header Styles */

.header-magnetic {
    background: var(--bg-primary);
    padding: 2rem 0;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-magnetic .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[data-magnetic] {
    transition: transform 0.3s ease;
    will-change: transform;
}

.logo-magnetic {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.logo-inner {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.logo-inner::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-magnetic:hover .logo-inner::after {
    transform: scaleX(1);
}

.nav-magnetic {
    display: flex;
    gap: 3rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120%;
    height: 40px;
    background: var(--primary-color);
    border-radius: 20px;
    opacity: 0.1;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-hover {
    transform: translate(-50%, -50%) scale(1);
}

.nav-item:hover .nav-text {
    color: var(--primary-color);
}

.cart-magnetic {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 16px;
    padding: 0.875rem 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cart-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.cart-magnetic::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
}

.cart-magnetic:hover::before {
    width: 150%;
    height: 150%;
}

/* Hero Styles */

.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-bg {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 10s ease-out;
}

.hero-video:hover .parallax-bg {
    transform: scale(1.1) translateY(-5%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-video .hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-video {
    text-align: center;
    color: white;
}

.hero-title-video {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.title-word {
    display: inline-block;
    position: relative;
    animation: slideInWord 0.8s ease-out backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInWord {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.title-word.gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glitch 3s linear infinite;
    opacity: 0;
}

.title-word:hover::before {
    opacity: 1;
}

@keyframes glitch {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-description-video {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.7s both;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

.btn-video-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.btn-video-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.btn-video-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-video-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

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

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

.scroll-text {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0.5rem auto 0;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    opacity: 0.7;
}

/* Footer Styles */

.footer-glass {
    position: relative;
    margin-top: 5rem;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.glass-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glass-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    filter: blur(40px);
}

.glass-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: float-glass 20s ease-in-out infinite;
}

.glass-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: float-glass 25s ease-in-out infinite reverse;
}

.glass-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-glass 30s ease-in-out infinite;
}

@keyframes float-glass {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.glass-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glass-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.glass-socials {
    display: flex;
    gap: 1rem;
}

.glass-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.glass-social:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px) rotate(5deg);
}

.glass-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.glass-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.glass-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.glass-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.glass-nav a::before {
    content: "▸";
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.glass-nav a:hover {
    color: white;
    padding-left: 15px;
}

.glass-nav a:hover::before {
    left: 0;
    opacity: 1;
}

.glass-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.glass-contacts p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.glass-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .glass-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Card Styles */

.card-hover-reveal {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.card-hover-reveal:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.reveal-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.reveal-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.primary-image,
.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.secondary-image {
    opacity: 0;
}

.card-hover-reveal:hover .primary-image {
    opacity: 0;
    transform: scale(1.1);
}

.card-hover-reveal:hover .secondary-image {
    opacity: 1;
    transform: scale(1.05);
}

.reveal-quick-shop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.card-hover-reveal:hover .reveal-quick-shop {
    opacity: 1;
    transform: translateY(0);
}

.reveal-quick-shop h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.quick-view-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-view-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.quick-add-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-add-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.reveal-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.badge-sale {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.reveal-actions {
    position: absolute;
    top: 1rem;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.3s ease;
}

.card-hover-reveal:hover .reveal-actions {
    right: 1rem;
}

.action-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.action-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reveal-info {
    padding: 1.25rem;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.reviews {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.reveal-title {
    margin-bottom: 0.75rem;
}

.reveal-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.reveal-title a:hover {
    color: var(--primary-color);
}

.reveal-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Button Styles */

/* Base button styles */
.btn {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 12px;
    transform-style: preserve-3d;
    transition: all 0.15s ease;
}

/* 3D Press Effect */
.btn-primary, .btn-3d-press {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 
        0 6px 0 var(--primary-dark),
        0 8px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.btn-primary:hover, .btn-3d-press:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 0 var(--primary-dark),
        0 10px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:active, .btn-3d-press:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 0 var(--primary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: 
        0 6px 0 var(--secondary-dark),
        0 8px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.btn-secondary:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 0 var(--secondary-dark),
        0 10px 15px rgba(0, 0, 0, 0.25),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 0 var(--secondary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cart and Product Buttons */
.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    position: relative;
    box-shadow: 
        0 4px 0 #16a34a,
        0 6px 8px rgba(0, 0, 0, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 5px 0 #16a34a,
        0 7px 10px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.add-to-cart:active, .product-btn:active, .cart-button:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 0 #16a34a,
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Outline Button */
.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: 
        0 4px 0 var(--border-color),
        0 6px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 
        0 5px 0 var(--primary-color),
        0 7px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 0 var(--primary-color),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Button Group 3D */
.btn-group {
    display: inline-flex;
    gap: 1rem;
    perspective: 500px;
}

.btn-group .btn {
    transform: rotateX(-10deg) translateY(-4px);
}

.btn-group .btn:hover {
    transform: rotateX(0deg) translateY(-6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

/* Item Page Styles */

.item-split {
    padding: 2rem 0;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 3rem;
    justify-content: center;
}

.split-left {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2rem;
}

.sticky-gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-image-container {
    position: relative;
}

.main-image-split {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
}

.split-right {
    padding: 2rem 0;
}

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

.brand-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.brand {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

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

.btn-favorite {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.product-title-split {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.price-split {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.rating-split {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--warning-color);
    font-size: 1.25rem;
}

.product-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-description p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.purchase-section {
    margin-bottom: 2rem;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.qty-minus,
.qty-plus {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.25rem;
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.btn-add-split {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-split:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.delivery-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.delivery-item {
    display: flex;
    gap: 1rem;
}

.delivery-item .icon {
    font-size: 1.5rem;
}

.delivery-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

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