/* ===============================================
   FEE TRANSPARENCY PRICING STYLES
   =============================================== */

/* Floor Plan Card Pricing Section */
.fp-pricing-wrapper {
    margin: 15px 0;
}
.unit_price.popup-pricing-section {
    margin-bottom: 10px;
}
.fp-price-line {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

.fp-price-line.primary-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.fp-price-line.secondary-price {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.fp-price-label {
    display: inline-block;
    margin-right: 5px;
}

.fp-price-value {
    font-weight: 600;
}

/* Strikethrough for old/discounted prices */
.old-price .fp-price-value {
    text-decoration: line-through;
    color: #999;
}

/* Disclaimer and Installment Text */
.fp-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.fp-installment-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Room Type Toggle Buttons */
.room-type-toggle {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: flex-start;
}

.room-type-btn {
    padding: 3px 15px;
    background: #f0f0f0;
    border: 0px;
    border-radius: 0px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.room-type-btn:hover {
    background: #e0e0e0;
}

.room-type-btn.active {
    background: #2c5f5f;
    color: #fff;
    border-color: #2c5f5f;
}

/* Transparency Button/Link */
.transparency-link-wrapper {
    margin-top: 15px;
}

.transparency-link-btn {
    background-color: #37AB94 !important;
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 2px 50px;
        font-family: open-sans, sans-serif;
}
.transparency-link-btn:hover {
    background-color: #000000 !important;
}
.fancybox-hidden .pop-footer-detail, .pop-split-50  .rates-note, .pop-split-50  .fp-full-disclaimer {
    font-size: 12px;
    line-height:1.25;
}
.element-item .portfolio-wrapper .fp-full-disclaimer {
    font-size: 10px;
    line-height: 1;
    padding-top: 10px;
}
.element-item .unit-detail .fp-pricing-wrapper {
    display: inline-block;
    margin-bottom: 0;
}
/* Floor Plan Popup Pricing */
.pop-split-50 .fp-pricing-wrapper {
    margin: 10px 0;
}

.pop-split-50 .fp-price-line.primary-price {
    font-size: 24px;
    margin-bottom: 10px;
}

.pop-split-50 .fp-price-line.secondary-price {
    font-size: 18px;
}

.pop-split-50 .transparency-link-wrapper {
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 20px;
}
.pop-split-50  .fp-pricing-wrapper, .pop-split-50  .fp-pricing-wrapper div  {
    width: 100%;
    display: inline-block !important;
}
.unit_price.popup-pricing-section {
    margin-bottom: 15px;
}
/* Grid Card Specific Styles */
.floor-plan-box .fp-pricing-wrapper {
    padding: 10px 0;
}

/* Room Type Content Visibility */
.room-type-content {
    display: none;
}

.room-type-content.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .room-type-toggle {
        flex-direction: column;
    }
    
    .room-type-btn {
        width: 100%;
    }
    
    .fp-price-line.primary-price {
        font-size: 16px;
    }
    
    .pop-split-50 .fp-price-line.primary-price {
        font-size: 20px;
    }
}

/* Additional Popup Styling */
.pop-split-50 {
    margin: 0 auto;
    /*padding: 30px;*/
}

.pop-split-50 .fp-header {
    text-align: center;
    margin-bottom: 20px;
}

.pop-split-50 .fp-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pop-split-50 .fp-bedrooms {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
}

.pop-split-50 .fp-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pop-split-50 .fp-detail-item {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.pop-split-50 .fp-detail-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pop-split-50 .fp-detail-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Full Disclaimer in Popup */

.pop-split-50 .fp-full-disclaimer {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #666;
}

/* Action Buttons in Popup */
.pop-split-50 .fp-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.pop-split-50 .fp-action-btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.pop-split-50 .fp-action-btn.primary {
    background: #2c5f5f;
    color: #fff;
}

.pop-split-50 .fp-action-btn.primary:hover {
    background: #234848;
}

.pop-split-50 .fp-action-btn.secondary {
    background: transparent;
    color: #2c5f5f;
    border-color: #2c5f5f;
}

.pop-split-50 .fp-action-btn.secondary:hover {
    background: #2c5f5f;
    color: #fff;
}

@media (max-width: 576px) {
    .pop-split-50 .fp-actions {
        flex-direction: column;
    }
    
    .pop-split-50 .fp-action-btn {
        width: 100%;
    }
}