/* Section Container */
.product-section {
    background-color: #ebf3f8; 
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    align-items: flex-start; 
    gap: 40px;
}

/* --- Left Text Column --- */
.text-column {
    flex: 1; 
    padding-right: 20px;
}

.product-title {
    color: #a80d2e; 
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.product-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

/* Hidden Text Styling */
#more-text {
    display: none;
}

#dots {
    display: inline;
}

/* --- Read More Button --- */
#read-toggle-btn {
    background: none;
    border: none;
    color: #00609c;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 25px; 
    padding: 0;
    display: inline-block;
}

#read-toggle-btn:hover {
    color: #004080;
}

/* --- Request Quote Button --- */
.btn-container {
    display: block; 
}

.quote-btn {
    background-color: #a80d2e; 
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.quote-btn:hover {
    background-color: #8a0b26;
}

.quote-btn i {
    font-size: 0.8rem;
}

/* --- Right Image Column --- */
.image-column {
    flex: 0.6; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    transform: rotate(-5deg);
}

/* --- Responsiveness --- */
@media (max-width: 900px) {
    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; 
        gap: 30px;
    }

    .text-column {
        padding-right: 0;
        text-align: left; 
    }
    
    .product-image {
        max-width: 250px; 
        margin: 0 auto;
        display: block;
        transform: rotate(0deg); 
    }
}

/* --- 1. Section Styling --- */
.specs-section {
    background-color: #f0f4f7; 
    padding-top: 30px;
    padding-bottom: 0px; 
    width: 100%;
    overflow: hidden; 
}

.specs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- 2. Title Styling --- */
.specs-title {
    color: #b71c1c;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px; 
    text-align: left;
}

/* --- 3. The Layout Wrapper --- */
.specs-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: center; /* Centers everything neatly */
    gap: 30px; 
    width: 100%;
    padding-bottom: 40px; /* Safe, predictable space above the footer */
}

/* --- 4. Left Column: Drawing --- */
.drawing-box {
    flex: 1 1 250px;            
    max-width: 300px; /* Keeps the drawing from getting too big */         
    display: flex;
    justify-content: center;   
}

/* --- 5. Right Column: Table --- */
.table-box {
    flex: 2 1 600px;           
    max-width: 800px; /* Constrains the width, which naturally limits the height! */ 
    display: flex;
    justify-content: center;
}

/* --- 6. Image Styling --- */
.spec-img {
    width: 100%;               
    height: auto;            
    display: block;            
    mix-blend-mode: multiply; 
    
    /* REMOVED all negative margins to stop overlaps and cut-offs */
    margin: 0; 
}

/* --- 7. MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .specs-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .drawing-box, 
    .table-box {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .drawing-box {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ====================  CTA CSS  ==================== */
.cta-section {
    background-color: #ecf0f3;
    padding: 40px 0 60px 0; 
}
.text-dark-gray { color: #0b0b0b; font-size: 0.85rem; font-weight: 700; }

.cta-heading {
    color: var(--primary-red);
    font-size: 2.2rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 790;
}


.btn-cta {
    background-color: var(--primary-red);
    color: white;
    border: none;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: #a90226;
    color: white;
    transform: translateY(-3px);
}

/* ==================== NEW CSS FOR HEXAGON IMAGE ==================== */


.cta-section .container {
    position: relative; 
}


.cta-hex-left {
    position: absolute; 
    left: 0;             
    top: 40%;           
    transform: translateY(-60%); 
    
    height: 240px;      
    width: auto;
    z-index: 1;      
    opacity: 0.5;
}


@media (max-width: 1200px) {
    .cta-hex-left {
        height: 180px;
        left: -20px; 
    }
}