/* ===== goods.html page-specific styles ===== */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.coming-soon h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.notify-input:focus { border-color: #667eea; }

.notify-btn {
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.preview-section { margin-top: 4rem; }

.preview-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.preview-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 0.7;
}
.preview-card:hover { transform: translateY(-5px); }

.preview-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.preview-info { padding: 1.5rem; text-align: center; }

.preview-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }

.preview-price { color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 768px) {
    .coming-soon-icon { font-size: 4rem; }
}
