/* Services, Cards and Products */

.card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 40px 32px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05); border-color: rgba(37, 99, 235, 0.2); }

.card-icon-box { width: 46px; height: 46px; color: var(--color-wood-primary); margin-bottom: 24px; }
/* Ensure inline SVG icons inherit the container color */
.card-icon-box svg { width: 46px; height: 46px; display: block; }
.card-icon-box svg path { fill: currentColor !important; }

.card h3 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--color-navy); margin-bottom: 16px; font-weight: 700; }
.card p { color: var(--color-graphite); font-size: 0.95rem; line-height: 1.6; }

.product-card { background-color: var(--color-white); border: 1px solid var(--color-border); border-radius: 4px; overflow: hidden; transition: var(--transition-smooth); }
.product-card:hover { box-shadow: 0 16px 35px rgba(0,0,0,0.06); }

.product-img-container { position: relative; height: 240px; overflow: hidden; background-color: #eaeaea; }
.product-img-container img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.product-card:hover .product-img-container img { transform: scale(1.05); }

.badge { position: absolute; top: 16px; right: 16px; padding: 6px 14px; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; color: var(--color-white); border-radius: 2px; text-transform: uppercase; }
.badge-premium { background-color: #059669; }
.badge-standard { background-color: var(--color-wood-primary); }
.badge-utility { background-color: #4b5563; }

.product-info { padding: 32px; }
.product-info h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-navy); margin-bottom: 14px; }

.product-price { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--color-border); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--color-navy); }
.product-price:empty { display: none; }
.product-price::before { content: "Cena: "; font-size: 0.8rem; font-weight: 700; color: var(--color-graphite); text-transform: uppercase; letter-spacing: 1px; }
.product-price.is-fallback { font-size: 1rem; color: var(--color-graphite); }

.benefit-box { background-color: var(--color-white); padding: 36px 28px; border-left: 3px solid var(--color-wood-primary); border-radius: 0 4px 4px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.01); }
.benefit-number { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: rgba(154, 123, 86, 0.2); margin-bottom: 12px; }
.benefit-box h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-navy); margin-bottom: 12px; }
.benefit-box p { font-size: 0.9rem; color: var(--color-graphite); }

@media (max-width: 992px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }
