/* Product Pages Styling */

/* Global Product Page Styles */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Hero */
.product-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a2840 0%, #243552 100%);
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 32, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.product-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.product-breadcrumb a:hover {
    color: var(--primary-red);
}

.product-breadcrumb span:last-child {
    color: white;
    font-weight: 600;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 32, 40, 0.3);
}

.product-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.product-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.product-quick-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.quick-spec {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: all 0.3s;
}

.quick-spec:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.quick-spec i {
    font-size: 2rem;
    color: var(--primary-red);
}

.quick-spec .spec-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.quick-spec .spec-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.product-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.product-hero-image:hover img {
    transform: scale(1.03);
}

.product-hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 40, 64, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Product Overview */
.product-overview {
    position: relative;
}

.overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.overview-text h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.overview-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 40, 64, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    opacity: 1;
    transition: all 0.3s;
}

.video-container:hover .video-overlay {
    background: rgba(26, 40, 64, 0.8);
}

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

.video-overlay i {
    font-size: 4rem;
    color: var(--primary-red);
}

.video-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technical Specifications */
.product-specs {
    position: relative;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.spec-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.spec-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.spec-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.spec-category-header i {
    font-size: 2rem;
    color: var(--primary-red);
}

.spec-category-header h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin: 0;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: var(--dark-blue);
    font-weight: 700;
}

/* Image Gallery */
.product-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: #f5f5f5;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    background: #f5f5f5;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Applications */
.product-applications {
    padding: 80px 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.application-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.application-card:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
}

.app-icon i {
    font-size: 2rem;
    color: white;
}

.application-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.application-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Product CTA */
.product-cta {
    background: linear-gradient(135deg, #1a2840 0%, #0f1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 32, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark-blue);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-options {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 10px;
}

.cta-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-3px);
}

.cta-option i {
    font-size: 1.6rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.cta-option:hover i {
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .product-hero {
        padding: 120px 0 60px;
        min-height: 500px;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-quick-specs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-spec {
        padding: 15px;
    }
    
    .quick-spec .spec-value {
        font-size: 1.5rem;
    }
    
    .product-hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .cta-options {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .product-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-options {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}