@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.arvento-product-page {
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-hero {
    text-align: center;
    padding: 60px 20px;
    background: #30afb8;
    border-radius: 16px;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(48, 175, 184, 0.3);
}

.product-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-hero p {
    font-size: 1.3em;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #30afb8;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: #30afb8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    margin-bottom: 24px;
}

.product-card h2 {
    font-size: 2em;
    margin-bottom: 16px;
    color: #2d3748;
}

.product-card p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.1em;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.product-features li {
    padding: 12px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.product-features li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2em;
}

.product-cta {
    display: inline-block;
    background: #30afb8;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.product-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(48, 175, 184, 0.4);
    color: white;
    text-decoration: none;
}

.coming-soon-badge {
    display: inline-block;
    background: #edf2f7;
    color: #718096;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-top: 12px;
}
