/*
Theme Name: LABWAN Custom
Description: Custom WordPress theme for the LABWAN scientific-equipment catalog.
Author: LABWAN
Version: 1.1.0
Text Domain: labwan-custom
*/

/* --- Homepage / Site-wide Styles --- */
/* ========================================
   LABWAN - Lab Equipment Website Styles
   Pure CSS - No Tailwind
   ======================================== */

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-primary: #006B3F;
    --brand-primary-dark: #005230;
    --brand-primary-light: #E8F5EE;
    --brand-primary-glow: rgba(0, 107, 63, 0.15);
    --brand-accent: #C8102E;
    --brand-accent-dark: #A00D24;
    --brand-accent-light: #F5E6E9;
    --brand-red: #C8102E;
    --brand-red-dark: #A00D24;
    --brand-red-light: #F5E6E9;
    --brand-yellow: #B45309;
    --brand-blue: #1D4ED8;
    --brand-green: #00805E;
    --brand-green-dark: #006349;
    --brand-green-light: #E6F5F0;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: #374151;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

::selection {
    background: var(--brand-primary);
    color: white;
}

::placeholder {
    color: var(--gray-400);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 4px; }

/* ===== UTILITY: CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--slate-900);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left .fa-envelope,
.top-bar-left .fa-phone { color: var(--brand-accent); }
.top-bar-left .fa-clock { color: var(--brand-primary); }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    color: var(--white);
    transition: color 0.2s;
}

.top-bar-right a:hover { color: var(--brand-accent); }

/* ===== NAVIGATION ===== */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    transition: all 0.3s ease;
}

.main-nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--slate-900);
}

.logo-text .red { color: var(--brand-accent); }

.logo-underline {
    height: 2px;
    width: 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.logo:hover .logo-underline { width: 100%; }

/* Gradient line */
.gradient-line {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-green), var(--brand-primary));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-gradient-line {
    height: 2px;
}

/* Desktop Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    position: relative;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--brand-primary); }
.nav-link:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    cursor: pointer;
    transition: color 0.2s;
}

.nav-dropdown-trigger:hover { color: var(--brand-primary); }

.nav-dropdown-trigger .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-dropdown-inner {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    padding: 24px;
    width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-xl);
    transition: background 0.2s;
}

.mega-item:hover { background: var(--brand-primary-light); }

.mega-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-item-icon.red { background: var(--brand-primary-light); color: var(--brand-primary); }
.mega-item-icon.green { background: var(--brand-green-light); color: var(--brand-green); }

.mega-item-text p:first-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-800);
}

.mega-item-text p:last-child {
    font-size: 12px;
    color: var(--gray-400);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-quote:hover { background: var(--brand-red-dark); }

.btn-quote .fa-arrow-right { font-size: 12px; }

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.menu-toggle:hover { background: var(--gray-100); }
.menu-toggle i { font-size: 18px; color: var(--slate-700); }

/* ===== BUTTON SHIMMER ===== */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-shimmer:hover::after { left: 100%; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--white);
    z-index: 60;
    box-shadow: var(--shadow-2xl);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner { padding: 24px; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-menu-header .logo-img {
    height: 56px;
    width: auto;
}

.menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.menu-close:hover { background: var(--gray-100); }
.menu-close i { font-size: 18px; color: var(--slate-700); }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    display: block;
}

.mobile-link:hover {
    background: var(--brand-primary-light);
    color: var(--brand-primary);
}

.mobile-cta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brand-red);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s;
}

.mobile-cta:hover { background: var(--brand-red-dark); }

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 55;
    display: none;
}

.menu-overlay.show { display: block; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(0, 128, 94, 0.4) 100%);
}

.hero-decor-1 {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 288px;
    height: 288px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.hero-decor-2 {
    position: absolute;
    bottom: 80px;
    left: 80px;
    width: 384px;
    height: 384px;
    background: rgba(0, 128, 94, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px 0;
}

.hero-inner { max-width: 640px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span:last-child {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 512px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--brand-red-dark); }
.btn-primary .fa-arrow-right { font-size: 12px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.trust-item i {
    color: var(--brand-green);
    font-size: 16px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--slate-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 40px 16px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after { display: none; }

.stat-number {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 96px 0;
}

.section-gray { background: rgba(249, 250, 251, 0.5); }

#products {
    background:
        radial-gradient(circle at 50% 105%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.52) 36%, transparent 68%),
        linear-gradient(180deg, #d9dde2 0%, #eceef1 48%, #f8f9fa 78%, #ffffff 100%);
}
.section-white { background: var(--white); }
.section-dark {
    background: var(--slate-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-badge.red { background: var(--brand-primary-light); color: var(--brand-primary); }
.section-badge.green { background: var(--brand-green-light); color: var(--brand-green); }
.section-badge.dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

.section-badge i { font-size: 10px; }

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-dark .section-title { color: var(--white); }

.section-subtitle {
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PRODUCT FILTER PILLS ===== */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.cat-pill {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--brand-red);
    color: var(--white);
    border-color: var(--brand-red);
    transform: translateY(-2px);
}

/* ===== PRODUCT CARDS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    background: var(--white);
    box-shadow:
        0 3px 8px rgba(15, 23, 42, 0.05),
        0 20px 42px rgba(15, 23, 42, 0.10),
        0 42px 86px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 5px 12px rgba(15, 23, 42, 0.06),
        0 26px 52px rgba(15, 23, 42, 0.14),
        0 52px 96px rgba(15, 23, 42, 0.10);
}

.card-image {
    position: relative;
    height: 190px;
    flex: 0 0 auto;
    overflow: hidden;
    background: var(--white);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card:hover .card-image img { transform: scale(1.025); }

.card-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-full);
    background: rgba(0, 107, 63, 0.84);
    box-shadow: 0 5px 14px rgba(0, 82, 48, 0.16);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    min-height: 158px;
    padding: 4px 16px 16px;
    background: var(--white);
}

.card-category {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: var(--radius-full);
    background: #f1f2f3;
    color: var(--gray-600);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.card-title {
    display: -webkit-box;
    min-height: 44px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #111111;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    padding: 10px 13px;
    border: 1px solid #050505;
    border-radius: 35px;
    background: #050505;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.card-link .fa-arrow-right {
    margin-left: 8px;
    font-size: 10px;
}

.card-link:hover {
    border-color: #1f2937;
    background: #1f2937;
    color: var(--white);
    transform: translateY(-1px);
}

.card-link:focus-visible,
.cat-pill:focus-visible {
    outline: 3px solid rgba(0, 107, 63, 0.24);
    outline-offset: 3px;
}
.section-cta {
    text-align: center;
    margin-top: 56px;
}

.section-cta-text {
    margin: 0 0 16px;
    color: var(--brand-primary);
    font-size: 15px;
    font-weight: 500;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.btn-outline .fa-arrow-right { font-size: 12px; }

/* ===== WHY LABWAN ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-content .section-badge { margin-bottom: 16px; }

.why-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-title .red { color: var(--brand-red); }

.why-desc {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-ring {
    background: conic-gradient(var(--brand-primary), var(--brand-green), var(--brand-primary));
    padding: 2px;
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.feature-icon-inner {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-inner i { font-size: 18px; }
.feature-icon-inner i.red { color: var(--brand-red); }
.feature-icon-inner i.green { color: var(--brand-green); }

.feature-title {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-500);
}

/* Why Image */
.why-image { position: relative; }

.why-image > .img-main {
    position: relative;
    z-index: 10;
}

.why-image > .img-main img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    object-fit: cover;
    max-height: 520px;
}

.why-floating-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    z-index: 20;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    border: 1px solid var(--gray-100);
}

.why-floating-badge .inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-floating-badge .icon {
    width: 56px;
    height: 56px;
    background: var(--brand-green);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-floating-badge .icon i { color: var(--white); font-size: 20px; }

.why-floating-badge .number {
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-900);
}

.why-floating-badge .label {
    font-size: 12px;
    color: var(--gray-500);
}

.why-image-border {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 107, 63, 0.2);
    border-radius: var(--radius-2xl);
    z-index: 0;
}

.why-decor-1 {
    position: absolute;
    top: 32px;
    right: -32px;
    width: 96px;
    height: 96px;
    background: rgba(0, 107, 63, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.why-decor-2 {
    position: absolute;
    bottom: -32px;
    left: 32px;
    width: 128px;
    height: 128px;
    background: rgba(0, 128, 94, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

/* ===== ABOUT ===== */
#about {
    padding: 80px 0;
}
.about-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-images { position: relative; }

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-img-col { display: flex; flex-direction: column; gap: 16px; }
.about-img-col:last-child { margin-top: 32px; }

.about-img-col img {
    border-radius: var(--radius-2xl);
    width: 100%;
    object-fit: cover;
}

.about-img-col img.tall { height: 192px; }
.about-img-col img.short { height: 160px; }

.about-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(0, 107, 63, 0.3);
    border-radius: var(--radius-2xl);
}

.about-text .section-badge { margin-bottom: 16px; }
.about-text .section-badge i { color: var(--brand-red); }

.about-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-title .red { color: var(--brand-red); }

.about-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card i { font-size: 20px; margin-bottom: 10px; }
.about-card i.red { color: var(--brand-red); }
.about-card i.green { color: var(--brand-green); }

.about-card .card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.about-card .card-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-download:hover { background: var(--brand-primary-dark); }
.btn-download .fa-download { font-size: 12px; }

/* ===== INDUSTRIES ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: var(--brand-primary);
    color: var(--white);
    border-color: var(--brand-primary);
}

.ind-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    transition: all 0.3s;
}

.ind-icon.red { background: var(--brand-primary-light); color: var(--brand-primary); }
.ind-icon.green { background: var(--brand-green-light); color: var(--brand-green); }

.industry-card:hover .ind-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.industry-card h4 {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
    font-size: 15px;
    transition: color 0.3s;
}

.industry-card:hover h4 { color: var(--white); }

.industry-card p {
    font-size: 12px;
    color: var(--gray-500);
    transition: color 0.3s;
}

.industry-card:hover p { color: rgba(255, 255, 255, 0.8); }

/* ===== CERTIFICATIONS MARQUEE ===== */
.cert-section {
    padding: 48px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.cert-title {
    text-align: center;
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 32px;
}

.marquee-wrapper { overflow: hidden; }

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 0 32px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    white-space: nowrap;
}

.cert-item i { font-size: 24px; }
.cert-item i.red { color: rgba(0, 107, 63, 0.4); }
.cert-item i.green { color: rgba(0, 128, 94, 0.4); }
.cert-item span { font-size: 14px; font-weight: 600; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 30px 30px;
}

.cta-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(0, 128, 94, 0.2);
    border-radius: 50%;
    filter: blur(48px);
    transform: translate(50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--brand-red);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover { background: var(--gray-100); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
}

.contact-info .section-badge { margin-bottom: 16px; }

.contact-info h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.red { background: var(--brand-red-light); color: var(--brand-red); }
.contact-icon.green { background: var(--brand-green-light); color: var(--brand-green); }

.contact-item-text .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-900);
}

.contact-item-text p {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--slate-900);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-glow);
}

.form-group textarea { resize: none; }

.form-group select { color: var(--gray-600); }

.btn-submit {
    width: 100%;
    background: var(--brand-primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    margin-bottom: 12px;
}

.btn-submit:hover { background: var(--brand-primary-dark); }
.btn-submit .fa-paper-plane { font-size: 12px; }

.form-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 0;
}

.form-success.show { display: block; }

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success-icon i { color: var(--brand-green); font-size: 24px; }

.form-success h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer { background: var(--slate-900); color: var(--white); }

.footer-main { padding: 64px 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo .logo-img {
    height: 56px;
}

.footer-brand .logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-brand .logo .logo-icon span { font-size: 16px; }

.footer-brand .logo .logo-text {
    font-size: 18px;
    color: var(--white);
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--brand-red); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.6); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--brand-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 50;
    border: none;
    cursor: pointer;
}

.back-to-top:hover { background: var(--brand-primary-dark); }
.back-to-top i { font-size: 14px; }

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== FADE ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .btn-quote-desktop { display: none; }
    .menu-toggle { display: flex; }
    
    .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero h1 { font-size: 40px; }
    .section-title { font-size: 30px; }
    .why-title { font-size: 30px; }
    .about-title { font-size: 30px; }
    .cta-content h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-number { font-size: 18px; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .section { padding: 64px 0; }
    #about { padding: 64px 0; }
    .section-title { font-size: 26px; }
    .why-title { font-size: 26px; }
    .about-title { font-size: 26px; }
    .cta-content h2 { font-size: 26px; }
    .contact-form-wrapper { padding: 24px; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .industries-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons a { width: 100%; justify-content: center; }
    .about-cards { grid-template-columns: 1fr; }
    .filter-pills { gap: 8px; }
    .cat-pill { padding: 6px 14px; font-size: 11px; }
    .products-grid { grid-template-columns: 1fr; }
    .card-image { height: 184px; }
    .card-body { padding-right: 18px; padding-left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .product-card,
    .card-image img,
    .card-link { transition: none; }
    .product-card:hover { transform: none; }
    .product-card:hover .card-image img { transform: none; }
}

/* --- Single Item Page Styles --- */
:root{
  --navy-950:#0a1626;
  --navy-900:#0e1f36;
  --red-600:#d5303a;
  --red-500:#e3454e;
  --green-600:#1a9b56;
  --green-500:#22ad63;
  --ink-900:#0f172a;
  --ink-700:#334155;
  --ink-500:#64748b;
  --line:#e4e8ee;
  --paper-soft:#f6f8fb;
  --paper-tint:#eef2f8;
  --font-display:'Poppins',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
}
:focus-visible{outline:2px solid var(--red-500);outline-offset:2px;}

/* Breadcrumb */
.crumb{padding:22px 0 0;}
.crumb a{font-size:13.5px;color:var(--ink-500);font-weight:500;}
.crumb a:hover{color:var(--red-600);}

/* Buttons (Get Quote / Download Catalog) */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 22px;border-radius:8px;font-weight:600;font-size:14.5px;transition:background .18s ease,border-color .18s ease,transform .18s ease;}
.btn svg{width:16px;height:16px;}
.btn.btn-primary{background:var(--green-600);color:#fff;}
.btn.btn-primary:hover{background:var(--green-500);}
.btn.btn-outline{background:#fff;color:var(--ink-900);border:1.5px solid var(--line);}
.btn.btn-outline:hover{border-color:var(--navy-900);}

/* Product hero */
.product-hero{padding:24px 0 56px;}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr;gap:32px;}}

.product-image{aspect-ratio:1/1;border-radius:14px;background:var(--paper-tint);border:1px solid var(--line);display:grid;place-items:center;position:relative;overflow:hidden;}
.product-image img{width:100%;height:100%;object-fit:cover;}
.product-image svg{width:38%;height:38%;color:#c3cddc;}
.product-image .ph-label{position:absolute;bottom:16px;left:16px;font-size:12px;font-weight:600;color:var(--ink-500);background:#fff;border:1px solid var(--line);border-radius:6px;padding:5px 10px;}

.product-info .eyebrow{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--red-600);margin-bottom:12px;}
.product-info h1{font-family:var(--font-display);font-size:clamp(30px,3.4vw,40px);margin-bottom:8px;line-height:1.2;}
.model-row{display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.model-row .model{font-size:14.5px;color:var(--ink-500);}
.model-row .model strong{color:var(--ink-900);font-weight:700;}
.product-info p.desc{font-size:15.5px;line-height:1.7;color:var(--ink-700);margin:0 0 28px;max-width:520px;}
.stock-pill{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:600;color:var(--green-600);background:#e9f8ef;padding:5px 11px;border-radius:999px;}
.stock-pill .dot{width:6px;height:6px;border-radius:50%;background:var(--green-600);}

.action-row{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px;}

.quick-badges{display:flex;flex-wrap:wrap;gap:10px;}
.quick-badges .badge{display:inline-flex;align-items:center;gap:7px;border:1px solid var(--line);border-radius:999px;padding:8px 14px;font-size:13px;font-weight:600;color:var(--ink-700);}
.quick-badges .badge svg{width:15px;height:15px;color:var(--green-600);}

/* Description & Specifications */
.features-section{background:var(--paper-soft);border-top:1px solid var(--line);padding:60px 0 70px;}
.features-head{max-width:560px;margin-bottom:36px;}
.features-head .eyebrow{font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--green-600);margin-bottom:8px;display:block;}
.features-head h2{font-family:var(--font-display);font-size:24px;margin-bottom:8px;}
.features-head p{font-size:14.5px;color:var(--ink-500);margin:0;}

.features-grid{background:#fff;border-top:1px solid var(--line);}
.features-grid p{font-size:15.5px;line-height:1.7;color:var(--ink-700);margin:0 0 28px;max-width:520px;}
.features-grid table{width:100%;border-collapse:collapse;}
.features-grid table tr{border-bottom:1px solid var(--line);}
.features-grid table td{padding:18px 4px;font-size:14.5px;vertical-align:top;}
.features-grid table td:first-child{width:260px;font-weight:600;color:var(--ink-900);}
.features-grid table td:last-child{color:var(--ink-500);line-height:1.6;}
@media (max-width:640px){
  .features-grid table,.features-grid table tbody,.features-grid table tr,.features-grid table td{display:block;width:auto;}
  .features-grid table tr{padding:14px 0;}
  .features-grid table td{padding:2px 0;}
  .features-grid table td:first-child{padding-top:14px;}
}

/* --- Item Header & Model Styles --- */
.product-info h1{font-size:clamp(30px,3.4vw,40px);}
.product-info .model{font-size:15px;color:var(--ink-500);}
.product-info .model strong{color:var(--ink-900);font-weight:700;}

/* --- Specification Table Styles --- */
.features-grid table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
}
.features-grid table caption{
  caption-side:top;
  text-align:left;
  font-family:var(--font-display);
  font-size:16px;
  font-weight:600;
  color:var(--ink-900);
  padding:0 0 12px;
}
.features-grid table th,
.features-grid table td{
  padding:14px 18px;
  font-size:14.5px;
  line-height:1.6;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid var(--line);
}
.features-grid table th{
  background:var(--navy-900);
  color:#fff;
  font-family:var(--font-display);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:3px solid var(--green-600);
}
.features-grid table td:first-child{width:260px;font-weight:600;color:var(--ink-900);}
.features-grid table td:last-child{color:var(--ink-500);}
.features-grid table tbody tr:nth-child(even){background:var(--paper-soft);}
.features-grid table tbody tr:hover{background:var(--paper-tint);}
.features-grid table tbody tr:last-child td{border-bottom:0;}
@media (max-width:640px){
  .features-grid table,
  .features-grid table tbody,
  .features-grid table tr,
  .features-grid table th,
  .features-grid table td{display:block;width:100%;}
  .features-grid table tr{padding:14px 0;}
  .features-grid table th,
  .features-grid table td{padding:6px 18px;border-bottom:0;}
  .features-grid table th{border-bottom:2px solid var(--green-600);}
  .features-grid table td:first-child{padding-top:14px;}
}

/* --- Item Archive / Taxonomy Styles --- */
.catalog-archive-page .page-hero {
  position:relative;
  overflow:hidden;
  padding:56px 0;
  background:var(--slate-900);
  color:var(--white);
}
.catalog-archive-page .ph-decor-1,
.catalog-archive-page .ph-decor-2 {
  position:absolute;
  border-radius:50%;
  filter:blur(48px);
  pointer-events:none;
}
.catalog-archive-page .ph-decor-1 {
  top:-60px;
  right:40px;
  width:260px;
  height:260px;
  background:rgba(0,128,94,.15);
}
.catalog-archive-page .ph-decor-2 {
  bottom:-70px;
  left:-30px;
  width:300px;
  height:300px;
  background:rgba(200,16,46,.12);
}
.catalog-archive-page .breadcrumb {
  position:relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  color:rgba(255,255,255,.5);
  font-size:12px;
}
.catalog-archive-page .breadcrumb a { color:rgba(255,255,255,.66); }
.catalog-archive-page .breadcrumb a:hover { color:var(--brand-green); }
.catalog-archive-page .breadcrumb i { font-size:9px; }
.catalog-archive-page .page-hero h1 {
  position:relative;
  z-index:2;
  margin-bottom:8px;
  font-size:34px;
  font-weight:800;
  line-height:1.15;
}
.catalog-archive-page .page-hero h1 span { color:var(--brand-red); }
.catalog-archive-page .page-hero p {
  position:relative;
  z-index:2;
  max-width:620px;
  color:rgba(255,255,255,.6);
  font-size:15px;
}
.catalog-archive-page .archive-section {
  padding:56px 0 96px;
  background:
    radial-gradient(circle at 50% 108%,rgba(255,255,255,.96) 0,rgba(255,255,255,.5) 36%,transparent 68%),
    linear-gradient(180deg,#d9dde2 0%,#eceef1 48%,#f8f9fa 78%,#fff 100%);
}
.catalog-archive-page .archive-grid {
  display:grid;
  grid-template-columns:300px 1fr;
  align-items:start;
  gap:32px;
}
.catalog-archive-page .archive-sidebar {
  position:sticky;
  top:92px;
}
.catalog-archive-page .cat-panel {
  overflow:hidden;
  border:1px solid rgba(255,255,255,.72);
  border-radius:24px;
  background:var(--white);
  box-shadow:0 3px 8px rgba(15,23,42,.05),0 20px 42px rgba(15,23,42,.10);
}
.catalog-archive-page .cat-panel-head {
  padding:20px 20px 16px;
  border-bottom:1px solid var(--gray-100);
}
.catalog-archive-page .cat-panel-head h2 {
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--slate-900);
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}
.catalog-archive-page .cat-panel-head h2 i {
  color:var(--brand-primary);
  font-size:14px;
}
.catalog-archive-page .cat-count {
  margin-top:4px;
  color:var(--gray-400);
  font-size:11px;
}
.catalog-archive-page .cat-list {
  display:flex;
  max-height:600px;
  overflow:auto;
  flex-direction:column;
  gap:4px;
  padding:8px;
}
.catalog-archive-page .cat-item {
  display:flex;
  align-items:center;
  width:100%;
  gap:12px;
  padding:11px 12px 11px calc(12px + (var(--cat-depth, 0) * 14px));
  border-radius:14px;
  color:var(--slate-700);
  font-size:14px;
  font-weight:500;
  text-align:left;
  transition:all .2s;
}
.catalog-archive-page .cat-item > i:first-child {
  flex-shrink:0;
  width:18px;
  color:var(--gray-400);
  text-align:center;
  transition:color .2s;
}
.catalog-archive-page .cat-item:hover {
  background:var(--slate-50);
  color:var(--slate-900);
}
.catalog-archive-page .cat-item.active {
  background:var(--brand-primary-light);
  color:var(--brand-primary-dark);
  font-weight:600;
}
.catalog-archive-page .cat-item.active > i:first-child { color:var(--brand-primary); }
.catalog-archive-page .cat-name { flex:1; }
.catalog-archive-page .cat-model-n {
  padding:2px 8px;
  border-radius:var(--radius-full);
  background:var(--gray-100);
  color:var(--gray-400);
  font-size:10px;
  font-weight:600;
}
.catalog-archive-page .cat-item.active .cat-model-n {
  background:var(--brand-primary);
  color:var(--white);
}
.catalog-archive-page .cat-arrow {
  width:12px;
  opacity:0;
  color:var(--gray-400);
  font-size:10px;
  transform:translateX(-4px);
  transition:all .2s;
}
.catalog-archive-page .cat-item:hover .cat-arrow,
.catalog-archive-page .cat-item.active .cat-arrow {
  opacity:1;
  transform:translateX(0);
}
.catalog-archive-page .archive-main { min-width:0; }
.catalog-archive-page .active-cat-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
  padding:24px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:24px;
  background:var(--white);
  box-shadow:0 3px 8px rgba(15,23,42,.05),0 20px 42px rgba(15,23,42,.10);
}
.catalog-archive-page .cat-title-wrap {
  display:flex;
  align-items:center;
  gap:16px;
}
.catalog-archive-page .active-cat-ico {
  display:flex;
  flex-shrink:0;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:14px;
  background:var(--brand-primary-light);
  color:var(--brand-primary);
  font-size:22px;
}
.catalog-archive-page .active-cat-head h2 {
  color:var(--slate-900);
  font-size:24px;
  font-weight:800;
}
.catalog-archive-page .active-cat-desc {
  max-width:520px;
  margin-top:4px;
  color:var(--gray-500);
  font-size:13px;
}
.catalog-archive-page .active-cat-desc p { margin:0; }
.catalog-archive-page .active-cat-count {
  flex-shrink:0;
  padding:6px 12px;
  border-radius:var(--radius-full);
  background:var(--brand-primary-light);
  color:var(--brand-primary);
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.catalog-archive-page .results-bar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
}
.catalog-archive-page .res-label {
  color:var(--gray-500);
  font-size:13px;
}
.catalog-archive-page .res-label b { color:var(--slate-900); }
.catalog-archive-page .sort-wrap {
  display:flex;
  align-items:center;
  gap:8px;
}
.catalog-archive-page .sort-wrap label {
  color:var(--gray-500);
  font-size:12px;
}
.catalog-archive-page .sort-select {
  padding:8px 12px;
  border:1px solid var(--gray-200);
  border-radius:var(--radius-md);
  outline:none;
  background:var(--white);
  color:var(--slate-700);
  font-family:inherit;
  font-size:13px;
  transition:border-color .2s,box-shadow .2s;
}
.catalog-archive-page .sort-select:focus {
  border-color:var(--brand-primary);
  box-shadow:0 0 0 3px var(--brand-primary-glow);
}
.catalog-archive-page .sort-submit {
  padding:8px 12px;
  border-radius:var(--radius-md);
  background:var(--brand-primary);
  color:var(--white);
}
.catalog-archive-page .product-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.catalog-archive-page .catalog-product-card {
  display:flex;
  min-width:0;
  overflow:hidden;
  flex-direction:column;
  border:1px solid rgba(255,255,255,.72);
  border-radius:22px;
  background:var(--white);
  box-shadow:0 3px 8px rgba(15,23,42,.05),0 20px 42px rgba(15,23,42,.10),0 42px 86px rgba(15,23,42,.08);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.catalog-archive-page .catalog-product-card:hover {
  border-color:rgba(255,255,255,.92);
  box-shadow:0 5px 12px rgba(15,23,42,.06),0 26px 52px rgba(15,23,42,.14),0 52px 96px rgba(15,23,42,.10);
  transform:translateY(-5px);
}
.catalog-archive-page .catalog-product-card .card-image {
  position:relative;
  height:150px;
  overflow:hidden;
  flex:0 0 auto;
  background:var(--white);
}
.catalog-archive-page .catalog-product-card .card-image img {
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .35s ease;
}
.catalog-archive-page .catalog-product-card:hover .card-image img { transform:scale(1.02); }
.catalog-archive-page .catalog-product-card .card-badge {
  top:10px;
  left:10px;
  padding:4px 9px;
  font-size:8px;
}
.catalog-archive-page .card-model {
  display:inline-flex;
  max-width:100%;
  align-items:center;
  align-self:flex-start;
  margin:0 0 14px;
  padding:5px 10px;
  border:1px solid rgba(0,107,63,.12);
  border-radius:var(--radius-full);
  background:var(--brand-primary-light);
  color:var(--brand-primary-dark);
  font-size:10px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.03em;
  overflow-wrap:anywhere;
}
.catalog-archive-page .catalog-product-card .card-body {
  display:flex;
  min-height:0;
  flex:1;
  align-items:flex-start;
  flex-direction:column;
  padding:14px 16px 16px;
  background:var(--white);
}
.catalog-archive-page .catalog-product-card .card-title {
  display:block;
  min-height:39px;
  margin-bottom:6px;
  overflow:visible;
  color:#111;
  font-size:15px;
  font-weight:650;
  line-height:1.3;
}
.catalog-archive-page .card-foot {
  display:flex;
  width:100%;
  gap:8px;
  margin-top:auto;
}
.catalog-archive-page .catalog-product-card .card-link {
  width:auto;
  min-height:38px;
  flex:1;
  padding:9px 10px;
  font-size:11px;
}
.catalog-archive-page .card-ico-btn {
  display:inline-flex;
  flex-shrink:0;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid var(--gray-200);
  border-radius:30px;
  color:var(--slate-700);
  transition:all .2s;
}
.catalog-archive-page .card-ico-btn:hover {
  border-color:var(--brand-primary);
  background:var(--brand-primary);
  color:var(--white);
}
.catalog-archive-page .catalog-card-enter {
  animation:catalogFadeUp .5s ease both;
}
@keyframes catalogFadeUp {
  from { opacity:0; transform:translateY(18px); }
  to { opacity:1; transform:translateY(0); }
}
.catalog-archive-page .catalog-loading-controls {
  display:flex;
  align-items:center;
  flex-direction:column;
  gap:12px;
  margin-top:40px;
  text-align:center;
}
.catalog-archive-page .catalog-load-more {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:210px;
  padding:12px 24px;
  border:1px solid var(--brand-primary);
  border-radius:var(--radius-full);
  background:var(--white);
  color:var(--brand-primary);
  font-size:13px;
  font-weight:700;
  transition:all .2s;
}
.catalog-archive-page .catalog-load-more:hover,
.catalog-archive-page .catalog-load-more.is-loading {
  background:var(--brand-primary);
  color:var(--white);
}
.catalog-archive-page .catalog-load-more.is-loading { pointer-events:none; }
.catalog-archive-page .catalog-load-sentinel { width:100%; height:1px; }
.catalog-archive-page .catalog-load-status {
  min-height:20px;
  color:var(--gray-500);
  font-size:12px;
}
.catalog-archive-page .empty-note {
  padding:64px 24px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  color:var(--gray-500);
  text-align:center;
}
.catalog-archive-page .empty-note i {
  margin-bottom:14px;
  color:var(--brand-primary);
  font-size:32px;
}
.catalog-archive-page .empty-note h3 {
  margin-bottom:6px;
  color:var(--slate-900);
}
.catalog-archive-page .section-cta { margin-top:48px; }

@media (max-width:1080px) {
  .catalog-archive-page .archive-grid { grid-template-columns:1fr; }
  .catalog-archive-page .archive-sidebar { position:static; }
  .catalog-archive-page .cat-list { max-height:340px; }
}
@media (max-width:1024px) {
  .catalog-archive-page .product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:768px) {
  .catalog-archive-page .page-hero h1 { font-size:26px; }
  .catalog-archive-page .active-cat-head { flex-direction:column; }
  .catalog-archive-page .active-cat-count { align-self:flex-start; }
}
@media (max-width:520px) {
  .catalog-archive-page .archive-section { padding:40px 0 64px; }
  .catalog-archive-page .product-grid { grid-template-columns:1fr; }
  .catalog-archive-page .results-bar {
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .catalog-archive-page .active-cat-head { padding:20px; }
  .catalog-archive-page .cat-title-wrap { align-items:flex-start; }
}
@media (prefers-reduced-motion:reduce) {
  .catalog-archive-page .catalog-product-card,
  .catalog-archive-page .catalog-product-card .card-image img,
  .catalog-archive-page .catalog-card-enter { animation:none; transition:none; }
  .catalog-archive-page .catalog-product-card:hover { transform:none; }
}
