/* Product Details Page Styles */

/* ===== MAIN LAYOUT ===== */
body.single-products .product-detail-page,
body.single-parts .product-detail-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.single-products .product-detail-page .container,
body.single-parts .product-detail-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== PRODUCT HERO ===== */
body.single-products .product-hero,
body.single-parts .product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    background: #fff;
    overflow: hidden;
}

body.single-products .product-hero-image,
body.single-parts .product-hero-image {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body.single-products .hero-main-image,
body.single-parts .hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
}

body.single-products .placeholder-hero,
body.single-parts .placeholder-hero {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 500;
}

body.single-products .product-hero-info,
body.single-parts .product-hero-info {
    padding: 0.5rem 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

body.single-products .hero-product-title,
body.single-parts .hero-product-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: #111;
    font-weight: 700;
    line-height: 1.2;
}

body.single-products .hero-product-summary,
body.single-parts .hero-product-summary {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body.single-products .hero-category-tags,
body.single-parts .hero-category-tags {
    margin-bottom: 2rem;
}

body.single-products .hero-product-actions,
body.single-parts .hero-product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

body.single-products .hero-product-actions .theme-btn,
body.single-parts .hero-product-actions .theme-btn {
    align-self: flex-start;
}



body.single-products .hero-other-links,
body.single-parts .hero-other-links {
    margin-top: 2rem;
}

body.single-products .other-links-title,
body.single-parts .other-links-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

body.single-products .other-links-list,
body.single-parts .other-links-list {
    list-style: disc !important;
    padding-left: 1.5rem;
    margin: 0;
}

body.single-products .other-links-list li,
body.single-parts .other-links-list li {
    margin-bottom: 0.75rem;
    font-weight: 400;
    list-style: disc !important;
}

body.single-products .other-links-list a,
body.single-parts .other-links-list a {
    color: #186396;
    text-decoration: none;
    font-weight: 400 !important;
    transition: color 0.3s ease;
}

body.single-products .other-links-list a:hover,
body.single-parts .other-links-list a:hover {
    color: #0d4a6b;
    text-decoration: underline;
}

body.single-products .hero-btn,
body.single-parts .hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}



body.single-products .hero-btn-secondary,
body.single-parts .hero-btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

body.single-products .hero-btn-secondary:hover,
body.single-parts .hero-btn-secondary:hover {
    background: #f8f9fa;
    color: #000;
    text-decoration: none;
}


/* ===== SECTION HEADERS ===== */
body.single-products .section-header,
body.single-parts .section-header {
    text-align: left;
    margin-bottom: 4rem;
}

body.single-products .section-header h2,
body.single-parts .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

body.single-products .section-header p,
body.single-parts .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
body.single-products .product-features-section,
body.single-parts .product-features-section {
    margin-bottom: 0;
    background: white;
    padding: 5rem 0;
    width: 100%;
}

body.single-products .features-table,
body.single-parts .features-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.single-products .features-comparison,
body.single-parts .features-comparison {
    width: 100%;
    border-collapse: collapse;
}

body.single-products .features-comparison th,
body.single-parts .features-comparison th {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.single-products .features-comparison td,
body.single-parts .features-comparison td {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

body.single-products .feature-name,
body.single-parts .feature-name {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

body.single-products .feature-standard,
body.single-products .feature-optional,
body.single-parts .feature-standard,
body.single-parts .feature-optional {
    text-align: center;
}

body.single-products .checkmark,
body.single-parts .checkmark {
    color: #28a745;
    font-weight: bold;
    font-size: 1.5rem;
}

/* ===== SPECIFICATIONS SECTION ===== */
body.single-products .product-specifications-section,
body.single-parts .product-specifications-section {
    margin-bottom: 0;
    background: #F7F6F2;
    padding: 5rem 0;
    width: 100%;
}

body.single-products .specs-tables,
body.single-parts .specs-tables {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

body.single-products .specs-row,
body.single-parts .specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

body.single-products .specs-table,
body.single-parts .specs-table {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.single-products .specs-table h3,
body.single-parts .specs-table h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    border-bottom: 3px solid #007bff;
    padding-bottom: 1rem;
}

body.single-products .specs-comparison,
body.single-parts .specs-comparison {
    width: 100%;
    border-collapse: collapse;
}

body.single-products .specs-comparison td,
body.single-parts .specs-comparison td {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 1.1rem;
}

body.single-products .specs-comparison tr:last-child td,
body.single-parts .specs-comparison tr:last-child td {
    border-bottom: none;
}

body.single-products .spec-name,
body.single-parts .spec-name {
    font-weight: 500;
    color: #333;
}

/* ===== ACCESSORIES SECTION ===== */
body.single-products .product-accessories-section,
body.single-parts .product-accessories-section {
    margin-bottom: 0;
    background: white;
    padding: 5rem 0;
    width: 100%;
}

body.single-products .accessories-grid,
body.single-parts .accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

body.single-products .accessory-item,
body.single-parts .accessory-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

body.single-products .accessory-item:hover,
body.single-parts .accessory-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body.single-products .accessory-image,
body.single-parts .accessory-image {
    height: 250px;
    overflow: hidden;
}

body.single-products .accessory-image img,
body.single-parts .accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.single-products .accessory-item:hover .accessory-image img,
body.single-parts .accessory-item:hover .accessory-image img {
    transform: scale(1.05);
}

body.single-products .accessory-content,
body.single-parts .accessory-content {
    padding: 2.5rem;
}

body.single-products .accessory-content h3,
body.single-parts .accessory-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

body.single-products .accessory-content p,
body.single-parts .accessory-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== RESOURCES SECTION ===== */
body.single-products .product-resources-section,
body.single-parts .product-resources-section,
body.single-solutions .product-resources-section,
body.single-industries .product-resources-section {
    margin-bottom: 0;
    background: white;
    padding: 3rem 0;
    width: 100%;
}

body.single-products .product-resources-section .container,
body.single-parts .product-resources-section .container,
body.single-solutions .product-resources-section .container,
body.single-industries .product-resources-section .container {
    max-width: none;
    margin: 0;
    padding: 0;
}

body.single-products .resources-list,
body.single-parts .resources-list,
body.single-solutions .resources-list,
body.single-industries .resources-list,
body.single-case-studies .resources-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

body.single-products .resource-category h3,
body.single-parts .resource-category h3,
body.single-solutions .resource-category h3,
body.single-industries .resource-category h3,
body.single-case-studies .resource-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #186396;
}

body.single-products .resource-items,
body.single-parts .resource-items,
body.single-solutions .resource-items,
body.single-industries .resource-items,
body.single-case-studies .resource-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.single-products .resource-item,
body.single-parts .resource-item,
body.single-solutions .resource-item,
body.single-industries .resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

body.single-products .resource-item:hover,
body.single-parts .resource-item:hover,
body.single-solutions .resource-item:hover,
body.single-industries .resource-item:hover,
body.single-case-studies .resource-item:hover {
    color: #186396;
    border-bottom-color: #186396;
}

body.single-products .resource-icon,
body.single-parts .resource-icon,
body.single-solutions .resource-icon,
body.single-industries .resource-icon,
body.single-case-studies .resource-icon {
    font-size: 1.2rem;
    color: #186396;
}

body.single-products .resource-title,
body.single-parts .resource-title,
body.single-solutions .resource-title,
body.single-industries .resource-title,
body.single-case-studies .resource-title {
    font-weight: 500;
    font-size: 1rem;
}

/* ===== PRODUCT SUPPORT SECTION ===== */
body.single-products .product-support-section,
body.single-parts .product-support-section,
body.single-industries .product-support-section,
body.single-case-studies .product-support-section,
body.single-solutions .product-support-section {
    background-color: #ffffff;
    padding: 4rem 0;
    width: 100%;
    border-top: 2px solid #186396;
    border-bottom: 2px solid #186396;
}

body.single-products .product-support-section .support-header,
body.single-parts .product-support-section .support-header,
body.single-industries .product-support-section .support-header,
body.single-case-studies .product-support-section .support-header,
body.single-solutions .product-support-section .support-header {
    max-width: 1320px;
    margin: 0 auto 3rem auto;
    padding: 0 10px;
    text-align: center;
    color: #ffffff;
}

body.single-products .product-support-section .support-items,
body.single-parts .product-support-section .support-items,
body.single-industries .product-support-section .support-items,
body.single-case-studies .product-support-section .support-items,
body.single-solutions .product-support-section .support-items {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
}

body.single-products .support-header,
body.single-parts .support-header,
body.single-industries .support-header,
body.single-case-studies .support-header,
body.single-solutions .support-header {
    text-align: center;
    margin-bottom: 3rem;
}

body.single-products .support-header h2,
body.single-parts .support-header h2,
body.single-industries .support-header h2,
body.single-case-studies .support-header h2,
body.single-solutions .support-header h2 {
    color: #186396;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

body.single-products .support-header p,
body.single-parts .support-header p,
body.single-industries .support-header p,
body.single-case-studies .support-header p,
body.single-solutions .support-header p {
    color: #186396;
    font-size: 1.1rem;
}

body.single-products .support-items,
body.single-parts .support-items,
body.single-industries .support-items,
body.single-case-studies .support-items,
body.single-solutions .support-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

body.single-products .support-item,
body.single-parts .support-item,
body.single-industries .support-item,
body.single-case-studies .support-item,
body.single-solutions .support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #186396;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

body.single-products .support-item:hover,
body.single-parts .support-item:hover,
body.single-industries .support-item:hover,
body.single-case-studies .support-item:hover,
body.single-solutions .support-item:hover {
    background: #004C7F;
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

body.single-products .support-item i,
body.single-parts .support-item i,
body.single-industries .support-item i,
body.single-case-studies .support-item i,
body.single-solutions .support-item i {
    font-size: 1.5rem;
    color: white;
    width: 24px;
    text-align: center;
}

/* Make shopping cart icon smaller */
body.single-products .support-item .fa-shopping-cart,
body.single-parts .support-item .fa-shopping-cart,
body.single-industries .support-item .fa-shopping-cart,
body.single-case-studies .support-item .fa-shopping-cart,
body.single-solutions .support-item .fa-shopping-cart {
    font-size: 1.2rem;
}

/* Make external link icon smaller */
body.single-products .support-item .fa-external-link-alt,
body.single-parts .support-item .fa-external-link-alt,
body.single-industries .support-item .fa-external-link-alt,
body.single-case-studies .support-item .fa-external-link-alt,
body.single-solutions .support-item .fa-external-link-alt {
    font-size: 0.75rem;
    margin-left: 4px;
}

body.single-products .support-content,
body.single-parts .support-content,
body.single-industries .support-content,
body.single-case-studies .support-content,
body.single-solutions .support-content {
    display: flex;
    flex-direction: column;
}

body.single-products .support-label,
body.single-parts .support-label,
body.single-industries .support-label,
body.single-case-studies .support-label,
body.single-solutions .support-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    color: #fff;
}

body.single-products .support-link,
body.single-parts .support-link,
body.single-industries .support-link {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.single-products .support-link:hover,
body.single-parts .support-link:hover,
body.single-industries .support-link:hover {
    color: #f7f6f2;
}

/* ===== RELATED CONTENT SECTION ===== */
body.single-products .product-related-section,
body.single-parts .product-related-section,
body.single-industries .product-related-section {
    background: white;
    padding: 3rem 0;
}

body.single-products .product-related-section .container,
body.single-parts .product-related-section .container,
body.single-industries .product-related-section .container {
    max-width: none;
    margin: 0;
    padding: 0;
}

body.single-products .related-content-category,
body.single-parts .related-content-category,
body.single-industries .related-content-category {
    margin-bottom: 3rem;
}

body.single-products .related-content-category:last-child,
body.single-parts .related-content-category:last-child,
body.single-industries .related-content-category:last-child {
    margin-bottom: 0;
}

body.single-products .related-content-category h3,
body.single-parts .related-content-category h3,
body.single-industries .related-content-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #186396;
    padding-bottom: 0.5rem;
}
.carousel-card h3 {
    border-bottom: 0px;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
    color: #186396;
}

body.single-products .carousel-card p,
body.single-parts .carousel-card p,
body.single-industries .carousel-card p {
    text-align: left !important;
}

body.single-products .category-links,
body.single-parts .category-links,
body.single-industries .category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

body.single-products .category-link,
body.single-parts .category-link,
body.single-industries .category-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #186396;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

body.single-products .category-link:hover,
body.single-parts .category-link:hover,
body.single-industries .category-link:hover {
    background: #0f4c75;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(24, 99, 150, 0.3);
}



/* ===== FAQ SECTION ===== */
body.single-products .product-faq-section,
body.single-parts .product-faq-section,
body.single-industries .product-faq-section {
    margin-bottom: 0;
    background: white;
    padding: 3rem 0;
    width: 100%;
}

body.single-products .product-faq-section .container,
body.single-parts .product-faq-section .container,
body.single-industries .product-faq-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===== BUTTONS ===== */
body.single-products .product-detail-page .btn,
body.single-parts .product-detail-page .btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

body.single-products .product-detail-page .btn-primary,
body.single-parts .product-detail-page .btn-primary {
    background: #007bff;
    color: white;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

body.single-products .product-detail-page .btn-primary:hover,
body.single-parts .product-detail-page .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

body.single-products .product-detail-page .btn-secondary,
body.single-parts .product-detail-page .btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

body.single-products .product-detail-page .btn-secondary:hover,
body.single-parts .product-detail-page .btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

body.single-products .product-detail-page .btn-outline,
body.single-parts .product-detail-page .btn-outline {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

body.single-products .product-detail-page .btn-outline:hover,
body.single-parts .product-detail-page .btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

body.single-products .product-detail-page .btn-large,
body.single-parts .product-detail-page .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

body.single-products .product-detail-page .btn-sm,
body.single-parts .product-detail-page .btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body.single-products .support-items,
    body.single-parts .support-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    body.single-products .support-item,
    body.single-parts .support-item {
        padding: 1rem;
    }
    body.single-products .product-detail-page .container,
    body.single-parts .product-detail-page .container {
        padding: 0 1rem;
    }
    
    body.single-products .resources-list,
    body.single-parts .resources-list,
    body.single-solutions .resources-list,
    body.single-industries .resources-list,
    body.single-case-studies .resources-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    body.single-products .product-hero,
    body.single-parts .product-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    body.single-products .product-hero-image,
    body.single-parts .product-hero-image {
        height: 400px;
    }
    
    body.single-products .product-hero-info,
    body.single-parts .product-hero-info {
        padding: 2rem 1rem;
    }
    
    body.single-products .hero-product-title,
    body.single-parts .hero-product-title {
        font-size: 2rem;
    }
    
    body.single-products .hero-product-actions,
    body.single-parts .hero-product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    body.single-products .hero-btn,
    body.single-products .theme-btn,
    body.single-parts .hero-btn,
    body.single-parts .theme-btn {
        width: 100%;
    }
    

    
    /* ===== GALLERY SYSTEM ===== */
    /* Gallery styles are now unified in gallery-shared.css */
    
    
    
    body.single-products .features-comparison,
    body.single-parts .features-comparison {
        font-size: 0.9rem;
    }
    
    body.single-products .features-comparison th,
    body.single-products .features-comparison td,
    body.single-parts .features-comparison th,
    body.single-parts .features-comparison td {
        padding: 1.5rem 1rem;
    }
    
    body.single-products .specs-row,
    body.single-parts .specs-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    body.single-products .accessories-grid,
    body.single-parts .accessories-grid {
        grid-template-columns: 1fr;
    }
    

    
    body.single-products .product-header,
    body.single-products .product-features-section,
    body.single-products .product-specifications-section,
    body.single-products .product-accessories-section,
    body.single-products .product-resources-section,
    body.single-products .product-related-section,
    body.single-products .product-faq-section,
    body.single-parts .product-header,
    body.single-parts .product-features-section,
    body.single-parts .product-specifications-section,
    body.single-parts .product-accessories-section,
    body.single-parts .product-resources-section,
    body.single-parts .product-related-section,
    body.single-parts .product-faq-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    body.single-products .hero-product-title,
    body.single-parts .hero-product-title {
        font-size: 1.8rem;
        text-align: left;
    }
    
    body.single-products .section-header h2,
    body.single-parts .section-header h2 {
        font-size: 2rem;
    }
    
    body.single-products .features-comparison,
    body.single-parts .features-comparison {
        font-size: 0.8rem;
    }
    
    body.single-products .product-header,
    body.single-products .product-features-section,
    body.single-products .product-specifications-section,
    body.single-products .product-accessories-section,
    body.single-products .product-resources-section,
    body.single-products .product-related-section,
    body.single-products .product-faq-section,
    body.single-parts .product-header,
    body.single-parts .product-features-section,
    body.single-parts .product-specifications-section,
    body.single-parts .product-accessories-section,
    body.single-parts .product-resources-section,
    body.single-parts .product-related-section,
    body.single-parts .product-faq-section {
        padding: 2rem 0;
    }
    
    body.single-products .product-detail-page .btn,
    body.single-parts .product-detail-page .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
} 


/* Product Description Sections */
body.single-products .product-description-sections,
body.single-parts .product-description-sections {
    padding: 3rem 0;
    background-color: white;
}

body.single-products .product-description-sections .container,
body.single-parts .product-description-sections .container {
    max-width: none;
    margin: 0;
    padding: 0;
}

body.single-products .description-sections-grid,
body.single-parts .description-sections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

body.single-products .description-section-wrapper,
body.single-parts .description-section-wrapper {
    background: white;
    padding: 1.5rem;
    flex: 1 1 400px;
    min-width: 0;
}

body.single-products .description-section .section-title,
body.single-parts .description-section .section-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #186396;
}

body.single-products .description-section .section-content,
body.single-parts .description-section .section-content {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

body.single-products .description-section .section-content ul,
body.single-parts .description-section .section-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}



/* Add disc bullets for Includes section */
body.single-products .description-section .section-content ul,
body.single-parts .description-section .section-content ul {
    padding-left: 1.5rem;
}

body.single-products .description-section .section-content li,
body.single-parts .description-section .section-content li {
    list-style: disc !important;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Specific section styling */
body.single-products .description-section-includes .section-title,
body.single-parts .description-section-includes .section-title {
    border-bottom-color: #186396;
}

body.single-products .description-section-optional-additions .section-title,
body.single-parts .description-section-optional-additions .section-title {
    border-bottom-color: #186396;
}

body.single-products .description-section-features .section-title,
body.single-parts .description-section-features .section-title {
    border-bottom-color: #186396;
}

body.single-products .description-section-specifications .section-title,
body.single-parts .description-section-specifications .section-title {
    border-bottom-color: #186396;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body.single-products .description-sections-grid,
    body.single-parts .description-sections-grid {
        gap: 1.5rem;
    }
    
    body.single-products .description-section-wrapper,
    body.single-parts .description-section-wrapper {
        flex: 1 1 100%;
        padding: 1rem;
    }
} 

/* Product Description Summary */
body.single-products .product-description-summary,
body.single-parts .product-description-summary {
    padding: 3rem 0;
    background-color: #f7f6f2;
    margin-top: 2rem;
}

body.single-products .description-summary-content,
body.single-parts .description-summary-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

body.single-products .description-summary-content h2,
body.single-parts .description-summary-content h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding: 0;
}

body.single-products .description-summary-text,
body.single-parts .description-summary-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
    padding: 0;
}

body.single-products .description-summary-text p,
body.single-parts .description-summary-text p {
    margin-bottom: 1rem;
}

body.single-products .description-summary-text ul,
body.single-parts .description-summary-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

body.single-products .description-summary-text li,
body.single-parts .description-summary-text li {
    margin-bottom: 0.5rem;
    list-style: disc;
} 

.product-resources-section {
    margin-bottom: 20px;
}

.single-case-studies .breadcrumb {
    margin-bottom: 40px !important;
}
.single-case-studies .subheader-container {
    padding-bottom: 0px !important;
}
