.lpg-echantillons__top {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.lpg-echantillons__icon img {
    width: 42px;
    height: auto;
    display: block;
}

.lpg-echantillons__top-content {
    flex: 1;
    min-width: 0;
}

.lpg-echantillons__title {
    margin: 0 0 8px;
    font-size: clamp(18px, calc(18px + ((25 - 18) * ((100vw - 400px) / (1500 - 400)))), 25px);
    font-family: var(--police-balthazar-regular);
}

.lpg-echantillons__intro {
    margin: 0 0 14px;
    color: #999;
    font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
    display: none;
}

.lpg-echantillons.lpg-echantillons--compact.is-complete .lpg-echantillons__intro {
  display: initial;
}

.lpg-echantillons__icon svg {
  max-width: 25px;
  max-height: 56px;
}

.lpg-echantillons__highlight {
    color: #B26A39;
    font-weight: 700;
}

.lpg-echantillons__checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #B26A39;
    font-size: 15px;
    font-weight: 700;
}

.lpg-echantillons__checkbox-row span {
    color: #B26A39;
}

.lpg-echantillons__checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #B26A39;
}

.lpg-echantillons__panel {
    display: none;
    margin-top: 25px;
}

.lpg-echantillons.is-open .lpg-echantillons__panel {
    display: block;
}

.lpg-echantillons__separator {
    border-top: 1px solid #F6E4B7;
    margin-bottom: 25px;
}

.lpg-echantillons__subtitle {
    margin: 0 0 18px;
    font-size: clamp(18px, calc(18px + ((25 - 18) * ((100vw - 400px) / (1500 - 400)))), 25px);
    font-family: var(--police-balthazar-regular);
}

.lpg-echantillons__countline {
	margin: 0 0 22px;
	font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
}

.lpg-echantillons__countline span {
    color: #B26A39;
    font-weight: 700;
}

.lpg-echantillons__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 26px;
}

.lpg-echantillons__field label {
	display: block;
	margin-bottom: 10px;
	font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
	font-weight: 700;
}

.lpg-echantillons__field label span {
    font-weight: 400;
}

.lpg-echantillons-search {
    position: relative;
}

.lpg-echantillons-search__control {
    position: relative;
}

.lpg-echantillons-search__input {
    width: 100%;
    height: 59px;
    padding: 0 20px 0 20px;
    border: 0;
    border-radius: 5px;
    background: #f5f5f5;
    font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
}

.lpg-echantillons-search__input::placeholder {
    color: #b1b1b1;
}

.lpg-echantillons-search__arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lpg-echantillons-search__arrow::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #333;
}

.lpg-echantillons-search__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border: 1px solid #e4ddd7;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.lpg-echantillons-search.is-open .lpg-echantillons-search__dropdown {
    display: block;
}

.lpg-echantillons-search__search-wrap {
    padding: 10px;
    border-bottom: 1px solid #efefef;
    background: #fafafa;
}

.lpg-echantillons-search__search {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
}

.lpg-echantillons-search__options {
    max-height: 260px;
    overflow-y: auto;
}

.lpg-echantillons-search__option {
    padding: 12px 14px;
    font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
    line-height: 1.3;
    color: #222;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: var(--police-opensans-regular);
}

.lpg-echantillons-search__option:hover {
    background: #F6E4B7;
}

.lpg-echantillons-search__option.is-placeholder {
    color: #999;
}

.lpg-echantillons-search__empty {
    display: none;
    padding: 12px 14px;
    color: #999;
    font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
}

.lpg-echantillons__actions {
    margin-top: 6px;
}

.lpg-echantillons__button {        
    width: 100%;
    height: 59px;
    border: 0;
    border-radius: 5px;
    background: #cf8f60;
    color: #fff;
    font-size: clamp(14px, calc(14px + ((16 - 14) * ((100vw - 400px) / (1500 - 400)))), 16px);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lpg-echantillons__button:hover {
    opacity: 0.94;
}

.lpg-echantillons__button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.lpg-echantillons__notice {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.lpg-echantillons__notice.is-visible {
    display: block;
}

.lpg-echantillons__notice.is-success {
    color: #2c7a4b;
    font-family: var(--police-worksans-regular);
}

.lpg-echantillons__notice.is-error {
    color: #b23838;
    font-family: var(--police-worksans-regular);
}

.lpg-echantillons.is-locked .lpg-echantillons__checkbox-row {
    cursor: default;
    opacity: 0.75;
}

.lpg-free-price {
    font-weight: 700;
    text-transform: uppercase;
}

.lpg-echantillons-search__option.is-selected {
    background: #f8f3ee;
    font-weight: 700;
}


@media (max-width: 900px) {
    .lpg-echantillons__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lpg-echantillons__button {
        height: 56px;
    }

    .lpg-echantillons__subtitle {
        font-size: 20px;
    }
}