/* Fiber Optic Addon */
.fiber-optic-addon {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    text-align: right;
    display: block;
    direction: rtl;
}

.patchcord-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: background .2s;
}

.patchcord-header:hover {
    background: #f0f0f0;
}

.patchcord-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.patchcord-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform .3s;
}

.patchcord-toggle-btn.open {
    transform: rotate(180deg);
}

.patchcord-accordion {
    display: none;
    margin-top: 8px;
    padding: 10px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.addon-group {
    margin-bottom: 10px;
}

.addon-group-title {
    margin: 0 0 6px;
    font-weight: 500;
    font-size: 11px;
    color: #999;
}

.addon-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.addon-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 6px 10px;
    background: #fff;
    border-radius: 4px;
    border: 1.5px solid #ddd;
    transition: all .2s;
    font-size: 11px;
    white-space: nowrap;
}

.addon-item:hover {
    border-color: #de1e2c;
    background: #fff9f9;
}

.addon-item:has(input:checked) {
    border-color: #85c441;
    background: #e8f5e9;
}

.addon-checkbox {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #85c441;
    margin: 0;
}

.addon-name {
    font-weight: 500;
    color: #333;
}

.addon-price {
    font-weight: 600;
}

/* Store Installment Addon */
.store-installment-addon {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: right;
    direction: rtl;
}