

/* 
*
* Price Section 
*
*
*
*
*/


/* 
* Unit Name and Basic Content 
*
*/


.uniquedcc-inline-form.uniquedcc-quote-form {
    /* For the "GET A QUOTE" form background */
    background-color: #d5e5ec;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    border-color: #596d7d;
}


/* For the "GET FINANCING" form background */
/* 
.uniquedcc-inline-form.uniquedcc-finance-form {
    
    background-color: #e6ffdb;
    border-style: solid;
    border-width: 2px;
    border-radius: 20px;
    border-color: #95ff63;
}

*/



.uniquedcc-content-section h2 {
    font-family: 'Poppins', 'Roboto Condensed', Helvetica, Arial, sans-serif;
    color: black;
    margin: 5px 0;
    font-size: 70px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.uniquedcc-price-section {
    margin: 20px 0;
    padding: 15px;
    /*background: #f8f8f8;*/
    border-radius: 8px;
    text-align: center;
}


.uniquedcc-current-price {
    font-size: 70px;
    color: #0f0f0f;
    font-weight: 800;
    /*margin-bottom: 10px;*/
    text-align: center;
}

.uniquedcc-previous-price {
    font-size: 40px;
    color: rgb(55, 55, 55);
    text-decoration: line-through;
    text-align: center;
    margin-bottom: 5px;
    font-family: 'Poppins', 'Roboto Condensed', Helvetica, Arial, sans-serif;

}

.uniquedcc-savings {
    color: white;
    background-color: rgb(204, 0, 0);
    border-radius: 8px;
    font-family: 'Poppins', 'Roboto Condensed', Helvetica, Arial, sans-serif;
    padding: 5px 15px;
    margin: 10px auto;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    display: block; /* Changed to block */
    width: fit-content; /* Ensures the box stays tight to content */
    margin-left: auto; /* Center the block element */
    margin-right: auto;
}

/* CTA Buttons */
.uniquedcc-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.uniquedcc-cta-button {
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    font-family: 'Poppins', 'Roboto Condensed', Helvetica, Arial, sans-serif;
}

.uniquedcc-quote-btn {
    background-color: white;
    color: black;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(135, 135, 135);
}

.uniquedcc-quote-btn:hover {
    background-color: black;
    color: white;
}






.uniquedcc-finance-btn {
    background-color: #eb4a00;
    color: white;
    border: none;
}

.uniquedcc-finance-btn:hover {
    background-color: #003463;
    color: white;
}

.uniquedcc-call-btn {
    background-color: white;
    color: black;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(135, 135, 135);
}

.uniquedcc-call-btn:hover {
    background-color: black;
    color: white;
}

/* Specifications Section */
.uniquedcc-specs-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

.uniquedcc-specs-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.uniquedcc-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.uniquedcc-spec-item {
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.uniquedcc-spec-label {
    font-weight: 600;
    color: black;
    font-size: 14px;
    margin-bottom: 5px;
}

.uniquedcc-spec-value {
    color: #333;
    font-size: 16px;
}

/* About Vehicle Section */
.uniquedcc-about-section {
    margin: 20px 0;
}

.uniquedcc-about-details {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.uniquedcc-about-title {
    list-style: none;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f8f8;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.uniquedcc-about-title::-webkit-details-marker {
    display: none;
}
.uniquedcc-about-title-text {
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

.uniquedcc-about-expand-icon::before {
    content: '+';
    font-size: 24px;
    color: #666;
    transition: transform 0.3s ease;
}

details[open] .uniquedcc-about-expand-icon::before {
    content: '−';
}

.uniquedcc-about-title:hover {
    background-color: #f0f0f0;
}


.uniquedcc-about-content {
    line-height: 1.6;
    color: rgb(145, 145, 145);
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uniquedcc-about-content p {
    margin-bottom: 1em;
    max-width: 100%;
}

/* For very long words or URLs */
.uniquedcc-about-content * {
    max-width: 100%;
    word-break: break-word;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .uniquedcc-content-section h2 {
        font-size: 30px;
    }

    .uniquedcc-current-price {
        font-size: 36px;
    }

    .uniquedcc-previous-price {
        font-size: 24px;
    }

    .uniquedcc-savings,
    .uniquedcc-biweekly-payment {
        font-size: 28px;
        padding: 4px 12px;
    }

    .uniquedcc-cta-buttons {
        flex-direction: column;
    }

    .uniquedcc-cta-button {
        width: 100%;
    }

    .uniquedcc-specs-grid {
        grid-template-columns: 1fr;
    }

    .uniquedcc-about-content {
        font-size: 15px;
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .uniquedcc-content-section h2 {
        font-size: 26px;
    }

    .uniquedcc-current-price {
        font-size: 32px;
    }

    .uniquedcc-previous-price {
        font-size: 22px;
    }

    .uniquedcc-savings,
    .uniquedcc-biweekly-payment {
        font-size: 24px;
        padding: 3px 10px;
    }

    .uniquedcc-about-content {
        font-size: 14px;
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .uniquedcc-cta-buttons {
        display: none;
    }

    .uniquedcc-specs-section,
    .uniquedcc-about-section {
        break-inside: avoid;
    }
}




/* 
* 
* bi weekly payments 
*
*/


.uniquedcc-biweekly-payment {
    color: black;
    background-color: #FFD700; /* Yellow background */
    border-radius: 8px;
    font-family: 'Poppins', 'Roboto Condensed', Helvetica, Arial, sans-serif;
    padding: 5px 15px;
    margin: 10px auto;
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    display: block; /* Changed to block */
    width: fit-content; /* Ensures the box stays tight to content */
    margin-left: auto; /* Center the block element */
    margin-right: auto;
}

/* Update responsive styles */
@media screen and (max-width: 768px) {
    .uniquedcc-biweekly-payment {
        font-size: 24px;
        padding: 8px 15px;
    }
}

@media screen and (max-width: 480px) {
    .uniquedcc-biweekly-payment {
        font-size: 20px;
        padding: 6px 12px;
    }
}