/* Product cards */
.card-product {
    border: none;
    border-radius: 15px;
    background: #fff;
    transition: 0.3s;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-product .card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.spec-label {
    font-size: 0.65rem;
    color: #888;
    margin: 0;
    text-transform: uppercase;
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.25;
    word-break: break-word;
}

.badge-energy {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    font-size: 0.65rem;
    line-height: 1;
    padding: 4px 7px;
    z-index: 10;
    border-radius: 999px;
    white-space: nowrap;
    max-width: calc(100% - 20px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price-main {
    font-size: 1.05rem;
    color: #0056b3;
    font-weight: 800;
    line-height: 1.2;
}

/* Product purpose pills */
.indicator-pill {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    line-height: 1.2;
    width: 175px;
    max-width: 100%;
    min-height: 24px;
    white-space: nowrap;
}

.pill-hutes {
    background-color: #007bff;
}

.pill-futes {
    background-color: #dc3545;
}

.pill-futes-rasegites {
    background-color: #f28c28;
}

/* CTA button */
.btn-cta {
    background-color: #ff7e5f;
    color: white;
    border: none;
    font-weight: bold;
}

.btn-cta:hover {
    background-color: #e66a4e;
    color: white;
}

/* Product card vertical rhythm */
.product-image-wrap {
    height: 190px;
    flex: 0 0 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.product-image {
    max-height: 170px;
    width: 100%;
    object-fit: contain;
}

.power-indicator {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
    justify-content: center;
    min-height: 54px;
    align-items: center;
    flex: 0 0 54px;
}

.product-title {
    min-height: 52px;
    font-size: 0.95rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.spec-box {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-row {
    min-height: 72px;
}
.product-machine-price {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.2;
}