/* =====================================================
   FIXING SELECTION COMPONENTS
   ===================================================== */

/* Fixing Selection Styles */
.fixing-selection h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #fff;
    border-bottom: 2px solid #00ffff;
    padding-bottom: 10px;
    text-align: center;
}

.fixing-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fixing-option {
    position: relative;
}

.fixing-btn {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    text-align: left;
    width: 100%;
}

.fixing-btn:hover {
    border-color: #00ffff;
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.fixing-btn.selected {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.fixing-btn-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Remove flexbox from h5 since structure has changed */
}

/* Add styling for the fixing-btn-header container */
.fixing-btn-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    flex-wrap: nowrap;
    min-height: 24px;
    margin-bottom: 8px;
}

.fixing-btn-header h5 {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
    margin: 0;
    /* Remove margin since header handles spacing */
}

.fixing-btn-header .sku-pill-fixing,
.fixing-btn-header .sku-pill-fixing-price {
    flex-shrink: 0;
    margin-left: auto;
    align-self: flex-start;
}

.fixing-btn-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

.fixing-info {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 5px !important;
}

.sku-info {}

.sku-pill-fixing {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 6px 10px;
    color: #ccc;
    font-size: 9.5pt;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    /* Changed from middle to top */
    white-space: nowrap;
    line-height: 1;
    /* Prevent extra line height */
}

.sku-pill-fixing-price {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 6px 10px;
    color: #ccc;
    font-size: 9.5pt;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    /* Changed from middle to top */
    white-space: nowrap;
    line-height: 1;
    /* Prevent extra line height */
}

.sku-pill-psu {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 6px 10px;
    color: #ccc;
    font-size: 9.5pt;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    /* Changed from middle to top */
    white-space: nowrap;
    line-height: 1;
    /* Prevent extra line height */
}

/* Selected Fixing Items in Line Items */
.fixing-item-line {}

.fixing-item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}



.change-fixing-btn:hover {
    background: #2980b9;
}