/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #65402f;
    --primary-light: #9b7969;
    --primary-dark: #4c2a1a;
    --primary-vibrant: #763a1e;
    
    /* Secondary Colors */
    --secondary-color: #395c60;
    --secondary-light: #7ba3a7;
    --secondary-dark: #205960;
    
    /* Accent Colors */
    --accent-color: #26575a;
    --accent-light: #508386;
    --accent-dark: #247175;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8f5a42, #345c60);
    --gradient-secondary: linear-gradient(135deg, #266a6d, #9e664c);
    --gradient-accent: linear-gradient(90deg, #65402f, #395c60, #26575a);
    --gradient-vibrant: linear-gradient(45deg, #763a1e, #26575a);
    --gradient-soft: linear-gradient(180deg, #9b7969, #7ba3a7);
    
    /* Status Colors */
    --success-color: #1ec821;
    --success-light: #4cd440;
    --success-dark: #149918;
    --warning-color: #e29832;
    --warning-light: #ebbe75;
    --warning-dark: #d08306;
    --error-color: #e42e21;
    --error-light: #e1453d;
    --danger-color: #e42e21;
    
    /* 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 #65402f33;
}

/* 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-split {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin: 0 3rem;
    transition: transform 0.3s ease;
}

.logo-shape {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-shape::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-letter {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    z-index: 1;
}

.logo-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.cart-icon-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Styles */

.hero-morphing {
    min-height: 30vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    overflow: hidden;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: morph 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    bottom: -50px;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-color));
    top: 30%;
    left: 40%;
    animation-delay: 15s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

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

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

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

.hero-morphing .hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.word-animate {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text {
    font-weight: 500;
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-morph {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transition: transform 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50px;
    transition: transform 0.5s ease;
}

.btn-morph:hover .btn-bg {
    transform: translate(-50%, -50%) scale(2);
}

.btn-morph:hover {
    transform: translateY(-3px);
}

.link-arrow {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--primary-color);
}

/* Footer Styles */

.footer-minimal-dark {
    background: #000;
    color: #fff;
    padding: 6rem 0 2rem;
    margin-top: 8rem;
    position: relative;
}

.footer-minimal-dark::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

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

.minimal-content {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.minimal-brand {
    animation: fadeIn 1s ease-out;
}

.minimal-logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.minimal-tagline {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.minimal-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.2s both;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.minimal-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.minimal-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.minimal-link:hover {
    color: #fff;
}

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

.minimal-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    animation: fadeIn 1s ease-out 0.4s both;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.minimal-bottom {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

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

@media (max-width: 768px) {
    .minimal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .minimal-links {
        justify-content: center;
    }
    
    .minimal-contact {
        align-items: center;
    }
}

/* Card Styles */

/* Glow Lift Card Styles */
.card-glow-lift {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-glow-wrapper {
    position: relative;
    height: 100%;
}

.card-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
    z-index: -1;
}

.card-glow-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.card-glow-lift:hover .card-glow-effect {
    opacity: 0.6;
}

.card-glow-lift .card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.card-glow-lift .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-glow-lift:hover .card-image {
    transform: scale(1.1);
}

.card-glow-lift .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-glow-lift:hover .card-overlay {
    opacity: 1;
}

.card-glow-lift .quick-view-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.card-glow-lift:hover .quick-view-btn {
    transform: translateY(0);
}

.card-glow-lift .quick-view-btn:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 1.5rem;
}

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

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

.stars {
    font-size: 0.9rem;
}

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

.card-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-glow-lift .card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.card-glow-lift .add-to-cart {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-glow-lift .add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-glow-lift .add-to-wishlist {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.card-glow-lift .add-to-wishlist:hover {
    border-color: #ef4444;
    background: #fef2f2;
    transform: scale(1.1);
}

/* Button Styles */

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

/* Neon Pulse Effect */
.btn-primary, .btn-neon-pulse {
    background: #1a1a1a;
    color: #00ffff;
    border: 2px solid #00ffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
}

.btn-primary::before, .btn-neon-pulse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00ffff;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary::after, .btn-neon-pulse::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    border-radius: 8px;
    opacity: 0;
    z-index: -2;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    animation: neon-rotate 3s linear infinite;
}

@keyframes neon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-primary:hover, .btn-neon-pulse:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        0 0 60px #00ffff;
    animation: neon-pulse 1s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px #00ffff,
            0 0 40px #00ffff,
            0 0 60px #00ffff;
    }
    50% {
        box-shadow: 
            0 0 30px #00ffff,
            0 0 50px #00ffff,
            0 0 70px #00ffff;
    }
}

.btn-primary:hover::before, .btn-neon-pulse:hover::before {
    opacity: 1;
}

.btn-primary:hover::after, .btn-neon-pulse:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: #ff00ff;
    border: 2px solid #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    position: relative;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #ff00ff;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    text-shadow: none;
    box-shadow: 
        inset 0 0 20px #ff00ff,
        0 0 20px #ff00ff;
}

.btn-secondary:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Cart and Product Buttons */
.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    overflow: hidden;
}

.add-to-cart::before, .product-btn::before, .cart-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 8px;
    transition: transform 0.5s ease;
    z-index: -1;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
}

.add-to-cart:hover::before, .product-btn:hover::before, .cart-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* 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: #65402f;
    --primary-light: #9b7969;
    --primary-dark: #4c2a1a;
    --primary-vibrant: #763a1e;
    
    /* Secondary Colors */
    --secondary-color: #395c60;
    --secondary-light: #7ba3a7;
    --secondary-dark: #205960;
    
    /* Accent Colors */
    --accent-color: #26575a;
    --accent-light: #508386;
    --accent-dark: #247175;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8f5a42, #345c60);
    --gradient-secondary: linear-gradient(135deg, #266a6d, #9e664c);
    --gradient-accent: linear-gradient(90deg, #65402f, #395c60, #26575a);
    --gradient-vibrant: linear-gradient(45deg, #763a1e, #26575a);
    --gradient-soft: linear-gradient(180deg, #9b7969, #7ba3a7);
    
    /* Status Colors */
    --success-color: #1ec821;
    --success-light: #4cd440;
    --success-dark: #149918;
    --warning-color: #e29832;
    --warning-light: #ebbe75;
    --warning-dark: #d08306;
    --error-color: #e42e21;
    --error-light: #e1453d;
    --danger-color: #e42e21;
    
    /* 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 #65402f33;
}

/* 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-split {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin: 0 3rem;
    transition: transform 0.3s ease;
}

.logo-shape {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-shape::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-letter {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    z-index: 1;
}

.logo-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.cart-icon-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Styles */

.hero-morphing {
    min-height: 30vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    overflow: hidden;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: morph 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    bottom: -50px;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--primary-light), var(--secondary-color));
    top: 30%;
    left: 40%;
    animation-delay: 15s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

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

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

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

.hero-morphing .hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.word-animate {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text {
    font-weight: 500;
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-morph {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transition: transform 0.3s ease;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50px;
    transition: transform 0.5s ease;
}

.btn-morph:hover .btn-bg {
    transform: translate(-50%, -50%) scale(2);
}

.btn-morph:hover {
    transform: translateY(-3px);
}

.link-arrow {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--primary-color);
}

/* Footer Styles */

.footer-minimal-dark {
    background: #000;
    color: #fff;
    padding: 6rem 0 2rem;
    margin-top: 8rem;
    position: relative;
}

.footer-minimal-dark::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

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

.minimal-content {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.minimal-brand {
    animation: fadeIn 1s ease-out;
}

.minimal-logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.minimal-tagline {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.minimal-links {
    display: flex;
    gap: 4rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.2s both;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.minimal-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.minimal-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.minimal-link:hover {
    color: #fff;
}

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

.minimal-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    animation: fadeIn 1s ease-out 0.4s both;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.minimal-bottom {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

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

@media (max-width: 768px) {
    .minimal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .minimal-links {
        justify-content: center;
    }
    
    .minimal-contact {
        align-items: center;
    }
}

/* Card Styles */

/* Glow Lift Card Styles */
.card-glow-lift {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-glow-wrapper {
    position: relative;
    height: 100%;
}

.card-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
    z-index: -1;
}

.card-glow-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.card-glow-lift:hover .card-glow-effect {
    opacity: 0.6;
}

.card-glow-lift .card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.card-glow-lift .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-glow-lift:hover .card-image {
    transform: scale(1.1);
}

.card-glow-lift .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-glow-lift:hover .card-overlay {
    opacity: 1;
}

.card-glow-lift .quick-view-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.card-glow-lift:hover .quick-view-btn {
    transform: translateY(0);
}

.card-glow-lift .quick-view-btn:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 1.5rem;
}

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

.card-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

.stars {
    font-size: 0.9rem;
}

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

.card-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-glow-lift .card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.card-glow-lift .add-to-cart {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-glow-lift .add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-glow-lift .add-to-wishlist {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.card-glow-lift .add-to-wishlist:hover {
    border-color: #ef4444;
    background: #fef2f2;
    transform: scale(1.1);
}

/* Button Styles */

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

/* Neon Pulse Effect */
.btn-primary, .btn-neon-pulse {
    background: #1a1a1a;
    color: #00ffff;
    border: 2px solid #00ffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
}

.btn-primary::before, .btn-neon-pulse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00ffff;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary::after, .btn-neon-pulse::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    border-radius: 8px;
    opacity: 0;
    z-index: -2;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    animation: neon-rotate 3s linear infinite;
}

@keyframes neon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-primary:hover, .btn-neon-pulse:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        0 0 60px #00ffff;
    animation: neon-pulse 1s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px #00ffff,
            0 0 40px #00ffff,
            0 0 60px #00ffff;
    }
    50% {
        box-shadow: 
            0 0 30px #00ffff,
            0 0 50px #00ffff,
            0 0 70px #00ffff;
    }
}

.btn-primary:hover::before, .btn-neon-pulse:hover::before {
    opacity: 1;
}

.btn-primary:hover::after, .btn-neon-pulse:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: #ff00ff;
    border: 2px solid #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    position: relative;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #ff00ff;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    text-shadow: none;
    box-shadow: 
        inset 0 0 20px #ff00ff,
        0 0 20px #ff00ff;
}

.btn-secondary:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Cart and Product Buttons */
.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    overflow: hidden;
}

.add-to-cart::before, .product-btn::before, .cart-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 8px;
    transition: transform 0.5s ease;
    z-index: -1;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
}

.add-to-cart:hover::before, .product-btn:hover::before, .cart-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

/* 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 */

/* General Item Page Styles */
.item-page, .item-360 {
    padding: 2rem 0;
    background: var(--bg-primary, #ffffff);
}

/* Container for related products */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.related-products {
    padding: 60px 0;
    background: var(--bg-secondary, #f8f9fa);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-primary, #1a1a1a);
}

.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--text-secondary, #6b7280);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color, #3b82f6);
}

.separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.current {
    color: var(--text-primary);
    font-weight: 500;
}

.item-container-360 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.gallery-360 {
    position: relative;
}

.view-360-container {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    perspective: 1000px;
}

.main-image-360 {
    width: 100%;
    height: 500px;
    object-fit: contain;
    cursor: grab;
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

.main-image-360:active {
    cursor: grabbing;
}

.rotation-hint {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    animation: fadeOut 3s ease-out 2s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; pointer-events: none; }
}

.hint-icon {
    animation: rotate 2s linear infinite;
}

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

.zoom-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-overlay);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-360 .product-description {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-top: 1rem;
}

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

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

.info-360 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
}

.badge-bestseller,
.badge-eco {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
}

.badge-eco {
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
    color: white;
}

.product-title-360 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-360 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars-360 {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.star.filled {
    color: var(--warning-color);
}

.star.half {
    position: relative;
    color: var(--text-muted);
}

.star.half::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--warning-color);
    width: 50%;
    overflow: hidden;
}

.rating-value {
    font-weight: 600;
}

.reviews-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reviews-link:hover {
    color: var(--primary-color);
}

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

.price-main {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

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

.price-old {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.old-value {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.discount-badge {
    padding: 0.25rem 0.5rem;
    background: var(--danger-color);
    color: white;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-variations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.variation-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.color-options,
.size-options {
    display: flex;
    gap: 0.5rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option.active,
.color-option:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.size-option {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.size-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart {
    background: var(--primary-color);
    color: white;
    border: none;
}

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

.btn-buy-now {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-buy-now:hover {
    background: var(--primary-color);
    color: white;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

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

.feature-icon {
    font-size: 1.25rem;
}

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