/* Consumer Price Calculator Styles - Redesigned */

.price-calculator__section {
    margin: 0;
}

.price-calculator__section-title {
    font-size: 1.4rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.price-calculator__container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Print Options Styling */
.price-calculator__form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.price-calculator__print-type-title {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

/* Match the product details h2 styling */
.price-calculator__form-group h2 {
    font-size: 1.1rem;
    margin: 12px 0 0 0;
    font-weight: 600;
}

/* Add negative margin to the print options to reduce space */
.price-calculator__print-type {
    margin-top: 8px;
}

.price-calculator__print-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.price-calculator__print-option {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.2s ease;
}

.price-calculator__print-option:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.price-calculator__print-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-calculator__print-option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    color: #4a5568;
}

.price-calculator__print-option-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #cbd5e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-calculator__print-option-label input[type="checkbox"]:checked {
    background-color: #4299e1;
    border-color: #4299e1;
}

.price-calculator__print-option-label .price {
    color: #718096;
    font-weight: 500;
}

/* Print Option Styling - New Layout */
.price-calculator__print-option {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.price-calculator__print-option:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Print Option Image Styling - Bigger and Centered */
.price-calculator__print-option-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.print-option-image {
    width: 75%;
    max-width: 160px;
    min-width: 80px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Print Option Content - Below Image */
.price-calculator__print-option-content {
    width: 100%;
}

.price-calculator__print-option-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 0.85rem;
    color: #495057;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    font-weight: 500;
}

.price-calculator__print-option-label:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.price-calculator__print-option-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 2px solid #cbd5e0;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.price-calculator__print-option-text {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.price-calculator__print-option-text .price {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

/* Individual Printing Option Styling */
.price-calculator__individual-printing {
    margin-top: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.price-calculator__individual-printing-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #495057;
    text-align: center;
}

.price-calculator__individual-printing-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid #ced4da;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.individual-printing-text {
    font-weight: 500;
}

.special-price-display {
    color: #28a745;
    font-weight: 600;
}

/* Discount Section Styling */
.price-calculator__quantity-discount {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.price-calculator__discount-info {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-calculator__discount-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.price-calculator__discount-percentage {
    font-size: 1.1rem;
    font-weight: 600;
    color: #047857;
    background-color: #d1fae5;
    padding: 6px 12px;
    border-radius: 6px;
}

.price-calculator__discount-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    transition: all 0.3s ease-in-out;
}

.price-calculator__discount-price s {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-right: 6px;
    font-weight: 400;
}

.price-calculator__price-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 400;
}

/* Slider Styling */
.price-calculator__slider-container {
    position: relative;
    height: 60px;
    margin-top: 40px;
    padding: 0 10px;
}

.price-calculator__quantity-bubble {
    position: absolute;
    top: -35px;
    transform: translateX(-50%);
    background-color: #1f2937;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-calculator__quantity-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.price-calculator__slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #60a5fa, #8b5cf6, #ec4899);
    border-radius: 6px;
    transform: translateY(-50%);
}

.price-calculator__slider-handle {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid var(--ub-navy, #00293D);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.price-calculator__slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-calculator__slider-handle:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.price-calculator__slider-marker {
    position: absolute;
    top: 50%;
    width: 2px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.price-calculator__quantity-text {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #4b5563;
}

.price-calculator__quantity-text strong {
    font-weight: 600;
    color: #1f2937;
}

/* Summary Box Styling */
.price-calculator__summary {
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
}

.price-calculator__summary-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.price-calculator__summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-calculator__summary-item {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.price-calculator__summary-item:last-child {
    margin-bottom: 0;
}

.price-calculator__summary-item-icon {
    margin-right: 8px;
    color: #059669;
}

/* Call to Action Button */
.price-calculator__cta {
    text-align: center;
    margin-top: 24px;
}

.price-calculator__cta-button {
    background-color: var(--ub-magenta, #CE2984);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(206, 41, 132, 0.2);
}

.price-calculator__cta-button:hover {
    background-color: var(--ub-magenta-dark, #a82070);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(206, 41, 132, 0.3);
}

.price-calculator__cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(206, 41, 132, 0.2);
}

/* Incentive Message */
.price-calculator__incentive {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 500;
}

/* Loading and Error States */
.price-calculator__loading {
    display: none;
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-weight: bold;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.price-calculator__loading.active {
    display: block;
}

.price-calculator__error {
    display: none;
    padding: 15px;
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin: 0;
    font-weight: 500;
}

.price-calculator__error.active {
    display: block;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .price-calculator__print-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-calculator__container {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .price-calculator__discount-display {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations */
@keyframes priceChange {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.price-change-animation {
    animation: priceChange 0.3s ease-in-out;
}

/* Order Summary Info Styling */
.order-summary__info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.order-summary__info-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    min-width: 60px;
    flex-shrink: 0;
}

.order-summary__info-value {
    font-weight: 500;
    color: #212529;
    font-size: 0.9rem;
}

.order-summary__color-value {
    background-color: #e3f2fd;
    color: #1565c0;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.order-summary__print-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.order-summary__print-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.order-summary__print-name {
    font-weight: 600;
    color: #495057;
    font-size: 0.85rem;
}

.order-summary__print-personalization {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    font-style: italic;
}

/* Color swatch in order summary */
.order-summary__color-swatch {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    display: inline-block !important;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Ensure the color paragraph displays inline properly */
.order-summary__color-swatch.product-page__color-swatch {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    display: inline-block !important;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Override any existing product-page__color-swatch styles that might interfere */
.order-summary__color-swatch.product-page__color-swatch,
.order-summary__color-swatch {
    float: none !important;
    clear: none !important;
    width: 25px !important;
    height: 25px !important;
    display: inline-block !important;
}

/* List/Table Layout for Order Summary */
.order-summary__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.order-summary__table th,
.order-summary__table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

/* Ensure PRIJS PER STUK column is left-aligned */
.order-summary__table th:nth-child(3),
.order-summary__table td:nth-child(3) {
    text-align: left;
}

/* Right-align only the SUBTOTAAL column (4th column) and price cells */
.order-summary__table th:nth-child(4),
.order-summary__table td:nth-child(4),
.order-summary__table .order-summary__price-cell {
    text-align: right;
}

.order-summary__table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-summary__table td {
    font-size: 0.95rem;
    color: #212529;
}

.order-summary__table tr:last-child td {
    border-bottom: none;
}

.order-summary__table tr:hover {
    background-color: #f8f9fa;
}

/* Size column styling */
.order-summary__size-cell {
    font-weight: 600;
    color: #495057;
}

/* Quantity column styling */
.order-summary__quantity-cell {
    text-align: center;
    font-weight: 500;
}

/* Price column styling */
.order-summary__price-cell {
    text-align: right;
    font-weight: 600;
    color: #28a745;
}

/* Total row styling */
.order-summary__total-row {
    background-color: #e3f2fd !important;
    font-weight: 600;
}

.order-summary__total-row td {
    border-top: 2px solid #2196f3;
    color: #1565c0;
    font-size: 0.95rem;
}

/* Color info in list layout */
.order-summary__color-info-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.order-summary__color-label-list {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.order-summary__color-value-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #212529;
}

/* Color section spacing */
.order-summary__color-section {
    margin-bottom: 16px;
}

/* Print info in list layout */
.order-summary__print-info-list {
    margin-bottom: 16px;
}

.order-summary__print-label-list {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.order-summary__print-items-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-summary__print-item-list {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.order-summary__print-name-list {
    font-weight: 500;
    color: #495057;
}

.order-summary__print-personalization-list {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    font-style: italic;
}

/* Summary totals in list layout */
.order-summary__totals-list {
    margin-top: 16px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.order-summary__total-items-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.order-summary__final-price-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 2px solid #dee2e6;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1565c0;
}

/* Product Sizes List Table Styling */
.product-page__sizes-list-container {
    margin-top: 20px;
    overflow-x: auto;
    width: 100%;
    box-sizing: border-box;
}

.product-page__sizes-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    table-layout: auto;
    box-sizing: border-box;
    display: table;
    position: relative;
}

.product-page__sizes-table th,
.product-page__sizes-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.product-page__sizes-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Center-align the AANTAL column header */
.product-page__sizes-table th:nth-child(3) {
    text-align: center;
}

/* Hide the entire content block when the header has the hidden class */
.content-block:has(.product-page__sizes-section--hidden) {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fallback for browsers that don't support :has() - hide the entire content block */
.content-block__header.product-page__sizes-section--hidden {
    display: none !important;
}

.content-block__header.product-page__sizes-section--hidden + .content-block__content {
    display: none !important;
}

.content-block__header.product-page__sizes-section--hidden ~ .content-block__footer-separator {
    display: none !important;
}

.content-block__header.product-page__sizes-section--hidden ~ .content-block__footer {
    display: none !important;
}

/* Additional fallback - hide the parent content block entirely */
.content-block__header.product-page__sizes-header.product-page__sizes-section--hidden {
    display: none !important;
}

.content-block__header.product-page__sizes-header.product-page__sizes-section--hidden + .content-block__content {
    display: none !important;
}

.content-block__header.product-page__sizes-header.product-page__sizes-section--hidden ~ .content-block__footer-separator {
    display: none !important;
}

.content-block__header.product-page__sizes-header.product-page__sizes-section--hidden ~ .content-block__footer {
    display: none !important;
}

/* Ensure hidden content blocks don't take up any space */
.content-block:has(.product-page__sizes-section--hidden),
.content-block .product-page__sizes-section--hidden {
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Remove margin from content blocks that contain hidden sections */
.content-block:has(.product-page__sizes-header.product-page__sizes-section--hidden) {
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
}

.product-page__sizes-table td {
    font-size: 0.95rem;
    color: #212529;
}

.product-page__sizes-table tr:last-child td {
    border-bottom: none;
}

.product-page__sizes-table tr:hover {
    background-color: #f8f9fa;
}

/* Size cell styling */
.product-page__size-cell-list {
    font-weight: 600;
    color: #495057;
    width: 20%;
}

/* Stock cell styling */
.product-page__stock-cell-list {
    width: 45%;
}

.stock-count-list {
    font-weight: 500;
}

/* Apply same color coding as grid view */
.stock-count-list.product-page__stock-status--low-stock {
    color: #f57c00;
    font-weight: 600;
}

/* Quantity cell styling */
.product-page__quantity-cell-list {
    text-align: right;
    width: 140px;
}

.product-page__quantity-controls-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.product-page__quantity-decrease-list,
.product-page__quantity-increase-list {
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    color: #495057;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page__quantity-decrease-list:hover,
.product-page__quantity-increase-list:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.product-page__quantity-decrease-list:disabled,
.product-page__quantity-increase-list:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.product-page__quantity-input-list {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    background-color: #fff;
    color: #212529;
    transition: border-color 0.2s ease;
    -moz-appearance: textfield;
}

/* Remove spinner arrows from number input */
.product-page__quantity-input-list::-webkit-outer-spin-button,
.product-page__quantity-input-list::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-page__quantity-input-list:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.1);
}

/* Out of stock row styling */
.product-page__size-row.out-of-stock {
    opacity: 0.6;
}

.product-page__size-row.out-of-stock .product-page__quantity-decrease-list,
.product-page__size-row.out-of-stock .product-page__quantity-increase-list,
.product-page__size-row.out-of-stock .product-page__quantity-input-list {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-page__size-row.out-of-stock .stock-count-list {
    color: #dc3545;
    font-weight: 600;
}

/* Responsive adjustments for list layout */
@media (max-width: 767px) {
    .order-summary__table {
        font-size: 0.85rem;
    }
    
    .order-summary__table th,
    .order-summary__table td {
        padding: 8px 12px;
    }
    
    .order-summary__color-info-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-page__sizes-table th,
    .product-page__sizes-table td {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .product-page__quantity-controls-list {
        gap: 4px;
    }
    
    .product-page__quantity-decrease-list,
    .product-page__quantity-increase-list {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .product-page__quantity-input-list {
        width: 50px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* Grouped print locations (radio groups) */
.price-calculator__print-group {
    margin: 0 -20px;
    border-top: 1px solid #e5e7eb;
}

.price-calculator__print-group:first-child {
    border-top: none;
    margin-top: -23px;
}

.price-calculator__print-group:last-child {
    border-bottom: none;
    margin-bottom: -15px;
}

.price-calculator__print-group-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    padding: 10px 20px;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.price-calculator__print-group-selection {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 400;
    color: #555;
    margin-left: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-calculator__print-group-check {
    color: #16a34a;
    margin-right: 3px;
}

.price-calculator__print-group-arrow {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.price-calculator__print-group--collapsed .price-calculator__print-group-arrow {
    transform: rotate(-90deg);
}

.price-calculator__print-group--collapsed .price-calculator__print-options {
    display: none;
}

.price-calculator__print-group .price-calculator__print-options {
    padding: 0 20px 12px;
}

.price-calculator__print-option-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
}

.price-calculator__print-option-label input[type="radio"]:checked {
    border-color: #111827;
    background: #111827;
    box-shadow: inset 0 0 0 3px #fff;
}
}
