/* Clean Product Page Styles - No Elementor Dependencies */

/* ==========================================================================
   Product Page Layout
   ========================================================================== */

.product-page {
    background: #ffffff;
    overflow-x: hidden;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-single {
    margin: 0;
}

/* ==========================================================================
   Product Hero Section
   ========================================================================== */

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #e5e7eb;
}

.product-hero-content {
    padding-right: 40px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000776;
    margin: 0 0 30px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

.product-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Product Features Section
   ========================================================================== */

.product-features {
    padding: 60px 0;
    background: #f9fafb;
    margin: 0 -20px 60px;
}

.product-features > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000776;
    text-align: center;
    margin: 0 0 50px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 7, 118, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000776 0%, #2277B0 100%);
    border-radius: 50%;
    padding: 15px;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   Product Gallery
   ========================================================================== */

.product-gallery {
    padding: 60px 0;
}

.product-gallery > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000776;
    text-align: center;
    margin: 0 0 50px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* ==========================================================================
   Technical Specifications
   ========================================================================== */

.product-specs {
    padding: 60px 0;
    background: #f9fafb;
    margin: 0 -20px;
}

.product-specs > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000776;
    text-align: center;
    margin: 0 0 50px;
    text-transform: uppercase;
}

.specs-table {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: auto;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.specs-table th {
    background: linear-gradient(135deg, #000776 0%, #2277B0 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
    letter-spacing: 0.5px;
}

.specs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #374151;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background: #f9fafb;
}

.specs-table tr:hover {
    background: #f3f4f6;
}

/* ==========================================================================
   Product Navigation
   ========================================================================== */

.product-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.product-navigation a {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-navigation a:hover {
    background: #ffffff;
    border-color: #000776;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-navigation .nav-next {
    text-align: right;
}

.product-navigation .nav-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-navigation .nav-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000776;
}

/* ==========================================================================
   Product Meta
   ========================================================================== */

.product-meta {
    padding: 20px 0;
    text-align: center;
}

.product-category {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Typography Overrides
   ========================================================================== */

.product-page ul,
.product-page ol {
    padding-left: 30px;
    margin: 20px 0;
}

.product-page li {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 12px;
}

.product-page li::marker {
    color: #000776;
}

.product-page b,
.product-page strong {
    color: #000776;
    font-weight: 700;
}

/* ==========================================================================
   Imported HTML Safety Overrides
   ========================================================================== */

.product-container img {
    max-width: 100%;
    height: auto;
}

.product-container table {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .product-hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .product-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .product-container {
        padding: 0 15px;
    }
    
    .product-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .product-description {
        font-size: 16px;
    }
    
    .product-features,
    .product-specs {
        margin: 0 -15px 40px;
    }
    
    .product-features > h2,
    .product-gallery > h2,
    .product-specs > h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table {
        padding: 0 15px;
    }
    
    .specs-table table {
        font-size: 14px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 12px 15px;
    }
    
    .product-navigation {
        grid-template-columns: 1fr;
    }
    
    .product-navigation .nav-next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 40px 0 30px;
    }
    
    .product-title {
        font-size: 26px;
    }
    
    .product-features > h2,
    .product-gallery > h2,
    .product-specs > h2 {
        font-size: 24px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-navigation a {
        padding: 20px;
    }
}
