.aermec-product-actions {
    --aermec-green: #94c936;
    --aermec-green-hover: #83b72a;
    --aermec-dark: #082f31;

    width: 100%;
    max-width: 650px;
}

.aermec-document-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 16px;
    align-items: center;
}

.aermec-document-select-wrap {
    position: relative;
    min-width: 0;
}

.aermec-document-select {
    width: 100%;
    height: 45px;
    padding: 0 56px 0 20px;

    appearance: none;
    -webkit-appearance: none;

    border: 2px solid var(--aermec-green) !important;
    border-radius: 12px;
    outline: none;

    background-color: #ffffff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394c936' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;

    color: var(--aermec-dark);
    font-family: "Myriad Pro", sans-serif;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aermec-document-select:focus {
    border-color: var(--aermec-green-hover);
    box-shadow: 0 0 0 4px rgba(148, 201, 54, 0.16);
}

.aermec-document-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 50%;
    background: var(--aermec-green);
    color: #ffffff !important;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(71, 108, 15, 0.23) !important;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.aermec-document-download svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aermec-document-download:hover,
.aermec-document-download:focus {
    background: var(--aermec-green-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

.aermec-document-download.is-disabled {
    opacity: 0.48;
    pointer-events: none;
    box-shadow: none;
}

.aermec-inquiry-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: min(385px, 100%);
    min-height: 45px;
    margin-top: 24px;
    padding: 12px 30px;

    border-radius: 999px;
    background: var(--aermec-green);
    color: #ffffff !important;

    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    box-shadow: 0 7px 16px rgba(71, 108, 15, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.aermec-inquiry-button:hover,
.aermec-inquiry-button:focus {
    background: var(--aermec-green-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .aermec-document-row {
        grid-template-columns: minmax(0, 1fr) 58px;
        gap: 12px;
    }

    .aermec-document-select,
    .aermec-document-download {
        height: 58px;
    }

    .aermec-document-download {
        width: 58px;
    }

    .aermec-document-select {
        padding-left: 15px;
        padding-right: 48px;
        font-size: 16px;
    }

    .aermec-inquiry-button {
        width: 100%;
        min-width: 0;
    }
}
