/* Animation Framework Rules for Enterprise Storefront */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

:root { 
    --theme-color: #ffcd11; 
    --accent-yellow: #ffcd11;
    --surface-card: #ffffff;
    --text-main: #1e2229;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --bg-dark: #111827;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    background-color: #f6f8fa; 
    color: var(--text-main);
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   TWO-LAYER ARCHITECTURE CONTAINERS (SCROLL FIX IMPLEMENTATION)
   -------------------------------------------------------------------------- */
.corp-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: relative; /* Changed from sticky/transparent to allow smooth natural scrolling */
    z-index: 1000;
    width: 100%;
}

.header-layer {
    display: flex;
    align-items: center;
    padding: 0 40px;
    transition: var(--transition-smooth);
}

.layer-top {
    height: 65px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.layer-bottom {
    height: 55px;
    justify-content: flex-end;
    gap: 32px;
}

/* Search Engine Container Block */
.search-wrapper {
    display: flex;
    align-items: center;
    max-width: 380px;
    width: 100%;
}
.search-form {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.search-input {
    width: 100%;
    height: 38px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 0 40px 0 16px;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}
.search-input:focus {
    background: #ffffff;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}
.search-input::placeholder {
    color: #888888;
}
.search-btn {
    position: absolute;
    right: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-btn svg {
    stroke: #6b7280;
    transition: stroke 0.25s ease;
}
.search-btn:hover svg {
    stroke: var(--theme-color);
}

/* Menu Toggle Trigger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: left center;
}

/* Brand Identity */
.corp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
    transition: var(--transition-smooth);
    z-index: 1010;
}
.corp-brand:hover { transform: scale(1.01); }
.corp-brand span { color: var(--theme-color); }

.google-translator-box {
    display: flex;
    align-items: center;
    min-height: 30px;
    z-index: 1010;
    margin-left: 32px;
    margin-right: auto;
}

.nav-container {
    display: flex;
    align-items: center;
}
.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
    list-style: none; 
}
.nav-link-item {
    text-decoration: none;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}
.nav-link-item:hover, .nav-link-item.active { 
    color: var(--theme-color); 
}

.nav-links li:not(.account-wrapper) .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links li:not(.account-wrapper) .nav-link-item:hover::after, 
.nav-links li:not(.account-wrapper) .nav-link-item.active::after { 
    transform: scaleX(1); 
    transform-origin: left; 
}

/* ==========================================================================
   ACCOUNT BUTTON COMPONENT - SYSTEM ALIGNMENT FIX
   ========================================================================== */
.account-btn {
    display: inline-flex;  /* Ensures clean alignment of icon and text */
    align-items: center;
    gap: 8px;              /* Structured micro-spacing between assets */
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    color: #000000;
    transition: var(--transition-smooth);
}

.account-btn svg {
    /* CRITICAL FIX: By binding stroke to currentColor, the vector path
       instantly adopts whatever text color the button has at any given second.
    */
    stroke: currentColor !important; 
    transition: stroke 0.3s ease;
}

/* Consolidated state machine for hover and active layout transformations */
.account-btn:hover, 
.account-btn.active {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff !important; /* Forces the text to white */
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.18);
}

.nav-link-item svg {
    transition: stroke 0.25s ease;
}
.nav-link-item:hover svg, .nav-link-item.active svg {
    stroke: var(--theme-color);
}

.nav-utilities {
    display: flex;
    align-items: center;
    z-index: 1010;
}

.cart-pill {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 16px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.cart-pill svg {
    stroke: #000000;
    transition: stroke 0.3s ease;
}
.cart-pill:hover, .cart-pill.active { 
    background: var(--theme-color); 
    border-color: var(--theme-color);
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.2);
}
.cart-pill:hover svg, .cart-pill.active svg {
    stroke: #ffffff;
}
 
.cart-pill .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--theme-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    transition: var(--transition-smooth);
}
.cart-pill:hover .badge, .cart-pill.active .badge { 
    background: #000000; 
    color: #ffffff; 
    border-color: var(--theme-color);
}

/* --------------------------------------------------------------------------
   HOMEPAGE LAYOUT COMPONENTS & UTILITIES
   -------------------------------------------------------------------------- */
.hero-slider-section {
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    height: 400px;
    background: var(--bg-dark);
}

.slider-pipeline {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-node {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 5px solid var(--accent-yellow);
}

.slider-watermark {
    position: absolute;
    right: 5%;
    bottom: -5%;
    font-size: 20rem;
    color: rgba(255, 205, 17, 0.02);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    font-family: Arial Black, sans-serif;
    z-index: 1;
}

.slide-content-wrapper {
    max-width: 1400px; 
    margin: 0 auto; 
    width: 100%; 
    position: relative; 
    z-index: 10;
    padding-left: 4%;
}

.slide-subtitle-capsule {
    color: var(--accent-yellow);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
    border-left: 3px solid var(--accent-yellow);
    padding-left: 12px;
}

.slide-heading {
    font-size: 3.5rem; 
    font-weight: 900; 
    color: #ffffff; 
    line-height: 1.1; 
    margin: 0 0 16px 0; 
    letter-spacing: -1.5px; 
    text-transform: uppercase; 
    max-width: 750px;
}
.slide-desc {
    color: #e5e7eb; 
    font-size: 1.15rem; 
    max-width: 580px; 
    line-height: 1.6; 
    margin: 0 0 32px 0;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-btn {
    background: var(--accent-yellow);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 14px 32px;
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(255, 205, 17, 0.25);
    transition: all 0.2s;
}
.slider-btn:hover {
    background: #e6b80f;
    transform: translateY(-2px);
}

.nav-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}
.nav-arrow-btn.left-arrow { left: 24px; }
.nav-arrow-btn.right-arrow { right: 24px; }

.nav-arrow-btn:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    background: rgba(0,0,0,0.8);
}

.slider-dot-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.overview-section {
    background: #ffffff; 
    padding: 80px 40px; 
    border-bottom: 1px solid #e5e7eb;
}
.overview-grid {
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center;
}
.overview-pre {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.overview-heading {
    font-size: 2.2rem; 
    font-weight: 900; 
    color: var(--bg-dark); 
    margin: 0 0 20px 0; 
    letter-spacing: -1px; 
    text-transform: uppercase; 
    line-height: 1.2;
}
.overview-text-primary {
    color: #4b5563; 
    font-size: 1.05rem; 
    line-height: 1.6; 
    margin: 0 0 20px 0;
}
.overview-text-secondary {
    color: var(--text-muted); 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin: 0;
}
.guarantee-card {
    background: #f9fafb; 
    border: 1px solid #e5e7eb; 
    border-left: 6px solid var(--accent-yellow); 
    padding: 40px; 
    border-radius: 4px;
}
.guarantee-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.guarantee-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.guarantee-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.guarantee-icon-wrapper {
    background: rgba(255, 205, 17, 0.15);
    color: var(--accent-yellow);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    flex-shrink: 0;
}
.guarantee-row strong {
    color: var(--bg-dark);
    display: block;
    font-size: 0.95rem;
}
.guarantee-row span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.content-section {
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 40px;
}
.section-title-block {
    border-left: 4px solid var(--accent-yellow);
    padding-left: 16px;
    margin-bottom: 50px;
}
.section-title-block.dark {
    border-left-color: var(--bg-dark);
}
.section-pre {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.section-heading {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.category-card {
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #e5e7eb;
    border-radius: 4px;
    padding: 30px 24px;
    text-align: center;
    display: block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover {
    border-color: var(--accent-yellow);
    border-top-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.category-img-container {
    width: 80px;
    height: 80px;
    background: #f9fafb;
    border-radius: 4px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}
.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-name {
    font-size: 1.05rem;
    color: var(--bg-dark);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.gray-showcase-section {
    background: #f9fafb;
    padding: 90px 40px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.showcase-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}
.view-fleet-link {
    color: var(--accent-yellow);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}
.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.product-hero-body {
    position: relative;
    padding: 24px;
    background: #ffffff;
    text-align: center;
}
.product-tag-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    background: var(--bg-dark);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-img-frame {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
}
.product-img-frame img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.product-meta-footer {
    padding: 24px;
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
}
.product-title-anchor {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    min-height: 54px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}
.product-title-anchor a {
    color: var(--bg-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.product-title-anchor a:hover {
    color: var(--accent-yellow);
}
.product-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    background: #f9fafb;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #f3f4f6;
}
/* Technical Specification Highlights Components UI Layout */
.product-spec-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-top: 1px dashed #e5e7eb;
    padding-top: 14px;
}

.product-spec-specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-spec-specs-list li:last-child {
    margin-bottom: 0;
}

.product-spec-specs-list .spec-label {
    color: #6b7280;
    font-weight: 500;
}

.product-spec-specs-list .spec-value {
    color: #111827;
    font-weight: 700;
    text-align: right;
}

/* Action Execution Grid Alignment */
.product-action-bar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    background: #f9fafb;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #f3f4f6;
}

.rate-block {
    display: block;
}

.action-buttons-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.specs-btn {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-align: center;
}

.specs-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* System State-Engine Toggle Add/Remove Button Components */
.cart-toggle-btn {
    flex: 1;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    outline: none;
}

/* State A: Ready to insert items */
.cart-toggle-btn.add-state {
    background: #111827;
    color: #ffffff;
}
.cart-toggle-btn.add-state:hover {
    background: #FF4D00; /* Custom Corporate Theme Identity Highlight */
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.2);
}

/* State B: Item successfully registered in storage bucket */
.cart-toggle-btn.remove-state {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}
.cart-toggle-btn.remove-state:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Responsive Structural Breakpoints Layout System */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* Fits mid-tier tablets */
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Fits mid-tier tablets */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* Exactly 2 Columns on small viewports/phones */
        gap: 12px;
    }
    
    .product-action-bar {
        padding: 10px;
        gap: 10px;
    }
    
    .action-buttons-group {
        flex-direction: column; /* Stacks button nodes vertically inside constrained cards */
        gap: 6px;
    }
    
    .specs-btn, .cart-toggle-btn {
        width: 100%;
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .product-meta-footer {
        padding: 14px;
    }
    
    .product-title-anchor {
        font-size: 0.95rem;
        min-height: 42px;
        margin-bottom: 10px;
    }
    
    .rate-value {
        font-size: 1.1rem;
    }
}
.rate-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.rate-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--bg-dark);
}
.specs-btn {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.specs-btn:hover {
    background: var(--accent-yellow);
    color: var(--bg-dark);
}

.partner-pre-label {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.partner-flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.partner-node {
    text-align: center;
    font-weight: 800;
    font-size: 1.15rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.partner-node img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.2s;
}
.partner-node img:hover {
    opacity: 1;
    filter: none;
}
.partner-text-node {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 4px;
    transition: border-color 0.2s;
}
.partner-text-node:hover {
    border-color: var(--accent-yellow);
}

/* Base Structural Layout Architecture */
.corp-footer {
    background-color: var(--bg-dark); 
    color: #9CA3AF; 
    padding: 80px 40px 40px 40px; 
    margin-top: 120px; 
    border-top: 4px solid var(--theme-color); 
    font-size: 0.9rem; 
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.footer-container {
    max-width: 1440px; 
    margin: 0 auto; 
    display: grid;
    /* Clean 5 Column Grid configuration prevents desktop scatter gaps */
    grid-template-columns: 2fr 1fr 1fr 1.25fr 1.25fr;
    gap: 40px;
}

/* Typography & Column Control Elements */
.footer-col {
    min-width: 0;
}

.footer-col h4 {
    color: #FFFFFF; 
    font-size: 1.15rem; 
    font-weight: 700; 
    margin: 0 0 24px 0; 
    letter-spacing: -0.3px;
}

.footer-col h4.sub-caps {
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    color: #F3F4F6;
    border-bottom: 2px solid var(--border-color-dim);
    padding-bottom: 8px;
}

/* Column 1 Specifics: Brand Presentation Block */
.brand-col .brand-title {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.footer-tagline-1 { 
    font-size: 0.85rem; 
    font-weight: 600;
    color: #E5E7EB; 
    margin-bottom: 10px; 
}

.footer-tagline-2 { 
    font-size: 0.85rem; 
    color: #858D99; 
}

/* High-Tech System Status Tracking Badge Element */
.system-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    margin-top: 24px;
}

.status-pulse-node {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}

.status-pulse-node::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #10B981;
    border-radius: 50%;
    animation: beaconPulse 2s infinite ease-in-out;
}

@keyframes beaconPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-pulse-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #34D399;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Link Lists Elements */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.15s ease, padding-left 0.15s ease;
    display: inline-block;
}

.footer-link-list a:hover {
    color: var(--theme-color);
    padding-left: 4px;
}

/* Contact & Info Metadata Layout Blocks */
.contact-col var, .contact-col div {
    font-style: normal;
}

.contact-meta-item {
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.meta-label {
    display: block;
    color: #6B7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-link-mail { 
    color: #FFFFFF; 
    text-decoration: none; 
    font-weight: 500;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-link-mail:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.footer-highlight-text { color: #FFFFFF; font-weight: 500; }
.footer-muted-text { color: #858D99; font-size: 0.85rem; }

.footer-address-block {
    font-style: normal;
}
.footer-country-text {
    font-size: 0.75rem;
    color: var(--theme-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Footer Bottom Strip Components */
.footer-bottom-bar {
    max-width: 1440px; 
    margin: 60px auto 0 auto; 
    padding-top: 30px; 
    border-top: 1px solid var(--border-color-dim); 
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem; 
    color: #4B5563;
}

.security-classification-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #374151;
    text-transform: uppercase;
    background-color: #111827;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #1F2937;
}

/* Dynamic Desktop/Mobile Adaptation Matrix Queries */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px 30px;
    }
    .address-col {
        grid-column: span 1;
    }
}

@media (max-width: 868px) {
    .footer-container {
        /* Restructures matrix grid into highly-equipped clustered rows on smaller screens */
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }
    .brand-col {
        grid-column: span 2;
        border-bottom: 1px solid var(--border-color-dim);
        padding-bottom: 30px;
    }
    .bottom-bar-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .corp-footer {
        padding: 60px 20px 30px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .brand-col {
        grid-column: span 1;
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE VIEWPORT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1150px) {
    .header-layer { padding: 0 24px; }
    .layer-bottom { gap: 20px; }
    .nav-links { gap: 16px; }
    .google-translator-box { margin-left: 20px; }
}

@media (max-width: 991px) {
    .menu-toggle { display: flex; }
    .corp-brand { font-size: 1.2rem; }
    
    .layer-top {
        height: 60px;
        gap: 15px;
    }

    .google-translator-box {
        margin-left: 0;
        margin-right: auto;
    }

    .layer-bottom {
        height: 50px;
        justify-content: center;
        padding: 0 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .search-wrapper { max-width: 100%; }

    .nav-container {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 280px;
        height: 100vh;
        background-color: #ffffff; 
        border-right: 2px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 40px 30px;
        gap: 40px;
        transition: var(--transition-smooth);
        box-shadow: 10px 0 30px rgba(0,0,0,0.08);
        z-index: 1005;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 24px;
    }

    .nav-link-item {
        font-size: 1.1rem;
        width: 100%;
        display: flex;
    }

    .account-wrapper { width: 100%; }
    .account-btn { justify-content: center; border-radius: 8px; }

    body.menu-open .nav-container { left: 0; }

    body.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(4px, 1px); }
    body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    body.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4px, -1px); }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(4px);
        z-index: 990;
        animation: fadeIn 0.3s ease forwards;
    }

    .overview-section { padding: 50px 20px !important; }
    .overview-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .overview-heading { font-size: 1.65rem !important; margin-bottom: 16px !important; }
    .overview-text-primary { font-size: 0.95rem !important; line-height: 1.5 !important; }
    .overview-text-secondary { font-size: 0.9rem !important; line-height: 1.5 !important; }
    .guarantee-card { padding: 24px !important; }
}

@media (max-width: 768px) {
    .hero-slider-section { height: 312px !important; }
    .slide-content-wrapper { padding-left: 16px; padding-right: 16px; }
    .slide-heading { font-size: 1.8rem !important; letter-spacing: -0.5px !important; max-width: 100%; margin-bottom: 8px !important; }
    .slide-desc {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin: 0 0 16px 0 !important;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-slider-section .slider-btn { padding: 10px 22px !important; font-size: 0.8rem !important; }
    .nav-arrow-btn { display: none !important; }
}

@media (max-width: 550px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr); /* Strictly forces exactly two matching columns */
        gap: 12px; /* Pulls cards tighter together to save precious screen territory */
    }
    
    .category-card {
        padding: 20px 12px; /* Reduces excessive container padding inside small screens */
    }
    
    .category-img-container {
        width: 60px;  /* Scales down image footprints slightly so text gets more breathing room */
        height: 60px;
        margin: 0 auto 12px auto;
    }
    
    .category-name {
        font-size: 0.9rem; /* Minimizes text clip/overflow on exceptionally long category titles */
    }
}
/* ==========================================================================
   ENTERPRISE SECTIONS COMPONENT STYLES (YELLOWISH THEME VARIANT)
   ========================================================================== */

/* 1. Live Performance Metrics Grid */
.enterprise-metrics-section {
    background: #111827; /* Dark Industrial Tone */
    color: #ffffff;
    padding: 60px 24px;
    border-top: 4px solid #ffcd11; /* System Yellow Theme Marker Accent */
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffcd11; /* Yellow Highlight Indicator */
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.metric-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* 2. Enterprise Procurement Split CTA Block */
.procurement-cta-section {
    background: #f9fafb; /* Light Gray Contrast Frame */
    padding: 80px 24px;
    border-top: 1px solid #e5e7eb;
}

.cta-split-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cta-pre-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #dca200; /* Darker tone of theme color for pure text readability on light gray */
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.cta-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.cta-body-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

/* Right Side Placement Action Interface Box */
.cta-card-panel {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

.cta-card-panel h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
}

.cta-card-panel p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 28px 0;
}

.cta-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-btn-primary {
    background: #ffcd11; /* Yellow Corporate Action Fill */
    color: #111827; /* Dark ink for maximum accessibility and readability contrast */
    text-decoration: none;
    padding: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn-primary:hover {
    background: #e4b60b; /* Slightly deep slide value for pointer state feedback */
    box-shadow: 0 4px 12px rgba(255, 205, 17, 0.15);
}

.cta-btn-secondary {
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    padding: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    transition: background 0.2s ease;
}

.cta-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    
    .cta-split-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .enterprise-metrics-section {
        padding: 40px 16px;
    }
    
    .metrics-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .metric-number {
        font-size: 2.2rem;
    }

    .procurement-cta-section {
        padding: 50px 16px;
    }
    
    .cta-main-heading {
        font-size: 1.75rem;
    }
    
    .cta-card-panel {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   TASK 1: BACKGROUND SCROLL RESTRAINTS & POSITIONING FIXES
   ========================================================================== */
body.menu-open {
    overflow: hidden !important; /* Locks background viewport viewport scroll loops entirely */
    height: 100vh !important;
}

/* Ensure your menu drawer header/toggle node stays anchored if scrolling occurred prior */
@media (max-width: 991px) {
    body.menu-open .header-navigation-wrapper, 
    body.menu-open .menu-toggle-trigger-element { 
        position: fixed !important;
        z-index: 10000;
    }
}

/* ==========================================================================
   TASK 2: INDUSTRIAL TECTONIC PULSE SCREEN LOADER COMPONENT
   ========================================================================== */
.global-loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111827; /* Dark Industrial theme backdrop match */
    z-index: 999999; /* Stays above all standard layout templates */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Sub-state context appended by script to animate clean dismissals */
.global-loader-mask.loader-terminated {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-tectonic-hub {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.loader-asset-frame {
    margin-bottom: 20px;
}

/* Continuous high-capacity tectonic cycle rotation pulse */
.tectonic-pulse-svg {
    animation: tectonicRotation 2.5s infinite linear;
}

.loader-identity-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* Tracking progress line system components */
.loader-pipeline-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-pipeline-fill {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: #ffcd11; /* System Yellowish Theme identity color matching */
    border-radius: 2px;
    animation: pipelineLoadingCycle 1.5s infinite ease-in-out;
}

/* Keyframes Animation Engines */
@keyframes tectonicRotation {
    0% {
        transform: rotate(0deg) scale(0.95);
        filter: drop-shadow(0 0 4px rgba(255, 205, 17, 0.2));
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        filter: drop-shadow(0 0 15px rgba(255, 205, 17, 0.6));
    }
    100% {
        transform: rotate(360deg) scale(0.95);
        filter: drop-shadow(0 0 4px rgba(255, 205, 17, 0.2));
    }
}

@keyframes pipelineLoadingCycle {
    0% {
        left: -50%;
        width: 30%;
    }
    50% {
        width: 60%;
    }
    100% {
        left: 100%;
        width: 30%;
    }
}
/* ==========================================================================
   ENTERPRISE CART DROPDOWN SYSTEM
   ========================================================================== */
.nav-cart-wrapper {
    position: relative;
    display: inline-block;
}

.cart-dropdown-panel {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 360px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 11000;
    
    /* Animation Framework States */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Open Toggle Trigger */
.cart-dropdown-panel.dropdown-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Sub-containers */
.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.items-count-indicator {
    font-size: 0.8rem;
    font-weight: 700;
    background: #f3f4f6;
    color: #4b5563;
    padding: 2px 8px;
    border-radius: 12px;
}

/* Scrollbed Core List Tray */
.dropdown-items-scrollbed {
    max-height: 280px;
    overflow-y: auto;
    padding: 10px 0;
}

/* Custom Minimalist Scrollbars for Webkit */
.dropdown-items-scrollbed::-webkit-scrollbar {
    width: 5px;
}
.dropdown-items-scrollbed::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-items-scrollbed::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}

/* Item Row Node Elements */
.dropdown-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    transition: background 0.15s ease;
}

.dropdown-item-row:hover {
    background: #f9fafb;
}

.dropdown-item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
    background: #f9fafb;
    flex-shrink: 0;
}

.dropdown-item-details {
    flex-grow: 1;
    min-width: 0; /* Forces ellipsis text truncation safety rules */
}

.dropdown-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
}

/* Inline Mutation Actions */
.dropdown-row-remove-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, background 0.15s ease;
}

.dropdown-row-remove-btn:hover {
    color: #ef4444;
    background: #fee2e2;
}

/* Empty State Fallback Layout */
.dropdown-empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.dropdown-empty-state svg {
    margin-bottom: 8px;
    color: #d1d5db;
}

/* Footer Processing Base Summary Area */
.dropdown-footer-summary {
    padding: 20px;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.summary-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4b5563;
}

.summary-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
}

/* Button Group Controls */
.dropdown-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dropdown-btn-primary, .dropdown-btn-secondary {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.dropdown-btn-primary {
    background: #ffcd11; /* System Yellow Identity Color */
    color: #111827;
}
.dropdown-btn-primary:hover {
    background: #e4b60b;
}

.dropdown-btn-secondary {
    background: #ffffff;
    color: #4b5563;
    border: 1px solid #d1d5db;
}
.dropdown-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Responsive Overrides */
@media (max-width: 480px) {
    .cart-dropdown-panel {
        position: fixed;
        top: 60px;
        left: 16px;
        right: 16px;
        width: auto;
    }
}
/* ==========================================================================
   PINNTREK AUTHENTICATION GATEWAY & DASHBOARD FRAMEWORKS
   ========================================================================== */
:root {
    --industrial-dark: #111827;
    --industrial-gray: #1f2937;
    --industrial-light-gray: #374151;
    --industrial-border: #e5e7eb;
    --pt-orange: #FF4D00;
    --pt-yellow: #ffcd11;
}

/* Gateway Form Container Blocks */
.auth-gateway-container, .dashboard-root-layout {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.auth-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .auth-grid-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.auth-card-panel, .dashboard-block-card {
    background: #ffffff;
    border: 1px solid var(--industrial-border);
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.auth-card-panel.status-border-left {
    border-left: 4px solid var(--pt-orange);
}

.auth-card-header h2, .block-card-header h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--industrial-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.auth-card-header p {
    margin: 0 0 24px 0;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Form Input Element Controls */
.industrial-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-field label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 0.5px;
}

.form-group-field input {
    padding: 10px 14px;
    font-size: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #f9fafb;
    color: var(--industrial-dark);
    transition: border-color 0.15s ease;
}

.form-group-field input:focus {
    outline: none;
    border-color: var(--pt-orange);
    background: #ffffff;
}

/* Submission Interactive Vectors */
.auth-submit-btn {
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-top: 10px;
}

.btn-primary-theme {
    background: var(--industrial-dark);
    color: #ffffff;
}
.btn-primary-theme:hover { background: #000000; }

.btn-secondary-theme {
    background: var(--pt-yellow);
    color: var(--industrial-dark);
}
.btn-secondary-theme:hover { background: #e4b60b; }


/* ACCOUNT CONTROL BANNER & LAYOUTS */
.dashboard-welcome-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--industrial-dark);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.dashboard-welcome-banner h1 {
    margin: 0 0 4px 0;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--industrial-dark);
}

.dashboard-welcome-banner p { margin: 0; color: #4b5563; font-size: 0.95rem; }

.dashboard-logout-trigger {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    color: #ef4444;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.15s ease;
}
.dashboard-logout-trigger:hover { background: #fee2e2; border-color: #fca5a5; }

/* Dashboard Metric Nodes */
.machinery-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-node {
    background: var(--industrial-dark);
    color: #ffffff;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.metric-caption {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.metric-tally { font-size: 2rem; font-weight: 800; color: var(--pt-yellow); }
.metric-value-text { font-size: 1.25rem; font-weight: 700; margin-top: auto; }

/* Industrial Data Tables Formatting */
.responsive-table-scrollbed { width: 100%; overflow-x: auto; }

.industrial-data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.industrial-data-table th {
    background: #f3f4f6;
    color: var(--industrial-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 2px solid #d1d5db;
}

.industrial-data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--industrial-border);
    color: #374151;
}

.industrial-data-table tbody tr:hover td { background: #f9fafb; }

.tech-font { font-family: monospace; font-weight: 600; color: #111827; }

/* Status Badges */
.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 12px;
}

.state-transit { background: #ffedd5; color: #ea580c; }
.state-deployed { background: #dcfce7; color: #16a34a; }

.table-action-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pt-orange);
    text-decoration: none;
}
.table-action-link:hover { text-decoration: underline; }

/* ==========================================================================
   PINNTREK AUTHENTICATION GATEWAY EXTENSIONS
   ========================================================================== */

/* Sub-account Categorization Toggle Beds */
.account-type-toggle-bed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid var(--industrial-border);
}

.acc-type-btn {
    background: transparent;
    border: none;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4b5563;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.acc-type-btn.active {
    background: #ffffff;
    color: var(--industrial-dark);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Form Structural Animation Entry Frameworks */
.form-conditional-stack {
    animation: fadeInSlideIndustrial 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@keyframes fadeInSlideIndustrial {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* High-Visibility Industrial Feedback Error Containers */
.industrial-error-box {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Spinner Processing Configurations */
.auth-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.auth-submit-btn.btn-processing {
    cursor: not-allowed !important;
    pointer-events: none;
}

.industrial-loader-spinner {
    width: 16px;
    height: 16px;
    border: 2.5px solid transparent;
    border-radius: 50%;
    animation: spinTelemetry 0.65s linear infinite;
}

/* Bind spinners to match structural column themes cleanly */
.btn-primary-theme .industrial-loader-spinner { border-top-color: var(--pt-yellow); border-right-color: var(--pt-yellow); }
.btn-secondary-theme .industrial-loader-spinner { border-top-color: var(--industrial-dark); border-right-color: var(--industrial-dark); }

@keyframes spinTelemetry {
    to { transform: rotate(360deg); }
}

/* Mobile Responsive Segment Implementations */
.auth-mobile-tabs {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--industrial-border);
}

.mobile-tab-btn {
    background: transparent;
    border: none;
    padding: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #6b7280;
    cursor: pointer;
}

.mobile-tab-btn.active {
    color: var(--industrial-dark);
    border-bottom: 3px solid var(--pt-orange);
    margin-bottom: -2px;
}

@media (max-width: 768px) {
    .auth-mobile-tabs {
        display: grid;
    }
    
    .auth-card-panel {
        display: none !important; /* Hide unselected layers entirely on mobile view beds */
    }
    
    .auth-card-panel.mobile-active {
        display: block !important;
    }
}

/* ==========================================================================
   INDUSTRIAL PAGE BREADCRUMB HERO FRAMEWORK
   ========================================================================== */
.industrial-page-hero {
    background: #111827; /* Matches Pinntrek corporate dark slate */
    border-bottom: 4px solid var(--pt-orange, #FF4D00);
    padding: 40px 20px;
    margin-bottom: 20px;
}

.hero-context-bed {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hero-breadcrumb-trail a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s ease;
}

.hero-breadcrumb-trail a:hover {
    color: var(--pt-yellow, #ffcd11);
}

.hero-breadcrumb-trail .trail-separator {
    color: #4b5563;
}

.hero-breadcrumb-trail .trail-current {
    color: var(--pt-yellow, #ffcd11);
}

.hero-page-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.hero-page-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 800px;
    margin: 0;
}

@media (max-width: 768px) {
    .industrial-page-hero {
        padding: 30px 20px;
    }
    .hero-page-title {
        font-size: 1.5rem;
    }
    .hero-page-description {
        font-size: 0.85rem;
    }
}

/* Position alignment for the hidden text toggle layout */
.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 45px; /* Creates clearance space so text doesn't slide under the icon */
}

.password-visibility-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280; /* Neutral grey, shifts to corporate orange on hover if desired */
    transition: color 0.2s ease;
}

.password-visibility-toggle:hover {
    color: #FF4D00; /* Pinntrek Identity Color Palette */
}

.password-visibility-toggle svg {
    width: 20px;
    height: 20px;
}

/* Utilities for hiding components */
.password-input-wrapper .d-none {
    display: none !important;
}

/* Dashboard Tab Interface Matrix Layout Rules */
.dashboard-navigation-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 2px;
}

.tab-control-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4B5563;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-control-btn:hover {
    color: #FF4D00;
}

.tab-control-btn.active {
    color: #FF4D00;
    border-bottom: 2px solid #FF4D00;
}

.tab-panel {
    display: none !important;
}

.tab-panel.active {
    display: block !important;
}

/* Primary Address Highlight State Styles */
.address-grid-node.node-primary-active {
    background-color: rgba(255, 77, 0, 0.03);
    box-shadow: 0 0 0 1px #FF4D00;
}

/* Modal Core Setup Display Utilities */
.custom-structural-modal {
    backdrop-filter: blur(4px);
    transition: opacity 0.2s ease;
}

