/* ==========================================================================
   Base Configuration & Design Tokens
   ========================================================================== */

:root {
    --product-primary: #214f99;
    --product-primary-dark: #17396f;
    --product-navy: #08101c;
    --product-text: #111827;
    --product-muted: #667085;
    --product-light: #f8fafc;
    --product-border: #e5e7eb;
    --product-soft-border: #eef2f7;
    --product-white: #ffffff;
    --product-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --product-shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.12);
}

/* Global Reset for Box Model to prevent breaking */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ==========================================================================
   Breadcrumbs Section
   ========================================================================== */

.product-breadcrumbs {
    padding: 18px 0;
    background: var(--product-white);
    border-bottom: 1px solid var(--product-border);
}

.product-breadcrumbs .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.product-breadcrumbs a {
    color: var(--product-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-breadcrumbs a:hover {
    color: var(--product-primary-dark);
}

.product-breadcrumbs span {
    color: #98a2b3;
    font-size: 15px;
}

.product-breadcrumbs strong {
    color: var(--product-text);
    font-size: 15px;
    font-weight: 700;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.product-hero {
    padding: 140px 0;
    background: linear-gradient(rgba(8, 15, 28, 0.88), rgba(8, 15, 28, 0.88)), url('../images/products/product-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 56px;
    align-items: center;
}

.product-hero-content {
    color: var(--product-white);
}

.product-hero-content h1 {
    margin: 24px 0;
    color: var(--product-white);
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    animation: productFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-hero-content p {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.9;
    animation: productFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-image img {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

/* ==========================================================================
   Overview / Quick Specs Section
   ========================================================================== */

.product-quick-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-top: 38px;
}

.spec-box {
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.spec-box span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.spec-box strong {
    color: var(--product-white);
    font-size: 18px;
}

/* ==========================================================================
   Content Layout Section
   ========================================================================== */

.product-content-section {
    padding: 100px 0;
    background: var(--product-light);
}

.product-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* ==========================================================================
   Sidebar Section (Desktop Only)
   ========================================================================== */

.product-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card,
.product-inquiry-box {
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: var(--product-shadow);
}

.sidebar-card {
    padding: 30px;
    background: var(--product-white);
    border: 1px solid var(--product-border);
}

.sidebar-card h3 {
    margin: 0 0 24px;
    color: var(--product-text);
    font-size: 24px;
    font-weight: 700;
}

.menu-title {
    margin-bottom: 12px;
    color: var(--product-primary);
    font-size: 16px;
    font-weight: 700;
}

.sidebar-menu {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 12px;
    color: #555;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sidebar-menu a:hover {
    background: var(--product-primary);
    color: var(--product-white);
    transform: translateX(3px);
}

.sidebar-contact {
    padding: 30px;
    background: var(--product-primary);
    border-radius: 8px;
    color: var(--product-white);
}

.sidebar-contact h3 {
    margin: 0 0 15px;
    color: var(--product-white);
}

.sidebar-contact p {
    margin: 0 0 20px;
    line-height: 1.8;
}

.sidebar-btn,
.inquiry-btn {
    display: block;
    padding: 14px 20px;
    background: var(--product-white);
    color: var(--product-primary);
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.sidebar-btn:hover,
.inquiry-btn:hover {
    transform: translateY(-2px);
    background: #eef3f9;
}

/* ==========================================================================
   Product Inquiry Box Section
   ========================================================================== */

.product-inquiry-box {
    padding: 30px;
    background: var(--product-primary);
    color: var(--product-white);
}

.product-inquiry-box h3 {
    margin: 0 0 20px;
    color: var(--product-white);
    font-size: 24px;
    font-weight: 700;
}

.product-inquiry-box ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.product-inquiry-box ul li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;
    color: #eef3ff;
}

.product-inquiry-box ul li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #b7e3c1;
    font-weight: 700;
}

.product-inquiry-box .wpcf7 {
    margin-top: 20px;
}

.product-inquiry-box label {
    display: block;
    margin-bottom: 6px;
    color: var(--product-white);
    font-size: 13px;
    font-weight: 600;
}

.product-inquiry-box .wpcf7-form p {
    margin-bottom: 15px;
}

.product-inquiry-box input,
.product-inquiry-box textarea {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.product-inquiry-box textarea {
    min-height: 100px;
    resize: vertical;
}

.product-inquiry-box input[type="submit"] {
    width: 100%;
    background: var(--product-white);
    color: var(--product-primary);
    border: 0;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.product-inquiry-box input[type="submit"]:hover {
    transform: translateY(-2px);
    background: #eef3f9;
}

/* ==========================================================================
   Main Content Block
   ========================================================================== */

.product-content > section {
    margin-bottom: 34px;
    padding: 40px;
    background: var(--product-white);
    border: 1px solid var(--product-border);
    border-radius: 8px;
    box-shadow: var(--product-shadow);
}

.product-content h2 {
    margin: 0 0 24px;
    color: var(--product-text);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.product-content p {
    color: var(--product-muted);
    line-height: 1.9;
}

/* ==========================================================================
   Specifications Table Section - Bulletproof Force-Scrolling
   ========================================================================== */

/* Universal table parent wrapper fix */
.table-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 25px;
    border: 1px solid var(--product-border);
    border-radius: 6px;
}

/* Force Table Behavior on Mobile to stick inside content */
.spec-table, 
.product-content table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    display: table !important;
}

/* Prevent text wrapping & keep columns readable */
.spec-table th, .product-content table th {
    padding: 14px 16px;
    background: var(--product-primary) !important;
    color: var(--product-white) !important;
    text-align: left;
    font-weight: 700;
    white-space: nowrap !important;
}

.spec-table td, .product-content table td {
    padding: 14px 16px;
    border-top: 1px solid var(--product-border);
    border-bottom: 1px solid var(--product-border);
    color: var(--product-muted);
    font-size: 14px;
    white-space: nowrap !important; /* Forces horizontal expansion inside wrapper */
}

.spec-table td:not(:last-child), .spec-table th:not(:last-child),
.product-content table td:not(:last-child), .product-content table th:not(:last-child) {
    border-right: 1px solid var(--product-border);
}

.spec-table tr:nth-child(even), .product-content table tr:nth-child(even) {
    background: var(--product-light) !important;
}

/* Forcing specific desktop min-width inside scroll area */
@media (max-width: 991px) {
    .spec-table, .product-content table {
        min-width: 680px !important; /* Table will safely expand and scroll horizontally */
    }
}

/* ==========================================================================
   Product Forms Section
   ========================================================================== */

.forms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.form-card {
    padding: 30px 20px;
    background: var(--product-light);
    border: 1px solid var(--product-soft-border);
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.form-card:hover {
    transform: translateY(-6px);
    background: var(--product-primary);
    box-shadow: var(--product-shadow-hover);
}

.form-card i {
    margin-bottom: 15px;
    color: var(--product-primary);
    font-size: 40px;
    transition: color 0.25s ease;
}

.form-card h3 {
    margin: 0;
    color: var(--product-text);
    font-size: 18px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.form-card:hover i,
.form-card:hover h3 {
    color: var(--product-white);
}

/* ==========================================================================
   Applications Section
   ========================================================================== */

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.application-card {
    padding: 34px 24px;
    background: var(--product-light);
    border: 1px solid var(--product-soft-border);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.application-card:hover {
    transform: translateY(-6px);
    border-color: #cbd7e5;
    box-shadow: var(--product-shadow-hover);
}

.application-card i {
    margin-bottom: 18px;
    color: var(--product-primary);
    font-size: 42px;
}

.application-card h3 {
    margin: 0;
    color: var(--product-text);
    font-size: 18px;
    font-weight: 700;
}

.applications-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.applications-content li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;
    color: var(--product-muted);
}

.applications-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--product-primary);
    font-weight: 700;
}

/* ==========================================================================
   Datasheet Section
   ========================================================================== */

.datasheet-box {
    padding: 48px;
    background: var(--product-primary);
    border-radius: 8px;
    color: var(--product-white);
}

.datasheet-box h2 {
    color: var(--product-white);
}

.datasheet-box p {
    color: rgba(255, 255, 255, 0.86);
}

.datasheet-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.datasheet-box .primary-btn {
    background: var(--product-white);
    border-color: var(--product-white);
    color: var(--product-primary);
}

.datasheet-box .primary-btn:hover {
    background: #eef3f9;
    border-color: #eef3f9;
    color: var(--product-primary);
}

.datasheet-box .secondary-btn {
    border-color: var(--product-white);
    color: var(--product-white);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    overflow: hidden;
    background: var(--product-white);
    border: 1px solid var(--product-border);
    border-radius: 8px;
}

.faq-item h3 {
    margin: 0 0 12px;
    color: var(--product-text);
    font-size: 20px;
    font-weight: 700;
}

.faq-item p {
    margin: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    background: var(--product-white);
    border: 0;
    color: var(--product-text);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    color: var(--product-primary);
    font-size: 28px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: var(--product-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ==========================================================================
   Timeline / Related Products Section
   ========================================================================== */

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.related-card {
    display: block;
    padding: 24px;
    background: var(--product-light);
    border: 1px solid var(--product-soft-border);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: var(--product-primary);
    box-shadow: var(--product-shadow);
}

.related-card h3 {
    margin: 0 0 10px;
    color: var(--product-text);
    font-size: 18px;
    font-weight: 700;
}

.related-card span {
    color: var(--product-primary);
    font-weight: 700;
}

/* ==========================================================================
   Product Navigation Section
   ========================================================================== */

.product-navigation {
    margin-top: 40px;
}

.nav-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-prev,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-prev a,
.nav-next a {
    display: block;
    padding: 20px;
    background: var(--product-white);
    border: 1px solid var(--product-border);
    border-radius: 8px;
    color: var(--product-primary);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-prev a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    border-color: #cbd7e5;
    box-shadow: var(--product-shadow);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.product-cta {
    padding: 140px 0;
    background: linear-gradient(rgba(8, 15, 28, 0.9), rgba(8, 15, 28, 0.9)), url('../images/products/product-cta.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.product-cta-content {
    max-width: 950px;
    margin: 0 auto;
}

.product-cta h2 {
    margin: 0 0 24px;
    color: var(--product-white);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.18;
}

.product-cta p {
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Global Button Components
   ========================================================================== */

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.primary-btn {
    background: var(--product-primary);
    border: 2px solid var(--product-primary);
    color: var(--product-white);
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: var(--product-primary-dark);
    border-color: var(--product-primary-dark);
    color: var(--product-white);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--product-white);
    color: var(--product-white);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: var(--product-white);
    color: var(--product-text);
}

/* ==========================================================================
   Animations Architecture
   ========================================================================== */

@keyframes productFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Section - 1200px (Desktop / Large Tablet Edge)
   ========================================================================== */

@media (max-width: 1200px) {
    .product-hero-content h1 {
        font-size: 58px;
    }

    .product-hero-grid {
        gap: 40px;
    }

    .product-layout {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 32px;
    }

    .forms-grid,
    .related-grid,
    .applications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================================================
   Responsive Section - 991px (Standard Tablet Layout)
   ========================================================================== */

@media (max-width: 991px) {
    .product-hero {
        padding: 115px 0;
    }

    .product-hero-grid,
    .product-layout {
        grid-template-columns: 1fr;
    }

    /* Target Device Architecture: Clear Sidebar from non-desktop viewpoints */
    .product-sidebar {
        display: none !important;
    }

    .product-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero-content h1 {
        font-size: 50px;
    }

    .product-content-section {
        padding: 80px 0;
    }

    .product-cta {
        padding: 110px 0;
    }

    .product-cta h2 {
        font-size: 44px;
    }
}

/* ==========================================================================
   Responsive Section - 768px (Small Tablet / Portrait Media)
   ========================================================================== */

@media (max-width: 768px) {
    .product-hero {
        padding: 92px 0;
    }

    .product-hero-content h1 {
        font-size: 38px;
    }

    .product-hero-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .product-quick-specs,
    .forms-grid,
    .applications-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .product-content > section {
        padding: 26px 22px;
    }

    .product-content h2 {
        font-size: 28px;
    }

    .datasheet-box {
        padding: 30px 22px;
    }

    .datasheet-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .nav-grid {
        flex-direction: column;
    }

    .nav-next {
        text-align: left;
    }

    .product-cta h2 {
        font-size: 36px;
    }

    .product-cta p {
        font-size: 18px;
    }
}

/* ==========================================================================
   Responsive Section - 480px (Smartphones / Mobile Devices)
   ========================================================================== */

@media (max-width: 480px) {
    .product-breadcrumbs {
        padding: 14px 0;
    }

    .product-hero {
        padding: 76px 0;
    }

    .product-hero-content h1 {
        margin: 18px 0;
        font-size: 31px;
    }

    .product-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .spec-box {
        padding: 16px;
    }

    .product-content-section {
        padding: 62px 0;
    }

    .product-content > section {
        margin-bottom: 24px;
        padding: 24px 18px;
    }

    .product-content h2 {
        font-size: 25px;
    }

    .form-card,
    .application-card,
    .related-card {
        padding: 24px 18px;
    }

    .faq-question {
        padding: 18px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 20px;
    }

    .datasheet-box {
        padding: 26px 18px;
    }

    .product-cta {
        padding: 82px 0;
    }

    .product-cta h2 {
        font-size: 30px;
    }

    .product-cta p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* ==========================================================================
   RESPONSIVE FIXES - PART 1
   ========================================================================== */

html,
body{
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

iframe{
    max-width:100%;
}

.product-image img{
    width:100%;
    height:auto;
    object-fit:cover;
}

.product-content,
.product-content-section,
.product-layout{
    min-width:0;
}

.product-content > section{
    overflow:hidden;
}

.datasheet-buttons a,
.cta-buttons a{
    white-space:normal;
    text-align:center;
}

/* TABLE SCROLL FIX */

.table-wrapper{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
}

.table-wrapper table,
.spec-table{
    min-width:700px;
}

@media(max-width:768px){

    .table-wrapper table,
    .spec-table{
        min-width:800px;
    }

}

/* ==========================================================================
   RESPONSIVE FIXES - PART 2
   ========================================================================== */

/* HERO SECTION */

@media(max-width:991px){

    .product-hero-grid{
        gap:32px;
    }

    .product-image{
        order:-1;
    }

    .product-image img{
        max-width:600px;
        margin:auto;
    }

}

@media(max-width:768px){

    .product-hero-content{
        text-align:center;
    }

    .product-hero-content h1{
        line-height:1.15;
    }

    .product-hero-content p{
        max-width:100%;
    }

}

/* QUICK SPECS */

@media(max-width:768px){

    .product-quick-specs{
        gap:12px;
    }

    .spec-box{
        text-align:center;
    }

}

@media(max-width:480px){

    .product-quick-specs{
        grid-template-columns:1fr;
    }

}

/* CONTENT SECTIONS */

@media(max-width:768px){

    .product-content > section{
        border-radius:6px;
    }

    .product-content p{
        font-size:15px;
        line-height:1.8;
    }

}

/* FORMS GRID */

@media(max-width:991px){

    .forms-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:480px){

    .forms-grid{
        grid-template-columns:1fr;
    }

}

/* APPLICATION GRID */

@media(max-width:991px){

    .applications-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:480px){

    .applications-grid{
        grid-template-columns:1fr;
    }

}

/* RELATED PRODUCTS */

@media(max-width:991px){

    .related-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:480px){

    .related-grid{
        grid-template-columns:1fr;
    }

}

/* FAQ FIX */

.faq-question{
    word-break:break-word;
}

.faq-answer{
    word-break:break-word;
}

@media(max-width:480px){

    .faq-question{
        font-size:15px;
        line-height:1.5;
    }

}

/* DATASHEET SECTION */

.datasheet-box{
    overflow:hidden;
}

.datasheet-buttons{
    width:100%;
}

.datasheet-buttons a{
    min-width:220px;
}

@media(max-width:768px){

    .datasheet-buttons a{
        width:100%;
        min-width:100%;
    }

}

/* PRODUCT NAVIGATION */

.nav-prev a,
.nav-next a{
    word-break:break-word;
}

@media(max-width:768px){

    .nav-grid{
        gap:12px;
    }

    .nav-prev,
    .nav-next{
        width:100%;
    }

}

/* BREADCRUMBS */

.product-breadcrumbs .container{
    row-gap:6px;
}

.product-breadcrumbs strong{
    word-break:break-word;
}

/* SAFETY FIXES */

.product-content img,
.product-content iframe,
.product-content video{
    max-width:100%;
    height:auto;
}

.product-content ul,
.product-content ol{
    padding-left:22px;
}

.product-content li{
    word-break:break-word;
}

.product-content h2,
.product-content h3,
.product-content h4{
    word-break:break-word;
}

/* EXTRA MOBILE PROTECTION */

@media(max-width:480px){

    .container{
        width:100%;
    }

    .product-content-section{
        overflow-x:hidden;
    }

    .product-content{
        overflow-x:hidden;
    }

}

/* ==========================================================================
   RESPONSIVE FIXES - PART 3
   ========================================================================== */

/* SIDEBAR CONTACT BOX */

.sidebar-contact,
.product-inquiry-box{
    overflow:hidden;
    word-wrap:break-word;
}

.sidebar-contact h3,
.product-inquiry-box h3{
    line-height:1.3;
}

.sidebar-contact p,
.product-inquiry-box p,
.product-inquiry-box li{
    word-break:break-word;
}

/* CONTACT FORM 7 */

.product-inquiry-box .wpcf7{
    width:100%;
}

.product-inquiry-box .wpcf7-form{
    width:100%;
}

.product-inquiry-box input,
.product-inquiry-box textarea,
.product-inquiry-box select{
    width:100%;
    max-width:100%;
    display:block;
}

.product-inquiry-box input[type="submit"]{
    min-height:52px;
}

/* BUTTON FIXES */

.primary-btn,
.secondary-btn,
.sidebar-btn,
.inquiry-btn{
    white-space:normal;
    text-align:center;
    line-height:1.5;
}

@media(max-width:768px){

    .sidebar-btn,
    .inquiry-btn,
    .primary-btn,
    .secondary-btn{
        width:100%;
    }

}

/* CARD FIXES */

.form-card,
.application-card,
.related-card{
    overflow:hidden;
}

.form-card h3,
.application-card h3,
.related-card h3{
    word-break:break-word;
    line-height:1.4;
}

.related-card span{
    display:block;
    margin-top:8px;
}

/* MOBILE TYPOGRAPHY */

@media(max-width:768px){

    .product-content h2{
        line-height:1.25;
    }

    .product-content h3{
        line-height:1.35;
    }

    .product-content p{
        font-size:15px;
    }

}

@media(max-width:480px){

    .product-content h2{
        font-size:24px;
    }

    .product-content h3{
        font-size:20px;
    }

    .product-content p,
    .product-content li{
        font-size:15px;
        line-height:1.8;
    }

}

/* CTA SECTION */

.product-cta-content{
    width:100%;
}

.product-cta h2{
    word-break:break-word;
}

.product-cta p{
    word-break:break-word;
}

@media(max-width:768px){

    .product-cta{
        text-align:center;
    }

    .cta-buttons{
        width:100%;
    }

}

/* TABLE EXTRA SAFETY */

.spec-table td,
.spec-table th,
.product-content table td,
.product-content table th{
    vertical-align:top;
}

.table-wrapper::-webkit-scrollbar{
    height:8px;
}

.table-wrapper::-webkit-scrollbar-thumb{
    background:#214f99;
    border-radius:20px;
}

/* LONG CONTENT FIX */

.product-content pre,
.product-content code{
    max-width:100%;
    overflow-x:auto;
}

.product-content a{
    overflow-wrap:anywhere;
}

/* IMAGE GALLERY FIX */

.product-content img{
    border-radius:6px;
}

.product-content figure{
    margin:0;
    max-width:100%;
}

/* FINAL MOBILE SAFETY */

@media(max-width:991px){

    .product-layout{
        display:block;
    }

    .product-content{
        width:100%;
    }

}

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    .product-content-section{
        overflow-x:hidden;
    }

    .product-content{
        overflow-x:hidden;
    }

}

@media(max-width:480px){

    .product-hero-content h1{
        line-height:1.15;
    }

    .product-hero-content p{
        margin-bottom:20px;
    }

    .spec-box strong{
        font-size:16px;
    }

}