/**
 * RCS v2.2.8 — product specification sheet button
 */
.rcs-product-spec-sheet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    margin-top: 14px;
    padding: 11px 18px;
    border: 1px solid var(--rcs-green, #007a45);
    border-radius: 10px;
    background: #fff;
    color: var(--rcs-green-dark, #063f2e);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.rcs-product-spec-sheet-button:hover,
.rcs-product-spec-sheet-button:focus-visible {
    border-color: var(--rcs-green-dark, #063f2e);
    background: var(--rcs-green, #007a45);
    color: #fff;
    transform: translateY(-1px);
}

.rcs-product-spec-sheet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 25px;
    padding: 3px 7px;
    border-radius: 7px;
    background: #e8f5ee;
    color: #075a38;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.rcs-product-spec-sheet-button:hover .rcs-product-spec-sheet-icon,
.rcs-product-spec-sheet-button:focus-visible .rcs-product-spec-sheet-icon {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.rcs-product-spec-sheet-arrow {
    font-size: 17px;
    line-height: 1;
}

.rcs-single-product-summary .rcs-product-spec-sheet-button {
    width: fit-content;
}

@media (max-width: 640px) {
    .rcs-single-product-summary .rcs-product-spec-sheet-button {
        width: 100%;
    }
}
