/* d:\!! PROJECT PIXEL PLAY\pixel_town\public\css\customer.css */
/* Hero Section */
.hero {
    margin-top: var(--navbar-height);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(163, 230, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.search-large {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-large input {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.search-large input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.2);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.quick-action-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all 0.2s ease;
}

.quick-action-pill:hover {
    background-color: var(--elevated);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.section-link {
    color: var(--accent);
    font-weight: 500;
}

.section-link:hover {
    text-decoration: underline;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Auth Pages */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(163, 230, 53, 0.1) 0%, var(--base) 100%);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 3rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.auth-logo {
    height: 60px;
    margin-bottom: 2rem;
}
