:root {
    --primary-color: #333333;
    --secondary-color: #34495E;
    --accent-color: #8B5CF6;
    --text-color: #1D1D1F;
    --light-text: #424245;
    --background-color: #FFFFFF;
    --gradient-start: #FFE6EA;
    --gradient-end: #E6E6FA;
    --background-gradient: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color);
    font-size: 17px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 64px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    max-width: 1400px;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 16px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    min-height: 36px;
    min-width: 36px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.search-bar {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    width: 180px;
    margin-left: 16px;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    background: var(--background-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    padding-right: 2rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.website-url {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 2rem;
}

.phone-container {
    position: relative;
    padding-top: 2rem;
}

.online-shopping, .be-trendy {
    position: absolute;
    font-size: 0.8rem;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(0deg);
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.online-shopping {
    left: -2.5rem;
    top: 10%;
    height: 80%;
}

.be-trendy {
    right: -2.5rem;
    top: 10%;
    height: 80%;
}

.floating-store-preview {
    position: absolute;
    bottom: 50%;
    right: -15rem;
    width: 220px;
    transform: translateY(50%);
    z-index: 10;
}

.floating-store-preview .store-preview {
    background: white;
    border-radius: 1rem;
    padding: 0.8rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.floating-store-preview .product-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.floating-store-preview .try-on-button {
    width: 100%;
    padding: 0.6rem;
    background: black;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-store-preview::before {
    content: "AI QUICK TRY-ON";
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: black;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
    }

    .text-content {
        order: -1;
        text-align: center;
        padding: 0;
    }

    .phone-container {
        order: 1;
        margin: 0 auto;
        max-width: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .website-url {
        justify-content: center;
    }

    .online-shopping, .be-trendy {
        display: none;
    }

    .floating-store-preview {
        position: static;
        width: 100%;
        max-width: 280px;
        margin: 2rem auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .floating-store-preview {
        max-width: 240px;
    }
} 