/* Color Scheme Variables */

:root {
    /* Primary Colors */
    --primary-color: #e64c7d;
    --primary-light: #eebecd;
    --primary-dark: #a60739;
    --primary-vibrant: #ff3374;

    /* Secondary Colors */
    --secondary-color: #75db88;
    --secondary-light: #b4e4bc;
    --secondary-dark: #13be32;

    /* Accent Colors */
    --accent-color: #e64791;
    --accent-light: #e495ba;
    --accent-dark: #de0d6e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ee87a7, #60d275);
    --gradient-secondary: linear-gradient(135deg, #f24093, #eb93af);
    --gradient-accent: linear-gradient(90deg, #e64c7d, #75db88, #e64791);
    --gradient-vibrant: linear-gradient(45deg, #ff3374, #e64791);
    --gradient-soft: linear-gradient(180deg, #eebecd, #b4e4bc);

    /* Status Colors */
    --success-color: #2dc847;
    --success-light: #50d750;
    --success-dark: #1b9608;
    --warning-color: #e9b416;
    --warning-light: #e4b05e;
    --warning-dark: #d8a013;
    --error-color: #f2351c;
    --error-light: #e04438;
    --danger-color: #f2351c;

    /* 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 #e64c7d33;
}

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

.cta .btn-primary {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
}

.cta .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta .btn-outline {
    background: transparent;
    border-color: white;
    color: white;
    box-shadow: none;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

/* 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-img-split {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-center:hover .logo-img-split {
    transform: scale(1.05);
    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 svg {
    width: 20px;
    height: 20px;
}

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

/* Hero Styles */

.hero-3d-cards {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    position: relative;
    overflow: hidden;
}

.hero-3d-cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-color) 0%, transparent 50%);
    opacity: 0.05;
}

.hero-3d-cards .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

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

.hero-title-block {
    flex-shrink: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

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

.btn-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
}

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

.cards-3d-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    animation: slideInRight 1s ease-out;
}

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

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.card-3d-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.card-3d-front {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--primary-color);
}

.card-3d:nth-child(2) .card-icon {
    animation-delay: 0.5s;
}

.card-3d:nth-child(3) .card-icon {
    animation-delay: 1s;
}

.card-3d:nth-child(4) .card-icon {
    animation-delay: 1.5s;
}

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

.card-3d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-3d p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-3d-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.3s ease;
    z-index: 0;
}

.card-3d:hover .card-3d-glow {
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .hero-3d-cards .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cards-3d-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-3d-cards {
        padding: 3rem 0;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cards-3d-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer Styles */

.footer-wave {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    color: white;
    margin-top: 8rem;
}

.wave-container {
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.wave {
    display: block;
    width: 100%;
    height: 100px;
}

.wave-path {
    fill: var(--primary-dark);
    animation: wave-motion 10s ease-in-out infinite;
}

@keyframes wave-motion {
    0%, 100% {
        d: path("M0,50 C360,0 720,100 1440,50 L1440,100 L0,100 Z");
    }
    50% {
        d: path("M0,50 C360,100 720,0 1440,50 L1440,100 L0,100 Z");
    }
}

.footer-wave .footer-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    animation: fadeInUp 0.8s ease-out;
}

.brand-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.brand-logo-link:hover .brand-logo-img {
    transform: scale(1.05);
}

.brand-description {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-icon {
    font-size: 1.25rem;
    z-index: 1;
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.social-link:hover .social-tooltip {
    opacity: 1;
}

.footer-column {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }

.column-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.title-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, transparent, white, transparent);
    animation: line-pulse 2s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% { opacity: 0.5; height: 20px; }
    50% { opacity: 1; height: 25px; }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

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

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

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

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

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

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

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.copyright {
    opacity: 0.8;
}

.company {
    opacity: 0.7;
    font-size: 0.875rem;
}

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

/* 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-glow-lift .product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.card-glow-lift .product-card-stars { display: flex; gap: 1px; color: var(--accent-color, #fbbf24); }
.card-glow-lift .product-card-stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.card-glow-lift .product-card-stars .empty { color: var(--border-color, #d1d5db); }
.card-glow-lift .product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }
.card-glow-lift .product-card-rating span { font-size: 12px; color: var(--text-secondary); }

.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-cart svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.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 svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
}

.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-neon-pulse {
    background: #1a1a1a;
    color: #00ffff;
    border: 2px solid #00ffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
}

.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-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-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-neon-pulse:hover::before {
    opacity: 1;
}

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

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

.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: 1.25rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
}

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

.feature svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .product-features {
        grid-template-columns: 1fr;
    }
}


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