/* Products Page Specific Styles */

/* Page Hero */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(190, 3, 0, 0.9), rgba(160, 2, 0, 0.9)), 
                url('../assets/images/manufacture/IMG_4085.JPG') center/cover;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Products Overview */
.products-overview {
    padding: 6rem 0;
    background-color: white;
}

.overview-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.production-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.production-features .feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.production-features .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.production-features .feature-item i {
    font-size: 3rem;
    color: #be0300;
    margin-bottom: 1.5rem;
}

.production-features .feature-item h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
}

.production-features .feature-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Product Sections */
.product-section {
    padding: 6rem 0;
}

.billet-section {
    background-color: #f8f9fa;
}

.slab-section {
    background-color: white;
}

.product-header {
    margin-bottom: 4rem;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be0300, #a00200);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 3rem;
    color: white;
}

.product-title h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.product-title p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.product-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.product-description h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2rem;
    border-bottom: 3px solid #be0300;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.product-specs {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border-right: 4px solid #be0300;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slab-section .product-specs {
    background-color: #f8f9fa;
}

.product-specs h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
    margin: 0;
}

.product-specs li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li::before {
    content: '▸';
    color: #be0300;
    font-weight: bold;
    margin-left: 0.8rem;
    font-size: 1.2rem;
}

.applications {
    margin-top: 2rem;
}

.applications h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.application-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slab-section .application-item {
    background-color: #f8f9fa;
}

.application-item:hover {
    transform: translateY(-5px);
}

.application-item i {
    font-size: 2rem;
    color: #be0300;
}

.application-item span {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    font-weight: 500;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Specifications Table */
.specifications-table {
    margin-top: 4rem;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specifications-table h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

thead {
    background: linear-gradient(135deg, #be0300, #a00200);
    color: white;
}

thead th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

tbody tr {
    transition: background-color 0.3s ease;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #e9ecef;
}

tbody td {
    padding: 1.2rem 1rem;
    text-align: center;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Custom Orders */
.custom-orders {
    margin-top: 4rem;
    background: linear-gradient(135deg, #be0300, #a00200);
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.custom-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.custom-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-align: center;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.custom-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.custom-feature:hover {
    transform: translateY(-5px);
}

.custom-feature i {
    font-size: 2.5rem;
    color: white;
}

.custom-feature span {
    font-weight: 500;
    color: white;
    text-align: center;
}

/* Production Process */
.production-process {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #be0300, #a00200);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin-bottom: 2rem;
}

.step-icon i {
    font-size: 3rem;
    color: #be0300;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Standards */
.standards {
    padding: 6rem 0;
    background-color: white;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.standard-item {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.standard-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #be0300;
}

.standard-icon {
    margin-bottom: 2rem;
}

.standard-icon i {
    font-size: 4rem;
    color: #be0300;
}

.standard-item h4 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.standard-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .production-features {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specifications-table,
    .custom-orders {
        padding: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 2.5rem 2rem;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-icon i {
        font-size: 2rem;
    }
    
    .product-title h2 {
        font-size: 2rem;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .specifications-table,
    .custom-orders {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .standard-item {
        padding: 2rem;
    }
    
    .custom-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    thead th,
    tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}
