
/* Product Detail Layout - Industrial Theme */

:root {
    --primary-red: #8B050C;
    --primary-gray: #51524C;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
}

.product-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.product-section:nth-child(even) {
    background-color: var(--light-bg);
}

.product-section .container {
    max-width: 1200px;
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(139, 5, 12, 0.5), rgba(0, 0, 0, 0));
    margin: 0;
}

/* Gallery Styles */
.product-gallery {
    margin-bottom: 30px;
}

.main-image-container {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.main-image-container img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image-container:hover img {
    transform: scale(1.05);
}

/* Technical Specs Below Image */
.specs-below-image {
    margin-top: 25px;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-left: 4px solid var(--primary-red);
    border-radius: 0 4px 4px 0;
}

.specs-below-image h5 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.specs-below-image p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.specs-below-image strong {
    color: var(--industrial-gray);
}


/* Info Column Spacing */
.product-info-column {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 992px) {
    .product-section.image-left .product-info-column {
        padding-left: 40px;
    }
    
    .product-section.image-right .product-info-column {
        padding-right: 40px;
    }
    
    .product-section.image-right .row {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991px) {
    .product-info-column {
        margin-top: 30px;
        text-align: center;
    }
    
    .info-item {
        text-align: left;
    }
    
    .product-label {
        margin: 0 auto 15px;
    }
}

.product-label {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-item h5::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--primary-red);
    margin-right: 12px;
    display: inline-block;
}

.info-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.btn-product-quote {
    background: var(--primary-red);
    color: #fff !important;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-product-quote:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 15px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-card ul li::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


