/* WooCommerce Product Configurator - Frontend Styles */

.wpc-configurator-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 30px 0;
    color: #fff;
}

.wpc-configurator-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
}

.wpc-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
}

.wpc-price-display {
    text-align: right;
}

.wpc-price-label {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.wpc-price-value {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
}

.wpc-configurator-body {
    margin-bottom: 30px;
}

.wpc-price-section {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    text-align: center;
}

.wpc-step {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    padding: 30px 0;
    margin-bottom: 30px;
}

.wpc-step:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* Validation error state - inline message and red border */

.wpc-inline-error {
    color: #dc3545;
    font-size: 14px;
    margin: 0 0 15px 0;
    padding: 8px 12px;
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    border-radius: 4px;
}

.wpc-field-error,
.wpc-field-error:focus {
    outline: 2px solid #dc3545 !important;
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

select.wpc-field-error {
    border: 2px solid #dc3545 !important;
}

/* Add to cart when config invalid - still clickable to trigger inline validation */
button[name="add-to-cart"].wpc-add-to-cart-invalid {
    opacity: 0.9;
}

.wpc-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.wpc-step-number {
    background: transparent;
    color: #fff;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
    font-size: 24px;
}

.wpc-step-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

.wpc-step-description {
    color: #aaa;
    margin: 0 0 25px 0;
    font-size: 14px;
    line-height: 1.6;
}

.wpc-options-container {
    margin-top: 25px;
}

/* Hose Type (step-level selector) - matches mockup */
.wpc-hose-type.hose-type {
    margin: 25px 0 20px 0;
    padding: 15px 0;
    display: none !important;
}
.wpc-hose-type.hose-type {
    display: none !important;
}

.wpc-hose-type > span,
.hose-type > span {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}
.wpc-hose-type .radio-row,
.hose-type .radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.wpc-hose-type .wpc-radio-inline-item,
.hose-type .wpc-radio-inline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px solid #444;
    transition: all 0.2s ease;
}
.wpc-hose-type .wpc-radio-inline-item:hover,
.hose-type .wpc-radio-inline-item:hover {
    background: #333;
    border-color: #555;
}
.wpc-hose-type .wpc-radio-inline-item:has(.wpc-option-input:checked),
.hose-type .wpc-radio-inline-item:has(.wpc-option-input:checked) {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

/* Helper text (when No Adapter selected) */
.wpc-category-helper-text.helper-text {
    margin-top: 15px;
    padding: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}

/* Thread Type / Thread Size labels */
.wpc-thread-type-label,
.wpc-thread-size-label {
    margin: 20px 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}
.wpc-thread-size-label {
    margin-top: 20px;
}

/* Card grid - matches mockup */
.wpc-category-products-container .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Two Column Layout: End 1 left, End 2 right, border in center */
.wpc-two-column-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 25px;
}
.wpc-column {
    padding: 0 20px;
    min-height: 100px;
}
.wpc-column-end1 {
    padding-right: 25px;
}
.wpc-column-end2 {
    padding-left: 25px;
}
.wpc-column-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wpc-column-divider {
    width: 2px;
    min-height: 100px;
    background: #444;
    border-left: 1px solid #555;
    border-right: 1px solid #333;
    box-shadow: 0 0 0 1px rgba(255,107,53,0.2);
}
@media (max-width: 768px) {
    .wpc-two-column-container {
        grid-template-columns: 1fr;
    }
    .wpc-column-divider {
        display: none;
    }
    .wpc-column-end1,
    .wpc-column-end2 {
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }
    .wpc-column-end2 {
        border-bottom: none;
    }
}

/* Wrapper for radio options - supports pricing note top-right */
.wpc-radio-options-wrapper {
    position: relative;
}

.wpc-pricing-note {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 0 12px 0;
    padding: 0;
    font-size: 13px;
    color: #aaa;
    max-width: 280px;
    text-align: right;
}

.wpc-has-pricing-note .wpc-options-grid {
    margin-top: 28px;
}

.wpc-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Product options: vertical list, horizontal row layout per card */
.wpc-grid-product-layout {
    grid-template-columns: 1fr !important;
    gap: 20px;
}

@media (min-width: 1200px) {
    .wpc-options-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .wpc-grid-product-layout {
        grid-template-columns: 1fr !important;
    }
}

/* Select Option Wrapper */
.wpc-select-option-wrapper {
    margin-bottom: 25px;
    padding: 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
}

.wpc-option-label-text {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Unified dropdown design - matches wpc-option-select-value for all frontend selects */
.wpc-select-option-wrapper .wpc-option-select,
.wpc-select-option-wrapper .wpc-option-select-value,
.wpc-variation-select-shared,
.wpc-thread-size-select,
.wpc-select-wrapper select {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 12px 40px 12px 15px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.wpc-select-option-wrapper .wpc-option-select:hover,
.wpc-select-option-wrapper .wpc-option-select-value:hover,
.wpc-variation-select-shared:hover,
.wpc-thread-size-select:hover,
.wpc-select-wrapper select:hover {
    border-color: #ff6b35;
    background-color: #333;
}

.wpc-select-option-wrapper .wpc-option-select:focus,
.wpc-select-option-wrapper .wpc-option-select-value:focus,
.wpc-variation-select-shared:focus,
.wpc-thread-size-select:focus,
.wpc-select-wrapper select:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
    background-color: #333;
}

.wpc-option-price-display {
    display: inline-block;
    margin-left: 15px;
    color: #ff6b35;
    font-weight: 700;
    font-size: 16px;
}

.wpc-option-description-text {
    margin: 8px 0 0 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
}

/* Checkbox Option Styling */
.wpc-checkbox-option {
    margin-bottom: 20px;
}

.wpc-checkbox-input:checked + .wpc-option-label {
    border-color: #ff6b35;
    background: #2a2a2a;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

.wpc-checkbox-input:checked + .wpc-option-label .wpc-option-checkmark {
    display: flex;
}

.wpc-option {
    position: relative;
}

.wpc-option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wpc-option-label {
    display: block;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

/* Product option & category product: horizontal row layout (screenshot design) */
.wpc-option-product .wpc-option-label,
.wpc-category-product .wpc-option-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
}

/* Ensure category product cards and labels are clickable (override any inherited pointer-events) */
.wpc-category-product,
.wpc-category-product .wpc-option-label {
    pointer-events: auto;
    cursor: pointer;
}

.wpc-option-product .wpc-option-label:hover,
.wpc-category-product .wpc-option-label:hover {
    background: #333;
}

.wpc-option-product .wpc-option-input:checked + .wpc-option-label,
.wpc-category-product .wpc-option-input:checked + .wpc-option-label {
    border-color: #ff6b35;
    background: #2a2a2a;
    box-shadow: 0 2px 12px rgba(255,107,53,0.25);
}

.wpc-option-label:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
    transform: translateY(-3px);
    background: #333;
}

.wpc-option-product .wpc-option-label:hover,
.wpc-category-product .wpc-option-label:hover {
    transform: none;
}

.wpc-option-input:checked + .wpc-option-label {
    border-color: #ff6b35;
    background: #2a2a2a;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

/* Product option & category product: square thumbnail left, checkmark on image */
.wpc-option-product .wpc-option-image,
.wpc-category-product .wpc-option-image {
    position: relative;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    margin-bottom: 0;
    padding: 0;
}

.wpc-option-product .wpc-option-image img,
.wpc-category-product .wpc-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpc-option-product .wpc-option-image .wpc-option-checkmark,
.wpc-category-product .wpc-option-image .wpc-option-checkmark {
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    font-size: 14px;
    background: #f0c14b;
    color: #1a1a1a;
}

.wpc-option-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.wpc-option-product .wpc-option-image {
    position: relative;
}

.wpc-option-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.wpc-option-label:hover .wpc-option-image img {
    transform: scale(1.05);
}

.wpc-option-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Product option & category product: horizontal columnar layout (name | sku | price) */
.wpc-option-product .wpc-option-info,
.wpc-category-product .wpc-option-info {
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 25px;
    min-width: 0;
}

.wpc-option-product .wpc-option-name,
.wpc-category-product .wpc-option-name {
    flex: 1;
    min-width: 180px;
    margin-bottom: 0;
}

.wpc-option-product .wpc-option-sku {
    margin: 0;
    flex-shrink: 0;
}

.wpc-option-product .wpc-option-price,
.wpc-category-product .wpc-option-price {
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.wpc-option-product .wpc-option-price .wpc-price-unit,
.wpc-category-product .wpc-option-price .wpc-price-unit {
    color: #aaa;
    font-weight: 500;
}

.wpc-option-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 1.5;
    margin-bottom: 4px;
}

.wpc-option-desc {
    font-size: 13px;
    color: #aaa;
    display: block;
    line-height: 1.6;
    margin-bottom: 6px;
}

.wpc-option-sku {
    font-size: 12px;
    color: #fff;
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
}

.wpc-option-price {
    font-weight: 700;
    color: #ff6b35;
    font-size: 16px;
    display: block;
    margin-top: 8px;
    font-size: 17px;
}

/* Inline radio layout: radio button next to label (for options with label+value) */
.wpc-radio-inline-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
}

.wpc-radio-inline-values .wpc-radio-inline-group-label {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.wpc-radio-inline-values .wpc-radio-inline-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpc-radio-inline-values .wpc-radio-inline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.wpc-radio-inline-values .wpc-radio-inline-item:hover {
    background: #333;
    border-color: #555;
}

/* Force inline radios to be visible and clickable - override global .wpc-option-input (opacity:0, pointer-events:none) */
.wpc-radio-inline-values .wpc-option-input,
.wpc-radio-inline-values .wpc-radio-inline-item .wpc-option-input,
.wpc-option-radio-value {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    accent-color: #ff6b35;
    cursor: pointer;
}

.wpc-radio-inline-values .wpc-radio-inline-item .wpc-option-name {
    margin-bottom: 0;
    flex: 1;
}

.wpc-radio-inline-values .wpc-radio-inline-item .wpc-option-price {
    margin-top: 0;
    font-size: 14px;
}

.wpc-radio-inline-values .wpc-radio-inline-item:has(.wpc-option-input:checked) {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.wpc-option-checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.wpc-option-input:checked + .wpc-option-label .wpc-option-checkmark {
    display: flex;
}

/* Product option & category product: checkmark inside image - show when selected */
.wpc-option-product .wpc-option-input:checked + .wpc-option-label .wpc-option-image .wpc-option-checkmark,
.wpc-category-product .wpc-option-input:checked + .wpc-option-label .wpc-option-image .wpc-option-checkmark {
    display: flex;
}

/* Category option: full width wrapper, adapter choice + products */
.wpc-option-category {
    grid-column: 1 / -1;
    width: 100%;
}
.wpc-category-adapter-choice {
    margin-bottom: 0;
    padding: 15px;
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
}
.wpc-category-adapter-choice .wpc-radio-inline-group-label {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}
.wpc-category-adapter-choice .wpc-radio-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.wpc-category-adapter-choice .wpc-radio-inline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.wpc-category-adapter-choice .wpc-radio-inline-item:hover {
    background: #333;
    border-color: #555;
}
.wpc-category-adapter-choice .wpc-radio-inline-item:has(.wpc-option-input:checked) {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}
.wpc-category-adapter-choice .wpc-option-input {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 18px !important;
    height: 18px !important;
    accent-color: #ff6b35;
}
.wpc-category-products-container .wpc-options-grid {
    margin-top: 15px;
}
.wpc-category-products-group {
    margin-bottom: 20px;
}

/* Select Dropdown Styling */
.wpc-select-wrapper {
    margin-top: 20px;
}

.wpc-select-with-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 15px;
}

.wpc-select-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpc-select-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wpc-select-field-wrapper {
    flex: 1;
}

.wpc-select-label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Option styling for unified dropdowns (browser support varies) */
.wpc-select-option-wrapper .wpc-option-select option,
.wpc-select-option-wrapper .wpc-option-select-value option,
.wpc-variation-select-shared option,
.wpc-thread-size-select option,
.wpc-select-wrapper select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Quantity Input Only */
.wpc-quantity-only-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpc-quantity-only-wrapper label {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    min-width: 80px;
}

.wpc-quantity-only-input {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 12px 40px 12px 15px;
    color: #fff;
    font-size: 15px;
    width: 150px;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.wpc-quantity-only-input:hover {
    border-color: #ff6b35;
    background-color: #333;
}

.wpc-quantity-only-input:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
    background-color: #333;
}

/* Text Input */
.wpc-text-input-wrapper {
    margin-top: 20px;
}

.wpc-text-input {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
}

.wpc-text-input:hover {
    border-color: #ff6b35;
}

.wpc-text-input:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
}

/* Quantity Wrapper for Options */
.wpc-quantity-wrapper {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpc-quantity-wrapper label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    min-width: 70px;
}

.wpc-quantity-input {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 15px;
    width: 100px;
    transition: all 0.3s ease;
}

.wpc-quantity-input:hover {
    border-color: #ff6b35;
    background-color: #333;
}

.wpc-quantity-input:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
    background-color: #333;
}

/* Bottom section: footer + quantity + add to cart button wrapped together */
.wpc-configurator-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #333;
}

.wpc-configurator-bottom .wpc-configurator-footer {
    flex: 1;
    min-width: 280px;
}

.wpc-configurator-bottom .summary-right {
    flex: 0 0 auto;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpc-configurator-bottom .summary-right .quantity {
    flex-shrink: 0;
}

.wpc-configurator-bottom .summary-right .single_add_to_cart_button {
    flex-shrink: 0;
}

.wpc-configurator-bottom .summary-right .shipping {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

.wpc-configurator-bottom .summary-right .wpc-price-section {
    margin: 0;
    padding: 0;
    border: none;
}

.wpc-configurator-bottom .summary-right .wpc-price-display {
    text-align: left;
}

.wpc-configurator-footer {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
}

/* Your Customization - matches screenshot design */
.wpc-summary {
    margin-bottom: 25px;
}

.wpc-summary-title,
.wpc-summary h4.wpc-summary-title {
    margin: 0 0 25px 0;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    color: #fff;
}

.wpc-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpc-summary-list li {
    padding: 0 0 22px 0;
    border-bottom: none;
    display: block;
}

.wpc-summary-list li:last-child {
    padding-bottom: 0;
}

.wpc-summary-heading {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.wpc-summary-step {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.wpc-summary-subheading {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin: 12px 0 6px 0;
    padding-left: 0;
}

.wpc-summary-subheading:first-of-type {
    margin-top: 8px;
}

.wpc-summary-value {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #ddd;
    padding-left: 0;
    margin: 2px 0;
}

.wpc-summary-group .wpc-summary-value {
    padding-left: 20px;
}

.wpc-summary-option {
    font-weight: 400;
    font-size: 14px;
    color: #ddd;
}

.wpc-summary-price {
    display: none;
}

.wpc-actions {
    margin-top: 20px;
    text-align: right;
}

.wpc-reset-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.wpc-reset-btn:hover {
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpc-price-section .wpc-price-display {
        text-align: center;
    }
    
    .wpc-options-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .wpc-step-description {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .wpc-options-grid {
        grid-template-columns: 1fr;
    }
    
    .wpc-configurator-wrapper {
        padding: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wpc-step {
    animation: fadeIn 0.3s ease;
}

/* Default selected (locked) options - pre-selected, customer cannot change */
.wpc-option.wpc-option-locked {
    opacity: 0.95;
}
.wpc-option.wpc-option-locked label {
    cursor: default;
}
.wpc-option.wpc-option-locked input:disabled {
    cursor: default;
}

