/* Primær knapp */
.btn-primary {
    background: #1A73E8;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
    background: #1664c4;
    transform: translateY(-2px);
}

/* Sekundær knapp */
.btn-secondary {
    background: #FFB703;
    color: black;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
    background: #e6a302;
    transform: translateY(-2px);
}

/* Produktgrid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* Produktkort */
.product-card {
    background: rgba(255,255,255,0.85);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.price {
    font-weight: bold;
    color: #1A73E8;
    margin-top: 6px;
}

/* Stegseksjon */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    background: #1A73E8;
    color: white;
    font-size: 20px;
    padding: 10px 16px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

/* LIVE energiforbruk seksjon */
.live-energy {
    text-align: center;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.live-feature {
    background: rgba(255,255,255,0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.live-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.live-feature .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.live-button {
    margin-top: 10px;
    display: inline-block;
    padding: 12px 26px;
    font-size: 18px;
}
