* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff385c;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff385c;
}

.cta-btn {
    background: #ff385c;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #e31c5f;
}

.hero {
    padding: 120px 40px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: #717171;
    max-width: 680px;
    margin: 0 auto 40px;
}

.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 800px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.2s;
    padding: 8px;
}

.category-item:hover {
    transform: scale(1.08);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 8px;
    display: block;
}

.category-label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.section {
    padding: 80px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background: white;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: white;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
    cursor: pointer;
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 15px;
    color: #717171;
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    background: white;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    color: #717171;
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 32px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-align: left;
}

.testimonial-text {
    margin-bottom: 16px;
    font-style: italic;
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #717171;
    text-align: right;
}

/* Coming Soon Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #717171;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #222;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 1.1rem;
    color: #717171;
    margin-bottom: 32px;
    line-height: 1.6;
}

.email-form {
    display: flex;
    gap: 0;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 12px 0 0 12px;
    outline: none;
    border-right: none;
}

.email-form input:focus {
    border-color: #ff385c;
}

.email-form button {
    padding: 16px 32px;
    font-size: 16px;
    background: #ff385c;
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.email-form button:hover {
    background: #e31c5f;
}

.success-message {
    display: none;
    background: #10b981;
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
}

.success-message.show {
    display: block;
}

footer {
    background: #f7f7f7;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff385c;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 15px;
    color: #717171;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 28px;
    margin-bottom: 24px;
}

.social-link {
    color: #222;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}

.social-link:hover {
    color: #ff385c;
    transform: scale(1.1);
}

.copyright {
    font-size: 13px;
    color: #717171;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-right {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .cta-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 100px 20px 48px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .categories {
        gap: 20px;
    }

    .category-icon {
        font-size: 40px;
    }

    .category-label {
        font-size: 13px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .modal-content h2 {
        font-size: 1.6rem;
    }

    .modal-content p {
        font-size: 1rem;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input {
        border-radius: 12px;
        border: 1px solid #ddd;
        margin-bottom: 12px;
    }

    .email-form button {
        border-radius: 12px;
        width: 100%;
    }

    footer {
        padding: 48px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .categories {
        gap: 16px;
    }
}