/* Modern Landing Page Styles - Wix Inspired */

:root {
    --landing-primary: #7C3AED;
    --landing-primary-dark: #6D28D9;
    --landing-primary-light: #8B5CF6;
    --landing-text: #202223;
    --landing-text-light: #6d7175;
    --landing-bg: #ffffff;
    --landing-bg-light: #f6f6f7;
    --landing-gradient-start: #7C3AED;
    --landing-gradient-end: #8B5CF6;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--landing-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.landing-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f0ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.04) 0%, transparent 50%);
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2d3748;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #6d7175;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-hero {
    background: var(--landing-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-primary-hero:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary-hero {
    background: white;
    color: var(--landing-text);
    border: 2px solid #2d3748;
}

.btn-secondary-hero:hover {
    background: #2d3748;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-hero i {
    font-size: 14px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-note {
    font-size: 14px;
    color: #6d7175;
    margin-top: 8px;
}

/* Store Preview */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.store-preview {
    position: relative;
    perspective: 1000px;
}

.preview-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.preview-window:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.01);
}

.preview-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    min-height: 40px;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #28ca42; }

.preview-content {
    background: #ffffff;
    padding: 0;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

/* Store Header */
.store-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.store-logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.store-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    letter-spacing: -0.3px;
}

.store-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-search-icon,
.store-cart-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d7175;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.store-search-icon:hover,
.store-cart-icon:hover {
    background: #f6f6f7;
    color: #2d3748;
}

.store-cart-icon {
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--landing-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(124, 58, 237, 0.3);
}

/* Store Product Section */
.store-product-section {
    position: relative;
    padding: 32px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #f6f6f7 100%);
    min-height: 420px;
    overflow: hidden;
}

/* Background Product Placeholders */
.product-placeholders-bg {
    position: absolute;
    top: 60px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 16px;
    z-index: 1;
    opacity: 0.4;
    filter: blur(2px);
}

.product-placeholder-card {
    flex: 1;
    height: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.product-placeholder-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 180px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 8px;
}

.product-placeholder-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 4px;
}

/* Featured Product Card (Pops Out) */
.featured-product-card {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(124, 58, 237, 0.15);
    transform: scale(1.02) translateY(-8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
    margin: 0 auto;
}

.preview-window:hover .featured-product-card {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.15),
        0 12px 32px rgba(124, 58, 237, 0.2);
}

.product-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.product-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 0 60px rgba(255, 255, 255, 0.5);
}

.sneaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .sneaker-image {
    transform: scale(1.15) rotate(-3deg);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.2px;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: -0.5px;
}

.product-cta-btn {
    background: var(--landing-primary);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.product-cta-btn:hover {
    background: var(--landing-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.product-cta-btn i {
    font-size: 14px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

/* Quick Start Section */
.quick-start {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.quick-start-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.social-icons-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.social-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatSocialIcon 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.social-icon-wrapper:nth-child(1) {
    animation-delay: 0s;
}

.social-icon-wrapper:nth-child(2) {
    animation-delay: 0.5s;
}

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

.social-icon-wrapper:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-icon-tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.social-icon-tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.social-icon-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.social-icon-whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.social-icon-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: white;
}

.social-icon-instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
    box-shadow: 0 8px 24px rgba(131, 58, 180, 0.3);
}

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

.quick-start-content .section-title {
    margin-bottom: 24px;
    line-height: 1.2;
}

.quick-start-content .section-title .gradient-text {
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-start-content .section-subtitle {
    margin-bottom: 32px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quick-start-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.quick-start-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #2d3748;
    line-height: 1.5;
}

.quick-start-benefit-item i {
    color: var(--landing-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.quick-start-reassurance {
    font-size: 16px;
    color: #6d7175;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    text-align: left;
}

.quick-start-note {
    font-size: 14px;
    color: #6d7175;
    margin-top: 16px;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--landing-bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--landing-text);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--landing-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card-large {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card-large.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.feature-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: white;
}

.feature-card-large h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--landing-text);
}

.feature-card-large p {
    font-size: 16px;
    color: var(--landing-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--landing-text);
}

.feature-list i {
    color: var(--landing-primary);
    font-size: 14px;
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--landing-text);
}

.step-card p {
    font-size: 16px;
    color: var(--landing-text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section-landing {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

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

    .quick-start-content .section-subtitle,
    .quick-start-benefits,
    .quick-start-reassurance {
        text-align: center;
    }

    .social-icons-header {
        gap: 16px;
        margin-bottom: 24px;
    }

    .social-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-cards-stack {
        margin-top: -30px;
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .quick-start-benefits {
        gap: 12px;
    }

    .quick-start-benefit-item {
        font-size: 16px;
    }

    .quick-start-reassurance {
        font-size: 15px;
    }

    .social-icons-header {
        gap: 12px;
        margin-bottom: 20px;
    }

    .social-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .feature-card-large {
        padding: 30px 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .store-product-section {
        padding: 24px 16px;
        min-height: 380px;
    }

    .featured-product-card {
        max-width: 100%;
        padding: 20px;
        transform: scale(1) translateY(0);
    }

    .preview-window:hover .featured-product-card {
        transform: scale(1.01) translateY(-4px);
    }

    .product-image {
        height: 200px;
    }

    .sneaker-image {
        transform: scale(1.05) rotate(-3deg);
    }

    .featured-product-card:hover .sneaker-image {
        transform: scale(1.08) rotate(-2deg);
    }

    .product-placeholders-bg {
        display: none;
    }

    .store-header {
        padding: 16px 20px;
    }

    .store-name {
        font-size: 16px;
    }
}

