/* Product Detail Page Styles */

.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1d4ed8;
}

.breadcrumb-nav span {
    color: #6b7280;
}

/* Product Hero */
.product-hero {
    padding: 3rem 0;
    background: white;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item strong {
    color: #2563eb;
    margin-right: 0.5rem;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product Details */
.product-details {
    padding: 4rem 0;
    background: #f8fafc;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.details-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.details-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 2rem 0 1rem;
}

.details-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.application-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.application-card h4 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.application-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Specifications */
.specifications {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spec-card h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-table td:first-child {
    font-weight: 500;
    color: #2d3748;
}

.spec-table td:last-child {
    color: #4a5568;
    text-align: right;
}

.series-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.series-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #2563eb;
}

.series-item h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.series-item p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Product Categories (for power filters) */
.product-categories {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.category-header h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.category-features ul {
    list-style: none;
}

.category-features li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.category-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Technical Specs */
.technical-specs {
    padding: 4rem 0;
    background: #f8fafc;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spec-category h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

/* Applications Section */
.applications {
    padding: 4rem 0;
    background: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.application-item {
    text-align: center;
    padding: 2rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.application-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .product-hero,
    .product-details,
    .product-categories,
    .technical-specs,
    .applications {
        padding: 2rem 0;
    }

    .product-info h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .spec-card,
    .category-card {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/*logo*/

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 40px;   /* Adjust logo height */
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;    /* Change color based on your header background */
    font-family: 'Inter', sans-serif;
}
