/* Product Page */
/* Banner & Description */
/* --- Global Overrides & variables applied --- */
.product-hero-section {
    position: relative;
    padding-bottom: 10px;
    background-color: #f8f9fa;
}

/* 1. Banner Styling */
.product-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
}

/* Update the Hero Section Typography */
.product-title {
    font-family: var(--font-primary);
    font-weight: 800;
    /* Increased from 3.5rem to 4.5rem */
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
}

.product-subtitle {
    font-family: var(--font-secondary);
    /* Increased from 1.4rem to 1.6rem */
    font-size: 1.6rem;
    font-weight: 300;
    color: #f0f0f0;
    max-width: 750px;
    margin-bottom: 35px;
    line-height: 1.4;
}

.material-subtitle {
    font-family: var(--font-secondary);
    /* Increased from 1.4rem to 1.6rem */
    font-size: 1.6rem;
    font-weight: 300;
    color: #f0f0f0;
    max-width: 750px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.badge-item {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 1.25rem;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Spacing it normally below the banner */
.product-description-wrap {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.description-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 15px;
    /* Clean shadow for a high-end look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 15px 15px 0 0;
}

.section-label {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 30px;
    display: block;
}

.description-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    /* Large font size */
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-description-wrap {
        margin-top: 40px;
    }

    .description-card {
        padding: 35px 25px;
    }

    .description-text {
        font-size: 1.3rem;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .product-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .product-banner {
        height: 400px;
        text-align: center;
    }

    .product-title {
        font-size: 2.2rem;
    }

    .product-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 20px;
    }
}




/* Table Style */
/* Container & Global Font Fix */
.product-table-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
}

.product-table {
    font-family: var(--font-secondary);
}

.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
}

/* 1. Header with your Brand Gradient */
.custom-table thead {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
}

.custom-table thead th {
    padding: 20px 25px;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
}

/* 2. Body Cell Styling */
.custom-table tbody td {
    padding: 18px 25px;
    vertical-align: middle;
    font-size: 1.5rem;
    /* Balanced size for readability */
    line-height: 1.5;
    color: #333;
    border-top: 1px solid #f2f2f2;
    transition: all 0.3s ease;
}

/* 3. Hover Interaction */
.custom-table tbody tr:hover td {
    background-color: rgba(39, 89, 98, 0.05);
    color: #000;
}

/* 4. Bold labels in the first column */
.custom-table tbody td:first-child {
    color: var(--color-primary);
    font-weight: 700;
}

/* --- MOBILE RESPONSIVENESS (The Card Style) --- */
@media (max-width: 768px) {
    .custom-table thead {
        display: none;
    }

    .custom-table,
    .custom-table tbody,
    .custom-table tr,
    .custom-table td {
        display: block;
        width: 100%;
    }

    .custom-table tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 15px;
        border: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        padding: 10px 0;
    }

    .custom-table td {
        text-align: left;
        padding: 12px 20px;
        border: none;
        border-bottom: 1px dotted #eee;
    }

    .custom-table td:last-child {
        border-bottom: none;
    }

    .custom-table td::before {
        content: attr(data-label);
        font-family: var(--font-primary);
        font-weight: 800;
        color: var(--color-primary);
        display: block;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }
}




/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    /* Space at bottom since button is gone */
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(39, 89, 98, 0.18);
    border-color: var(--color-primary);
}

.card-image {
    position: relative;
    height: 280px;
    /* Increased height for better visibility */
    overflow: hidden;
}

/* Ensure images don't look stretched */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.08);
    /* Nice subtle zoom effect */
}

.card-content {
    padding: 20px;
    /* More white space for larger fonts */
    flex-grow: 1;
}

/* Updated Product Name to handle wrapping */
.product-name {
    font-family: var(--font-primary);
    /* clamp(min, preferred, max) - scales from 1.6rem to 2rem */
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    /* Tightens the gap between wrapped lines */
    letter-spacing: -0.5px;
    /* Optional: makes heavy headings look cleaner */
}

/* Updated Description for better balance */
.product-desc {
    font-size: 1.45rem;
    /* Reduced slightly from 1.45 to look more professional */
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    /* Keeps description height consistent so cards align */
    min-height: 3.2em;
}

.product-specs {
    background: #fcfcfc;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 6px solid var(--color-secondary);
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    font-size: 1.4rem;
    /* Large technical data */
    margin-bottom: 10px;
    color: #333;
}

.spec-item strong {
    color: var(--color-primary);
    font-weight: 700;
}




/* Applications & Features */
/* Section Typography & Sizing */
.product-info-section {
    font-family: var(--font-secondary);
}

.info-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 6px solid var(--color-primary);
}

.highlight-box {
    border-top-color: var(--color-secondary);
    background: #fcfcfc;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.info-header i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.info-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    /* Large Title */
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 0;
}

/* List Styling (1.5rem font) */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 1.5rem;
    /* Larger font as requested */
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.info-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.info-list li strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

/* Application Items (1.4rem font) */
.app-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.app-item:hover {
    transform: translateX(10px);
    background: var(--color-primary);
}

.app-item:hover .app-text {
    color: #fff;
}

.app-icon {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.app-text {
    font-size: 1.4rem;
    /* Large font */
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .info-box {
        padding: 30px;
    }

    .info-header h2 {
        font-size: 1.8rem;
    }

    .info-list li,
    .app-text {
        font-size: 1.2rem;
    }
}




/* Sidebar */
:root {
    --color-primary: #ef9d09;
    --color-secondary: #336068;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

.tmp-section-gap {
    padding: 80px 0;
}

/* Content Area Styles */
.technical-info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
    height: 100%;
}

.technical-info-card h5 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.technical-info-card ul {
    list-style: none;
    padding: 0;
}

.technical-info-card ul li {
    margin-bottom: 8px;
    color: #555;
}

.technical-info-card ul li i {
    color: var(--color-primary);
    font-size: 14px;
    margin-right: 10px;
}

/* THE STICKY LOGIC */
/* Ensure the parent row has "align-items: flex-start" to let sidebar stick */
.sticky-sidebar-container {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    /* Adjust based on your header height */
    z-index: 1;
}

/* GLASSMORPHISM CARD */
.glass-sidebar-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.widget-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line {
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

/* NAV ITEMS */
.nav-group {
    margin-bottom: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-item-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    color: #444;
    transition: 0.3s;
}

.nav-item-main i:first-child {
    margin-right: 10px;
    color: var(--color-primary);
}

.nav-group.active .nav-item-main {
    background: var(--color-primary);
    color: #fff;
}

.nav-group.active .nav-item-main i {
    color: #fff;
}

.arrow-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-group.active .arrow-icon {
    transform: rotate(90deg);
}

/* SUB ITEMS */
.nav-sub-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 15px;
}

.nav-group.active .nav-sub-items {
    max-height: 500px;
    /* Arbitrary large height */
    padding-top: 10px;
    padding-bottom: 5px;
}

.sub-link {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: 0.3s;
    margin: 2px 0;
}

.sub-link:hover {
    color: var(--color-primary);
    padding-left: 20px;
}

.sub-link.active {
    color: var(--color-primary);
    font-weight: 700;
    border-left: 2px solid var(--color-primary);
    background: linear-gradient(90deg, rgba(39, 89, 98, 0.1) 0%, transparent 100%);
}

.sidebar-cta {
    padding: 20px;
    background: rgba(39, 89, 98, 0.05);
    border-radius: 16px;
    text-align: center;
}

.sidebar-cta p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

















/* Material page */
/* 1. Global Variables for Consistency (Matches your var usage) */
:root {
    --alloy-bg-light: #f8f9fa;
    --alloy-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --alloy-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 2. Hero & Badge Styling */
.alloy-hero-section {
    background-color: var(--alloy-bg-light);
    border-bottom: 1px solid #eee;
}

.alloy-badge {
    background: var(--color-secondary);
    color: #fff;
    padding: 6px 18px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.usp-item {
    background: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.tech-summary-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--alloy-shadow);
    border-left: 6px solid var(--color-primary);
}

/* 3. Modern Tabs & Tables */
.nav-pills .nav-link {
    color: #666;
    background: #eee;
    margin: 0 8px;
    border-radius: 50px;
    transition: var(--alloy-transition);
}

.nav-pills .nav-link.active {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.custom-table-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: var(--alloy-shadow);
}

.table thead th {
    font-size: 1.25rem;
    padding: 18px;
    letter-spacing: 0.5px;
    border: none;
}

.table tbody td {
    padding: 16px;
    border-bottom: 1px solid #f8f9fa;
}

/* 4. Large Horizontal Product Cards */
.horizontal-product-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0 !important;
    transition: var(--alloy-transition);
    position: relative;
}

.horizontal-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--color-secondary) !important;
}

.card-img-wrap {
    overflow: hidden;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.horizontal-product-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.card-img-wrap .badge {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    font-size: 1.25rem;
    padding: 8px 15px;
    z-index: 2;
}

.card-specs-box {
    border-left: 4px solid var(--color-secondary);
    transition: var(--alloy-transition);
}

.horizontal-product-card:hover .card-specs-box {
    background: #fff !important;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.card-specs-box strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* 5. Responsive Fixes */
@media (max-width: 991px) {
    .horizontal-product-card {
        flex-direction: column;
    }

    .card-img-wrap {
        height: 250px;
    }

    .nav-pills .nav-link {
        width: 100%;
        margin: 5px 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}